atyenoria / janus-webrtc-gateway-docker

Perfect Docker Image for Media Streaming Expert User ( https://github.com/meetecho/janus-gateway )
688 stars 200 forks source link

How do I run rtmp to webrtc? #49

Closed artemsh5432 closed 1 year ago

artemsh5432 commented 4 years ago

I started Docker, but I don't understand how to run rtmp to recode to webrtc?

riatzukiza commented 4 years ago

I also would like some help here, when I run the command located in the readme, I get the following:

[aaron@prometheus janus-webrtc-gateway-docker]$ ffmpeg -y -i  "rtmp://$IP:80/rtmp_relay/$1  live=1"  -c:v libx264 -profile:v main -s 640x480  -an -preset ultrafast  -tune zerolatency -f rtp  rtp://$IP:$PORT
ffmpeg version n4.2.1 Copyright (c) 2000-2019 the FFmpeg developers
  built with gcc 9.2.0 (GCC)
  configuration: --prefix=/usr --disable-debug --disable-static --disable-stripping --enable-fontconfig --enable-gmp --enable-gnutls --enable-gpl --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libdav1d --enable-libdrm --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libiec61883 --enable-libjack --enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libv4l2 --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxcb --enable-libxml2 --enable-libxvid --enable-nvdec --enable-nvenc --enable-omx --enable-shared --enable-version3
  libavutil      56. 31.100 / 56. 31.100
  libavcodec     58. 54.100 / 58. 54.100
  libavformat    58. 29.100 / 58. 29.100
  libavdevice    58.  8.100 / 58.  8.100
  libavfilter     7. 57.100 /  7. 57.100
  libswscale      5.  5.100 /  5.  5.100
  libswresample   3.  5.100 /  3.  5.100
  libpostproc    55.  5.100 / 55.  5.100
[rtmp @ 0x55d5b227ec00] Detected librtmp style URL parameters, these aren't supported by the libavformat internal RTMP handler currently enabled. See the documentation for the correct way to pass parameters.
[rtmp @ 0x55d5b227ec00] Cannot read RTMP handshake response
rtmp://localhost:80/rtmp_relay/  live=1: End of file

I am getting a sense there is some assembly required with this feature, that I may have to set up some nginx configs specifically for this?

I've only ever worked with the video conferencing part of janus

riatzukiza commented 4 years ago

If I run the command exactly as its found in the readme, inside of the docker, I get:

[aaron@prometheus janus-webrtc-gateway-docker]$ docker exec -it janus /bin/bash
root@prometheus:/# IP=0.0.0.0
root@prometheus:/# PORT=8888
root@prometheus:/# /root/bin/ffmpeg -y -i  "rtmp://$IP:80/rtmp_relay/$1  live=1"  -c:v libx264 -profile:v main -s 640x480  -an -preset ultrafast  -tune zerolatency -f rtp  rtp://$IP:$PORT
bash: /root/bin/ffmpeg: No such file or directory
root@prometheus:/#