-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsegmenter.js
238 lines (198 loc) · 6.85 KB
/
segmenter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#!/usr/bin/env node
/*
* Copyright IBM Corp. 2017
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var chalk = require('chalk');
var clear = require('clear');
var CLI = require('clui');
var figlet = require('figlet');
var inquirer = require('inquirer');
var Spinner = CLI.Spinner;
var _ = require('lodash');
var files = require('./lib/files');
var request = require('request');
var moment = require('moment');
require("moment-duration-format");
function processSubtitles(callback) {
var argv = require('minimist')(process.argv.slice(2));
var questions = [{
name: 'filename',
type: 'input',
message: 'Enter the file name of the speech events file:',
default: argv._[0] || null,
validate: function (value) {
if (value.length) {
return true;
} else {
return 'Please enter the file name of the speech events';
}
}
},
{
name: 'source',
type: 'input',
message: 'Enter the BCP source language code or customization id:',
default: argv._[1] || 'en',
validate: function (value) {
if (value.length) {
return true;
} else {
return 'Enter the BCP source language code or customization id';
}
},
},
{
name: 'service',
type: 'input',
message: 'Enter the id of segmentation service: \n'
+ '0: http://bark.phon.ioc.ee/punctuator \n'
+ '1: https://punctuationservice.mybluemix.net \n',
default: argv._[2] || '0',
validate: function (value) {
value = value + '';
if (value.length) {
return true;
} else {
return 'Enter the id of segmentation service';
}
},
}];
inquirer.prompt(questions).then(function (answers) {
var status = new Spinner(chalk.green('Segmenting subtitles...'));
var Tokenizer = require('sentence-tokenizer');
var parser = require('subtitles-parser');
var speechEvents = [];
status.start();
if(answers.source != 'en') {
status.stop();
console.log("Only English segmentation is currently supported");
return callback({'message': 'Unsuported language'});
}
if(answers.service != 0 && answers.service != 1) {
status.stop();
console.log("Need input proper segmentation service id");
return callback({'message': 'Unsuported segmentation service id'});
}
// Read all the raw speech events
try {
speechEvents = JSON.parse(files.read(answers.filename));
} catch (err) {
console.log(err.message);
status.stop();
return callback(err);
}
generateSegments(speechEvents, answers.service, function (err, data) {
if (err) {
console.log(err.message);
status.stop();
return callback(err);
} else {
var tokenizer = new Tokenizer();
tokenizer.setEntry(data);
var sentences = tokenizer.getSentences();
var wordTimes = flatten(speechEvents);
var subs = formatSubtitles(tokenizer.getSentences(), wordTimes);
var srtSubs = parser.toSrt(subs);
files.write(files.name(answers.filename) + '.srt', srtSubs);
status.stop();
return callback(null);
}
});
});
}
function countWords(s) {
s = s.replace(/\n/g, ' '); // newlines to space
s = s.replace(/(^\s*)|(\s*$)/gi, ''); // remove spaces from start + end
s = s.replace(/[ ]{2,}/gi, ' '); // 2 or more spaces to 1
return s.split(' ').length;
}
function flatten(events) {
var words = [];
for (var i = 0; i < events.length; ++i) {
var elements = events[i].words;
words = words.concat(elements);
}
return words;
}
function formatSubtitles(segments, wordTimes) {
var srtJSON = [];
var lastTimeIndex = 0;
/*
Iterate across all the new text segments and find the corresponding times for when the
text segement should be displayed by looking up the times in the the wordTimes array
*/
for (var i = 0; i < segments.length; ++i) {
var subtitle = {
'id': '0',
'startTime': '',
'endTime': '',
'text': ''
};
subtitle.id = String(i + 1);
// Save the subtile text and remove any dashes
subtitle.text = segments[i].replace(/-/, '');;
subtitle.startTime = moment.duration(wordTimes[lastTimeIndex][1], 'seconds').format('hh:mm:ss,SSS', {
trim: false
});
// Move the index to the first word in the next segment, by counting the words in the current segment
lastTimeIndex = lastTimeIndex + countWords(subtitle.text);
// Get the end time for when the last word is spoken in the segment
subtitle.endTime = moment.duration(wordTimes[lastTimeIndex - 1][2], 'seconds').format('hh:mm:ss,SSS', {
trim: false
});
srtJSON.push(subtitle);
}
return srtJSON;
}
function generateSegments(speechEvents, serviceId, callback) {
var srt = '';
var subtitles = '';
var transcript = '';
var seg_services = ['http://bark.phon.ioc.ee/punctuator', 'https://punctuationservice.mybluemix.net/api/punctext'];
for (var i = 0; i < speechEvents.length; ++i) {
if (transcript === '') {
transcript = speechEvents[i].text;
} else {
transcript = transcript + speechEvents[i].text;
}
}
// Call the web service to create segments from the raw text strings
request.post(seg_services[serviceId], {
form: {
text: transcript
}
}, function (err, res) {
if (err) {
return callback(err);
} {
return callback(null, res.body);
}
});
}
clear();
console.log(
chalk.yellow(
figlet.textSync('Segmented Subtitle Generator', {
horizontalLayout: 'full'
})
)
);
processSubtitles(function (err, rawText) {
if (err) {
console.log("Failed to segment subtitles");
} else {
console.log("Segmented subtitle file created");
}
});