Skip to content

Instantly share code, notes, and snippets.

@SenseiMarv
SenseiMarv / cloudSettings
Last active November 8, 2024 15:20
VSCode Settings Sync (!IMPORTANT! Please take care to do this when setting this up: https://github.com/shanalikhan/code-settings-sync/issues/1341#issuecomment-1094088898)
{"lastUpload":"2024-08-06T12:45:59.827Z","extensionVersion":"v3.4.3"}
@raulghm
raulghm / semantic_versioning.md
Last active August 29, 2015 14:26
Semantic Versioning

Semantic Versioning

1.2.3

major minor patch
1 2 3

major: incompatible API changes

@gildotdev
gildotdev / ffmpeg.txt
Last active October 30, 2017 00:31
ffmpeg cli commands
## extract audio from .avi as .aac (conversion from another audio codec)
ffmpeg -i foo.avi -acodec aac -ab 128k -strict experimental bar.aac
## extract audio from .avi as .mp3 (no conversion, just copy)
ffmpeg -i foo.avi -acodec copy bar.mp3
## convert .mp3 to .aac
ffmpeg -i foo.mp3 -acodec aac -ab 128k -strict experimental bar.aac
## extract single frame as image from .mp4