|
 |
On 04/05/2018 04:15 AM, Rushen wrote:
>
> I think FFMPEG and VDub does the same thing,mainly, and that is going from still
> to moving images. (or switching formats) And so far the avi-files produced
> during that step show very little distortion.
# create your scenes
$ ffmpeg -i scene1-%3d.png scene1.mp4
$ ffmpeg -i scene2-%3d.png scene2.mp4
$ ffmpeg -i scene3-%3d.png scene3.mp4
# create a file with the list of scene mp4s
$ cat filelist.txt
scene1.mp4
scene2.mp4
scene3.mp4
# concatenate the scenes together, without transcoding.
$ ffmpeg -f concat -i filelist.txt -c copy finalmovie.mp4
--
dik
Rendered 328976 of 330000 (99%)
Post a reply to this message
|
 |