Hi there, i would like to play a video with VLC on 2 monitors simultaneously. In the command line help the following is described about cloning: Clone video filter (clone) Duplicate your video to multiple windows and/or video output modules --clone-count=<integer> Number of clones Number of video wi...
Is there any way to buffer a video before it plays? My current play logic is implemented as follows: media = new Media(vlc, nextMediaItem.FileNameWithPath); videoClipMediaPlayer.Media = media; this.videoClipMediaPlayer.Play(); Currently, buffering happens only when the Play() function is called. In ...
I have a problem regarding the clone-feature of the VLC-API. This are my settings: This is working but the taskbar isnt hidden propably because it is not a real fullscreen. I have a problem regarding the clone-feature of the VLC-API. I want to display the video on the second monitor in fullscreen wi...
I found a solution with the following Command line parameters, that works almost perfect: @"--video-splitter=clone", @"--clone-count=2", @"--video-x=" + x, @"--video-y=" + y, @"--no-video-deco", @"--no-embedded-video", @"--width="...
Hi there, I have a C# application which uses a LibVLC VideoView. I am trying to play a video both as a small preview in my application, and in full screen on an external monitor. So far I am using the following solution: When creating the MediaPlayer object, I'm using the command line options "...
is there a way to change the update speed of the LibVLCSharp MediaPlayer TimeChanged-Event? I use this event to update the remaining playtime of my video. But this is too slow for my purpose. I would like to update the remaining time every 10ms. Is that possible? My Code: private void InitMediaPlaye...