The following code I am using to stream a video kept in the server. Now, this works well with almost all devices. But when it comes to android 2.3.3, it says either "Video cannot be played" or just a blank screen where I am able to see the video controls and seekbar moving, but making the video not shown.
I am not getting the scenario behind it. Is there any restrictions for this version? As per I did research on this, there is not.
Can any body please look into this?
VideoView videoView = (VideoView)findViewById(R.id.your_video_view);
String videoUrl = "http://racontours.mediaserve.tv/flash_media/sample_iPod.m4v";
Uri uri = Uri.parse(videoUrl);
videoView.setVideoURI(uri);
videoView.requestFocus();
videoView.start();
Update:
I am quite surprised, this code just now I tested with many devices. But it works only in htc Nexus one and LG optimus series phones. How this is possible?
Update 2:
The issue somehow is solved if I use 3gp files still it is not the perfect solution. What I want is can we remove/edit the dialog which says "Sorry, this video cannot be played".
