[?]What is the difference between SRT and WebVTT?
SubRip (.srt) is a legacy text subtitle format using commas for millisecond timestamps (00:01:23,456). WebVTT (.vtt) is the W3C standard for HTML5 video, requiring a 'WEBVTT' header and dot-separated millisecond timestamps (00:01:23.456). HTML5 <video><track> elements only accept WebVTT.
[?]Why do I need to convert SRT to VTT?
Modern web browsers, YouTube, Vimeo, and web video libraries (Video.js, Plyr, hls.js) strictly require WebVTT for closed captions. Uploading an SRT file to HTML5 <track> fails silently. Converting to WebVTT guarantees browser compatibility.
[?]How does convrtr convert timestamps?
convrtr translates SubRip comma timestamps into W3C dot timestamps, ensures full HH:MM:SS.mmm padding, strips deprecated HTML font tags, and preserves italic/bold tags without changing audio sync.
[?]Are my subtitles sent to any remote server?
Never. All subtitle parsing, timestamp normalization, and WebVTT generation occur entirely inside your browser using client-side TypeScript. Your data never leaves your machine.
[?]Why convert from SRT to VTT?
SRT Document (SRT) and VTT Document (VTT) serve distinct roles across the digital workflow. Converting to VTT provides optimized compatibility, modern compression efficiency, or standardized playback across web browsers, operating systems, and media production environments.
[?]Is the SRT to VTT conversion lossless or lossy?
The output format (VTT) is inherently lossless or supports lossless operation. Your original visual or audio fidelity is mathematically preserved without quantization artifacts.
[?]Does convrtr upload my files to any cloud server?
Never. convrtr is architected with a strict zero-upload model. All processing, decoding, decompression, and encoding happen 100% locally on your machine using sandboxed WebAssembly and Web Workers. Your data never touches an external server, database, or analytics collector.
[?]How can I convert SRT to VTT from the terminal / command line?
You can execute this conversion locally via command-line utilities such as ffmpeg, cwebp, or ImageMagick. For example: see the developer terminal recipe provided in the technical specifications dossier above. convrtr provides the identical local-first capability directly inside your browser without installing CLI packages.
[?]Can I batch convert multiple SRT files to VTT simultaneously?
Yes. You can drop multiple .srt files into the instrument to process them concurrently in browser Web Workers, or click 'Open in Master Studio' to queue mixed formats, configure individual targets, and export as a single ZIP archive.