Skip to content

Instantly share code, notes, and snippets.

View MadMcCrow's full-sized avatar
🤖
Learning Godot Engine

PERARD-G N. MadMcCrow

🤖
Learning Godot Engine
View GitHub Profile
@MadMcCrow
MadMcCrow / cue_to_flac.py
Last active December 22, 2020 17:35 — forked from Theldus/cue_to_flac.py
CUE splitter using ffmpeg (to flac)
# read first agument (after python cue_to_flac)
# D is our actual disk data read from cue file
d=[]
try :
from sys import argv
cue_file = argv[1]
except:
cue_file = 'file.cue'