@aj-archipelago/subvibe v1.0.12
๐ต Subvibe
The world's first fully vibe-coded subtitle utility library! Convert and manipulate subtitle files with style.
โจ Features
- ๐ Parse and generate SRT (SubRip) subtitle files
- ๐ Parse and generate WebVTT subtitle files
- ๐ก๏ธ Type-safe subtitle manipulation
- ๐ชถ Zero dependencies, pure vibes only
- โก Lightning-fast performance
- ๐ Clean, modern TypeScript API
๐ฆ Installation
# Using npm
npm i @aj-archipelago/subvibe
# Using yarn
yarn add @aj-archipelago/subvibe
# Using pnpm
pnpm add @aj-archipelago/subvibe๐ Quick Start
ESM Import and Usage
import subvibe from '@aj-archipelago/subvibe';
const content = `1
00:00:01,000 --> 00:00:04,000
Hello, world!`;
const result = subvibe.parse(content);
console.log(result.cues[0].text); // "Hello, world!"Auto-detecting and Parsing Subtitles
import { parse } from '@aj-archipelago/subvibe';
// Your subtitle content (either SRT or WebVTT)
const content = `1
00:00:01,000 --> 00:00:04,000
Hey, what's the vibe?
2
00:00:04,500 --> 00:00:06,000
The vibe is immaculate!`;
// Parse automatically - format will be detected
const result = parse(content);
console.log(result.type);    // 'srt' or 'vtt'
console.log(result.cues);    // array of subtitle cuesThe parse() function will automatically detect whether your content is SRT or WebVTT format and parse it accordingly. It's the easiest way to work with subtitles when you're not sure about the format.
Converting Between Formats
import { parse, generateSRT, generateVTT, resync, build } from '@aj-archipelago/subvibe';
// Parse any subtitle format
const result = parse(content);
// Convert to VTT
const vttContent = generateVTT(result);
// Convert to SRT
const srtContent = generateSRT(result);
// Build subtitles in any format from cues
const textContent = build(result.cues);                 // Plain text
const srtContent = build(result.cues, 'srt');          // SRT format
const vttContent = build(result.cues, 'vtt');          // VTT formatWorking with Subtitles Programmatically
import { SubtitleCue } from '@aj-archipelago/subvibe';
const cues: SubtitleCue[] = [
  {
    index: 1,
    startTime: 1000,  // milliseconds
    endTime: 4000,
    text: "Hey, what's the vibe?"
  },
  {
    index: 2,
    startTime: 4500,
    endTime: 6000,
    text: "The vibe is immaculate!"
  }
];๐ ๏ธ API Reference
Core Functions
parse(content: string): ParsedSubtitles
Auto-detect and parse subtitle content in either SRT or WebVTT format.
const result = parse(content);
console.log(result.type);    // 'srt' or 'vtt'
console.log(result.cues);    // parsed subtitle cuesbuild(cues: SubtitleCue[], format?: 'text' | 'srt' | 'vtt'): string
Generate subtitle content in various formats from an array of cues. The default format is 'text'.
// Generate plain text (default)
const textContent = build(cues);
// Generate SRT format
const srtContent = build(cues, 'srt');
// Generate VTT format
const vttContent = build(cues, 'vtt');resync(cues: SubtitleCue[], options: TimeShiftOptions): SubtitleCue[]
Shift subtitle timestamps by a specified offset.
const options = {
  offset: 1000,      // milliseconds to shift
  startAt: 0,        // optional: start time
  endAt: Infinity,   // optional: end time
  preserveGaps: true // optional: maintain gaps
};
const shiftedCues = resync(cues, options);parseSRT(content: string): ParsedSubtitles
Parse SRT subtitle content.
parseVTT(content: string): ParsedVTT
Parse WebVTT subtitle content with support for styles, regions, and voice spans.
generateSRT(input: ParsedSubtitles | SubtitleCue[]): string
Generate SRT content from either a ParsedSubtitles object or an array of subtitle cues.
// Both forms are supported:
const srtFromResult = generateSRT(result);        // Pass the full parsed result
const srtFromCues = generateSRT(result.cues);     // Pass just the cues arraygenerateVTT(subtitles: ParsedVTT): string
Generate WebVTT content with support for styles and regions.
Types
interface SubtitleCue {
  index: number;
  startTime: number;  // milliseconds
  endTime: number;    // milliseconds
  text: string;       // subtitle text content
}
interface ParsedSubtitles {
  type: 'srt' | 'vtt' | 'unknown';
  cues: SubtitleCue[];
  errors?: ParseError[];
}
interface ParsedVTT extends ParsedSubtitles {
  type: 'vtt';
  styles?: string[];    // CSS style blocks
  regions?: VTTRegion[];
}Advanced Utility Functions
Subvibe provides a rich set of utility functions for advanced subtitle manipulation and processing:
Time Manipulation
// Shift subtitle timing
const options: TimeShiftOptions = {
  offset: 1000,      // milliseconds to shift (positive or negative)
  startAt: 0,        // only shift cues after this time (optional)
  endAt: Infinity,   // only shift cues before this time (optional)
  preserveGaps: true // maintain relative gaps between subtitles (optional)
};
const shiftedCues = SubtitleUtils.shiftTime(cues, options);
// Scale subtitle timing
const options: TimeScaleOptions = {
  factor: 1.1,     // scale factor (e.g., 1.1 for 10% slower)
  anchor: 0,       // time point around which to scale (optional)
  startAt: 0,      // only scale cues after this time (optional)
  endAt: Infinity  // only scale cues before this time (optional)
};
const scaledCues = SubtitleUtils.scaleTime(cues, options);Subtitle Processing
// Merge overlapping subtitles
const mergedCues = SubtitleUtils.mergeOverlapping(cues);
// Fix common timing issues
const fixedCues = SubtitleUtils.fixTimings(cues);
// Remove formatting tags
const strippedCues = SubtitleUtils.stripFormatting(cues);
// Validate subtitles
const validationResult = SubtitleUtils.validate(cues);
console.log(validationResult.isValid);    // boolean
console.log(validationResult.errors);     // array of errors
// Normalize subtitles to strict format
const options: NormalizeOptions = {
  format: 'srt',              // 'srt' or 'vtt'
  removeFormatting: false,    // remove styling tags
  fixTimings: true,          // fix timing issues
  mergeOverlapping: true,    // merge overlapping subtitles
  minimumDuration: 500,      // minimum duration in ms
  maximumDuration: 7000,     // maximum duration in ms
  minimumGap: 40,           // minimum gap between subtitles in ms
  removeEmpty: true,        // remove empty subtitles
  cleanupSpacing: true      // clean up extra whitespace
};
const normalizedCues = SubtitleUtils.normalize(cues, options);Format Detection and Parsing
// Parse various timestamp formats
const ms = SubtitleUtils.parseLooseTime("1:23.456");     // 83456
const ms = SubtitleUtils.parseLooseTime("1h 23m");       // 4980000
const ms = SubtitleUtils.parseLooseTime("5m 35s");       // 335000
const ms = SubtitleUtils.parseLooseTime("23.456");       // 23456
const ms = SubtitleUtils.parseLooseTime("1:23,456");     // 83456
// Check if text contains timestamp
const hasTime = SubtitleUtils.hasTimestamp("at 1:23.456");  // true
// Find timestamp range in text
const range = SubtitleUtils.findTimestampRange("1:23 --> 4:56");
console.log(range?.start);  // milliseconds
console.log(range?.end);    // milliseconds
// Check if text looks like subtitle content
const isSubtitle = SubtitleUtils.looksLikeSubtitle(content);
// Auto-detect and parse subtitle format
const result = SubtitleUtils.detectAndParse(content);
console.log(result.type);     // 'srt', 'vtt', or 'unknown'
console.log(result.cues);     // parsed subtitle cues
console.log(result.errors);   // parsing errors if anyThese utility functions make it easy to perform common subtitle manipulation tasks while maintaining proper timing and format consistency. They're particularly useful when working with subtitles from different sources or when you need to adjust timing for different playback speeds.
๐ก Why Subvibe?
- ๐ฏ Smart Format Detection: Automatically handles SRT and WebVTT formats with flexible timestamp parsing
- ๐ก๏ธ Type Safety: Built with TypeScript for robust, error-free subtitle manipulation
- ๐ Zero Dependencies: Lightweight and efficient, only the code you need
- ๐งฉ Flexible Parsing: Supports multiple timestamp formats including ultra-short (SS.mmm) and short (MM:SS,mmm) formats
- ๐งช Well Tested: Comprehensive test suite ensures reliability
- ๐ฆ Modern Package: Built for modern JavaScript/TypeScript applications
- ๐จ Clean API: Intuitive and easy-to-use interface
- ๐ Active Development: Regular updates and improvements
๐ค Contributing
We love contributions! Here's how you can help:
- Fork the repository
- Create your feature branch (git checkout -b feature/AmazingFeature)
- Commit your changes (git commit -m 'Add some AmazingFeature')
- Push to the branch (git push origin feature/AmazingFeature)
- Open a Pull Request
Please make sure to update tests as appropriate and follow our code of conduct.
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.