View Single Post
Old 13th June 2016, 22:26   #2  |  Link
raffriff42
Retried Guesser
 
raffriff42's Avatar
 
Join Date: Jun 2012
Posts: 1,373
1) DirectShowSource does not need "fps = 15, convertfps = True"
2) ffmpeg "-async 15", " -flags +aic+loop+mv4+naq" and "-mpv_flags +cbp_rd" do not apply
3) why reencode the audio? mux the original audio, something like this:
Code:
## Slide7.avs
ImageSource("slide7.jpg").Lanczos4Resize(800,450).Loop(-1).AssumeFPS(15)
Code:
ffmpeg -i "Slide7.avs" -i "Slide7.mp3" -vcodec flv -b:v 512k -acodec copy -shortest "Slide7.flv"
There is actually no need for AviSynth here, since ffmpeg does slide shows natively... I just don't know how to do it off the top of my head.

Last edited by raffriff42; 13th June 2016 at 22:29.
raffriff42 is offline   Reply With Quote