Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial Track Selection for Tiled video #2045

Closed
kathariyabiren opened this issue Jun 29, 2017 · 2 comments
Closed

Initial Track Selection for Tiled video #2045

kathariyabiren opened this issue Jun 29, 2017 · 2 comments

Comments

@kathariyabiren
Copy link

kathariyabiren commented Jun 29, 2017

27562681-7fed2f0c-5a82-11e7-9001-f5895854a242

The above manifest is for 3x3 tiled video and thus has 9 different adaptation set, one for each tile. When I give this manifes file to dash palyer, it plays the last tile. This imples, it simply ignores all the previous adaptation set and considers the last one.

27565996-c79d1e20-5a96-11e7-9e76-158c37b94e7d

I want to play only the selected tile in a given dash player. Setting the current track using ("setCurrentTrack(track)") is not working. How setting the initial track can be done before SREAM_INITIALIZED event even happens? Or if any other way to resove this issue?

I am currently generating 9 different MPDs with only one adaptation set for each tile. This is working but this is a roundabout method.

@siropeich
Copy link
Contributor

@kathariyabiren you could try using viewpoints. For example:

<AdaptationSet mimeType="video/mp4" contentType="video" subsegmentAlignment="true" subsegmentStartsWithSAP="1" par="16:9">
   <Viewpoint schemeIdUri="urn:mpeg:dash:viewpoint:2011" value="vp2"/>
   <SegmentTemplate duration="120" timescale="30" media="$RepresentationID$/$RepresentationID$_$Number$.m4v" startNumber="1" initialization="$RepresentationID$/$RepresentationID$_0.m4v"/>
   <Representation id="bbb_30fps_1024x576_2500k" codecs="avc1.64001f" bandwidth="3134488" width="1024" height="576" frameRate="30" sar="1:1" scanType="progressive"/>
</AdaptationSet>
player.setInitialMediaSettingsFor('video', {
    viewpoint: 'vp2'
});

@epiclabsDASH
Copy link
Contributor

Closing this one. @kathariyabiren, please, feel free to reopen it in case you need further help with this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants