gpt4 book ai didi

bash - 如何关闭 OS X bash 时间码中的冒号

转载 作者:行者123 更新时间:2023-12-04 22:53:40 32 4
gpt4 key购买 nike

我正在尝试使用 ffmpeg 生成视频,以显示源视频的烧录时间码。我在 OS X 中使用 bash 脚本。
视频 1 的开始时间码为 09:59:30:00

为了在 ffmpeg 中使用 drawtext 过滤器,我需要关闭冒号,因为它们用于分隔过滤器。

它们需要在脚本中采用这种格式 timecode='00\:00\:00\:00'它们最终会在实际的终端窗口中显示如下:timecode='\''00\:00\:00\:00'\''
是否有某种方法可以使用 sed 或 awk 或类似的方法来转换 $timecode 变量中存储的值?

我正在使用 ffprobe 生成时间码并将其添加为变量

$ timecode=($(ffprobe -v error -show_entries format_tags=timecode -of default=noprint_wrappers=1:nokey=1 "$1" ))
$ echo $timecode
09:59:30:00

当我以这种方式将变量 $timecode 添加到我的脚本时:
ffmpeg -i "$1" -c:v libx264 -crf 23 -pix_fmt yuv420p -vf drawtext="fontsize=45":"fontfile=/Library/Fonts/Arial\ Black.ttf:fontcolor=white:timecode="$timecode":rate=$framerate:boxcolor=0x000000AA:box=1:x=360-text_w/2:y=480" ""$mezzanine"/"$filenoext"_PRORES.mov"

当我使用 bash -x 时,时间码显示没有任何关闭:
+ ffmpeg -i /Users/kieranoleary/Downloads/AS11_DPP_HD_OEM_SAMPLE_136_1.mxf -c:v libx264 -crf 23 -pix_fmt yuv420p -vf 'drawtext=fontsize=45:fontfile=/Library/Fonts/Arial\ Black.ttf:fontcolor=white:timecode=09:59:30:00:rate=25/1:boxcolor=0x000000AA:box=1:x=360-text_w/2:y=480' /Users/kieranoleary/Downloads/AS11_DPP_HD_OEM_SAMPLE_136_1/mezzanine/AS11_DPP_HD_OEM_SAMPLE_136_1_PRORES.mov

我收到以下错误:
[Parsed_drawtext_0 @ 0x7f9dc242e360] Both text and text file provided. Please provide only one
[AVFilterGraph @ 0x7f9dc242e4e0] Error initializing filter 'drawtext' with args 'fontsize=45:fontfile=/Library/Fonts/Arial Black.ttf:fontcolor=white:timecode=09:59:30:00:rate=25/1:boxcolor=0x000000 A:box=1:x=360-text_w/2:y=480'
Error opening filters!

最佳答案

我会尝试以下方法:

$ IFS=: read -a timecode < <(ffprobe -v error -show_entries format_tags=timecode -of default=noprint_wrappers=1:nokey=1 "$1" )
$ printf -v timecode '%s\:%s\:%s\:%s' "${timecode[@]}"
$ echo "$timecode"
09\:59\:30\:00

当您实际调用 ffmpeg ,你不需要那么多引号:
$ ffmpeg -i "$1" -c:v libx264 -crf 23 -pix_fmt yuv420p -vf \
drawtext="fontsize=45:fontfile=/Library/Fonts/Arial Black.ttf:fontcolor=white:timecode=$timecode:rate=$framerate:boxcolor=0x000000AA:box=1:x=360-text_w/2:y=480" \
"$mezzanine/${filenoext}_PRORES.mov"

您可以使用另一个数组作为中间变量,以使命令调用更具可读性:
drawtext_options=(
fontsize=45
fontfile="/Library/Fonts/Arial Black.ttf"
fontcolor=white
timecode="$timecode"
rate="$framerate"
boxcolor=0x000000AA
box=1
x=360-text_w/2
y=480
)

drawtext_options=$(IFS=:; echo "${drawtext_options[*]}")
ffmpeg -i "$1" -c:v libx264 -crf 23 -pix_fmt yuv420p -vf \
drawtext="$drawtext_options" \
"$mezzanine/${filenoext}_PRORES.mov"

关于bash - 如何关闭 OS X bash 时间码中的冒号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32320341/

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