JavaScriptでsrtファイルを解析しようとしています。stackoverflow からいくつかのコードを見つけましたが、問題があります。字幕、時間、字幕テキストの行を認識するために、srt ファイルを 1 行ずつ解析しています。しかし、コードが字幕テキストを読み取ると、私のコードは各部分の字幕の1行しか読み取れませんが、字幕の一部には2行またはいくつかの行が含まれています。
これは私のコードです
var PF_SRT = function() {
//SRT format
var pattern = /(\d+)\n([\d:,]+)\s+-{2}\>\s+([\d:,]+)\n([\s\S]*?(?=\n{2}|$))/gm;
var _regExp;
var init = function() {
_regExp = new RegExp(pattern);
};
var parse = function(f) {
if (typeof(f) != "string")
throw "Sorry, Parser accept string only.";
var result = [];
if (f == null)
return _subtitles;
f = f.replace(/\r\n|\r|\n/g, '\n')
while ((matches = pattern.exec(f)) != null) {
result.push(toLineObj(matches));
}
return result;
}
var toLineObj = function(group) {
var hms_start = group[2].replace(',', ':').split(':');
var hms_end = group[3].replace(',', ':').split(':');
return {
line: group[1],
startTime: (+hms_start[0]) * 60 * 60 + (+hms_start[1]) * 60 + (+hms_start[2]) +'.'+ hms_start[3],
endTime: (+hms_end[0]) * 60 * 60 + (+hms_end[1]) * 60 + (+hms_end[2]) +'.'+ hms_end[3],
text: group[4]
};
}
init();
return {
parse: parse
}
}();
// execution
// result is the entire line of srt subtitle file
PF_SRT.parse(result);
私はの出力を期待しています
6
00:00:32,616 --> 00:00:41,496
{\a2}{\c&HFFFFFF&}{\fnTahoma} And 23 of them say forget it
you say this thing never worked
because there's no such thing called internet in the world
に
6
00:00:32,616 --> 00:00:41,496
{\a2}{\c&HFFFFFF&}{\fnTahoma} And 23 of them say forget it<br>you say this thing never worked<br>because there's no such thing called internet in the world