用于直播的特定节目mpd

时间:2017-05-21 06:12:56

标签: streaming live mpeg-dash mpd

我正试图突破我的直播视频流,并保存它们以便以后可以在我的网站上观看。它工作了1小时的时间。但我需要为特定程序制作mpd,不受小时限制。并分开我的程序,列出一个列表并为每个程序设置一个mpd。例如,每个足球比赛必须有一个mpd。我怎么能这样做?

编辑:

我正在使用nginx制作破折号文件,如下所示:

  application dash {
  live on;
  dash on;
  dash_nested on; # this work but not separate the variant mpd 
  dash_path /dev/shm/dash;
  dash_fragment 2; # 2 second is generaly a good choice for live
  dash_playlist_length 120; # keep 240s of tail
  dash_cleanup on;
  dash_variant _low bandwidth="256000" width="320" height="180";
  dash_variant _med bandwidth="832000" width="640" height="360";
  dash_variant _hi bandwidth="1024000" width="1024" height="576";
}

和源视频:

RTMP://184.72.239.149/vod/BigBuckBunny_115k.mov

0 个答案:

没有答案