Skip to content

Instantly share code, notes, and snippets.

View Jensderond's full-sized avatar

Jens de Rond Jensderond

  • Redkiwi
  • The Netherlands
View GitHub Profile
@Jensderond
Jensderond / ffmpeg_commands.txt
Created February 9, 2022 15:05 — forked from noln/ffmpeg_commands.txt
Handy FFMPEG Commands for Quickly Processing GoPro Videos
1) Concatenate a list of videos into one
ffmpeg -f concat -safe 0 -i tojoin.txt -c copy output.mp4
// Format of tojoin.txt:
file 'file0.MP4'
file 'file1.MP4'
file 'etc..
2) Scale down 4k video to
@Jensderond
Jensderond / javascript.json
Created October 4, 2019 06:02 — forked from dceddia/javascript.json
VSCode Snippets for React
{
"Insert a function": {
"prefix": "f",
"body": [
"function $1($2) {\n $0\n}\n"
],
"description": "Insert a function"
},
"const arrow": {
"prefix": "c>",