jbilcke-hf's picture
jbilcke-hf HF staff
initial commit
07ae658
raw
history blame
226 Bytes
#!/bin/bash
echo "starting the video collection stream.."
while true; do
sleep 1
for f in $WEBTV_VIDEO_STORAGE_PATH*.mp4
do
ffmpeg -re -i "$f" -vcodec copy -f mpegts -y video.pipe 2>/dev/null
done
done