Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Http Live Streaming with the Apache web server

Is it possible to do HLS with an Apache web server? Would it be enough to "put here the playlist with data chunks"? Is it that simple? Or is there some module, which can be used for that purpose?

Thanks a lot for the reply

like image 894
STeN Avatar asked May 25 '11 15:05

STeN


2 Answers

Yes, it's sufficient to merely have the m3u8 and segmented ts files available. The benefit of HLS is that it is bog simple HTTP.

It's possible that you'll have to setup the mime types in Apache, but it's probably correct by default.

like image 58
vipw Avatar answered Nov 19 '22 12:11

vipw


There are surely apache2 modules for doing that. My personal choice for streaming audio and video and especially Video-On-Demand however is vlc. Great funcionality for recoding, adopting your output to what ever client wants to view it, etc. etc. Maybe worth a look.

like image 28
Hyperboreus Avatar answered Nov 19 '22 12:11

Hyperboreus