- Dựng nginx với rtmp support https://github.com/arut/nginx-rtmp-module
- Cấu hình rtmp server
rtmp {
server {
listen 1935;
application live {
live on;
hls on;
hls_path /tmp/hls;
}
}
}
- Cấu hình nginx serve m3u8 file:
http {
...
server {
listen 80;
server_name _;
location /hls {
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
root /tmp;
add_header Cache-Control no-cache;
}
location / {
root html;
index index.html index.htm;
}
}
...
}
- Transcode rtsp sang rtmp dùng ffmpeg:
ffmpeg -i "[your rtsp link]" -f flv -c copy rtmp://ip_rmtp_server:port/live/streamname
- m3u8 file được serve ở http://ip_rmtp_server/hls/streamname.m38u