Quick Start
Welcome to Cliptext! This guide will help you get started with automatic transcription in just a few minutes.
Prerequisites
Section titled “Prerequisites”Before you begin, you’ll need:
- A Cliptext account (sign up at cliptext.ai)
- An audio or video file to transcribe
Your First Transcription
Section titled “Your First Transcription”-
Sign in to your account
Visit app.cliptext.ai and sign in with your email and password.
-
Upload your file
Click the “Upload” button and select an audio or video file. Supported formats include:
- Audio: MP3, WAV, M4A, FLAC, OGG
- Video: MP4, MOV, AVI, MKV, WebM
-
Wait for processing
Cliptext will automatically transcribe your file. Processing time depends on the file length.
-
View your transcription
Once complete, you’ll see the full transcription with timestamps. You can edit, export, or share it.
Using the API
Section titled “Using the API”If you prefer to integrate Cliptext programmatically, check out our API Overview.
curl -X POST https://api.cliptext.ai/v1/transcriptions \ -H "Authorization: Bearer YOUR_API_KEY" \const formData = new FormData();formData.append('file', audioFile);
const response = await fetch('https://api.cliptext.ai/v1/transcriptions', { method: 'POST', headers: { 'Authorization': `Bearer ${apiKey}`, }, body: formData,});Next Steps
Section titled “Next Steps”- Learn about API authentication
- Explore transcription options
- Set up team collaboration