Page 1 of 1

Cloned Video is showing Taskbar in fullscreen

Posted: 27 Mar 2021 20:08
by DanielK117
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 without borders and without displaying the windows taskbar.

This are my settings:

@"--video-splitter=clone",
@"--clone-count=2",
@"--video-x=" + x, <= for example -1920
@"--video-y=" + y, <= for example: 1
@"--no-video-deco",
@"--autoscale",
@"--no-embedded-video",
@"--width=" + secondaryMonitor.Bounds.Width,
@"--height=" + secondaryMonitor.Bounds.Height,
@"--video-on-top",
@"--fullscreen"


This is working but the taskbar isnt hidden propably because it is not a real fullscreen. It is not working when the monitor are setup this way:

Image

BUT it is working and the taskbar is hidden if the monitors are setup on different heights (But this is not a good workaround):

Image

Probably, because the Y-Value is not 0

I would deeply appreciate your help in this matter. I tried many different parameters and googeld for hours but nothing helped.