作者:u39722555 | 来源:互联网 | 2023-08-15 23:41
#nginxconfiglocationhls{types{applicationvnd.apple.mpegurlm3u8;videomp2tts;}rootva
# nginx config
location /hls {
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
root "/var/www/m3u8/";
add_header Cache-Control no-cache;
add_header Access-Control-Allow-Origin *;
}
# ffmpeg command
ffmpeg -i demo.flv -codec: copy -start_number 0 -hls_time 10 -hls_list_size 0 -f hls /var/www/m3u8/hls/test.m3u8
# html code