Skip to content

Instantly share code, notes, and snippets.

View frabad's full-sized avatar
💭
I may be slow to respond.

frabad

💭
I may be slow to respond.
View GitHub Profile
@frabad
frabad / ffcuesplit.py
Last active January 16, 2023 20:57 — forked from bancek/cue_to_mp3.py
CUE splitter using ffmpeg
#!/usr/bin/env python
import os
import subprocess
import sys
if len(sys.argv) != 2:
sys.exit("Usage:\n\t%s <%s>" % (sys.argv[0], 'input_cuesheet'))
cuesheet_fname = sys.argv[1]