We are able to stream m4v file via rtmp and rtsp and I was trying to add http. I am confused about all the httpstreamers and what function they perform in file playback mode. All I want to do is intercept the http stream and play alias requests like we do for rtsp/rtmp. Specifically I am trying to stream to iphone and android phones.
I was looking at using IModuleOnHTTPSession on top of the other IModuleOn interfaces we already use. What streamer should I use for VOD type streaming to iOS and Andriod devices.
All the different HTTP streaming methods are built into the server. We support Apple HTTP live streaming and Smooth Streaming. In 2.1.2.07 we have added support for Flash HTTP streaming. The tutorial below explains the URL formats and configuration needed for the different streaming protocols when doing video on demand playback.
You do not need to mess with request filters and the like to get anything to work. This is all pre-configured in HTTPSTreamers.xml. The requests are handled based on the URL that is used. We have not documented (nor do we plan in the short term) how to add your own HTTP streaming type. At this time the API is private and only for Wowza’s use.
We do not support straight progressive download at this time. Wowza only supports the chunked streaming methods. At some point we will also most likely add support for WebM (VP8 and Theora Ogg).
I already have that since I implmented IMediaStreamNameAliasProvider2 for my other sessions. This does not address the session question, which or how do I get the httpsession events?
I think you are missing the point. I already have all this code that is not what was asked. I want to know how to configure the application to use the appropriate httpstreamer. I aked for an explination of the httpstreamers and a choise on which one to use for basic vod http delivery for IOS and Android clients. I currenty can not get httpstreaming working at all for a http://///Extremists.m4v request. IF I understand the docs right I need to declare a httpstreamer to handle with RequestFilter set to include *.m4v. Which one do I use?