sitepoint-editors / SPPlayer

50 stars 38 forks source link

Want to do live streaming with Wawza urls #4

Open Jan31 opened 7 years ago

Jan31 commented 7 years ago

I want to play wawza urls rtmp/rtsp or http://asx.xcj/aon.mp3/manifest.mpd file format. can I play using your code? Please suggest

echessa commented 7 years ago

Hi @Jan31 I had never heard of the mpd (MPEG-DASH) format before. Anyway, I searched around and it seems like the Android MediaPlayer library doesn't support mpd. I found the following links that might be useful to you:

  1. MediaPlayer-Extended this is a library that builds up from Android's MediaPlayer. It has added mpeg-dash playback. There's a demo app created with the library on the Play store that you can check out. The first screenshot of the app shows an option of opening a DASH MPD file from disk or from a URL.

  2. Check out this post on StackOverflow. There's a few mentions of Wowza MPD playback.

  3. MultimediaForAndroid this is another library that supports MPEG-DASH playback. It was created by Sony. Here's a blog post that discusses the library.

I hope that helps.