Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Streaming Video From Android

I'm trying to stream video from the Android phone, which should be watched in an mediaplayer. I've been looking at http://www.mattakis.com/blog/kisg/20090708/broadcasting-video-with-android-without-writing-to-the-file-system which seems to be a dead end since it send the raw file data, and not a streamable format.

Then I tried using some code from SipDroid, more specific; parts of VideoCamera.java, RtpPacket.java and RtpSocket.java, which gives a stream on UDP, however these is not playable in i.e. mplayer(can't detect the codec). Wireshark tells that it is a UDP packet and not a RTP packet so something might be missing?

I'm kind'a stuck, have you any suggestions how to get past this bump?

like image 590
plazm Avatar asked Nov 11 '10 14:11

plazm


People also ask

Can you stream video on Android?

Mobile live streaming is right within the YouTube app. Available for Apple and Android. Schedule live streams for later or stream content in real-time. Easy-to-use platform familiar to YouTube creators.

What is live stream for Android?

Live streaming lets you interact with your audience in real time with a video feed, chat, and more.


1 Answers

Right click on the packet in Wireshark and select the decode as option. Then select rtp. Now you can see RTP packets in Wireshark.

like image 92
kks Avatar answered Oct 13 '22 11:10

kks