Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.