[Twisted-Python] streaming video
i'm looking for a way to stream video in python (streaming server for video captured from camera), any tips/examples/docs for doing this with twisted? i'm asking because i have no experience with twisted and any help is appreciated. also, is it possible to use py2exe to create executable files. if using py2exe is not a problem, what is recommended way of using py2exe & twisted? Aljosa Mohorovic
On Tuesday 11 July 2006 01:02, Aljosa Mohorovic wrote:
i'm looking for a way to stream video in python (streaming server for video captured from camera), any tips/examples/docs for doing this with twisted? i'm asking because i have no experience with twisted and any help is appreciated.
You could use something like RTSP and RTP. RTSP is a pretty easy protocol to implement, and there's an RTP implementation that's not too awful in the Shtoom codebase. I know of at least 2 other people that used the Shtoom RTP code to do this - I don't know if their code was ever open sourced. Anthony -- Anthony Baxter <anthony@interlink.com.au> It's never too late to have a happy childhood.
On Mon, 2006-07-10 at 17:02 +0200, Aljosa Mohorovic wrote:
i'm looking for a way to stream video in python (streaming server for video captured from camera), any tips/examples/docs for doing this with twisted?
http://www.flumotion.net/ is written with Twisted.
Hi, On Mon, 2006-07-10 at 17:02 +0200, Aljosa Mohorovic wrote:
i'm looking for a way to stream video in python (streaming server for video captured from camera), any tips/examples/docs for doing this with twisted? i'm asking because i have no experience with twisted and any help is appreciated.
Take a look at http://flumotion.net/ which is precisely a streaming server written in python using Twisted. Thomas
On Tue, 11 Jul 2006 01:02:54 +1000, Aljosa Mohorovic <aljosa.mohorovic@gmail.com> wrote: [...]
also, is it possible to use py2exe to create executable files. if using py2exe is not a problem, what is recommended way of using py2exe & twisted?
Aljosa Mohorovic
That should really be a seperate mailing list post, by the way. There isn't anything special about a Twisted/py2exe app, at least in my experience. If you have a .py file that runs the reactor you should be able to use py2exe on it without any problems. If you want to use twistd to run your app then it's a little more complicated because normally you pass command-line arguments to twistd, but with py2exe you probably just want to double-click and have it work. There are various ways you could handle this, but I will wait for you to respond with more information before getting in to any details :) Hope that helps, -- Eric Mangold - Twisted/Win32 Maintainer http://twistedmatrix.com/trac/wiki/Windows
participants (5)
-
Aljosa Mohorovic -
Anthony Baxter -
Eric Mangold -
Itamar Shtull-Trauring -
Thomas Vander Stichele