Skip to main content

Posts

Showing posts with the label video-streaming

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? Source: Tips4all

Video Playing in Android tablet

I want to play a large video using http on an android tablet. I don't want to save that viedo on device. That is, if the large video data received by the web service is in little chunks, I don't want to save that binary data and later play the video. I want play the video as it downloads. Is this possible?