はじめに
セットアップのプロンプトをコピーして、インストールの手順とこのプラグインのフルマークダウンガイドを取得します。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-screen-recorder`
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/screen-recorder/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.
インストール
「インストール」のセクションbun add @capgo/capacitor-screen-recorderbunx cap syncimport { ScreenRecorder } from '@capgo/capacitor-screen-recorder';API の概要
Section titled “API の概要”start
Section titled “開始”デバイス画面の録画を開始します。
デバイス画面の録画を開始し、オプションで音声のキャプチャも行います。ユーザーは画面録画の許可を求められます。iOSの場合、システムの録画UIが表示されます。Androidの場合、許可が与えられた後すぐに録画が開始されます。
import { ScreenRecorder } from '@capgo/capacitor-screen-recorder';
// Start recording without audioawait ScreenRecorder.start();
// Start recording with audioawait ScreenRecorder.start({ recordAudio: true });現在の画面録画を停止します。
現在の画面録画を停止し、デバイスのカメラロールまたはギャラリーに保存します。iOSの場合、システムは録画のプレビューを表示します。Androidの場合、直接ギャラリーに保存されます。
import { ScreenRecorder } from '@capgo/capacitor-screen-recorder';
await ScreenRecorder.stop();console.log('Recording saved to gallery');真実の源
「真実の源」というセクションこのページはプラグインから生成されています。 src/definitions.tsパブリック API がアップストリームで変更された場合に、再度同期を実行してください。