mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-30 09:16:41 +02:00
11 lines
359 B
YAML
11 lines
359 B
YAML
ffmpeg:
|
|
image: vimagick/ffmpeg
|
|
entrypoint: sh
|
|
command:
|
|
- -c
|
|
- ffmpeg -f lavfi -i anullsrc -rtsp_transport udp -i $$RTMP_DEV -tune zerolatency -vcodec mpeg4 -pix_fmt + -c:v copy -c:a aac -f flv $$RTMP_URI
|
|
environment:
|
|
- RTMP_DEV=rtsp://10.50.254.197/live
|
|
- RTMP_URI=rtmp://a.rtmp.youtube.com/live2/xxxx-xxxx-xxxx-xxxx
|
|
restart: always
|