Could anyone provide the configuration for a video in case of adaptive bit rate. I have a smil based m3u8 format. Is their any option that we can avail in seek bar for HD option. I use VITAMIO player for my device.
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
if (!LibsChecker.checkVitamioLibs(this))
return;
setContentView(R.layout.videoview);
mEditText = (EditText) findViewById(R.id.url);
//mVideoView = (VideoView) findViewById(R.id.surface_view);
mVideoView=(io.vov.vitamio.widget.VideoView) findViewById(R.id.surface_view);
if (path == "") {
// Tell the user to provide a media file URL/path.
Toast.makeText(this, "Please edit VideoViewDemo Activity, and set path" + " variable to your media file URL/path", Toast.LENGTH_LONG).show();
return;
} else {
/*
* Alternatively,for streaming media you can use
* mVideoView.setVideoURI(Uri.parse(URLstring));
*/
mVideoView.setVideoPath(path);
mVideoView.setMediaController(new MediaController(this));
mVideoView.requestFocus();
mVideoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mediaPlayer) {
// optional need Vitamio 4.0
mediaPlayer.setPlaybackSpeed(1.0f);
mediaPlayer.setVideoQuality(MediaPlayer.VIDEOQUALITY_HIGH);
mediaPlayer.setAdaptiveStream(true);
//Log.d("**********************Testing ",""+mediaPlayer.getCurrentFrame());
//Log.d("TESTING dvdherdhdfhdfhdfh ",""+MediaPlayer.VIDEOQUALITY_LOW);
}
});
}
}
public void startPlay(View view) {
String url = mEditText.getText().toString();
path = url;
if (!TextUtils.isEmpty(url)) {
mVideoView.setVideoPath(url);
}
}
public void openVideo(View View) {
mVideoView.setVideoPath(path);
}