UFOxyz
22nd December 2024, 09:49
how well or optimally convert with this command?
ffmpeg.exe -i aa.avi bb.mp4
super user stack exchange went like this for the aspect-ratio correction command line
a top guy said
>ffmpeg -i aa.mp4 -vf scale=720:540 -c:v <Video_Codec> aaaa.mp4
> the other guys said.. on the other hand
ffmpeg -i aa.mp4 -aspect 720:540 -c copy aaaa.mp4
>then the next guys said "nonsense you cant use -c copy".... use this -aspect
> then next guys said " nonsense you cant use -aspect here, use this -bsf:v
no one knew how, none of them worked
so i went
ffmpeg -i aa.mp4 -vf scale=720:540 aaaa.mp4
worked but an 124mega byte video turned into a 30mb video
what do i need to fill in -c:v <Video_Codec> to convert with the maybe same codec that the original used. then how good is the conversion with ffmpeg -i aa.mp4 -vf scale=720:540 aaaa.mp4 in this command line?
ffmpeg.exe -i aa.avi bb.mp4
super user stack exchange went like this for the aspect-ratio correction command line
a top guy said
>ffmpeg -i aa.mp4 -vf scale=720:540 -c:v <Video_Codec> aaaa.mp4
> the other guys said.. on the other hand
ffmpeg -i aa.mp4 -aspect 720:540 -c copy aaaa.mp4
>then the next guys said "nonsense you cant use -c copy".... use this -aspect
> then next guys said " nonsense you cant use -aspect here, use this -bsf:v
no one knew how, none of them worked
so i went
ffmpeg -i aa.mp4 -vf scale=720:540 aaaa.mp4
worked but an 124mega byte video turned into a 30mb video
what do i need to fill in -c:v <Video_Codec> to convert with the maybe same codec that the original used. then how good is the conversion with ffmpeg -i aa.mp4 -vf scale=720:540 aaaa.mp4 in this command line?