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 / keybase.md
Created October 2, 2020 09:48
Keybase identity

Keybase proof

I hereby claim:

  • I am frabad on github.
  • I am frabad (https://keybase.io/frabad) on keybase.
  • I have a public key ASCc4nWShY_eoy7TioZEiU0hVgk6o6bH3uVRXvQCE4Jw5Qo

To claim this, I am signing this object:

@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]