I am trying to play an mp4 video on android device from a web url on android 2.2 froyo version.
I wrote the code,
String path="http://files.storageroomapp.com/accounts/5062e51b0f66024666000092/collection/50cb1fd60f66021088000aa2/entries/50e83bf60f660234c2001282/fields/k50cb1fd60f66021088000a9f/file.mp4";
VideoView videoView = (VideoView) findViewById(R.id.VideoView01);
MediaController mc = new MediaController(this);
mc.setAnchorView(videoView);
mc.setMediaPlayer(videoView);
Uri video = Uri.parse(path);
videoView.setMediaController(mc);
videoView.setVideoURI(video);
videoView.start();
It gives a debug message on logcat,
MediaPlayer: Couldn't open file on client side, trying server side
and on device it is giving error "sorry this video can not be played".
Please help on this issue. thanks.