Skip to content

Instantly share code, notes, and snippets.

@yrps
Created January 23, 2016 00:43
Show Gist options
  • Save yrps/d529c93de56dcf07b2b6 to your computer and use it in GitHub Desktop.
Save yrps/d529c93de56dcf07b2b6 to your computer and use it in GitHub Desktop.
m3u8 to m3u
#!/bin/sh
# convert all m3u8 playlists (UTF-8 encoding) in current dir to m3u (ASCII)
# required for compatibility with some media players
for pl in *.m3u8
do iconv -f UTF-8 -t ASCII//TRANSLIT "$pl" > "${pl%\.m3u8}.m3u"
echo "converted $pl"
done
@pavanupp
Copy link

pavanupp commented May 4, 2024

Where to paste this script & how to run it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment