fix: keep subtitle line breaks when parsing srt file to json

update job duration label for video clips list
This commit is contained in:
Yassine Doghri 2022-01-20 15:37:54 +00:00
commit cfb3da6592
3 changed files with 5 additions and 2 deletions

View file

@ -68,6 +68,9 @@ class TranscriptParser
$subs[] = $sub;
} else {
if ($subText !== '') {
$subText .= PHP_EOL . $line;
}
$subText .= $line;
}
break;