Re: HTTP pseudo streaming for Wicket

2009-05-27 Thread Kaspar Fischer
Ok, thanks. I think what you are saying holds for FLV streaming, but MP4 streaming looks more complicated: http://www.longtailvideo.com/support/forum/General-Chat/15793/pseudo-stream-mp4- It seems, as Jeremey pointed out, that lighttpd can do that. (I am looking for a Tomcat-only solution.

Re: HTTP pseudo streaming for Wicket

2009-05-25 Thread Matej Knopp
I'm not sure why there should be any logic regarding mp4 on the server. I don't know how exactly flash mp4 players work but the player should be able to request the exact byte offset and length from the server. Content-Range header basically provides random access to remote files which should be en

Re: HTTP pseudo streaming for Wicket

2009-05-25 Thread Kaspar Fischer
Sorry: the link I gave is already outdated; a new version is available: http://h264.code-shop.com/trac/wiki P.S. Unfortunately I need a solution for Tomcat as I am hosting at a Tomcat provider. On 25.05.2009, at 22:57, Kaspar Fischer wrote: Thanks, Matej, for the pointer. I have not read

Re: HTTP pseudo streaming for Wicket

2009-05-25 Thread Kaspar Fischer
Thanks, Matej, for the pointer. I have not read a lot about MP4 Pseudo Streaming but as far as I currently understand it, the server needs to analyse the MP4 file (its meta data, actually) in order to know which part of the file to return -- the latter task can then be done using you Stream

Re: HTTP pseudo streaming for Wicket

2009-04-13 Thread Matej Knopp
If you want to support http streaming you need to implements servlet/filter that supports Content-Range and Accept-Range headers. You can take a look at http://code.google.com/p/brix-cms/source/browse/trunk/brix-core/src/main/java/brix/plugin/site/resource/Streamer.java to get the idea. -Matej O

Re: HTTP pseudo streaming for Wicket

2009-04-13 Thread Jeremy Thomerson
I think lighttpd does this - although I've never personally used it. I just remember it form some research I was doing on a similar subject. http://blog.lighttpd.net/articles/2006/03/09/flv-streaming-with-lighttpd -- Jeremy Thomerson http://www.wickettraining.com On Sat, Apr 11, 2009 at 5:10 A

Re: HTTP pseudo streaming for Wicket

2009-04-11 Thread Peter Thomas
I've been doing some work on the RTMP protocol recently and have this open-source project up: http://flazr.com/ Right now it is a client-side piece, but should be easy to add server-side as well in case that is what you want. It is definitely much lighter than Red5. If you see potential or have

HTTP pseudo streaming for Wicket

2009-04-11 Thread Kaspar Fischer
I need to stream H264 .mp4 movies to a Flash video player (JW Player) and want to support HTTP pseudo streaming, i.e., the user should be able to seek within the movie. Does anybody know of a Wicket implementation for this, something like xmoov-php [1] for Java with a corresponding Wicket c