gpt4 book ai didi

video - 使用 ffmpeg 从流中提取隐藏式字幕 VTT

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

我可以使用 ffmpeg v. 3.4.7 从 mp4 文件中提取隐藏式字幕信息:

ffmpeg -f lavfi -i movie="sample.mp4[out+subcc]" -map 0:1 -c:s webvtt /tmp/output.vtt

该文件是通过捕获包含隐藏式字幕的实时 HLS 流获得的。我想直接从流中提取隐藏式字幕,而不是在将视频存储在文件中之后。我尝试过各种方法,包括:

ffmpeg -f lavfi -i movie="http://example.com/stream.m3u8[out+subcc]" -map 0:0 -c:s webvtt /tmp/output.vtt

但电影过滤器无法识别 URL,即使 ffmpeg filter documentation说电影过滤器的文件名“不一定是文件;它也可以是设备或通过某种协议(protocol)访问的流”:

[Parsed_movie_0 @ 0x264ad80] Failed to avformat_open_input 'http'
[lavfi @ 0x2647e80] Error initializing filter 'movie' with args 'http://example.com/stream.m3u8'
movie=http://example.com/stream.m3u8[out+subcc]: No such file or directory

当我像这样从流中捕获视频时:

ffmpeg -i http://example.com/stream.m3u8 /tmp/output.mp4

ffmpeg 报告流确实包含隐藏式字幕(这是捕获的视频文件 sample.mp4 获取它们的地方):

Stream #0:0: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p(tv, bt709), 480x270 [SAR 1:1 DAR 16:9], Closed Captions, 14.99 fps, 14.99 tbr, 90k tbn, 29.97 tbc

这有可能吗?感谢您的指点。

最佳答案

电影过滤器可以接受您只需要转义“:”的网址根据https://ffmpeg.org/ffmpeg-filters.html#Notes-on-filtergraph-escaping

这个命令应该可以工作

ffmpeg -f lavfi -i movie="http\\\://example.com/stream.m3u8[out+subcc]"-map 0:0 -c:s webvtt/tmp/output. vtt

关于video - 使用 ffmpeg 从流中提取隐藏式字幕 VTT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62596884/

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