Skip to content

Instantly share code, notes, and snippets.

@tigefabot
tigefabot / gen-ubuntu-sources-list.py
Last active March 20, 2021 13:25 — forked from JonasGroeger/gen-ubuntu-sources-list.py
Generates '/etc/apt/sources.list' compatible lists for Ubuntu releases
#!/usr/bin/env python3
import argparse
import getpass
import os
import time
import sys
KNOWN_CODENAMES = ['trusty', 'xenial', 'bionic', 'focal', 'utopic', 'vivid', 'wily', 'disco']
@tigefabot
tigefabot / ffmpeg_command_snippets.txt
Created February 20, 2021 15:58 — forked from gilson27/ffmpeg_command_snippets.txt
My quick command snippets (ffmpeg)
///////////////////////////////////////////// FFMPEG snippets ////////////////////////////////////////////////////
ffmpeg -f rawvideo -vcodec rawvideo -s 1920x1080 -r 30 -pix_fmt yuv420p -i crowdRun_D.yuv -codec:v v210 output.mov
ffmpeg -i input.avi -c:v libx264 -crf 19 -preset slow -c:a libfaac -b:a 192k -ac 2 out.mp4
==================================================================================================================
Decode 10 bit mov capture as yuv v210
------------------------------------------------------------------------------------------------------------------