Reputation: 1965
I am trying to develop an app for live channels streaming
But getting trouble when try to play from m3u
play list .
http://jan.newmarch.name/android/StreamingAudio.html
This above link describe Streaming Audio from m3u
play list . But I want to
Streaming Video from m3u play list .
Upvotes: 3
Views: 4329
Reputation: 1965
Finally I got the answer
You can parse m3u play list Using by m3u playlist parser Library in java or U Can create custom m3u play list parser also. I would like share the link one of the m3u playlist parser Library
Upvotes: 0
Reputation: 347
If i understood your question correctly, you want to set up a video streaming server. The mostly common video streaming format for internet is HLS, which uses m3u8 playlists. You can start with ffmpeg using this tutorial (or any of tens of the others):
http://www.bogotobogo.com/VideoStreaming/ffmpeg_http_live_streaming_hls.php
However there are a lot of possible approaches depending on your project scale and requirements.
Upvotes: 1
Reputation: 2576
Look into VLC as it has strong streaming capabilities, and support for probably any video/audio format. You will need to integrate libvlc in your app and pass command-line options to the libvlc.
Upvotes: 1