Reputation:
I need to use RTMP for a client library in C++ (I have choosen C++ because I need ENet too).
The only thing that I have found is this: RTMPDump
The main problem is that it only gives you the a .dll file. I have tried to make the .lib
file (doing this: "Create .lib file from .dll") and added to my Visual Studio project, but it doesn't seem to work (the #include <librtmp/rtmp.h>
gives me a "No such file" error).
How can I get this to compile?
Upvotes: 2
Views: 866
Reputation: 1686
You probably downloaded the prebuilt binary. You need the source which includes librtmp library.http://rtmpdump.mplayerhq.hu/download/rtmpdump-2.2-windows.zip
Upvotes: 2