Skip to content

Instantly share code, notes, and snippets.

View abdes-zakari's full-sized avatar

Zakari Abdessamad abdes-zakari

View GitHub Profile
@abdes-zakari
abdes-zakari / extractUrls.js
Last active June 29, 2024 18:42
Extract soundcloud urls from a playlist and create a m3u8 playlist
// Extract soundcloud url from a playlist
//open the soundcloud playlist in the browser and put this in the console of the brwoser
const tracks = document.getElementsByClassName("trackItem__trackTitle");
for (let i = 0; i < tracks.length; i++) {
console.log(tracks[i].href)
}