mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:50 +02:00
22 lines
730 B
YAML
22 lines
730 B
YAML
youtube:
|
|
image: vimagick/ffmpeg
|
|
entrypoint: sh
|
|
command:
|
|
- -c
|
|
- ffmpeg -f lavfi -i anullsrc -rtsp_transport udp -i $$RTMP_URI -tune zerolatency -vcodec mpeg4 -pix_fmt + -c:v copy -c:a aac -f flv $$RTMP_URI
|
|
environment:
|
|
- RTSP_URI=rtsp://10.50.254.197/live
|
|
- RTMP_URI=rtmp://a.rtmp.youtube.com/live2/xxxx-xxxx-xxxx-xxxx
|
|
restart: always
|
|
|
|
bilibili:
|
|
image: vimagick/ffmpeg
|
|
entrypoint: sh
|
|
command:
|
|
- -c
|
|
- ffmpeg -f lavfi -i anullsrc -rtsp_transport udp -i $$RTSP_URI -tune zerolatency -vcodec mpeg4 -pix_fmt + -c:v copy -f flv $$RTMP_URI
|
|
environment:
|
|
- RTSP_URI=rtsp://192.168.1.137/live
|
|
- RTMP_URI=rtmp://js.live-send.acg.tv/live-js/?streamname=xxxx&key=xxxx
|
|
restart: unless-stopped
|