Picasaを使用すると、Androidアプリで画像をすばやくダウンロードして表示できました。今、私は私のS3サーバからの私のビデオをストリーミングし、ここに私のコードよりも速く私のアプリを介してそれらを再生したい:VideoViewでバッファリングとビデオ再生を高速化
try {
MediaController VideoController = new MediaController(VideoPlayerActivity.this);//Creates a media controller to this activity.
VideoController.setAnchorView(AdVideoView);//Adds the media controller to the video view.
Uri video = Uri.parse(VideoURL);//Creates a Uri to hold the URL of the video.
AdVideoView.setMediaController(VideoController);//Add the media controller to the video view.
AdVideoView.setVideoURI(video);//Make the video view play from the Uri.
} catch(Exception e) {
Log.e("Video Stream Error", e.getMessage());//Sets the message for the log.
e.printStackTrace();//Displays the error in the stack trace.
e.notify();
}
GitHubのか、より良いコードを通じて動画を表示するためのより高速な方法はありますか?
ありがとうございます!