UploadVideoThumbnail
Upload the thumbnails of your video assets.
Stored Procedure-Specific Information
To use this stored procedure, exactly one of the following parameters must be specified (in addition to UploadURL):- LocalFile
- FileStream
- FileData
If no parameter is used, or more than one parameter is used, the procedure fails.
The UploadURL value is returned by the UploadVideo stored procedure in the ThumbnailUploadURL output parameter.
To execute this procedure, enter:
EXEC UploadVideoThumbnail UploadURL='https://www.linkedin.com/dms-uploads/sp/...', LocalFile='C:/temp/my_thumbnail.jpg'
Input
| Name | Type | Required | Accepts Input Streams | Description |
| UploadURL | String | True | False | The URL to use for uploading the video's thumbnail. |
| LocalFile | String | False | False | The absolute path of the image file in your system to upload for the video's thumbnail. |
| FileStream | String | False | True | An 'InputStream' object to use for reading the image data to upload for the video's thumbnail. Useful when accessing files in your environment ('LocalFile' parameter) is not a viable option. |
| FileData | String | False | False | A Base64-encoded string containing the image data to upload for the video's thumbnail. Useful in cases when neither the 'LocalFile' parameter nor the 'FileStream' parameter are viable options. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | A boolean value indicating whether the thumbnail was uploaded successfully or not. |