Skip to content

Instantly share code, notes, and snippets.

@hamptonmoore
Created February 7, 2020 20:53
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 hamptonmoore/678de578936dc85cc5de4fae95cda7d0 to your computer and use it in GitHub Desktop.
Save hamptonmoore/678de578936dc85cc5de4fae95cda7d0 to your computer and use it in GitHub Desktop.
A simple utility to convert the m3u8 file generated by smloadr to an m3u file for MPD
cat convertM3u8.sh
awk '/^#/ {sub(/#.*/,"");getline;}1' "$1" > tmpfile
sed -i 's/..\///' tmpfile
mv tmpfile ~/.config/mpd/playlists/$(echo "$1" | sed 's/ //g' | sed 's/m3u8/m3u/')
rm "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment