Skip to content

Instantly share code, notes, and snippets.

@dmertl
dmertl / ffmpeg_cheatsheet.md
Last active February 1, 2025 21:33
FFmpeg Cheatsheet

15 second clip

ffmpeg -i in.mp4 -t 00:00:15 in_15s.mp4

clip to exact frames

ffmpeg.exe -i in.mp4 -vf "select=between(n\,100\,395),setpts=PTS-STARTPTS" -an out.mp4
@dmertl
dmertl / 15s_clip.bat
Last active May 18, 2024 18:22
Windows FFmpeg Droppable Batch Files
:again
if "%~1" == "" GOTO done
ffmpeg.exe -i "%~1" -t 00:00:15 "%~n1_clip%~x1"
SHIFT
GOTO again
:done
@dmertl
dmertl / php_cheatsheet.md
Last active May 16, 2024 23:06
PHP Cheatsheet

Doc Comment Typing

PHPDoc, but specifically working with PHPStorm IDE.

/**
 * Array of datetimes like [DateTime(), DateTime()]
 * 
 * @var DateTime[]
 */