On 22/05/2025 20.18, Richard Bartczak via ffmpeg-user wrote:
ffmpeg -i "1492-Die Eroberung  des  Paradieses.ts" -crf 0 -vf scale=720x576,setsar=64/45,setdar=16/9 -c:a copy out.ts               => bad quality, but speedx >= 8

-vf scale=720x576,setsar=64/45,setdar=16/9
You are causing the video steam to be decoded. You are then scaling the pictures to 720x576 -- Why? You are then forcing SAR and DAR before sending the pictures to the encoder. Since you don't specify an encoder, the encoder is probably defaulting to MPEG2.

-crf 0
I've never used this bitstream function. Constant frame rate? Yes, it probably is CFR, but why do you think you need to force it? Leave that out.

_______________________________________________
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to