Skip to content

Simple web app which helps in testing HLS segmentation provided by FFmpeg

License

Notifications You must be signed in to change notification settings

arskov/ffmpeg-rtsp-hls-view

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FFmpeg-RTSP-HLS-View

Sample web application which allows to consume RTSP streams at the backend and provides HLS output for the client into the browser.

Build and run in Docker

docker build --no-cache -t "ffmpeg-rtsp-hls:0.0.1" .
docker volume create hls-out
docker run --rm -v hls-out:/opt/ffmpeg-rtsp-hls/hls-out -p 8080:8080 "ffmpeg-rtsp-hls:0.0.1"