とは
WebVTT ⇔ SRT 変換ツール とは?
WebVTT and SRT look almost identical at a glance, but they are not interchangeable in practice. VTT supports cue settings (line:90%, vertical:rl), inline tags (<v Speaker>, <c.classname>), NOTE and STYLE blocks, and uses period decimal separators. SRT supports none of that — it expects pure cue blocks with comma decimals.
This converter handles both directions cleanly. Going VTT → SRT, it strips the WEBVTT header, drops NOTE/STYLE/REGION blocks, removes cue identifiers and settings, and rewrites every timestamp from period to comma. Going SRT → VTT, it prepends the WEBVTT header and rewrites the decimal separators. The output stays cue-accurate so downstream tools can consume it directly.
の使い方
WebVTT ⇔ SRT 変換ツール の使い方
1. Pick a direction: VTT → SRT or SRT → VTT.
2. Paste subtitle text into the left pane, or upload a .vtt / .srt file.
3. Output is generated instantly on the right.
4. Copy or download with the correct extension.
使用例
使用例
VTT input:
00:00:01.000 --> 00:00:03.500 line:90%
<v Speaker>Hello world</v>
SRT output:
1
00:00:01,000 --> 00:00:03,500
Hello world主な使用シーン
主な使用シーン
1. Convert YouTube auto-caption downloads (VTT) to SRT for editing in a desktop subtitle tool.
2. Convert SRT released by translators to VTT for HTML5 video embedding via <track src=…>.
3. Strip VTT cue settings before feeding a translation memory tool that does not understand them.
4. Prepare clean SRT for upload to platforms that reject the VTT speaker/style tags.
よくある質問