Skip to content

Instantly share code, notes, and snippets.

View leviathan's full-sized avatar

Jörg Polakowski leviathan

  • Lund, Sweden
  • 07:38 (UTC +02:00)
View GitHub Profile
@leviathan
leviathan / ffmpeg.sh
Created March 9, 2021 11:09 — forked from filipwodnicki/ffmpeg.sh
ffmpeg cheat sheet
# install ffmpeg
brew install ffmpeg
# convert .mov file to .mp4
ffmpeg -i demo.mov -vcodec h264 demo.mp4
@leviathan
leviathan / youtube-dl.md
Last active March 29, 2023 21:10
youtube-dl command line

youtube-dl command line

Use master version directly via:

python3 -m pip install --force-reinstall https://github.com/yt-dlp/yt-dlp/archive/master.tar.gz
yt-dlp xx
@leviathan
leviathan / FlowingSyntaxSugar.md
Last active July 20, 2021 13:03
2021-07-26 - Bosch eBike CoP

Combine syntactic sugar

Defining a Publisher pipeline, that Never fails:

Before
let diamonds: AnyPublisher<Diamond, Never>