Multiple monitor support with 4 monitors

Microsoft Windows specific usage questions
Forum rules
Please post only Windows specific questions in this forum category. If you don't know where to post, please read the different forums' rules. Thanks.
mcubed
New Cone
New Cone
Posts: 3
Joined: 29 Sep 2009 00:56

Multiple monitor support with 4 monitors

Postby mcubed » 29 Sep 2009 01:35

Hello,

We tried for some time now to achieve following: we need VLC to display full-screen 4 different videos on 4 monitors, and if possible to start simultaneously

We have a windows xp pc running with a dual-core and a Matrox grafic card with 4 DVI outputs; so far no problem to run different instances of VLC each with a different content but all of it has to be done manually.

With a command line we manage to have VLC open several instances in fullscreen but cannot determine on which display (we tried --directx-device={\\.\DISPLAY4}) but it would always only open in the primary monitor. If we change the settings directly in VLC (Video>Ouput>DirectX>\\.\DISPLAY4) and open the file with the mouse, it works i mean it opens the video in the desired monitor (only with version 0.9.6. so, not in the latest), but this doesn't help since only the latest setting is saved, and we need VLC to show each separate file in a different monitor.

Has anybody an idea, a clue, a fix, or knows a programer who can help us, thank you very much in advance!

Greg

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Multiple monitor support with 4 monitors

Postby Jean-Baptiste Kempf » 29 Sep 2009 09:10

I think this needs to be fixed in the code.
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

mcubed
New Cone
New Cone
Posts: 3
Joined: 29 Sep 2009 00:56

Re: Multiple monitor support with 4 monitors

Postby mcubed » 29 Sep 2009 09:18

Bonjour JB

What do you mean? That the command line is incorrect?
Best
Greg

mcubed
New Cone
New Cone
Posts: 3
Joined: 29 Sep 2009 00:56

Re: Multiple monitor support with 4 monitors

Postby mcubed » 29 Sep 2009 09:34

It would also helps us a bit if, after opening all 4 instances of VLC and have them dragged in the desired monitor, there was a possibility to have them start at once, simultaneously (Quicktime has a similar function "Start all instances simultaneously"), is this possible with VLC too?

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Multiple monitor support with 4 monitors

Postby Jean-Baptiste Kempf » 29 Sep 2009 09:45

No, I mean that the VLC code is broken for that.
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

campamanu
New Cone
New Cone
Posts: 5
Joined: 11 Nov 2009 15:10

Re: Multiple monitor support with 4 monitors

Postby campamanu » 11 Nov 2009 15:34

Thank you for your response. Does it work in previous version? which version?
What was the syntaxe to display 4 screens?
My command line to open 4 instances in fullscreen in .bat file is :
vlc -f -R file1.avi | vlc -f -R file2.avi |vlc -f -R file3.avi \vlc -f -R file4.avi
Is it correct ?
Thank you

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Multiple monitor support with 4 monitors

Postby Jean-Baptiste Kempf » 11 Nov 2009 18:45

Probably some 0.8.5 or earlier.
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

campamanu
New Cone
New Cone
Posts: 5
Joined: 11 Nov 2009 15:10

Re: Multiple monitor support with 4 monitors

Postby campamanu » 12 Nov 2009 08:46

Ok j-b, I'll try. What is the correct command line?

VLC_help
Mega Cone Master
Mega Cone Master
Posts: 25661
Joined: 13 Sep 2006 14:16

Re: Multiple monitor support with 4 monitors

Postby VLC_help » 12 Nov 2009 17:41

use start
so

Code: Select all

start vlc video.avi start vlc video2.avi start vlc video3.avi vlc video4.avi

campamanu
New Cone
New Cone
Posts: 5
Joined: 11 Nov 2009 15:10

Re: Multiple monitor support with 4 monitors

Postby campamanu » 13 Nov 2009 10:47

Thanks for the "start" command.
What is the command line with " --directx-device={}" and the DISPLAY ?

VLC_help
Mega Cone Master
Mega Cone Master
Posts: 25661
Joined: 13 Sep 2006 14:16

Re: Multiple monitor support with 4 monitors

Postby VLC_help » 13 Nov 2009 19:03

Code: Select all

"C:\Program Files\VideoLAN\VLC\vlc.exe" -f --no-embedded-video --directx-device="\\.\DISPLAY2" --no-video-deco
if you just want video.

campamanu
New Cone
New Cone
Posts: 5
Joined: 11 Nov 2009 15:10

Re: Multiple monitor support with 4 monitors

Postby campamanu » 14 Nov 2009 23:23

I wrote a file video.bat with these command lines, in "C:\Program Files\VideoLAN\VLC".
Files video1.avi and video2.avi are in the same directory.

cd C:\Program Files\VideoLAN\VLC
start vlc -f -R --no-embedded-video --no-video-title-show --directx-device="\\.\DISPLAY1" --no-video-deco video1.avi
start vlc -f -R --no-embedded-video --no-video-title-show --directx-device="\\.\DISPLAY2" --no-video-deco video2.avi

It works. For now I only have 2 monitors. I would try with 4 monitors when I had my second graphics card. Hopefully it works well.
Thank you very much VLC_help.

campamanu
New Cone
New Cone
Posts: 5
Joined: 11 Nov 2009 15:10

Re: Multiple monitor support with 4 monitors

Postby campamanu » 14 Nov 2009 23:35

I forgot. I got tested with version 1.0.3.


Return to “VLC media player for Windows Troubleshooting”

Who is online

Users browsing this forum: No registered users and 53 guests