-
-
Save FGRibreau/420b5da7289969e5746298356a49423c to your computer and use it in GitHub Desktop.
| // open your javascript console and paste this | |
| copy([...$('[role="grid"]')[Object.keys($('[role="grid"]')).filter(x => x.startsWith('__reactProps'))[0]].children[0].props.values[0][1].collection].filter(x => x.value.audio_url).map(x => x.value.audio_url).join(' ')) | |
| // now you have a list of mp3 urls directly in your clipboard that you can pass to wget or a url downloader |
if you want to do this from a playlist, can use
copy([...$('[role="grid"]')[Object.keys($('[role="grid"]')).filter(x => x.startsWith('__reactProps'))[0]].children[0].props.values[0][1].collection].filter(x => x.value.clip.clip.audio_url).map(x => x.value.clip.clip.audio_url).join(' '))
Would you have a JS code working as of July 2025?
Something that you can copy/pate in console when you are on https://suno.com/create?wid=default&page=2
@william-r-s @FGRibreau The previous code doesn't work anymore.
Would you have a JS code working as of July 2025?
Something that you can copy/pate in console when you are on https://suno.com/create?wid=default&page=2
@william-r-s @FGRibreau The previous code doesn't work anymore.
I've created a small Python script that removes the need for using the Javascript console, based on the original code of @FGRibreau . You can get it here: https://gist.github.com/dppancake/f9f43825209050b27900347014459fa4
Let me know if it works
Anyone managed to automate downloading the wav files?
Im trying to do this but the issue is when pasting it in the console window it doesnt work. I looked and it seems the children element doesnt exsist.