Skip to content

Instantly share code, notes, and snippets.

@eloj
Created August 14, 2020 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eloj/c1f6b1868983a3d0b71c617d5abc0768 to your computer and use it in GitHub Desktop.
Save eloj/c1f6b1868983a3d0b71c617d5abc0768 to your computer and use it in GitHub Desktop.
mixlr download script (req. ffmpeg)
#/bin/bash
if [ -z "$1" ]; then
echo "Usage: $0 <broadcast id>"
echo ""
echo "You can get the broadcast id from the player element on the showreel page, e.g http://mixlr.com/jeff-gerstmann/showreel/"
exit 1
fi
ffmpeg -i "http://mixlr.com/broadcasts/$1/playlist.m3u8" -acodec copy $1.mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment