How to cast RTMP video to Android

I developed an Android application for live streaming via RTSP and it works great. I can play RTSP URLs using Daroon Player and Wondershare . Startup Code for RTSP:

Uri stream = Uri.parse("rtsp://media-us-2.soundreach.net/slcn_lifestyle.sdp"); 
Intent videointent = new Intent(Intent.ACTION_VIEW,stream); 
startActivity(videointent);

Now I need to broadcast real-time video through RTMP, but I can not refer to this process. The requirement is to play RTMP URLs only with Wondershare.

How can I play RTMP URLs on an Android device using a third-party application, i.e. wondershare?

+5
source share
4 answers

, Vitamio. .

+4

, Daroon Player, MX Video Player.

0

Vitamio Android. , .

.

0

RTMP streams are not supported by any player you can find in the play store. (This is because the implementation for RTMP has not yet been implemented. It was developed by Adobe for Flash Player.) The only way to play RTMP streams is to use web browsing with the built-in Flash Player, and then use the RTMP link to the video in HTML code. This is the only way, but unfortunately the user who is watching must install Flash Player.

UPDATE: VLC Player for Android can play RTMP streams. The above information is outdated.

-1
source

All Articles