Questions tagged «http-live-streaming»

2
从FFMPEG mp4直播流m3u8文件?[关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow的主题。 3年前关闭。 改善这个问题 如何从http live流m3u8文件中提取mp4?我在下面尝试了此命令: ffmpeg -i {input file} -f rawvideo -bsf h264_mp4toannexb -vcodec copy out.mp4 我遇到了这个错误: [NULL @ 0000000002f07060]数据包头未包含在全局额外数据,损坏的流或无效的MP4 / AVCC比特流中未能使用编解码器副本为流0打开比特流过滤器h264_mp4toannexb:

1
具有安全链接模块的NGINX open()失败(20:不是目录)hls vod
我对hls流的nginx配置有问题。我使用kaltura nginx vod模块并尝试添加ngx_http_secure_link_module以保护流。奇怪的是,如果启用,则会出现404错误ngx_http_secure_link_module(下面的日志)。我认为这是因为它最后找不到带有index.m3u8的文件,但是如果我评论安全链接块,它就可以正常工作。 我也试图在location ~ \.m3u8$ {}块内添加别名,但是没有用。我究竟做错了什么?如何保护我的信息流? 我的信息流链接: https://stream.example.com/hls/c14de868-3130-426a-a0cc-7ff6590e9a1f/index.m3u8?md5=0eNJ3SpBd87NGFF6Hw_zMQ&expires=1609448340 我的NGINX配置: server { listen 9000; server_name localhost; # root /srv/static; location ^~ /hls/ { # the path to c14de868-3130-426a-a0cc-7ff6590e9a1f file alias /srv/static/videos/1/; # file with cors settings include cors.conf; vod hls; # 1. Set secret variable set $secret "s3cr3t"; # 2. …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.