コンテンツにスキップ

Getting Started

GitHub
ターミナル画面
bun add @capgo/capacitor-video-thumbnails
bunx cap sync
import { CapgoVideoThumbnails } from '@capgo/capacitor-video-thumbnails';

特定の時間位置で動画ファイルからサムネイル画像を生成します。

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);

コピー

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;
}

真実の源

「真実の源」

このページはプラグインから生成されています。 src/definitions.ts. 公開 API がアップストリームで変更された場合に、再度同期を実行してください。

Getting Started から続けてください

「Getting Started から続けてください」

Capacitor を使用している場合 Getting Started ネイティブ メディアとインターフェイスの動作を計画する場合、Capacitor を Capacitor を使用してネイティブ機能の「@capgo/capacitor-video-thumbnails」を接続します。 Capacitor を使用してネイティブ機能の「@capgo/capacitor-video-thumbnails」 Capacitor を使用してネイティブ機能の「@capgo/capacitor-live-activities」を接続します for the native capability in Using @capgo/capacitor-live-activities, @capgo/capacitor-live-activities for the implementation detail in @capgo/capacitor-live-activities, @capgo/capacitor-live-activities for the native capability in Using @capgo/capacitor-video-player, and @capgo/capacitor-video-player for the implementation detail in @capgo/capacitor-video-player.