This is little embarrassing but what does this "scale=iw*X:ih*X" mean? Do I have to put in the actual width and height or just factor like for example iw*4:ih*4?
+ Reply to Thread
Results 1 to 4 of 4
-
-
see here - https://trac.ffmpeg.org/wiki/Scaling it's a scale filter
-
iw and ih the width and height of the input video. So iw*X:ih*X is multiplying the width and height by the same amount, X. So yes, scael=iw*4:ih*4 will result in a video that 4x the width and height of the original. If the original was 640x480 the output will be 2560x1920. Alternatively, you could multiply the values yourself and specify scale=2560:1920.
-
Oh thanks. To be honest, I forgot about some of this due to my brain being tired.
Similar Threads
-
FFmpeg does not copy subtitles with two input files
By ignace72 in forum LinuxReplies: 6Last Post: 1st Apr 2022, 02:20 -
Input raw audio 512 floating-point values into FFMPEG?
By ntphcm in forum Video ConversionReplies: 3Last Post: 30th Sep 2021, 21:14 -
Input transparent pipe:0 motions into FFMPEG
By ntphcm in forum Video ConversionReplies: 0Last Post: 29th Sep 2021, 02:14 -
ffmpeg -force_key_frames chapters with Multiple Input Files
By koberulz in forum Newbie / General discussionsReplies: 1Last Post: 29th Aug 2021, 10:02 -
How to I nstall the FFMPEG input driver in VirtualDub?
By Avagadro1 in forum Newbie / General discussionsReplies: 3Last Post: 13th Aug 2020, 00:26