Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
librtmp/rtmp.h
✓ #include <librtmp/rtmp.h>
Connects to an RTMP streaming server.
#include <librtmp/rtmp.h>
#include <iostream>
int main() {
RTMP *rtmp = RTMP_Alloc();
RTMP_Init(rtmp);
if (RTMP_Connect(rtmp, NULL, "rtmp://example.com/live/stream")) {
std::cout << "Connected to RTMP server" << std::endl;
}
RTMP_Close(rtmp);
RTMP_Free(rtmp);
return 0;
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
2024-03-01latest on vcpkg
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.