2

我在使用 ffmpeg 4.0.2 的 Windows 10 上。我在 [here][1] 找到了 HDR 到 SDR 的脚本,但是当我从页面底部运行脚本时:

ffmpeg.exe -i input.mkv -vf zscale=t=linear:npl=100,format=gbrpf32le,
zscale=p=bt709,tonemap=tonemap=hable:desat=0,zscale=t=bt709:m=bt709:r=tv,
format=yuv420p -c:v libx265 -crf 18 -preset slower output.mkv

我收到此错误:

[NULL @ 0000014588707480] Unable to find a suitable output format for 
'format=gbrpf32le'
format=gbrpf32le: Invalid argument

当我从页面运行第一个脚本时:

ffmpeg.exe -i input.mkv -vf select=gte(n\,360) -vframes 1 output.png

我收到此错误:

At line:1 char:41
+ ffmpeg.exe -i Hook.mkv -vf select=gte(n\,360) -vframes 1 output.png
+                                         ~
Missing argument in parameter list.
+ CategoryInfo          : ParserError: (:) [], 
ParentContainsErrorRecordException
+ FullyQualifiedErrorId : MissingArgument
[1]: https://stevens.li/guides/video/converting-hdr-to-sdr-with-ffmpeg/

我对ffmpeg很陌生,有人可以解释发生了什么吗?

非常感谢!

4

1 回答 1

1

阅读这篇文章,了解如何将 HDR10+ 视频转换为 SDR(标准动态范围),以便可以在非 HDR 设备上以明亮且不褪色的颜色观看原始视频:

https://www.maxvergelli.com/how-to-convert-hdr10-videos-to-sdr-for-non-hdr-devices/

这是批处理命令:

C:\ffmpeg\bin\ffmpeg.exe -i video-input.mp4 -vf zscale=t=linear:npl=100,format=gbrpf32le,zscale=p=bt709,tonemap=tonemap=hable:desat=0,zscale=t=bt709:m=bt709:r=tv,format=yuv420p -c:v libx265 -crf 22 -preset medium -tune fastdecode -t 90 video-output.mp4
于 2020-04-17T15:18:55.970 回答