Boy
Boy

Reputation: 1

How calculate $Time$ variable for name of dash media segments?

I have an MPD playlist. I'd like to find out what are URLs of media segments for next period. The example is like this

     <SegmentTemplate timescale="10000000" initialization="Video-$RepresentationID$-init.mp4" media="Video-$RepresentationID$-$Time$.mp4">
      <SegmentTimeline>
        <S t="2083838574453329" d="100053337" />
        <S d="100053332" r="1" />
        <S d="99839999" />
        <S d="100053337" />
      </SegmentTimeline>
    </SegmentTemplate>

How calculate $Time$ variabel for each period of dash segment?

Upvotes: 0

Views: 665

Answers (1)

Anonymous Coward
Anonymous Coward

Reputation: 1273

The DASH specification is freely available at https://www.iso.org/standard/79329.html and clearly documents how to determine the URL of any segment listed in the manifest.

Edit 09/08/23: A newer version of the specification is publicly available to download at no cost at https://www.iso.org/standard/83314.html (ignore the option to purchase and follow the link to the ITTF download page)

Upvotes: -1

Related Questions