Skip to content

Instantly share code, notes, and snippets.

View eduard-sukharev's full-sized avatar

Eduard Sukharev eduard-sukharev

  • VK Play
  • Russia, Saint-Petersburg
View GitHub Profile
@eduard-sukharev
eduard-sukharev / cue_to_flac.py
Last active May 1, 2024 21:11 — forked from Theldus/cue_to_flac.py
CUE splitter using ffmpeg (to flac)
import os
import subprocess
import sys
from itertools import chain
import argparse
parser = argparse.ArgumentParser(description="Split audio file by .cue metadata.")
parser.add_argument(
"cue-files",
help="CUE file to be parsed. Multiple files can be passed. If no files provided, reads from stdin",
@eduard-sukharev
eduard-sukharev / ARMonQEMUforDebianUbuntu.md
Last active January 10, 2022 19:40 — forked from luk6xff/ARMonQEMUforDebianUbuntu.md
Emulating ARM with QEMU on Debian/Ubuntu

Running ARM Debian/Ubuntu on QEMU

If the below is too much, you can try Ubuntu-ARMv7-Qemu but note it contains non-free blobs.

Architectures cheatsheet:

  • armel - emulated floating point (ARMv6 and older)
  • armhf - hardware floating point (ARMv7 and newer)
  • arm64 (aarch64, aarm64) - ARM with 64bit support (mainly ARMv8 and newer)