illuspas / Node-Media-Server

A Node.js implementation of RTMP/HTTP-FLV/WS-FLV/HLS/DASH/MP4 Media Server
https://www.npmjs.com/package/node-media-server
MIT License
5.89k stars 1.51k forks source link

How to stream VOD playback? #602

Open Omar-AE opened 9 months ago

Omar-AE commented 9 months ago

I'm using ffmpeg to stream videos to a self hosted Node-Media-Server:

ffmpeg -re -safe 0 -f concat -i playback.txt -c:a copy -c:v copy -f flv rtmp://...

and playback.txt contains

file /home/user/test.mp4

and I'm watching through hls (http://.../../...m3u8). This is live (not VOD). I want to stream VOD HLS streams through ffmpeg. Any idea how to do that?