tencent cloud

Cloud Infinite

Release Notes and Announcements
Release Notes
Announcements
Product Introduction
Product Overview
Product Strengths
Use Cases
Feature Overview
Regions and Domains
Specifications and Limits
Billing
Billing Overview
Billing Mode
Billable Items
Free Tier
Payment Overdue
Viewing Bill Details
FAQs
Getting Started
Registering and Logging In
Bind Bucket
Uploading and Processing File
Downloading and Deleting Images
Unbinding Buckets
Using CI via COS
Features
Image Processing
Media Processing
Content Moderation
AI Content Recognition
File Processing
Smart Voice
File processing
User Guide
Overview
Bucket Management
Smart Toolbox
Job and Workflow
Data Monitoring
Usage statistics
Use Cases
Copyright Protection Solutions
Image Processing Practices
Working with API Authorization Policies
Workflow Practices
API Documentation
API Overview
Structure
Common Request Headers
Common Response Headers
Activate Vast Service
Image Processing
AI-Based Content Recognition
Smart Audio
Media Processing
Content Moderation
Document Processing
File Processing
Job and Workflow
Cloud Virus Detection
Error Codes
Request Signature
SDK Documentation
SDK Overview
Android SDK
iOS SDK
COS Android SDK
C SDK
C++ SDK
.NET(C#) SDK
Go SDK
COS iOS SDK
Java SDK
JavaScript SDK
Node.js SDK
PHP SDK
Python SDK
Mini Program SDK
Personal Information Protection Policy for SDK
Security and Compliance
Permission ‍Management
FAQs
Basic Settings
Document Processing
Media Processing
Content Recognition
Smart Audio
Agreements
Service Level Agreement
Contact Us
Glossary

Media Screenshot APIs

PDF
Focus Mode
Font Size
Last updated: 2024-02-29 16:52:32

Overview

This document provides an overview of APIs and SDK code samples for media screenshot.
API
Operation
Description
Querying screenshot
Query the screenshot of media file at some time point

Querying Screenshot

Feature description

This API is used to query the screenshot of a media file at some time point.
Note:
The GetSnapshot API is supported since v5.4.24. To download the new version of SDK, go to Releases or see Getting Started.
For the SDK version changelog, see Changelog.

Sample code

using COSXML.Model.CI;
using COSXML.Auth;
using System;
using COSXML;

namespace COSSnippet
{
public class GetSnapshotModel {

private CosXml cosXml;

GetSnapshotModel() {
CosXmlConfig config = new CosXmlConfig.Builder()
.SetRegion("COS_REGION") // Set the default region. For abbreviations of COS regions, visit https://www.tencentcloud.com/document/product/436/6224.
.Build();

string secretId = "SECRET_ID"; // TencentCloud API `SecretId`. For more information on how to get it, visit https://console.tencentcloud.com/cam/capi.
string secretKey = "SECRET_KEY"; // TencentCloud API `SecretKey`. For more information on how to get it, visit https://console.tencentcloud.com/cam/capi.
long durationSecond = 600; // Validity period of the request signature in seconds
QCloudCredentialProvider qCloudCredentialProvider = new DefaultQCloudCredentialProvider(secretId,
secretKey, durationSecond);

this.cosXml = new CosXmlServer(config, qCloudCredentialProvider);
}

/// Capture video frames
public void GetSnapshot()
{
// Bucket name in the format of `BucketName-APPID`. You can get the `APPID` by referring to https://console.tencentcloud.com/developer.
string bucket = "examplebucket-1250000000";
string key = "video.mp4"; // Object key of the media file, which should be replaced with the actual object key of the media file existing in the bucket
float time = 1.5F; // Screenshot time point expressed as a floating point number
string destPath = @"temp-source-file"; // The path to save the screenshot file, which needs to be replaced with a local specific path, such as "/usr/local/"
GetSnapshotRequest request = new GetSnapshotRequest(bucket, key, time, destPath);
// Execute the request
GetSnapshotResult result = cosXml.GetSnapshot(request);
Console.WriteLine(result.GetResultInfo());
}

static void Main(string[] args)
{
GetSnapshotModel m = new GetSnapshotModel();
/// Capture video frames
m.GetSnapshot();
}
}
}
Note:
For more complete samples, visit GitHub.


Help and Support

Was this page helpful?

Help us improve! Rate your documentation experience in 5 mins.

Feedback