Skip to content
Snippets Groups Projects
Verified Commit bb31dd0f authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

feat: initial commit

parents
Branches main
No related tags found
No related merge requests found
FROM ubuntu
RUN apt-get update && apt-get install -y ffmpeg
RUN apt-get install -y i965-va-driver-shaders intel-media-va-driver-non-free
ADD . /opt/voc/
ENTRYPOINT [ "/opt/voc/streaming-sink.sh" ]
#!/bin/bash
if [[ -z "$VOC_STREAMING_AUTH" ]]
then
echo "[ERROR] failed to start stream, credentials missing!"
exit 1
fi
if [[ -z "$VOC_ENDPOINT" ]]
then
echo "[ERROR] failed to start stream, encoder endpoint missing!"
exit 1
fi
ffmpeg -y -nostdin -hide_banner -re \
-i "tcp://$VOC_ENDPOINT:15000?timeout=3000000" \
-c:v libx264 \
-r:v:0 10 -async 1 \
-preset ultrafast -tune zerolatency \
-c:a aac -b:a 192k -ar 48000 \
-map 0:v:0 \
-map 0:a:0 \
-threads 0 \
-f flv \
"rtmp://a.rtmp.youtube.com/live2/$VOC_STREAMING_AUTH"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment