Skip to content

はじめから始める

GitHub

CapgoのAI-Assisted Setupを使用してプラグインをインストールできます。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-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);

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

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

Capgoを使用している場合 はじめに ネイティブメディアとインターフェイスの動作を計画するには、 ネイティブ機能である@capgo/capacitor-video-thumbnailsを使用する ネイティブ機能である@capgo/capacitor-video-thumbnailsの使用 ネイティブ機能である@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 Capacitorのビデオプレーヤー実装の詳細については、@capgo/capacitor-video-playerを参照してください。