My current play logic is implemented as follows:
Code: Select all
media = new Media(vlc, nextMediaItem.FileNameWithPath);
videoClipMediaPlayer.Media = media;
this.videoClipMediaPlayer.Play();
In order to play videos more smoothly, I would like to buffer the video already when the user has selected a video.
Is there a way to start buffering before the play() function?