3 ########################################################################
4 # VLC demo command line generator
6 ########################################################################
8 #TODO: change on Max OS X
9 if test ".`uname -s`" = ".Darwin"; then
10 VLC
="./VLC.app/Contents/MacOS/VLC --quiet --color "
12 VLC
="./vlc --quiet --color "
18 echo -e "\n- Psychedelic demo -\nconfiguration\n"
19 echo -en "Please choose an input. Live camera feeds are best.\ninput? "
21 echo -e "\n$VLC --sub-source marq --marq-position 8 --marq-size 30 --marq-color 16776960 --marq-marquee \"VLC - Psychedelic video filter\" --vout-filter distort --distort-mode psychedelic $input"
26 echo -e "\n- Gradient demo -\nconfiguration\n"
27 echo -en "Please choose an input. Live camera feeds are best.\ninput? "
29 echo -en "Please choose a logo to display (or multiple logos according to the --logo-file syntax)\nlogo? "
31 echo "new a broadcast enabled loop
33 setup a output #duplicate{dst=mosaic-bridge,select=video}
34 control a play" > "`pwd`/demo.vlm"
35 echo "VLM batch file saved to `pwd`/demo.vlm"
36 echo -e "\n$VLC --sub-source mosaic:marq:logo --mosaic-width 120 --mosaic-height 90 --mosaic-cols 1 --mosaic-rows 1 --marq-position 8 --marq-size 30 --marq-color 65280 --marq-marquee \"VLC - Gradient video filter\" --logo-file $logofile --vout-filter distort --distort-mode gradient --extraintf telnet --telnet-host localhost --vlm-conf `pwd`/demo.vlm $input"
41 echo -e "\n- Mosaic demo -\nconfiguration\n"
42 echo -en "Please choose a background input.\nbackground input? "
44 echo -en "Please choose a video to blend.\nvideo? "
46 echo "new a broadcast enabled loop
48 setup a output #duplicate{dst=mosaic-bridge,select=video}
49 control a play" > "`pwd`/demo.vlm"
50 echo "VLM batch file saved to `pwd`/demo.vlm"
51 echo -e "\n$VLC --sub-source mosaic:marq --marq-marque \"VLC - mosaic\" --marq-position 6 --mosaic-width 120 --mosaic-height 90 --mosaic-rows 1 --mosaic-cols 1 --mosaic-alpha 150 --extraintf telnet --telnet-host localhost --vlm-conf `pwd`/demo.vlm $bg"
56 echo -e "\n- Video wall demo -\nconfiguration\n"
57 echo -en "Please choose an input.\ninput? "
59 echo -en "Do you want to use rotated laptops/screens ?\n[y/N] "
63 echo -e "\nLeft hand side:\n$VLC --vout-filter wall:transform --transform-type 90 --wall-cols 2 --wall-rows 1 --wall-active 0 $input"
64 echo -e "\nRight hand side:\n$VLC --vout-filter wall:transform --transform-type 90 --wall-cols 2 --wall-rows 1 --wall-active 1 --sub-source marq --marq-marquee \"VLC - Video wall\" $input"
67 echo -e "\nLeft hand side:\n$VLC --vout-filter wall --wall-cols 2 --wall-rows 1 --wall-active 0 --sub-source marq --marq-marquee \"VLC - Video wall\" $input"
68 echo -e "\nRight hand side:\n$VLC --vout-filter wall --wall-cols 2 --wall-rows 1 --wall-active 1 $input"
75 1. psychedelic video filter
76 2. gradient video filter
81 echo -n "demo number? "
89 *) echo "Unrecognized input, please try again"; exit 1;;
92 echo -e "\nUse the previous command to run the demo."
93 echo "Note: make sure that you reset your preferences before running these demos."