Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (42)

Sur d’autres sites (7783)

  • Single Manifest file for different audio and video segments created using MP4Box (MPEG DASH)

    29 avril 2016, par user3753682

    I have three questions

    1) Does dash.js support audio and video content multiplexed in a single segment ?

    2) If not how to merge audio.mpd and video.mpd created using MP4Box into a single out.mpd, that is supported by dash.js player ?

    3) It works if AdaptationSet is copied manually from audio.mpd and placed in video.mpd and video.mpd is played using dash.js. How to automate it ?

    MP4Box -dash 4000 -frag 4000 -rap -bs-switching no -profile dashavc264:live -segment-name ./video/segment_ -out video.mpd video.mp4#video

    MP4Box -dash 4000 -frag 4000 -rap -bs-switching no -profile dashavc264:live -segment-name ./audio/segment_ -out audio.mpd video.mp4#audio
  • Single Manifest file for different audio and video segments created using MP4Box (MPEG DASH)

    5 juillet 2017, par user3753682

    I have three questions

    1) Does dash.js support audio and video content multiplexed in a single segment ?

    2) If not how to merge audio.mpd and video.mpd created using MP4Box into a single out.mpd, that is supported by dash.js player ?

    3) It works if AdaptationSet is copied manually from audio.mpd and placed in video.mpd and video.mpd is played using dash.js. How to automate it ?

    MP4Box -dash 4000 -frag 4000 -rap -bs-switching no -profile dashavc264:live -segment-name ./video/segment_ -out video.mpd video.mp4#video

    MP4Box -dash 4000 -frag 4000 -rap -bs-switching no -profile dashavc264:live -segment-name ./audio/segment_ -out audio.mpd video.mp4#audio
  • Livestreaming webinars from rtmp to DASH

    18 mars 2019, par Ramesh Navi

    I need to live-stream RTMP based video to the webpage, and the end result should be dynamic and adaptive (DASH).

    Below FFMPEG command works with single stream but it’s not adaptive/no low-high selection options.

    ffmpeg -i rtmp://source.mysite.com/live/9 temp/manifest.mpd

    I need something like 1080p RTMP input and 240p, 360p, 480, 720p and 1080p output in single DASH manifest.

    Can somebody guide how can I have a stable/tamed, multi-bitrate adaptive result here ?