Skip to content

Instantly share code, notes, and snippets.

View andreanidouglas's full-sized avatar
🎯
data in the morning; code in the evening

Douglas R Andreani andreanidouglas

🎯
data in the morning; code in the evening
View GitHub Profile
@andreanidouglas
andreanidouglas / cue_to_mp3.py
Last active October 30, 2017 11:08 — forked from bancek/cue_to_mp3.py
CUE splitter using ffmpeg (to mp3)
#!/usr/bin/python2
import os
def generate_script(cue_file, file_path, file_name):
d = open(cue_file).read().splitlines()
general = {}
tracks = []