Skip to content

Instantly share code, notes, and snippets.

@nhtua
Created December 14, 2020 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nhtua/d9f641a01a4300dfa79633285091e82f to your computer and use it in GitHub Desktop.
Save nhtua/d9f641a01a4300dfa79633285091e82f to your computer and use it in GitHub Desktop.
Config Nginx Rtmp
events {}
rtmp {
server {
listen 1935;
chunk_size 4096;
application multiple {
live on;
record off;
push rtmp://a.rtmp.youtube.com/live2/<live-stream-id>;
push rtmp://127.0.01:1936/rtmp/<facebook-live-stream-id>;
}
application single {
live on;
record off;
push rtmp://a.rtmp.youtube.com/live2/<live-stream-id>;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment