Skip to main content

remotion-captions

Transcribing, displaying and animating captions

الانتقال إلى التثبيت

معلومات المصدر

المستودع
remotion-dev/remotion
آخر نشاط في المصدر
٥ سبتمبر ٢٠٢٦ في ١٢:٤٤
لغة SKILL.md المكتشفة
الإنجليزية
النجوم
٥٩٬٦٣٨
التفرعات
٤٬٥٦٧

خيارات التثبيت

يُحدَّد Prompt الذي يراجع المصدر أولًا بشكل افتراضي. يمكنك التبديل إلى أمر مباشر أو تنزيل نسخة محلية.

مراجعة ملفات المصدر

اقرأ SKILL.md وأي ملفات مرافقة يعرضها SkillsMP قبل أن تقرر التثبيت.

مستكشف الملفات
6 ملفات

عرض SKILL.md

SKILL.md
تعليمات المصدر · معاينة للقراءة فقط
name
remotion-captions
description
Transcribing, displaying and animating captions
version
4.0.519
All captions must be processed in JSON. The captions must use the [`Caption`](https://www.remotion.dev/docs/captions/caption.md) type which is the following: ```ts import type { Caption } from "@remotion/captions"; ``` This is the definition: ```ts type Caption = { text: string; startMs: number; endMs: number; timestampMs: number | null; confidence: number | null; pageBreakAfter?: boolean; }; ``` ## Generating captions To transcribe video and audio files to generate captions, load the [transcribe-captions.md](transcribe-captions.md) file for more instructions. ## Displaying captions To display captions in your video, load the [display-captions.md](display-captions.md) file for more instructions. ## Importing captions To import captions from a .srt file, load the [import-srt-captions.md](import-srt-captions.md) file for more instructions.
عرض على GitHub