This repository is no longer maintained. The project moved to captioning/captioning
Julien Villetorte, 2010 ([email protected])
Installation with composer:
add this to your composer.json file:
"require":
{
"delphiki/subrip-file-parser": "1.*"
}
run
php composer update
<?php
require('src/SrtParser/srtFile.php');
try{
$file = new \SrtParser\srtFile('./subtitles.srt');
// display the text of the first entry
echo $file->getSub(0)->getText();
// merge 2 files and save the new generated file
$file2 = new srtFile('./subtitles2.srt');
$file->mergeSrtFile($file2);
$file->build();
$file->save('./new_subtitles.srt');
}
catch(Exception $e){
echo 'Error: '.$e->getMessage()."\n";
}