First of all, thank you for this wonderfull application, it is very handy, just i need some help.
As i read through this forum, i just realised, almost everyone is familiar with ffmpeg or ffastrans "coding", and " dealing with variables" but unfortunately I did not.
My workflow is VERY simple. My Source is a1080p (1920x1080) DNxHD85.mov coming directly from DavinciResolve. I have h264 encoder, with "same as soure" settings. As far as i figured out %i_width% and %i_heigtht% would control the output's video size. And i have a destinaton folder.
Everything is running fine, but the encoded output.mp4 size is 1440x1080. If i enter 1920 x 1080 in the video size box, the output result is stretched horizontally. (despite mediainfo says it is 1920x1080).
How do i control the output.mp4 video size? What should i do if i would like to have a different video size as the source? Do i have to make a custom ffmpeg encoder? Can anyone help out with the right custom command? I just try to figure out, how does ffmpeg works with this help: http://rodrigopolo.com/ffmpeg/ but for this code, nothing happend: (which I am not surprised, since it makes no sense i think )
Sorry for the noob thread, i did not found any guide for beginners.ffmpeg -i [INPUT] -s 1920x1080 -aspect 16:9 -r 25 -b 5000 -bt 5000 -vcodec libx264 -pass 1 -vpre fastfirstpass -an [OUTPUT].mp4 && ffmpeg -y -i [INPUT] -s 1920x1080 -aspect 16:9 -r 25 -b 5000 -bt 5000 -vcodec libx264 -pass 2 -vpre hq -acodec libfaac -ac 2 -ar 48000 -ab 256 [OUTPUT].mp4
+ question: Is there any way, to move the source files into an another folder, when the encode process finished?
Thanks.