Getting Started
このプラグインのインストール手順とフルマークダウンガイドを含むセットアッププロンプトをコピーします。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-video-thumbnails`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/video-thumbnails/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
インストール
「インストール」のセクションAI-Assisted セットアップを使用してプラグインをインストールできます。AI ツールに Capgo スキルを追加するには、以下のコマンドを実行してください。
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.Manual Setupを使用する場合は、以下のコマンドを実行してプラットフォーム固有の指示に従ってください。
bun add @capgo/capacitor-video-thumbnailsbunx cap syncインポート
「インポート」のセクションimport { CapgoVideoThumbnails } from '@capgo/capacitor-video-thumbnails';APIの概要
「APIの概要」のセクションgetThumbnail
「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
動画サムネイル生成のオプションサムネイル生成のオプション
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__This page is generated from the plugin’s src/definitions.ts. Re-run the sync when the public API changes upstream.
Getting Started から続けてください。
「Getting Started から続けてください。」Capgo を使用している場合 Getting Started Capgo を使用して、ネイティブのメディアとインターフェイスの動作を計画するには、Capgo を Capacitor の @capgo/capacitor-video-thumbnails Capacitor の @capgo/capacitor-video-thumbnails のネイティブ機能を使用するには、Capacitor の @capgo/capacitor-video-thumbnails を Capacitor の @capgo/capacitor-live-activities Capacitor の @capgo/capacitor-live-activities のネイティブ機能を使用するには、Capacitor の @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の実装詳細について