Hello,

I did try to compress h.262 videos to h.265 and would expect, if I compress it to half of the size a comparison e.g. with vivictpp would give a result, that nearby no difference will be seen.
But its not. The following command I use :

Code:

#!/bin/sh
for f in *.ts; do ffmpeg -y -i "$f" -vcodec libx265 -crf 20 -preset slow -vf 
yadif,nlmeans="1.6:7:5:3:3" -c:a copy "$(basename "$f" .ts).mkv";done

Any ideas to improve it ?

Thanks

Richard

_______________________________________________
ffmpeg-user mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to