mod_h264

I believe mod_h264_streaming allows seeking on pre-existing MP4 files. One option for live streaming is HTTP Live Streaming (or HLS for short), where content is segmented on few-seconds long chunks. multimedia/ffmpeg can help you encode and segment such a stream, can generate a playlist for you (adaptive stream, as well; that is, stream would be available in several variants with different quality and bandwidth requirements), all that's left is to share resulted stream via a web server.

HLS can be played-back using HTML5 video element on any iOS, Mac OS or recent Android device; most smart TVs work fine and there are libraries enabling playback on Windows, as well.
 
Back
Top