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?
source
share