Zohaib
Zohaib

Reputation: 11

how can I implement youtube live streaming in my android screen recorder app to live stream my android screen over Youtube?

I have developed a screen recording application. Now I want the live streaming feature while recording screen. I want this live stream on youtube. From my research I only found how to live stream using camera or how to just open live streaming intent. Can you guys guide me in the right direction it'll be very helpful

Thank you for your time

Upvotes: 1

Views: 194

Answers (1)

Winlin
Winlin

Reputation: 1424

You need a media server for live streaming, please read here for detail:

Android(publisher) --RTMP--> SRS/Nginx--RTMP/HLS--> Android(player)
                            (YouTube)

The media server SRS/Nginx is actually similar to the YouTube-like platform.

About the live streaming publisher or player, you're able to use FFmpeg, OBS or ijkplayer, about more information, please read this link.

Upvotes: 0

Related Questions