Hey Guy , I want ot streaming video by using VideView class . Can anyone tell me what format is it s

Posted by eddyxd on Stack Overflow See other posts from Stack Overflow or by eddyxd
Published on 2010-05-13T05:18:39Z Indexed on 2010/05/13 5:24 UTC
Read the original article Hit count: 385

Filed under:

Hi , I am the newbie of android, but i hava seen the tutorial and implement some simple applications.

The question i met is that I am tring to stream some video from my server to android, but the android VideoView class just plays the audition sololy without "image"@@!~

Here is my setting and android code :

1. android core code:

mVideoView01.setVideoURI(Uri.parse("rtsp://192.168.16.1:8080/test.sdp"));
mVideoView01.start();

2. my streaming server is VLC and the command is:

vlc -vvv d:\nobody.mp4 --sout=#transcode{vcodec=h264,width=320,hegiht=240}:rtp{dst=192.168.16.1,port=4444,sdp=rtsp://192.168.16.1:8080/test.sdp}

ps: My ip is got from DHCP but I have checked it really can be connected(Android could play audition after all)

ps2: I haved trid to stream some video from "http://www.americafree.tv/" and the playing is good!!@@

So I guess that the problem maybe is caused by streaming Video format, but I have almost tried every figument option form VLC, and it still don't workQQ.

So Have anyone done the same test as me can give me some advice??

Thanks a lot!!!!!

by eddy

© Stack Overflow or respective owner

Related posts about android-widget