Skip to content

Instantly share code, notes, and snippets.

View tomcatzh's full-sized avatar

Zhang Xiaofeng tomcatzh

  • Amazon Web Service
  • Guangzhou, China
View GitHub Profile
@tomcatzh
tomcatzh / cue_to_mp3.py
Created December 9, 2017 02:30 — forked from bancek/cue_to_mp3.py
CUE splitter using ffmpeg (to mp3)
cue_file = 'file.cue'
d = open(cue_file).read().splitlines()
general = {}
tracks = []
current_file = None