Rescaling and slowing down a movie at the same time with ffmpeg
问题 I would like with ffmpeg to slow down a movie I am creating using the flag: -filter:v "setpts=2.0*PTS" However the height of my still images is not divisible by 2, so to avoid the error: height not divisible by 2 (1238x833) , I am using the flag: -vf scale="trunc(iw/2)*2:trunc(ih/2)*2" (I also tried -vf scale=1238:-2 ). When I do this the film is generated but it isn't slowed down, like if the -filter:v "setpts=2.0*PTS" wasn't there. Is there something particular to do in order to have both