시작하기
이 플러그인의 설치 단계와 전체 마크다운 가이드를 포함한 설정 지시를 복사하세요.
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 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-thumbnailsbunx cap syncImport
Import 섹션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;}실질적인 출처
이 페이지는 플러그인의업스트림에서 pubic __CAPGO_KEEP_0__이 변경되면 다시 싱크를 실행하세요. src/definitions.ts. Re-run the sync when the public API changes upstream.
실질적인 출처
시작부터 계속이 기능을 사용 중이라면 Getting Started 자연적인 미디어 및 인터페이스 동작을 계획하려면 Using @capgo/capacitor-video-thumbnails Using @capgo/capacitor-video-thumbnails Using @capgo/capacitor-live-activities Using @capgo/capacitor-live-activities @capgo/capacitor-live-activities 자연적인 기능을 구현하기 위해 @capgo/capacitor-live-activities Using @capgo/capacitor-video-player 자연적인 기능을 구현하기 위해 Using @capgo/capacitor-video-player @capgo/capacitor-video-player Capgo에서 @capgo/capacitor-video-player의 구현 세부 사항을 위해.