Fix functional tests & multiple bugfixes & use CES

This commit is contained in:
Brendan LE GLAUNEC
2016-11-12 12:55:32 +01:00
committed by Brendan Le Glaunec
parent 5be5124e70
commit 58bcfb9ee5
34 changed files with 663 additions and 356 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
port=$1
user=$2
passw=$3
route=$4
url=""
# need first argument at least
if [ "$2" == "" ]; then
url="rtsp://:$port/$route"
else
url="rtsp://$user:$passw@:$port/$route"
fi
./camera_emulation_server -u $2 -p $3 -r $4
echo "Stream started on ${url}"