Skip to content

Instantly share code, notes, and snippets.

View Vinfall's full-sized avatar

Vinfall Vinfall

View GitHub Profile
@Vinfall
Vinfall / cue_to_flac.py
Created November 12, 2022 11:53
CUE splitter using ffmpeg (to flac)
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Based on GitHub Gist
# https://gist.github.com/Theldus/bf7b9fd7370f4ea4c57da5cb596e9da9
# Minor changes to make it usable in Python 3.10
cue_file = 'CDImage.cue'
f = open(cue_file, 'r', encoding='utf-8')