According to this thread: 
http://groups.google.com/group/android-developers/browse_thread/thread/a68113ee42f62353
there are issues streaming with the emulator, so you may have to test
on a G1 device.

Also, I've been able to play back the video RTSP streams from
http://www.americafree.tv/

For example - this works on my G1:

private VideoView mVideoView;
...
mVideoView = (VideoView) findViewById(R.id.MainVideoView);
mVideoView.setVideoURI(Uri.parse("rtsp://video2.americafree.tv/
AFTVHorrorH26496.sdp"));
mVideoView.start();

You could probably do the same thing with the MediaPlayer class, but
it was easier for me to use a VideoView since I was playing back
video.

-Jason



On Dec 24 2008, 11:30 pm, lucky <wjj...@gmail.com> wrote:
> Kamil,
>
> Do you do such RTSP streaming test on emulator or G1 phone?
> Or is it possible to test it on emulator?
>
> BRs
> wjjsun
>
> On Dec 20, 9:14 pm, kamil <kamit...@gmail.com> wrote:
>
> > Hi,
> > maybe someone could post here URL of someRTSPstream which is known
> > to work with G1?
> > It would really help a lot in finding out why SDP answer is being
> > rejected.
>
> > I believe there must be at least one person which has been testing
> > Android'sRTSPstack ;) Or maybe I'm the only one who leaves testing
> > to the customer ;D
>
> > thanks
> > Kamil
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to