跳过内容

开始

GitHub

您可以使用我们的 AI 助手设置来安装插件。将 Capgo 技能添加到您的 AI 工具中,使用以下命令:

终端窗口
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins

然后使用以下提示:

Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-video-thumbnails` plugin in my project.

如果您更喜欢手动设置,请按照以下命令安装插件并遵循以下平台特定的说明:

终端窗口
bun add @capgo/capacitor-video-thumbnails
bunx cap sync

导入

导入
import { CapgoVideoThumbnails } from '@capgo/capacitor-video-thumbnails';

API 简介

API 简介

getThumbnail

获取缩略图

从视频文件中获取缩略图图像,根据特定时间位置。

import { CapgoVideoThumbnails } from '@capgo/capacitor-video-thumbnails';
const result = await CapgoVideoThumbnails.getThumbnail({
sourceUri: 'file:///path/to/video.mp4',
time: 5000,
quality: 0.8
});
console.log('Thumbnail URI:', result.uri);
console.log('Dimensions:', result.width, 'x', result.height);

类型参考

类型参考

VideoThumbnailsOptions

VideoThumbnailsOptions

视频缩略图生成选项。

export interface VideoThumbnailsOptions {
/**
* The URI of the video file. Can be a local file path or a remote URL.
* For local files, use file:// protocol or absolute path.
* For remote files, use http:// or https:// protocol.
*/
sourceUri: string;
/**
* The time position in milliseconds from which to extract the thumbnail.
* Defaults to 0 (first frame).
*/
time?: number;
/**
* Quality of the generated image, from 0.0 (lowest) to 1.0 (highest).
* Defaults to 1.0.
*/
quality?: number;
/**
* HTTP headers to include when fetching remote video URIs.
* Only applicable for remote URLs.
*/
headers?: Record<string, string>;
}

VideoThumbnailsResult

视频缩略图结果

复制到剪贴板

export interface VideoThumbnailsResult {
/**
* The local URI path to the generated thumbnail image.
* This can be used directly in img tags or Image components.
*/
uri: string;
/**
* Width of the generated thumbnail in pixels.
*/
width: number;
/**
* Height of the generated thumbnail in pixels.
*/
height: number;
}

当公共__CAPGO_KEEP_0__上游发生变化时,请重新同步。 src/definitions.ts. Re-run the sync when the public API changes upstream.

继续从开始

如果您正在使用

插件 开始使用 为原生媒体和界面行为规划,连接它 使用@capgo/capacitor-video-thumbnails 为原生能力在使用@capgo/capacitor-video-thumbnails 使用@capgo/capacitor-live-activities 为原生能力在使用@capgo/capacitor-live-activities @capgo/capacitor-live-activities 为@capgo/capacitor-live-activities实现细节 使用@capgo/capacitor-video-player 为原生能力在使用@capgo/capacitor-video-player @capgo/capacitor-video-player 为@capgo/capacitor-video-player实现细节