使用 FFMPEG 的 HLS FLAC 流

时间:2021-01-08 13:01:15

标签: ffmpeg http-live-streaming flac

我使用以下命令从带有 FLAC 输出的 FLAC 文件创建了一个 HLS 流:

ffmpeg 
    -i 10-brass-in-pocket.flac 
    -map 0:a -c:a:0 flac 
    -f hls 
    -hls_playlist_type vod 
    -master_pl_name master.m3u8 
    -hls_time 30 
    -hls_segment_type fmp4 
    -strict -2  
    -hls_segment_filename music.m4s 
    -hls_flags single_file  
    -var_stream_map "a:0" stream_%v.m3u8`

我已经在这里发布了:

https://di5wym8npn4cm.cloudfront.net/stackoverflow_fmp4_singlefile/master.m3u8。 (这适用于 VLC)

此处带有音频控件的页面:

https://di5wym8npn4cm.cloudfront.net/stackoverflow_fmp4_singlefile/index.html

我可以从 Safari 的网络选项卡中看到第二个网段失败并显示 http 代码 206。

为什么这个流不能播放?

0 个答案:

没有答案