I am using the code below to play MP4 video (H.264 codecs, AAC) from a URL (URL is fine, no redirect, 404 or something else). However, I continue to receive errors "attempt to call getduration without a valid media player" or ERROR / MediaPlayer (382): error (1, -2147483648). Does anyone know how to fix this? Thanks
VideoView video = (VideoView) findViewById(R.id.myvideo); Intent videoint=getIntent(); String url = videoint.getStringExtra("url"); //The url pointing to the mp4 video.setVideoPath(url); video.requestFocus(); video.setMediaController(new MediaController(this)); video.start();
android
Tri vuong
source share