Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (43)

Sur d’autres sites (8531)

  • MPEG DASH : Playing video segments from .m4s files instead of byte ranges in the MPD File using Simple DASH Player

    1er novembre 2018, par Trycoder

    I have followed the tutorial from the link below to create an MPEG DASH player using HTML5 and javascript.
    Building a simple MPEG dash player using HTML5 and JS.

    In the given tutorial, it is possible to play the video segments using byte ranges. But for my application, I need the following features.

    1. The video player should read the .m4s segment files and play the video instead of byte ranges.
    2. The amount of data in the MediaSource buffer should be calculated periodically, also the amount of space left in the buffer.

    Are these possible in the given player or Is there a better MPEG DASH Player with the above features ?

    PS : The MPD File is created using FFmpeg.

    ffmpeg  -f  avfoundation -video_size 1280x720 -framerate 30 -i 0 -vcodec libx264  -acodec aac  -b:v 800k  -f dash  -use_template 0  -min_seg_duration 4000 -single_file 1  -start_at_zero -live 1  ffmpeg.mpd

    Also, I tried using the DASH.js player but the documentation is very vast in it. Can we get the size of the source buffer in dash.js (The space available in the source buffer and also the amount of space filled) ? This is the main feature which is required for my project.

    Edit :
    Code which I tried

  • A query on ffmpeg's DASH muxer and setting timeShiftBufferDepth values in MPEG-DASH Media Presentation Description (MPD) files

    18 février 2019, par 林正浩

    The documentation for the webm_dash_manifest muxer mentions the time_shift_buffer_depth option, defined as "Smallest time (in seconds) shifting buffer for which any Representation is guaranteed to be available. "

    What’s the equivalent option/setting for the same in the dash muxer (,if implemented) ?

    Documentation for the webm_dash_manifest muxer

  • buffering period sei in JM reference codec

    14 juillet 2015, par Nani

    Can I know how to encode yuv420 video using JM such that each IDR frame must be associated with Buffering period SEI and picture timing SEI messages. I went through the "encoder.cfg" configure file but i coudn’t find any options to enable buffering period SEI and picture timing SEI messages. Also when I went through the encoder code, I observed that nowhere they are updating the parameter "seiBufferingPeriod.nal_initial_cpb_removal_delay" present in buffering period SEI. I would like to know whether JM supports Buffering period and picture timing SEI’s or not. If supports how to configure encoder and where they are updating the buffering period SEI parameters in the JM encoder.