1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/ffmpeg/docker-compose.yml

22 lines
730 B
YAML
Raw Normal View History

2018-02-04 06:35:09 +00:00
youtube:
2017-07-31 23:17:03 +00:00
image: vimagick/ffmpeg
entrypoint: sh
command:
- -c
2018-02-04 06:35:09 +00:00
- 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
2017-07-31 23:17:03 +00:00
environment:
2018-02-14 14:15:39 +00:00
- RTSP_URI=rtsp://10.50.254.197/live
2017-07-31 23:17:03 +00:00
- RTMP_URI=rtmp://a.rtmp.youtube.com/live2/xxxx-xxxx-xxxx-xxxx
restart: always
2018-02-04 06:35:09 +00:00
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