【问题标题】:Android can't play video issueAndroid无法播放视频问题
【发布时间】:2018-04-11 11:02:13
【问题描述】:
【问题讨论】:
标签:
android
video
video-streaming
video-processing
android-videoview
【解决方案1】:
它正在使用 VideoView
VideoView videoview;
videoview = (VideoView) findViewById(R.id.VideoView);
try {
// Start the MediaController
MediaController mediacontroller = new MediaController(
VideoPlayActivity.this);
mediacontroller.setAnchorView(videoview);
// Get the URL from String VideoURL
Uri video = Uri.parse("http://clips.vorwaerts-gmbh.de/VfE_html5.mp4");
videoview.setMediaController(mediacontroller);
videoview.setVideoURI(video);
} catch (Exception e) {
Log.e("Error", e.getMessage());
e.printStackTrace();
}
videoview.requestFocus();
videoview.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
// Close the progress bar and play the video
public void onPrepared(MediaPlayer mp) {
videoview.start();
}
});