Available Formats
ScriptBase supports four transcript formats, each optimized for different use cases.Format Comparison
| Format | Timestamps | Structure | Best For | File Extension |
|---|---|---|---|---|
| JSON | Separate fields | Structured | Analysis, search, processing | .json |
| Text | None | Plain text | Simple extraction, LLMs | .txt |
| SRT | Inline | Timed blocks | Video editors, subtitles | .srt |
| VTT | Inline | Timed blocks | Web video players | .vtt |
JSON Format
Best for programmatic processing and analysis. Request:- Search and analysis
- Text processing with timestamps
- Building custom applications
- Training machine learning models
Text Format
Clean, plain text without timestamps. Request:- Feeding to LLMs (GPT, Claude, etc.)
- Simple text search
- Content summarization
- Quick reading
SRT Format
Standard subtitle format for video editors. Request:- Video editing software (Premiere, Final Cut, etc.)
- Adding subtitles to videos
- Translation workflows
- Accessibility compliance
VTT Format
Web standard for HTML5 video players. Request:- HTML5 video players
- Web-based video platforms
- Browser-native subtitles
- Streaming services
Choosing the Right Format
For AI/LLM Processing
For AI/LLM Processing
Use text format - clean, no timestamps, ready for GPT/Claude
For Search and Analysis
For Search and Analysis
Use JSON format - structured data with timestamps for precise analysis
For Video Editors
For Video Editors
Use SRT format - industry standard, works with all major editing tools
For Web Players
For Web Players
Use VTT format - HTML5 native, best for web video