Skip to content

Instantly share code, notes, and snippets.

@kiang
Created November 6, 2023 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kiang/2ce686084368cfb2ed40beeaf0be40fb to your computer and use it in GitHub Desktop.
Save kiang/2ce686084368cfb2ed40beeaf0be40fb to your computer and use it in GitHub Desktop.
extract text from srt file
<?php
$c = file_get_contents(__DIR__ . '/captions.srt');
$parts = explode("\n\n", $c);
foreach($parts AS $part) {
$lines = explode("\n", $part);
array_shift($lines);
array_shift($lines);
echo implode("\n", $lines) . "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment