Commit 608fb562 authored by JP Dinger's avatar JP Dinger Committed by Rémi Denis-Courmont

More wording fixes.

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent c1500fa3
...@@ -16,7 +16,7 @@ CMD="" ...@@ -16,7 +16,7 @@ CMD=""
pyschedelic() pyschedelic()
{ {
echo -e "\n- Psychedelic demo -\nconfiguration\n" echo -e "\n- Psychedelic demo -\nconfiguration\n"
echo -en "Please chose an input. Live camera feeds are best.\ninput? " echo -en "Please choose an input. Live camera feeds are best.\ninput? "
read input read input
echo -e "\n$VLC --sub-filter marq --marq-position 8 --marq-size 30 --marq-color 16776960 --marq-marquee \"VLC - Psychedelic video filter\" --vout-filter distort --distort-mode psychedelic $input" echo -e "\n$VLC --sub-filter marq --marq-position 8 --marq-size 30 --marq-color 16776960 --marq-marquee \"VLC - Psychedelic video filter\" --vout-filter distort --distort-mode psychedelic $input"
} }
...@@ -24,9 +24,9 @@ pyschedelic() ...@@ -24,9 +24,9 @@ pyschedelic()
gradient() gradient()
{ {
echo -e "\n- Gradient demo -\nconfiguration\n" echo -e "\n- Gradient demo -\nconfiguration\n"
echo -en "Please chose an input. Live camera feeds are best.\ninput? " echo -en "Please choose an input. Live camera feeds are best.\ninput? "
read input read input
echo -en "Please chose a logo to display (or multiple logos according to the --logo-file syntax)\nlogo? " echo -en "Please choose a logo to display (or multiple logos according to the --logo-file syntax)\nlogo? "
read logofile read logofile
echo "new a broadcast enabled loop echo "new a broadcast enabled loop
setup a input $input setup a input $input
...@@ -39,9 +39,9 @@ control a play" > "`pwd`/demo.vlm" ...@@ -39,9 +39,9 @@ control a play" > "`pwd`/demo.vlm"
mosaic() mosaic()
{ {
echo -e "\n- Mosaic demo -\nconfiguration\n" echo -e "\n- Mosaic demo -\nconfiguration\n"
echo -en "Please chose a background input.\nbackground input? " echo -en "Please choose a background input.\nbackground input? "
read bg read bg
echo -en "Please chose a video to blend.\nvideo? " echo -en "Please choose a video to blend.\nvideo? "
read vid read vid
echo "new a broadcast enabled loop echo "new a broadcast enabled loop
setup a input $vid setup a input $vid
...@@ -54,7 +54,7 @@ control a play" > "`pwd`/demo.vlm" ...@@ -54,7 +54,7 @@ control a play" > "`pwd`/demo.vlm"
opengl() opengl()
{ {
echo -e "\n- OpenGL cube demo -\nconfiguration\n" echo -e "\n- OpenGL cube demo -\nconfiguration\n"
echo -en "Please chose an input.\ninput? " echo -en "Please choose an input.\ninput? "
read input read input
echo -e "\n$VLC -V opengl --opengl-effect transparent-cube $input" echo -e "\n$VLC -V opengl --opengl-effect transparent-cube $input"
} }
...@@ -62,7 +62,7 @@ opengl() ...@@ -62,7 +62,7 @@ opengl()
wall() wall()
{ {
echo -e "\n- Video wall demo -\nconfiguration\n" echo -e "\n- Video wall demo -\nconfiguration\n"
echo -en "Please chose an input.\ninput? " echo -en "Please choose an input.\ninput? "
read input read input
echo -en "Do you want to use rotated laptops/screens ?\n[y/N] " echo -en "Do you want to use rotated laptops/screens ?\n[y/N] "
read rot read rot
...@@ -96,7 +96,7 @@ case "$choice" in ...@@ -96,7 +96,7 @@ case "$choice" in
3) mosaic;; 3) mosaic;;
4) opengl;; 4) opengl;;
5) wall;; 5) wall;;
*) echo "Wrong answer ... try again"; exit 1;; *) echo "Unrecognized input, please try again"; exit 1;;
esac esac
echo -e "\nUse the previous command to run the demo." echo -e "\nUse the previous command to run the demo."
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment