file in abyss
フォーマット一覧へ戻る

Subtitle

SRT SubRip Subtitle

動画字幕で広く使われるテキスト形式。番号、タイムコード、字幕本文のブロックで構成されます。

Extensions .srt
MIME application/x-subrip, text/plain

マジックナンバー

ファイルを解析
オフセット 0 最初の字幕番号とタイムコード
31 0A 30 30 3A 30 30
1.00:00

構造

  1. Sequence number
  2. Time range
  3. Subtitle text
  4. Blank line

注意点

  • SRT一般には固定マジックナンバーがなく、文字コードや改行コードも一定ではありません。

判定コード例

SIGNATURE = bytes.fromhex("310a30303a3030")
OFFSET = 0

def is_srt(path: str) -> bool:
    with open(path, "rb") as f:
        f.seek(OFFSET)
        head = f.read(len(SIGNATURE))
    return head == SIGNATURE

実践的な使い方

ユースケース

SubRip Subtitle はデータ交換、インポート/エクスポート、パーサのテスト、検証ワークフローで使われます。エンコーディング・区切り文字・バージョン・コンテナ構造が実装の挙動を変えることがあります。

よくある判定ミス

  • .srt という拡張子だけではファイルの中身を保証できません。アップロードや変換の処理では、拡張子・MIMEタイプ・先頭バイト・形式固有の構造チェックを組み合わせるべきです。
  • SubRip Subtitle は 31 0A 30 30 3A 30 30 のようなシグネチャで始まりますが、関連するコンテナや破損ファイルでは追加の検証が必要になる場合があります。

セキュリティ上の注意

形式が判定できたからといって、信頼できない入力が安全とは限りません。パーサ例外・巨大ファイル・想定外のエンコーディング・外部参照を考慮してください。

サンプルの活用

11 個のサンプルで、先頭バイト判定・パーサのエラー・アップロード上限・ダウンロード挙動をテストできます。

サンプルファイル

11 / 11 files
Sample Traits Size Source / license / SHA-256
Sub

Blue Sky SRT

Blue Sky SRT is a SubRip Subtitle sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

01-blue-sky.srt
Type Sample
Small file
58 B
SHA-256 df98bfdbc94f9a020161538cf6d26234861f300a7c090158735eba993762e5a4
Download
Sub

Flower Garden SRT

Flower Garden SRT is a SubRip Subtitle sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

02-flower-garden.srt
Type Sample
Small file
145 B
SHA-256 0cfd87b4517ffe51778c7f0d6387d4e83cecf7ff950226f897f6f9a7dfae4956
Download
Sub

Navy Blue Sky SRT

Navy Blue Sky SRT is a SubRip Subtitle sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

03-navy-blue-sky.srt
Type Sample
Small file
191 B
SHA-256 494bd539264047912fa02785b36a80474c8b5b0b6e079967ef4bf236568fdcde
Download
Sub

Nature of the Sky SRT

Nature of the Sky SRT is a SubRip Subtitle sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

04-nature-sky.srt
Type Sample
Small file
259 B
SHA-256 466d40a2e987a462611e234655d5020ed9c3a0c78971311828dfbc8ef8df68d3
Download
Sub

Sky Landscape SRT

Sky Landscape SRT is a SubRip Subtitle sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

05-sky-landscape.srt
Type Sample
Small file
364 B
SHA-256 82aef437534e82862820628e3868d631672f56ea21f808814b4c4e867e16f13d
Download
Sub

Starry Sky SRT

Starry Sky SRT is a SubRip Subtitle sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

06-starry-sky.srt
Type Sample
Small file
311 B
SHA-256 e0a400c54266cf8af4940679e89e29d510baaf45fba5766cbff603bb45667ff6
Download
Sub

Blue Night Sky SRT

Blue Night Sky SRT is a SubRip Subtitle sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

07-blue-night-sky.srt
Type Sample
Small file
433 B
SHA-256 a13e8e06c9db6cbdb6b97d17948bb5c39ccedcd441ee5d25e3a64a4e83b939a0
Download
Sub

Hibiscus Flower SRT

Hibiscus Flower SRT is a SubRip Subtitle sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

08-hibiscus-flower.srt
Type Sample
Small file
599 B
SHA-256 f618dc19ae2bebe46ca4defe0db51f596b9209c4c8cd2ddbe6988dd672c85fb7
Download
Sub

Arctic Sky SRT

Arctic Sky SRT is a SubRip Subtitle sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

09-arctic-sky.srt
Type Sample
Small file
548 B
SHA-256 b40fc412ab14f1ccc272c96b890f8bf7f5b6fe4ad134f5cb14cde3e8423677be
Download
Sub

Sunset Rays SRT

Sunset Rays SRT is a SubRip Subtitle sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

10-sunset-rays.srt
Type Sample
Small file
620 B
SHA-256 7419b45bc6adcb4b91eb64665474d99716f835bdc50b771e45d9c19b61b70807
Download
Sub

NASA Blue Marble SRT

NASA Blue Marble SRT is a SubRip Subtitle sample based on NASA Image and Video Library. It can be used to test downloads, parsers, previews, and file type detection.

nasa-blue-marble-2012-east.srt
Type Sample
1.1 KB
SHA-256 4d5b3cd6f6de5de54a34fdceb6fa30f7cf6e88bc695b78311164b2aaa621439f
Download

よくある質問

SubRip Subtitle のマジックナンバー(ファイルシグネチャ)は?

SubRip Subtitle ファイルはバイトシグネチャ 31 0A 30 30 3A 30 30 ("1.00:00") で始まります。拡張子に頼らず、この先頭バイトを読み取って形式を判定してください。

SubRip Subtitle のMIMEタイプは?

SubRip Subtitle のMIMEタイプは application/x-subrip, text/plain です。

SubRip Subtitle の拡張子は?

SubRip Subtitle ファイルは .srt 拡張子を使います。拡張子は慣習にすぎず中身を保証しないため、シグネチャや構造のチェックと組み合わせてください。