O
O
OKNOZA2014-12-28 13:55:09
Nginx
OKNOZA, 2014-12-28 13:55:09

How to set up broadcasting?

I set everything up, but there is no broadcasting, what is the reason? Even in the HLS folder everything is empty.

worker_processes  1;
events {
    worker_connections  1024;
}


rtmp {
   server {
       listen 1935;
       application myapp {
           live on;
           hls on;
           hls_path /tmp/hls; # на эту директорию нужны права
           exec_static '/usr/bin/ffmpeg -i  rtp://@***.33.220.91:5**0 -c:v libx264 -s 720x576 -b:v 500k -c:a libfaac -ar 44100 -ac 2 -f flv rtmp://localhost/myapp/live 2>>/var/log/nginx/ffmpeg.log';
       }
   }
}


http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;

    server {
     listen 80 default_server;
     charset utf-8;

     root /var/www;
     index index.php index.html index.htm;

     server_name server_domain_name_or_IP;

     location /hls {
         root /tmp/hls;
         types {
             application/vnd.apple.mpegurl m3u8;
         }

     }


     location / {
        try_files $uri $uri/ =404;
     }

     error_page 404 /404.html;
     error_page 500 502 503 504 /50x.html;
     location = /50x.html {
         root /var/www;
     }

     location ~ \.php$ {
         try_files $uri =404;
         fastcgi_split_path_info ^(.+\.php)(/.+)$;
         fastcgi_pass unix:/var/run/php5-fpm.sock;
         fastcgi_index index.php;
         include fastcgi_params;
     }
  }
}

The output URL of such a plan is localhost/myapp/live.m3u8

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
sasha, 2015-12-29
@madmages

when they give such a party girl when with the question WHERE IS BAD ?! then one feels the desire of the second to have his problems solved for him. you look at your code, figure out where it's bad and ask specifically what doesn't work

I
Igor Nistakov, 2015-01-02
@belloni

Try specifying the rtmp port
rtmp://localhost:1935/myapp/live

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question