Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simple RTMP Python client

I'm looking for a proper RTMP python client or Python code example that could do at least the following:

  1. Properly handshake with Flash server
  2. Send a properly encoded (AMF0 or AMF3) "connect" message to the server (and process the result)
  3. Send a properly encoded "subscribe" message (and process the result)

I've been investigating RTMPy, rtmplite, fmspy libraries, but haven't gotten anything to work yet. The AMF0 encoding capabilities from rtmplite seem good, though.

Can anyone point me in the right direction?

like image 245
Vitaliy Avatar asked Sep 14 '11 11:09

Vitaliy


1 Answers

Perhaps rtmplite could help you?

like image 156
meson10 Avatar answered Sep 20 '22 06:09

meson10