From d8c7773d2bf8d13ba536f10c4dabc7d33eb7ddb0 Mon Sep 17 00:00:00 2001 From: niels Date: Thu, 22 Oct 2015 01:14:29 +0200 Subject: [PATCH] add doc on video-wall --- .../veejay-server/doc/video-wall.md | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 veejay-current/veejay-server/doc/video-wall.md diff --git a/veejay-current/veejay-server/doc/video-wall.md b/veejay-current/veejay-server/doc/video-wall.md new file mode 100644 index 00000000..ab6092b8 --- /dev/null +++ b/veejay-current/veejay-server/doc/video-wall.md @@ -0,0 +1,59 @@ +Videowall in veejay + +Requires: lvdshared from pluginpack (https://github.com/c0ntrol/veejay/tree/master/veejay-current/plugin-packs/lvdshared) + +You can setup a video wall by starting multiple veejays. One of the veejays must be the master veejay, responsible for deciding which veejay renders what part of the image. Only the master requires a special command-line option and a file to read its configuration from. The other veejays can be started normally. + +First, to setup a video wall you need to write a configuration file that lists the veejay connections: + + screen=2x3 + row=0 col=0 port=4490 hostname=localhost + row=0 col=1 port=5490 hostname=localhost + row=0 col=2 port=6490 hostname=localhost + row=1 col=0 port=7490 hostname=localhost + row=1 col=1 port=8490 hostname=localhost + row=1 col=2 port=9490 hostname=localhost + +Then, you continue starting 6 more veejays. If you start them on other machines, change the hostname resp. or enter an ip address. + +If the other veejay is running locally, veejay will share its memory otherwise the image part is send through the network. + +Finally, you start the master veejay by invoking the `--split-screen` option. + +`veejay --split-screen -a0 -Z6` + + +Examples: +(test/videowall/videowall.sh) + + #!/bin/bash + # split screen configuration file is in $HOME/.veejay/splitscreen.cfg + + # write new config file! + cat << EOF > $HOME/.veejay/splitscreen.cfg + screen=2x3 + row=0 col=0 port=4490 hostname=localhost + row=0 col=1 port=5490 hostname=localhost + row=0 col=2 port=6490 hostname=localhost + row=1 col=0 port=7490 hostname=localhost + row=1 col=1 port=8490 hostname=localhost + row=1 col=2 port=9490 hostname=localhost + EOF + # end of writing new config file + + # start the individual screens + + veejay -d -a0 -w 240 -h 288 -D -p4490 & + veejay -d -a0 -w 240 -h 288 -D -p5490 & + veejay -d -a0 -w 240 -h 288 -D -p6490 & + veejay -d -a0 -w 240 -h 288 -D -p7490 & + veejay -d -a0 -w 240 -h 288 -D -p8490 & + veejay -d -a0 -w 240 -h 288 -D -p9490 & + + + sleep 5 + + # start the master screen + + veejay --split-screen -d -a0 -Z6 -w 720 -h 576 +