nginx-rtmp-module
nginx-rtmp-module copied to clipboard
how to disable audio in RTMP Streams ?
this is my current configuration is it possible to disable audio and show only video ?
rtmp {
server {
listen 1935;
chunk_size 4096;
application live {
live on;
record off;
meta copy;
}
}
}