gpt4 book ai didi

ffmpeg - ffprobe查询: get only the value without the label

转载 作者:行者123 更新时间:2023-12-04 23:13:11 27 4
gpt4 key购买 nike

我用这个命令从视频中获取比特率:

ffprobe -v error -show_entries stream=bit_rate -of default=noprint_wrappers=1 output_1080.mp4



结果:

bit_rate=5013267

如何仅获取将其插入 bash 变量目的的值?

非常感谢!

最佳答案

尝试添加 nokey=1格式选项。要将其分配给 bash 中的变量,您可以执行以下操作:

BITRATE="$(ffprobe -v error -show_entries stream=bit_rate -of default=noprint_wrappers=1:nokey=1 -i output_1080.mp4)"

您可能还想考虑添加类似 -select_streams a:0 的内容例如,如果您只想要第一个音频流。否则它可能会输出多个值。

关于ffmpeg - ffprobe查询: get only the value without the label,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59974101/

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