We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PC: Ubuntu24.04LTS
In nginx.conf, configured like bellow: rtmp { server { listen 1935; application app { live on; hls on; hls_path /var/www/hls; hls_fragment 7; hls_playlist_length: 3600; } } }
and run ffmpeg like this: ffmpeg -f video4linux4linux2 -i /dev/video2 -c:v libx264 -preset uldrafast -an -f flv rtmp://localhost/app
I confirmed there are .ts files and .m3u8 file.create html file like this:
If accessing this html file with Chrome, .m3u8 was played. But with Firefox, video was infinitely loaded.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PC: Ubuntu24.04LTS
In nginx.conf, configured like bellow:
rtmp {
server {
listen 1935;
application app {
live on;
hls on;
hls_path /var/www/hls;
hls_fragment 7;
hls_playlist_length: 3600;
}
}
}
and run ffmpeg like this:
ffmpeg -f video4linux4linux2 -i /dev/video2 -c:v libx264 -preset uldrafast -an -f flv rtmp://localhost/app
I confirmed there are .ts files and .m3u8 file.create html file like this:
The text was updated successfully, but these errors were encountered: