python-librtmp
python-librtmp copied to clipboard
python-librtmp is a RTMP client library. It uses the implementation provided by librtmp via cffi.
I was wondering what's the supposed way for detecting whether a stream ends (single song or movie stream). Waiting for a read timeout not feels the right way.
I would like to send a Broadcast a Shared Object Message via python-librtmp, please write sample code how to do it.
Hi all, Just noticed something strange. I'm using the following code to simulate the RTMP part of an application. self.conn = librtmp.RTMP(rtmp_info['url'], playpath=rtmp_info['playpath'], app=rtmp_info['app'], tcurl=rtmp_info['tcurl'], live=rtmp_info['live']) self.conn.connect() self.stream = self.conn.create_stream()...
http://i.imgur.com/7bzPQI4.png on this particular server invoking conn.connect() creates a stream trying to invoke create_stream() after connection produces nothing. No outbound packets.
I've downloaded a clean version of python27 32bit inorder to make sure that it wasn't anything in my previous installation. When I'm trying to compile the example given on the...
I've tried SO MANY RTMP links, none of them worked, I even extracted this one: rtmp://179.43.158.196:1935/stream/0f5Bo1917y0yBobZcQBIw.stream from some website manually which is working perfectly now, but still not working, I'm...
AMF3
I would like to encode/decode AMF3. I am trying to use librtmp.amf.decode_amf, but it seems it defaults to AMF0 without argument to affect it. What is suggested way to do...
librtmp instructions for OS X
I wonder if it's possible to introduce such functionality? It's quite easy to use in rtmpdump, but I need something like that in automatic python script. I see librtmp has...