Skip to content

Instantly share code, notes, and snippets.

@lev-dev
lev-dev / splitty.py
Created February 25, 2017 20:28
Splitty splits an audio file into tracks, given the track list with start times. It uses ffmpeg.
import ffmpy
import re
import os
import sys
import getopt
def get_opts(argv):
usage_msg = '{} -i <inputfile> -t <tracks> -o <outputfolder>'.format(__file__)
try: