Skip to content

Instantly share code, notes, and snippets.

@questionlp
Last active December 29, 2023 02:49
Show Gist options
  • Select an option

  • Save questionlp/1ea65e8ca86964b8269551d4c60fcb84 to your computer and use it in GitHub Desktop.

Select an option

Save questionlp/1ea65e8ca86964b8269551d4c60fcb84 to your computer and use it in GitHub Desktop.
Converting .bin+.cue to .chd and create .m3u files

Compressed

for i in *.cue; do chdman createcd -i "$i" -o "${i%.*}.chd"; done

Uncompressed

for i in *.chd; do chdman extractcd -c none -i "$i" -o "${i%.*}.bin"; done

Creating .m3u files

ls -1 *.chd > "Name.m3u"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment