*** tpb has joined #timvideos | 00:00 | |
mithro | morning people | 01:05 |
---|---|---|
Joelw | mithro: Hi! | 01:13 |
* dhanush is waking up. | 02:56 | |
*** dhanush has quit IRC | 03:26 | |
*** mproctor has quit IRC | 03:34 | |
*** dhanush has joined #timvideos | 03:39 | |
CarlFK | hi mithro | 04:29 |
mithro | hey CarlFK | 04:29 |
dhanush | mithro: Is it okay to use one of these -> https://github.com/prekageo/rtmp-python or https://github.com/hydralabs/rtmpy for the rtmp connections in the component | 04:31 |
tpb | Title: prekageo/rtmp-python · GitHub (at github.com) | 04:31 |
mithro | dhanush: no idea | 04:31 |
CarlFK | mithro: do you know what the difference is between gstreamer 1.0 and 1.2? (I am wondering if 1.2 should be the flumotion target) | 04:31 |
mithro | CarlFK: I believe 1.2 should be API compatible with 1.0 but might have different plugins avaliable (and they could have different options) | 04:32 |
CarlFK | so it should be simpler to move from .1 to 1.0 sense we are not looking for new features? | 04:33 |
CarlFK | btw, debian backports does not have 1.2, so 1.0 will be compatible with those crazy debian ers ;) | 04:35 |
mithro | It should be simple for flumotion to support both 1.0 and 1.2 | 04:39 |
dhanush | In the file https://github.com/timvideos/flumotion/blob/master/flumotion/component/consumers/disker/disker.py , where is the uiState defined? I dont get it. | 05:15 |
tpb | Title: flumotion/flumotion/component/consumers/disker/disker.py at master · timvideos/flumotion · GitHub (at github.com) | 05:15 |
dhanush | The class Disker has an attribute uiState. I dont see where it is defined. | 05:15 |
dhanush | git grep "def addKey" shows its defined in flumotion.twisted.flavors, but lines 38 through 43 in disker.py indicate the import is commented out. How does the class Disker inherit that attribute then? | 05:19 |
CarlFK | dhanush: $ ack-grep self.uiState.= lots of hits ... | 05:24 |
CarlFK | I suspect you should get a debugger that lets you set a break point on self.uiState | 05:25 |
CarlFK | (I am assuming such a thing exists. I have PyCharm, like it, but seldom do this kind of debuging ) | 05:26 |
dhanush | CarlFK: Maybe pdb then? | 05:27 |
*** parx has quit IRC | 05:27 | |
dhanush | CarlFK: Im still trying to get a good hold into the component stuff. So that I can start.. | 05:27 |
CarlFK | http://www.jetbrains.com/pycharm/ | 05:27 |
tpb | Title: Python IDE & Django IDE for Web developers : JetBrains PyCharm (at www.jetbrains.com) | 05:27 |
*** rihbyne has joined #timvideos | 05:31 | |
rihbyne | hello guys | 05:31 |
CarlFK | hi rihbyne | 05:37 |
sharky93 | hi | 05:45 |
sharky93 | I got the dev environment for flumotion running on F17, had to downgrade some packages .. but not anything major .. i was able to start a manager and worker, no errors | 05:47 |
sharky93 | im running the python-twisted v11.1.0 .. is that a concern wrt the comment here @ https://github.com/timvideos/getting-started/issues/9 | 05:49 |
tpb | <http://ln-s.net/-3xR> (at github.com) | 05:49 |
sharky93 | mithro: ^^ | 05:49 |
dhanush | CarlFK: Got it. It is a flumotion.common.componentui.WorkerComponentUIState object defined in the base class flumotion.component.component.BaseComponent ; | 05:50 |
rihbyne | CarlFK: we left the conversation yesterday :) | 05:50 |
sharky93 | mithro: i'm aiming at getting my hands dirty with the project about porting flumotion to use the gstreamer1.0 api, i guess that would be the way to go if i'm interested in that project, no? | 05:51 |
rihbyne | sharky93: f20 here :) | 05:54 |
sharky93 | rihbyne: hi :), well, i refrained from updating since i had this one tweaked quite a lot :p .. too lazy to do it all over again :) | 05:55 |
rihbyne | okay | 06:03 |
sharky93 | mithro: i plan to rtfm for gstreamer and flumotion, to get an idea of the architectures and the code flow .. what do you suggest how should we begin the port? the porting manuals only suggest changes .. but i guess its important with what you start so that it remains smooth .. | 06:28 |
*** rihbyne has quit IRC | 06:55 | |
*** kshkr has joined #timvideos | 07:32 | |
*** rihbyne has joined #timvideos | 08:01 | |
*** dhanush has quit IRC | 08:08 | |
*** dhanush has joined #timvideos | 08:19 | |
*** hyades has joined #timvideos | 08:59 | |
*** Super_Roach has joined #timvideos | 10:02 | |
*** SuperRoach has quit IRC | 10:04 | |
*** rihbyne has quit IRC | 10:39 | |
*** Super_Roach is now known as SuperRoach | 10:52 | |
*** Palash has joined #timvideos | 12:23 | |
*** Palash_ has joined #timvideos | 12:24 | |
*** Palash has quit IRC | 12:27 | |
*** Palash_ is now known as Palash | 12:27 | |
*** Palash has quit IRC | 13:05 | |
*** Niharika has joined #timvideos | 13:13 | |
*** Palash has joined #timvideos | 14:37 | |
*** Niharika has left #timvideos | 16:41 | |
dhanush | Just a small start at writing the rtmp component. https://github.com/indradhanush/flumotion/blob/e5ebf63bc4849621cff1d9a49d2a4c0df9c9e0b9/flumotion/component/consumers/rtmp/rtmp.py ; I'm using https://github.com/prekageo/rtmp-python for the rtmp protocol implementation. | 16:42 |
tpb | Title: flumotion/flumotion/component/consumers/rtmp/rtmp.py at e5ebf63bc4849621cff1d9a49d2a4c0df9c9e0b9 · indradhanush/flumotion · GitHub (at github.com) | 16:43 |
dhanush | CarlFK, iiie: Anyone around? I would like to get your views on this. | 16:43 |
CarlFK | 1/2 here | 16:44 |
dhanush | CarlFK: ummm. thats allright then. I also wanted to discuss how the pipeline should be set up for this? Rather how the pipeline is set up for http://www.flumotion.net/releases/flumotion-flashmedia/0.10.0.html ; That way I might be able to co-relate and figure it out myself maybe. | 16:46 |
tpb | <http://ln-s.net/B:lk> (at www.flumotion.net) | 16:46 |
CarlFK | sorry, I have no idea | 16:48 |
dhanush | CarlFK: who might? | 16:48 |
CarlFK | I would start with finding two existing systems that can work together .. I would look at vlc, I think it can do both | 16:49 |
CarlFK | hmm, actually only 1/2 sure about it being a server. but I am sure it can provide and play a rtmp stream | 16:50 |
dhanush | CarlFK: hmmm. sounds like the right way to do this. :) btw. did you look at the commit? Its not much though. | 16:50 |
CarlFK | I skimmed it | 16:50 |
dhanush | CarlFK: Thoughts on first glance? :P | 16:51 |
CarlFK | it is cosmetically nice - I have no idea what it should actually do | 16:54 |
dhanush | CarlFK: those are just wrapper methods to call the methods supported by the client object. Which is an rtmp_protocol.RtmpClient object. I've included the source of this rtmp implementation in the commit too as its not in pypi. See https://github.com/prekageo/rtmp-python/blob/master/rtmp_protocol.py if you want to see how its implemented. | 16:58 |
tpb | Title: rtmp-python/rtmp_protocol.py at master · prekageo/rtmp-python · GitHub (at github.com) | 16:58 |
* dhanush be right back. | 16:58 | |
*** parx has joined #timvideos | 17:13 | |
*** ChanServ sets mode: +v parx | 17:13 | |
*** socartsurgut has joined #timvideos | 17:17 | |
*** socartsurgut has quit IRC | 17:51 | |
*** CarlFK has quit IRC | 17:56 | |
dhanush | parx: Hi! | 18:59 |
*** CarlFK has joined #timvideos | 19:07 | |
*** ChanServ sets mode: +v CarlFK | 19:08 | |
*** livingstore_ has joined #timvideos | 19:29 | |
*** livingstore has quit IRC | 19:32 | |
dhanush | parx: Can you help me get an idea of the how the pipeline should be for the rtmp component? Or maybe how is it in this case-> http://www.flumotion.net/releases/flumotion-flashmedia/0.10.0.html ? | 19:35 |
tpb | <http://ln-s.net/B:lk> (at www.flumotion.net) | 19:35 |
*** livingstore_ has quit IRC | 19:37 | |
CarlFK | dhanush: you should ask that in #gstreamer | 19:39 |
dhanush | CarlFK: hmm. thanks. :) | 19:40 |
*** livingstore_ has joined #timvideos | 19:56 | |
*** kshkr has quit IRC | 19:57 | |
*** kshkr has joined #timvideos | 19:58 | |
*** Palash has quit IRC | 20:07 | |
*** andi-m2 has quit IRC | 20:56 | |
*** andi-m2 has joined #timvideos | 20:57 | |
*** andi-m2 has quit IRC | 21:02 | |
*** andi-m2 has joined #timvideos | 21:04 | |
*** SuperRoach has quit IRC | 21:25 | |
*** SuperRoach has joined #timvideos | 21:26 | |
*** Super_Roach has joined #timvideos | 21:31 | |
*** SuperRoach has quit IRC | 21:33 | |
*** kshkr has quit IRC | 21:47 |
Generated by irclog2html.py 2.12.1 by Marius Gedminas - find it at mg.pov.lt!