Я поставил nginx и rtmp модуль на Debian 9.
Сейчас хочу ретранслировать вебкамеру через этот сервер. Пользую для этого такой конфиг:
user www-data;
worker_processes 1;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
rtmp {
server {
listen 1935;
chunk_size 4096;
application myapp {
live on;
exec /usr/bin/ffmpeg -f mjpeg -i video="http://<cam-ip>:8080/mobile?channelid=<channel-id>&fps=30&login=user&password=pass&is_ajax=true&withcontenttype=true"
-c:v libx264 -f flv "rtmp://<my-ip>:1935/myapp/mystream live=1" 2>>/tmp/ffmpeg-$name.log;
}
}
}
http {
server {
listen 8080;
location /stat {
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
}
location stat.xsl {
root /stat;
}
}
}
Запускаю nginx, и запускаю vlc плеер, вставляю в него ссылку rtmp://my-ip:1935/myapp/mystream но ничего не проигрывается.
В примерах люди больше заостряют внимание на стримы с твича, и не могу понять, что я пропустил.
Подскажите, что не так в моем конфиге?
В логе ffmpeg вижу
ffmpeg version 3.2.12-1~deb9u1 Copyright (c) 2000-2018 the FFmpeg developers
built with gcc 6.3.0 (Debian 6.3.0-18+deb9u1) 20170516
configuration: --prefix=/usr --extra-version='1~deb9u1' --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libebur128 --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared
libavutil 55. 34.101 / 55. 34.101
libavcodec 57. 64.101 / 57. 64.101
libavformat 57. 56.101 / 57. 56.101
libavdevice 57. 1.100 / 57. 1.100
libavfilter 6. 65.100 / 6. 65.100
libavresample 3. 1. 0 / 3. 1. 0
libswscale 4. 2.100 / 4. 2.100
libswresample 2. 3.100 / 2. 3.100
libpostproc 54. 1.100 / 54. 1.100
Input #0, mpjpeg, from 'http://<cam-ip>:8080/mobile?channelid=<channel-id>&fps=30&login=user&password=pass&is_ajax=true&withcontenttype=true':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 352x288 [SAR 1:1 DAR 11:9], 25 tbr, 25 tbn, 25 tbc
[flv @ 0x55c9709ca700] Video codec mjpeg not compatible with flv
Could not write header for output file #0 (incorrect codec parameters ?): Function not implementedStream mapping:
Stream #0:0 -> #0:0 (copy)
Last message repeated 1 times
'/usr/bin/ffmpeg' '-i' 'http://<cam-ip>:8080/mobile?channelid=<channel-id>&fps=30&login=user&password=pass&is_ajax=true&withcontenttype=true' '-c' 'copy' '-f' 'flv' 'rtmp://my-ip:1935/myapp/mystream'
Как выбрать верный кодек?