ScnLib_GetStreamingUrl()

ScnLib_GetStreamingUrlA/W()

Std EditionPro EditionMax EditionUltra Edition
C++ __declspec(dllimport) void __stdcall ScnLib_GetStreamingUrlA(LPSTR pszURL, LPSTR pszKey);
__declspec(dllimport) void __stdcall ScnLib_GetStreamingUrlW(LPWSTR pwszURL, LPWSTR pwszKey);
C# [DllImport("ScnLib.dll", CharSet = CharSet.Unicode)] public static extern void ScnLib_GetStreamingUrlW(StringBuilder URL, StringBuilder Key);
Basic Public Declare Unicode Sub ScnLib_GetStreamingUrlW Lib "ScnLib.dll" (ByVal URL As StringBuilder, ByVal Key As StringBuilder)
Delphi procedure ScnLib_GetStreamingUrlA(URL: PAnsiChar; Key: PAnsiChar); stdcall; external 'ScnLib.dll';
procedure ScnLib_GetStreamingUrlW(URL: PWideChar; Key: PWideChar); stdcall; external 'ScnLib.dll';
  • Description
    Retrieve the current live streaming address and key.

  • Parameters
    • URL [out]
      The string buffer allocated to receive the current live streaming address. Ensure that the buffer has a capacity greater than 2048 characters. This parameter is required and cannot be zero.
    • Key [out]
      The string buffer allocated to receive the current live streaming key. Ensure that the buffer has a capacity greater than 2048 characters. This parameter is optional and can be zero.
  • Return Value
    None.

  • Remarks
    Use this function to retrieve the current live streaming address and key.

  • See Also
    ScnLib_SetStreamingUrlA/W()

Try the SDK for FREE SDK APIs overview