Content
ffmpeg
ffmpeg tricks.
"ffmpeg" on https://aligot-death.space, available at https://aligot-death.space/wiki/sysadmin/linux/ffmpeg-en
Creating a timelapse#
1080p/30i with jpg files:
1 ffmpeg -framerate 30 -pattern_type glob -i '*.jpg' -c:v libx264 -r 30 -pix_fmt yuv420p -s hd1080 out.mp4
Concatenate ".ts" files from local record#
For instance, if you made a local record using OBS
Create file list:
File order might be wrong, to fix
1 (for %i in (*.ts) do @echo file '%i') > mylist.txt
Then concatenate to a single mp4 file:
1 ffmpeg -f concat -i mylist.txt -c copy output.mp4