i just wanted to know is it possible to play youtube videos from youtube videoID instead of providing the direct link to the MP4 video file??
private void playVideo() {
mYouTuDraggingView.show();
// something like
mVideoView.setUp("https://youtube.com/watch?v=youTubeVideoID?raw=true");
mVideoView.setUp(songPlaying);
mVideoView.start();
MediaPlayerManager.instance().setScreenScale(ScaleType.SCALE_CENTER_CROP);
}
My requirement is to play videos directly from youtube and retain the functionalities of goMin(); , goMax(); , fullScreenChange(); methods of this awesome project..