RTMP Streaming Directshow Filter

setLicenseKey


Set the license key after you bought  the full version.

STDMETHOD setLicenseKey(int iKey)

VC++ Example:

ComPtr<IBaseFilter> mMediaStreamingFilter;
ComPtr<IBaseFilter> mStreamingConfig;
mMediaStreamingFilter.CoCreateInstance(CLSID_ViscomsoftRMTPStreamingFilter);
mMediaStreamingFilter->QueryInterface(IID_IRMTPStreamingConfig, (void**)&mStreamingConfig);
mStreamingConfig->setLicenseKey(123);