gpt4 book ai didi

ffmpeg - 将视频从 NTSC 转换为 PAL

转载 作者:行者123 更新时间:2023-12-04 23:10:36 25 4
gpt4 key购买 nike

我收到波兰电视台的请求,要求向他们发送包含以下规范的 SD 文件:
16:9 方形像素 1920x1080, 50 隔行
我拥有的是 720x486 NTSC。
我的 SD 到 HD 1920 x 1080 的配方是:

ffmpeg -i input_file -filter:v "colormatrix=bt601:bt709, scale=1440:1080:flags=lanczos, pad=1920:1080:240:0" -c:a copy output_file
我可以插入 -target pal- ?
我正在考虑去 ProRes 422 总部,这样可行吗?
ffmpeg -i input_file -c:v prores -profile:v 3 -filter:v "colormatrix=bt601:bt709, scale=1440:1080:flags=lanczos, pad=1920:1080:240:0" -target pal- -c:a copy output_file

最佳答案

Can I just insert -target pal-?


号码 pal是目标文件类型的前缀。所以必须和 vcd结合使用, svcd , dvd , dv , dv50 .一个例子是 -target pal-dv .这些都是旧的、遗留的 SD 文件类型。
-target ffmpeg documentation 中的选项获取每个目标设置的选项列表。

I was thinking of going to ProRes 422 HQ [using -target pal-], so would this work?


号码原因同上。它会给你一个错误:
Unknown target:
Failed to set value 'pal-' for option 'target': Invalid argument

So, is there any way to encode something from NTSC to PAL with FFMPEG? Another filter? sounds like the target has presets that are useless to me. But is there one to switch to PAL and 50i?


使用 fps filter (或 -r 选项)更改帧速率。
ffmpeg -i input_file -filter:v "fps=25, colormatrix=bt601:bt709, scale=1440:1080:flags=lanczos:interl=1, pad=1920:1080:240:0" -c:a copy output_file

关于ffmpeg - 将视频从 NTSC 转换为 PAL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69885024/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com