Click or drag to resize

ISessionManagementGetVideoDownloadURL Method

This method returns a URL from which you can download the video for a session, encoded as a single MP4 file. This is the same as the video podcast of the session. This method requires viewer permissions on the session. You will need to make an HTTP GET call to the returned URL to download the actual video file. This call will require an authenticated cookie, unless the session is set to be publicly viewable. This call will count as a view for the entire session by the calling user. Returned URL is intended for one-time download only, and is not appropriate for direct streaming or playback. The URL wil remain valid for a minimum of 24 hours after it has been returned.

Namespace:  Panopto.Server.Services.PublicAPI.V46.Soap
Assembly:  DataLib (in DataLib.dll) Version: 13.0.0.0 (13.0.0.00000)
Syntax
C#
string GetVideoDownloadURL(
	AuthenticationInfo auth,
	Guid sessionId
)

Parameters

auth
Type: Panopto.Server.Services.PublicAPI.V40AuthenticationInfo
Used to authenticate the current user. Can be null if an auth cookie is passed
sessionId
Type: SystemGuid
The ID of the session you wish to download

Return Value

Type: String
A URL to download the MP4 video podcast file. If no such file exists then an empty string is returned
See Also