[android-developers] Video Streaming in Android Emulator Possible ?.

2010-09-21 Thread Ajmer Singh
Hi All I am new to android, I have a simple question *Is Video Streaming possible in Android Emulator*,I am using the example in Android SDK but it give me message *Sorry Can't play this Video*.I am using Youtube Video to stream in android Emulator. Pls respond. -- Thanks and Regards Ajmer

Re: [android-developers] Video Streaming in Android Emulator Possible ?.

2010-09-21 Thread Ramaraju naga
It is possible...using Mediaplayer classs. see this code MediaPlayer video; setContentView(R.layout.main); VideoView video = (VideoView) findViewById(R.id.video); // Load and start the movie video.setVideoPath(/data/samplevideo.3gp ); video.start(); main layout file ?xml version=1.0

Re: [android-developers] Video Streaming in Android Emulator Possible ?.

2010-09-21 Thread Ajmer singh
I want to stream a video from Network Like From youtube.com. Is that possible in android emulator?. On Tue, Sep 21, 2010 at 1:34 PM, Ramaraju naga v.nagaramar...@gmail.comwrote: It is possible...using Mediaplayer classs. see this code MediaPlayer video; setContentView(R.layout.main);