ffmpeg 改变分辨率

yuv改变分辨率 指定bicubic方式
ffmpeg -threads 16 -f rawvideo -s 1920x1080 -pix_fmt yuv420p -i input.yuv -vf scale=-1:2160 -sws_flags bicubic -pix_fmt yuv420p output.yuv
(-vf等价于-filter:v)

sws_flags 只能选择一个算法。默认值为“bicubic”。它接受以下值:
“fast_bilinear”
选择快速双线性缩放算法。

‘bilinear’
选择双线性缩放算法。

‘bicubic’
选择双三次缩放算法。

‘neighbor’
选择最近邻调整算法。
https://blog.csdn.net/Explorer_day/article/details/77711705

mp4改变分辨率
ffmpeg -threads 16 -i input.mp4 -vf scale=1920:1080 -sws_flags bicubic -preset fast -crf 12 output.mp4

HDR mp4改变分辨率:
ffmpeg -threads 16 -i input.mp4 -vf scale=1920:1080 -sws_flags bicubic -c:v libx265 -x265-params "pass=1:open-gop=0:b-adapt=0:keyint=125:sao=1:amp=1:log2-max-poc-lsb=6:hrd=1:master-display=G(13250,34500)B(7500,3000)R(34000,16000)WP(15635,16450)L(10000000,20):max-cll="898,315":sar=1:videoformat=5:colorprim=9:transfer=16:colormatrix=9:chromaloc=2" -preset fast -crf 18 output.mp4

png改变分辨率
ffmpeg -threads 16 -i ./input/%06d.png -vf scale=1920:1080 -sws_flags bicubic ./output/%06d.png

原码率缩放
ffmpeg -threads 16 -i 航拍中国·海南4K.mp4 -vf scale=1920:1080,setdar=16:9,setsar=1:1 hp-hn_1920x1080_25.mp4 -hide_banner
ffmpeg -ss 0:04:50 -t 0:0:30 -i 航拍中国·海南4K.mp4 -vf scale=1920:1080,setdar=16:9,setsar=1:1 hp-hn-1-30s_1920x1080_25.mp4 -hide_banner

ffmpeg设置视频参数DAR,SAR
https://blog.csdn.net/ternence_hsu/article/details/108810527
 

你可能感兴趣的:(视频技术基础,音视频)