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

Thanks a lot for the reply BR STeN

link|improve this question

64% accept rate
feedback

3 Answers

up vote 2 down vote accepted

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.

link|improve this answer
Thanks a lot. Did you done any performance tests? Do you have personal experience with it or any articles about that? Can you compare it to some existing streaming server, e.g. WOWZA? – STeN Jun 13 '11 at 8:37
Apache will have far less overhead than Wowza. Wowza segments the source file as needed, before serving it. With static files, there's absolutely no processing overhead. Wowza is of course much more flexible and allows things like live sources, per client encryption, and other streaming types. – vipw Jun 13 '11 at 11:25
feedback

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.

link|improve this answer
Hi, by mentioning VLC did you mean videolan.org/vlc/streaming.html? Is it really capable to stream HLS? Do you have any performance analysis for 100 parallel streams, each ~ 3.5 Mbps bitrate? Thanks a lot STeN – STeN May 25 '11 at 17:25
Yes, I meant video lan client. What you can recode depends on what codecs you have on your machine. Sorry, I do not have experiences with such high a load, as I only use it at home, so that my children can watch different movies at the same time on their iPads. So my maximum of concurrent streams was the incredibly high number of three until now. – Hyperboreus May 25 '11 at 17:32
VLC's http streaming is progressive, not HLS. There is experimental HLS server support available, there are instructions here: forums.roku.com/viewtopic.php?p=173028 – vipw Jun 12 '11 at 21:43
Hi Hyperboreus and vipw as well. Thanks for great and valuable comments! I will try it. Just in case - do you know some open source HLS implementation? I have very quickly checked the size of IETF HLS draft and it seems to be pretty simple... – STeN Jun 15 '11 at 5:20
@STeN ffmpeg has HLS client support. Boxee also. – vipw Nov 16 '11 at 16:22
show 1 more comment
feedback

The VideoLan wiki has a how to for HLS streaming, where it relies on a separate web server (could be Apache) to stream the content. I'm planning to try this out to view my HD Homerun on my Roku. I'll edit after I try it out.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.