bitmovin / libdash

MPEG-DASH Access Library - Official ISO/IEC MPEG-DASH Reference Implementation
https://bitmovin.com/
589 stars 169 forks source link

How can I push the libdash into Android MediaPlayer(NuPlayer::Source)? #16

Open guoanxiaodi opened 7 years ago

guoanxiaodi commented 7 years ago

Dear friends, 1.As we know, NuPlayer has three sources: 1. HTTPLiveSource(HLS) 2.GenericSource(HTTP/fd) 3.RTSPSource Now I want to push the libdash into Android Native Player: NuPlayer 2.I only know the simple libdash API function: IDASHManager *manager = CreateDashManager(); manager->open(); manager->setBufferLength(30); manager->start(); manager->read(); I think this is the VOD play, In live session, I think I must to do some other operation, such as: refresh playlist(mpd) like HLS.

Could you please give some advices or guideline to me for "libdash push into Android NuPlayer"?