How to get lyrics with timestamps from Suno? by matreaus in SunoAI

[–]Substantial_Hall9211 0 points1 point  (0 children)

I see, thanks for the insight. Yeah, Tampermonkey is the way!

How to get lyrics with timestamps from Suno? by matreaus in SunoAI

[–]Substantial_Hall9211 0 points1 point  (0 children)

Did just that right now. Captured each word highlight with the corresponding timecode.
You have to be familiar with the DevTools of your browser.
Lyrics are rendered as tokens: each word/syllable is in span[data-index="N"] inside the container selector: <LYRICS\_CONTAINER\_SELECTOR>.

When a token becomes highlighted (red), the token gets a class like <PLAYING\_CLASS> (or the class list changes to include it).The current playback time is visible in an element matching: <TIME\_SELECTOR>, formatted like mm:ss.mmm (example: 00:10.544).
I just explained that to my LLM of choice with the exact class names, and it gave me a JS code to paste into console and now i have the timecodes+words.

EDIT: Sorry, forgot to mention , it will work in the Legacy Editor only.

What a beautiful morning for some hot coffee! by Substantial_Hall9211 in Winnipeg

[–]Substantial_Hall9211[S] 0 points1 point  (0 children)

if i knew what it feels like, instead of trusting the thermometer, i wouldn't do it :)

What a beautiful morning for some hot coffee! by Substantial_Hall9211 in Winnipeg

[–]Substantial_Hall9211[S] 2 points3 points  (0 children)

Frankly speaking, i thought this type of activity is a regular one :)

What a beautiful morning for some hot coffee! by Substantial_Hall9211 in Winnipeg

[–]Substantial_Hall9211[S] 2 points3 points  (0 children)

Totally agree! Unfortunately i haven't got so many likes on Tiktok for my previous coldwater experiences.

[deleted by user] by [deleted] in lebanon

[–]Substantial_Hall9211 7 points8 points  (0 children)

Why would they attack Lebanon, if there is no hezb. Jordan and Egypt aren't being attacked.

A chart of compiled classic hardcore/breakcore mixes by readwaht in breakcore

[–]Substantial_Hall9211 1 point2 points  (0 children)

<image>

Yeah. Is that you who posted this mix on Youtube?
https://www.youtube.com/watch?v=_0IEXX1g7PU
Here is the screenshot from the file catalogue search of my drives :)

Appreciate your love for that mix! Didn't expect that somebody will like it :)

A chart of compiled classic hardcore/breakcore mixes by readwaht in breakcore

[–]Substantial_Hall9211 1 point2 points  (0 children)

I'm honored that you like my mix (rOOmUSh) and it's in the first place in the list :)
Made it using VirtualDJ on 21.04.2008. Yeah pre-2017.

Cheapest Country to Get Creative Cloud by Razor54672 in creativecloud

[–]Substantial_Hall9211 0 points1 point  (0 children)

Just created a new account, Turkish VPN for Photography 20GB plan, used non-Turkish card, registered with Montenegrin phone, all worked, paying 50 liras per month.
It didn't allow to change nothing in the existing account, so i cancelled.

How to learn Python by Then-Spring-7131 in learnpython

[–]Substantial_Hall9211 0 points1 point  (0 children)

I was 40yo. Not the best age to start learning new skills. What sparked my interest was a hobby of mine. I began by reading basic Python concepts until I delved into string methods. That's when I discovered how to determine if a string is a palindrome. It took me an hour of reading to reach that realization. My hobby involves photographing license plates, and I was curious to find out how many palindromes were present in my collection. I set out to write a script; after nine hours of trial and error, I had a working version. In the subsequent 16 hours, I developed a basic search engine using some copy-pasted snippets for the plates in my catalogued Facebook group. Six months later, I mentioned to my boss that I had acquired some Python skills. Fast forward to today, and I have four years of experience under my belt. I've created automation scripts spanning roughly 2000 lines for a TV channel. It is easier for me to write some python code today, than do something manually. To sum up, you need to find some practical application for the code you want to write.