ffmpeg hls m3u8流仅适用于第一帧

时间:2018-09-06 16:09:36

标签: linux ffmpeg video-streaming

我现在正在尝试让vlc与m3u8一起使用(实际上应该这样做),但是vlc不适用于它们。它只给我第一帧,然后在-hls_time secs停留在该帧上,最后“退出”。如果我在mu m3u8文件中查看框架工作正常。 这个框架的例子很好用

import matplotlib.pyplot as plt

p = 0.22
new_p = 0.24

def draw_hist():
    x = [0, 1]
    theory_y = [new_p, 1 - new_p]
    estimate_y = [p, 1 - p]
    plt.hist(x, estimate_y, alpha=0.5, label='estimated marginal')
    plt.hist(x, theory_y, alpha=0.5, label='theoretical marginal')
    plt.legend(loc='upper right')
    plt.show()

draw_hist()

我的问题是vlc无法完全运行流。 这是我的ffmpeg命令

#EXTINF:20.000000,
http://server.com:80/videos/amfSyubTEw/GyvlIYrgEF/1_14.ts

0 个答案:

没有答案