smirnov

soundgasm.net download

Jul 16th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.34 KB | None | 0 0
  1. wget -U 'Mozilla/5.0' -qO- 'https://soundgasm.net/u/USER_NAME_HERE' | grep -Po '(?<=href=")[^"]*' | tail -n +8 | xargs wget -U 'Mozilla/5.0' -qO - | sed -n 's/.*\(http[^>]\+\.m4a\).*/\1/p' | xargs -i wget -U 'Mozilla/5.0' -bqc '{}' -
  2.  
  3. # Convert to mp3
  4. for f in *.m4a; do ffmpeg -loglevel panic -i "$f" -acodec libmp3lame -aq 2 "${f/.m4a/}.mp3"; done
Add Comment
Please, Sign In to add comment