Files
tvheadend/pipevavoo/ffpipe.sh
2023-03-28 20:34:55 +02:00

6 lines
199 B
Bash
Executable File

#!/bin/bash
url=$1
auth="$(cat /opt/pipevavoo/authkey)"
ffmpeg -loglevel fatal -user_agent "VAVOO/2.6" -re -i "$url?n=1&b=5&vavoo_auth="$auth"==" -vcodec copy -acodec copy -f mpegts pipe:1
exit 0