<code> apt-get install build-essential zlib1g-dev libpcre3 libpcre3-dev libbz2-dev libssl-dev tar unzip </code>
<code> ./configure –add-module=../nginx-rtmp-module –with-ipv6 –with-http_stub_status_module </code>
/usr/local/nginx/conf/nginx.conf: <code> user www-data;
error_log /var/log/nginx/error.log; pid /var/run/nginx.pid;
events { worker_connections 2048; }
http { server { listen [::]:80 default ipv6only=off;
root /srv/nginx/htdocs; index index.html index.htm;
server_name localhost;
location /releases { alias /srv/releases; autoindex on; }
location /releases/private { alias /srv/releases/private; auth_basic “Auf zum Atem!!1!”; auth_basic_user_file /etc/nginx/releases_htpasswd; autoindex on; }
alias /tmp/hls; autoindex on; }
location /stats/nginx { stub_status on; access_log off; allow 127.0.0.1; allow 195.54.164.160/29; # berlin allow 188.40.235.220; # oglarun → meise deny all; } }
}
rtmp { server { listen [::]:1935 ipv6only=off;
ping 30s;
application stream {
hls on; hls_path /tmp/hls; hls_fragment 5;
allow play all; } } } </code>
ffmpeg push: <code> ffmpeg -re -i catcontent.ogg -threads 0 -pix_fmt yuv420p -profile:v baseline -preset fast -tune zerolatency -c:v libx264 -strict -2 -c:a aac -f flv rtmp://localhost:1935/stream/katze </code>
/usr/local/nginx/conf/nginx.conf:
→ siehe Abschnitt hls und http in der rtmp Konfiguration.
ffmpeg push: <code> ffmpeg -re -i catcontent.ogg -threads 0 -pix_fmt yuv420p -profile:v baseline -preset fast -tune zerolatency -c:v libx264 -strict -2 -c:a aac -f flv rtmp://localhost:1935/stream/katze </code>