Hi, I have successfully implemented the raspivid command to stream the live video on the web. raspivid -t 0 -w 960 -h 540 -fps 25 -b 500000 -vf -o - | ffmpeg -i - -vcodec copy -an -f flv -metadata streamName=myStream tcp://0.0.0.0:6666 I am trying to add some controls on running live video steam lik...