Site Tools


linux:general:ffmpeg

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
linux:general:ffmpeg [2019/03/04 11:42] – [Usage] lunetikklinux:general:ffmpeg [2023/04/29 21:16] lunetikk
Line 25: Line 25:
 If you consider using this to autogenerate videos via script, you might want to use the following code to mute the output If you consider using this to autogenerate videos via script, you might want to use the following code to mute the output
 <code>ffmpeg -f image2 -r 5 -pattern_type glob -i "$PATHJPG/*.jpg" $PATHAVI/movie.avi 2> /dev/null <code>ffmpeg -f image2 -r 5 -pattern_type glob -i "$PATHJPG/*.jpg" $PATHAVI/movie.avi 2> /dev/null
 +</code>
 +
 +If you want to join/ concat multiple files use the following
 +<code> 
 +ffmpeg -safe 0 -f concat -i <(find $PATHAVI -type f -name '*.avi' -printf "file '%p'\n" | sort) -c copy $PATHAVI/movie.avi
 </code> </code>
linux/general/ffmpeg.txt · Last modified: 2023/04/29 21:16 by lunetikk