├── .gitignore ├── LICENSE ├── README.md ├── espeak-to-gentle ├── gentle-docker.sh ├── json-times-voice-to-samples.py ├── models └── niklas │ └── base │ ├── niklas-baseaudio.mp3 │ ├── niklas-transcript.txt │ └── output.json ├── silence.mp3 ├── synthi-tts.py └── trimaudios.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jugendhackt/synthi-tts/eb7bcc63f93b054a6786496fdeb4771a2a7047a6/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Jugend hackt 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # synthi-tts 2 | 3 | Digitize your own voice to have it speak for you! Fully automated! 4 | 5 | ![Made at Jugend Hackt 2019 Berlin](http://jhbadge.com/?evt=ber&year=2019) 6 | 7 | **Notice by Niklas:** I've taken this prototype and [re-implemented it to make everything sound a lot better!](https://github.com/nkreer/sinatoki) I would like to thank everyone who helped me bring this idea to life, especially Moritz and Jackob who were responsible for the code in this repo! 8 | 9 | --- 10 | 11 | ## Creating the voice model 12 | 13 | - Speak a little! [audio.mp3] 14 | - Transcribe what you've said [plain text - transcription.txt] 15 | - use forced aligner (gentle) to match timecodes in audio and transcript 16 | - extract phoneme slices (ffmpeg) 17 | 18 | ```bash 19 | # prepare audio.mp3 and transcription.txt 20 | # you need docker pre-installed 21 | # this will generate an output.json inside the path specified. 22 | ./gentle-docker.sh 23 | python3 json-times-voice-to-samples.py [output-folder] 24 | ``` 25 | 26 | ## Speech synthesis 27 | 28 | - requires the voice model created prior to this step 29 | - enter text 30 | - convert to IPA-phonetics (espeak) 31 | - intelligently concatenate voice samples from the model (ffmpeg) 32 | 33 | ```bash 34 | # make sure that voice model is complete 35 | # English is recommended 36 | python3 synthi-tts.py "Your text here" -f 37 | ``` 38 | 39 | Use ```python3 synthi-tts.py --help``` for further help with arguments you may use. 40 | 41 | ## TODO 42 | 43 | * Matching and concatenation on syllable/word level for even better and more understandable synthesis 44 | * Audio edits to remove glottal stops at the end of the short voice samples 45 | * make this a lot faster! 46 | * write an interface so it can be used as your voice system-wide 47 | * graphical TTS utility 48 | -------------------------------------------------------------------------------- /espeak-to-gentle: -------------------------------------------------------------------------------- 1 | p=p 2 | t=t 3 | tS=ch 4 | k=k 5 | f=f 6 | T=th 7 | s=s 8 | S=sh 9 | h=hh 10 | m=m 11 | N=ng 12 | l=l 13 | j=y 14 | b=b 15 | d=d 16 | dZ=jh 17 | g=g 18 | v=v 19 | D=dh 20 | z=s 21 | Z=zh 22 | n=n 23 | r=r 24 | w=w 25 | @=a 26 | 3=er 27 | 3:=er 28 | L=ah l 29 | @2=dh ah 30 | @5=t o 31 | a=ae 32 | aa=ae 33 | a#=ah 34 | A:=aa 35 | A@=aa r 36 | E=eh 37 | e@=eh r 38 | I=ih 39 | I2=ih 40 | i=iy 41 | i:=iy 42 | i@=ih r 43 | 0=ao 44 | V=ah 45 | u:=uw 46 | U=uh 47 | U@=uh r 48 | O:=ao 49 | O@=ao r 50 | o@=ao r 51 | aI=ay 52 | eI=ey 53 | OI=oy 54 | aU=aw 55 | oU=ow 56 | aI@=ay ah 57 | aU@=aw er 58 | -------------------------------------------------------------------------------- /gentle-docker.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # $1 = local path to files 4 | # $2 = audio file 5 | # $3 = transcript 6 | 7 | # This script fires up a docker container of gentle that exits automagically once it's done aligning stuff correctly 8 | 9 | docker run -P -it -v $1:/gentle/output lowerquality/gentle python /gentle/align.py /gentle/output/$2 /gentle/output/$3 -o /gentle/output/output.json && exit 10 | -------------------------------------------------------------------------------- /json-times-voice-to-samples.py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | import subprocess 4 | import json 5 | import math 6 | import statistics 7 | 8 | # Converts seconds to timestamp string 9 | def seconds_to_ffmpeg_format(seconds): 10 | result = str(math.floor(seconds/3600))+":"+str(math.floor(seconds/60)%60)+":"+str(seconds%60) 11 | return result 12 | 13 | 14 | def create_ffmpeg_command(folder_name, word, phone_index): 15 | command = "ffmpeg -i " 16 | command = command + folder_name 17 | phone_offset = word['start'] 18 | for j in range(phone_index): 19 | phone_offset += word['phones'][j]['duration'] 20 | # Continue assembly of command 21 | # Beginning 22 | command = command + ".mp3 -vn -acodec mp3 -ss " + seconds_to_ffmpeg_format(phone_offset) 23 | command = command + " -t " + seconds_to_ffmpeg_format(word['phones'][i]['duration']) 24 | 25 | file_name = folder_name + "/" + word['phones'][phone_index]['phone'][:-2] + "/" 26 | 27 | try: 28 | os.mkdir(file_name) 29 | except FileExistsError: 30 | pass 31 | #create incrementing numerical names 32 | name_found = False 33 | numerical_extension = 0; 34 | while not name_found: 35 | if not os.path.isfile(file_name + str(numerical_extension) + '.mp3'): 36 | file_name += str(numerical_extension) + '.mp3 -loglevel warning -y' 37 | name_found = True 38 | numerical_extension += 1 39 | 40 | # Adding name of the phoneme extract 41 | command = command + " " + file_name 42 | print(command) 43 | return command 44 | 45 | 46 | # Get the name of the gentle output file from CLI 47 | jsonfile = sys.argv[1] 48 | 49 | if not os.path.exists(jsonfile): 50 | print("file " + jsonfile + " doesn't exist! aborting...", file=sys.stderr) 51 | sys.exit() 52 | 53 | folder = str(sys.argv[2]) if len(sys.argv) > 2 else "" 54 | if not folder.strip(): 55 | folder = str(os.path.splitext(jsonfile)[0]) 56 | print("writing to folder " + folder) 57 | 58 | with open(jsonfile) as json_file: 59 | data = json.load(json_file) 60 | 61 | try: 62 | os.mkdir(folder) 63 | except FileExistsError: 64 | #the folder already existsif not jsonfile.endswith("json"): 65 | pass 66 | 67 | 68 | #decide which phoneme to use 69 | # Loop through each word of the transcript 70 | phoneme_map = {} 71 | for word in data['words']: 72 | # Word has to be in the audio file 73 | if word['case'] != "not-found-in-audio": 74 | # Iterates phonemes 75 | for i in range(len(word["phones"])): 76 | if word['phones'][i]['phone'] in phoneme_map: 77 | phoneme_map[word['phones'][i]['phone']].append(word['phones'][i]['duration']) 78 | else: 79 | phoneme_map[word['phones'][i]['phone']] = [word['phones'][i]['duration']] 80 | 81 | #iterates over the phonomes, and replaces the list of all durations with the average duration 82 | for phonome in phoneme_map: 83 | sum_of_all_durations = 0 84 | for value in phoneme_map[phonome]: 85 | sum_of_all_durations += float(value) 86 | average = sum_of_all_durations / len(phoneme_map[phonome]) 87 | print(phoneme_map[phonome]) 88 | try: 89 | standart_deviation = statistics.stdev(phoneme_map[phonome]) 90 | except statistics.StatisticsError: 91 | standart_deviation = 0.1 92 | phoneme_map[phonome] = [average, standart_deviation] 93 | 94 | 95 | # Loop through each word of the transcript 96 | for word in data['words']: 97 | # Word has to be in the audio file 98 | if word['case'] != "not-found-in-audio": 99 | # Iterates phonemes 100 | for i in range(len(word["phones"])): 101 | # Check whether phoneme already exists as saved file 102 | # assemble ffmpeg command and execute it 103 | if word['phones'][i]['duration'] >= phoneme_map[word['phones'][i]['phone']][0] - phoneme_map[word['phones'][i]['phone']][1] and\ 104 | word['phones'][i]['duration'] <= phoneme_map[word['phones'][i]['phone']][0] + phoneme_map[word['phones'][i]['phone']][1]: 105 | os.system(create_ffmpeg_command(jsonfile.replace(".json",""), word, i)) 106 | 107 | # Progress/status 108 | print("currently at " + seconds_to_ffmpeg_format(word['start']) + " from " + seconds_to_ffmpeg_format(data['words'][-1]['end'])) 109 | -------------------------------------------------------------------------------- /models/niklas/base/niklas-baseaudio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jugendhackt/synthi-tts/eb7bcc63f93b054a6786496fdeb4771a2a7047a6/models/niklas/base/niklas-baseaudio.mp3 -------------------------------------------------------------------------------- /models/niklas/base/niklas-transcript.txt: -------------------------------------------------------------------------------- 1 | Mozilla Firefox, or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, Mozilla Corporation. Firefox is officially available for Windows 7 or newer, macOS and Linux; its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos and Solaris Unix. Its sibling, Firefox for Android, is also available. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. An additional version, Firefox for iOS, was released on November 12, 2015. Due to platform restrictions, it uses the WebKit layout engine instead of Gecko, as with all other iOS web browsers. 2 | 3 | Firefox was created in 2002 under the codename "Phoenix" by the Mozilla community members who desired a standalone browser, rather than the Mozilla Application Suite bundle. During its beta phase, Firefox proved to be popular with its testers and was praised for its speed, security, and add-ons compared to Microsoft's then-dominant Internet Explorer 6. Firefox was released on November 9, 2004, and challenged Internet Explorer's dominance with 60 million downloads within nine months. Firefox is the spiritual successor of Netscape Navigator, as the Mozilla community was created by Netscape in 1998 before their acquisition by AOL. 4 | 5 | Firefox usage grew to a peak of 32.21% at the end of 2009, with version 3.5 overtaking Internet Explorer 7, although not all versions of Internet Explorer as a whole. As of September 2019, Firefox has 9.52% usage share as a "desktop" browser. 6 | -------------------------------------------------------------------------------- /models/niklas/base/output.json: -------------------------------------------------------------------------------- 1 | { 2 | "transcript": "Mozilla Firefox, or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, Mozilla Corporation. Firefox is officially available for Windows 7 or newer, macOS and Linux; its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos and Solaris Unix. Its sibling, Firefox for Android, is also available. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. An additional version, Firefox for iOS, was released on November 12, 2015. Due to platform restrictions, it uses the WebKit layout engine instead of Gecko, as with all other iOS web browsers.\n\nFirefox was created in 2002 under the codename \"Phoenix\" by the Mozilla community members who desired a standalone browser, rather than the Mozilla Application Suite bundle. During its beta phase, Firefox proved to be popular with its testers and was praised for its speed, security, and add-ons compared to Microsoft's then-dominant Internet Explorer 6. Firefox was released on November 9, 2004, and challenged Internet Explorer's dominance with 60 million downloads within nine months. Firefox is the spiritual successor of Netscape Navigator, as the Mozilla community was created by Netscape in 1998 before their acquisition by AOL.\n\nFirefox usage grew to a peak of 32.21% at the end of 2009, with version 3.5 overtaking Internet Explorer 7, although not all versions of Internet Explorer as a whole. As of September 2019, Firefox has 9.52% usage share as a \"desktop\" browser.\n", 3 | "words": [ 4 | { 5 | "case": "not-found-in-audio", 6 | "endOffset": 7, 7 | "startOffset": 0, 8 | "word": "Mozilla" 9 | }, 10 | { 11 | "alignedWord": "", 12 | "case": "success", 13 | "end": 1.77, 14 | "endOffset": 15, 15 | "phones": [ 16 | { 17 | "duration": 1.53, 18 | "phone": "oov_S" 19 | } 20 | ], 21 | "start": 0.24, 22 | "startOffset": 8, 23 | "word": "Firefox" 24 | }, 25 | { 26 | "alignedWord": "or", 27 | "case": "success", 28 | "end": 2.25, 29 | "endOffset": 19, 30 | "phones": [ 31 | { 32 | "duration": 0.1, 33 | "phone": "ao_B" 34 | }, 35 | { 36 | "duration": 0.08, 37 | "phone": "r_E" 38 | } 39 | ], 40 | "start": 2.07, 41 | "startOffset": 17, 42 | "word": "or" 43 | }, 44 | { 45 | "alignedWord": "simply", 46 | "case": "success", 47 | "end": 2.7299999999999995, 48 | "endOffset": 26, 49 | "phones": [ 50 | { 51 | "duration": 0.09, 52 | "phone": "s_B" 53 | }, 54 | { 55 | "duration": 0.1, 56 | "phone": "ih_I" 57 | }, 58 | { 59 | "duration": 0.03, 60 | "phone": "m_I" 61 | }, 62 | { 63 | "duration": 0.06, 64 | "phone": "p_I" 65 | }, 66 | { 67 | "duration": 0.07, 68 | "phone": "l_I" 69 | }, 70 | { 71 | "duration": 0.12, 72 | "phone": "iy_E" 73 | } 74 | ], 75 | "start": 2.26, 76 | "startOffset": 20, 77 | "word": "simply" 78 | }, 79 | { 80 | "alignedWord": "", 81 | "case": "success", 82 | "end": 3.68, 83 | "endOffset": 34, 84 | "phones": [ 85 | { 86 | "duration": 0.94, 87 | "phone": "oov_S" 88 | } 89 | ], 90 | "start": 2.74, 91 | "startOffset": 27, 92 | "word": "Firefox" 93 | }, 94 | { 95 | "alignedWord": "is", 96 | "case": "success", 97 | "end": 4.2700000000000005, 98 | "endOffset": 38, 99 | "phones": [ 100 | { 101 | "duration": 0.12, 102 | "phone": "ih_B" 103 | }, 104 | { 105 | "duration": 0.08, 106 | "phone": "z_E" 107 | } 108 | ], 109 | "start": 4.07, 110 | "startOffset": 36, 111 | "word": "is" 112 | }, 113 | { 114 | "alignedWord": "a", 115 | "case": "success", 116 | "end": 4.39, 117 | "endOffset": 40, 118 | "phones": [ 119 | { 120 | "duration": 0.12, 121 | "phone": "ah_S" 122 | } 123 | ], 124 | "start": 4.27, 125 | "startOffset": 39, 126 | "word": "a" 127 | }, 128 | { 129 | "alignedWord": "free", 130 | "case": "success", 131 | "end": 4.9, 132 | "endOffset": 45, 133 | "phones": [ 134 | { 135 | "duration": 0.12, 136 | "phone": "f_B" 137 | }, 138 | { 139 | "duration": 0.11, 140 | "phone": "r_I" 141 | }, 142 | { 143 | "duration": 0.27, 144 | "phone": "iy_E" 145 | } 146 | ], 147 | "start": 4.4, 148 | "startOffset": 41, 149 | "word": "free" 150 | }, 151 | { 152 | "alignedWord": "and", 153 | "case": "success", 154 | "end": 5.2700000000000005, 155 | "endOffset": 49, 156 | "phones": [ 157 | { 158 | "duration": 0.17, 159 | "phone": "ae_B" 160 | }, 161 | { 162 | "duration": 0.08, 163 | "phone": "n_I" 164 | }, 165 | { 166 | "duration": 0.08, 167 | "phone": "d_E" 168 | } 169 | ], 170 | "start": 4.94, 171 | "startOffset": 46, 172 | "word": "and" 173 | }, 174 | { 175 | "alignedWord": "open", 176 | "case": "success", 177 | "end": 5.66, 178 | "endOffset": 54, 179 | "phones": [ 180 | { 181 | "duration": 0.13, 182 | "phone": "ow_B" 183 | }, 184 | { 185 | "duration": 0.08, 186 | "phone": "p_I" 187 | }, 188 | { 189 | "duration": 0.08, 190 | "phone": "ah_I" 191 | }, 192 | { 193 | "duration": 0.09, 194 | "phone": "n_E" 195 | } 196 | ], 197 | "start": 5.28, 198 | "startOffset": 50, 199 | "word": "open" 200 | }, 201 | { 202 | "alignedWord": "source", 203 | "case": "success", 204 | "end": 6.09, 205 | "endOffset": 61, 206 | "phones": [ 207 | { 208 | "duration": 0.12, 209 | "phone": "s_B" 210 | }, 211 | { 212 | "duration": 0.11, 213 | "phone": "ao_I" 214 | }, 215 | { 216 | "duration": 0.1, 217 | "phone": "r_I" 218 | }, 219 | { 220 | "duration": 0.1, 221 | "phone": "s_E" 222 | } 223 | ], 224 | "start": 5.66, 225 | "startOffset": 55, 226 | "word": "source" 227 | }, 228 | { 229 | "alignedWord": "web", 230 | "case": "success", 231 | "end": 6.34, 232 | "endOffset": 65, 233 | "phones": [ 234 | { 235 | "duration": 0.1, 236 | "phone": "w_B" 237 | }, 238 | { 239 | "duration": 0.1, 240 | "phone": "eh_I" 241 | }, 242 | { 243 | "duration": 0.04, 244 | "phone": "b_E" 245 | } 246 | ], 247 | "start": 6.1, 248 | "startOffset": 62, 249 | "word": "web" 250 | }, 251 | { 252 | "alignedWord": "browser", 253 | "case": "success", 254 | "end": 7.029999999999999, 255 | "endOffset": 73, 256 | "phones": [ 257 | { 258 | "duration": 0.08, 259 | "phone": "b_B" 260 | }, 261 | { 262 | "duration": 0.06, 263 | "phone": "r_I" 264 | }, 265 | { 266 | "duration": 0.18, 267 | "phone": "aw_I" 268 | }, 269 | { 270 | "duration": 0.11, 271 | "phone": "z_I" 272 | }, 273 | { 274 | "duration": 0.26, 275 | "phone": "er_E" 276 | } 277 | ], 278 | "start": 6.34, 279 | "startOffset": 66, 280 | "word": "browser" 281 | }, 282 | { 283 | "alignedWord": "developed", 284 | "case": "success", 285 | "end": 8.0, 286 | "endOffset": 83, 287 | "phones": [ 288 | { 289 | "duration": 0.08, 290 | "phone": "d_B" 291 | }, 292 | { 293 | "duration": 0.07, 294 | "phone": "ih_I" 295 | }, 296 | { 297 | "duration": 0.06, 298 | "phone": "v_I" 299 | }, 300 | { 301 | "duration": 0.07, 302 | "phone": "eh_I" 303 | }, 304 | { 305 | "duration": 0.1, 306 | "phone": "l_I" 307 | }, 308 | { 309 | "duration": 0.06, 310 | "phone": "ah_I" 311 | }, 312 | { 313 | "duration": 0.08, 314 | "phone": "p_I" 315 | }, 316 | { 317 | "duration": 0.1, 318 | "phone": "t_E" 319 | } 320 | ], 321 | "start": 7.38, 322 | "startOffset": 74, 323 | "word": "developed" 324 | }, 325 | { 326 | "alignedWord": "by", 327 | "case": "success", 328 | "end": 8.26, 329 | "endOffset": 86, 330 | "phones": [ 331 | { 332 | "duration": 0.1, 333 | "phone": "b_B" 334 | }, 335 | { 336 | "duration": 0.14, 337 | "phone": "ay_E" 338 | } 339 | ], 340 | "start": 8.02, 341 | "startOffset": 84, 342 | "word": "by" 343 | }, 344 | { 345 | "alignedWord": "the", 346 | "case": "success", 347 | "end": 8.4, 348 | "endOffset": 90, 349 | "phones": [ 350 | { 351 | "duration": 0.07, 352 | "phone": "dh_B" 353 | }, 354 | { 355 | "duration": 0.06, 356 | "phone": "ah_E" 357 | } 358 | ], 359 | "start": 8.27, 360 | "startOffset": 87, 361 | "word": "the" 362 | }, 363 | { 364 | "alignedWord": "", 365 | "case": "success", 366 | "end": 8.860000000000001, 367 | "endOffset": 98, 368 | "phones": [ 369 | { 370 | "duration": 0.46, 371 | "phone": "oov_S" 372 | } 373 | ], 374 | "start": 8.4, 375 | "startOffset": 91, 376 | "word": "Mozilla" 377 | }, 378 | { 379 | "alignedWord": "foundation", 380 | "case": "success", 381 | "end": 9.75, 382 | "endOffset": 109, 383 | "phones": [ 384 | { 385 | "duration": 0.11, 386 | "phone": "f_B" 387 | }, 388 | { 389 | "duration": 0.11, 390 | "phone": "aw_I" 391 | }, 392 | { 393 | "duration": 0.07, 394 | "phone": "n_I" 395 | }, 396 | { 397 | "duration": 0.09, 398 | "phone": "d_I" 399 | }, 400 | { 401 | "duration": 0.11, 402 | "phone": "ey_I" 403 | }, 404 | { 405 | "duration": 0.15, 406 | "phone": "sh_I" 407 | }, 408 | { 409 | "duration": 0.08, 410 | "phone": "ah_I" 411 | }, 412 | { 413 | "duration": 0.17, 414 | "phone": "n_E" 415 | } 416 | ], 417 | "start": 8.86, 418 | "startOffset": 99, 419 | "word": "Foundation" 420 | }, 421 | { 422 | "alignedWord": "and", 423 | "case": "success", 424 | "end": 10.249998999999999, 425 | "endOffset": 113, 426 | "phones": [ 427 | { 428 | "duration": 0.11, 429 | "phone": "ae_B" 430 | }, 431 | { 432 | "duration": 0.07, 433 | "phone": "n_I" 434 | }, 435 | { 436 | "duration": 0.01, 437 | "phone": "d_E" 438 | } 439 | ], 440 | "start": 10.059999, 441 | "startOffset": 110, 442 | "word": "and" 443 | }, 444 | { 445 | "alignedWord": "its", 446 | "case": "success", 447 | "end": 10.39, 448 | "endOffset": 117, 449 | "phones": [ 450 | { 451 | "duration": 0.07, 452 | "phone": "ih_B" 453 | }, 454 | { 455 | "duration": 0.06, 456 | "phone": "t_I" 457 | }, 458 | { 459 | "duration": 0.01, 460 | "phone": "s_E" 461 | } 462 | ], 463 | "start": 10.25, 464 | "startOffset": 114, 465 | "word": "its" 466 | }, 467 | { 468 | "alignedWord": "subsidiary", 469 | "case": "success", 470 | "end": 11.450000000000001, 471 | "endOffset": 128, 472 | "phones": [ 473 | { 474 | "duration": 0.09, 475 | "phone": "s_B" 476 | }, 477 | { 478 | "duration": 0.08, 479 | "phone": "ah_I" 480 | }, 481 | { 482 | "duration": 0.09, 483 | "phone": "b_I" 484 | }, 485 | { 486 | "duration": 0.09, 487 | "phone": "s_I" 488 | }, 489 | { 490 | "duration": 0.09, 491 | "phone": "ih_I" 492 | }, 493 | { 494 | "duration": 0.06, 495 | "phone": "d_I" 496 | }, 497 | { 498 | "duration": 0.12, 499 | "phone": "iy_I" 500 | }, 501 | { 502 | "duration": 0.08, 503 | "phone": "eh_I" 504 | }, 505 | { 506 | "duration": 0.16, 507 | "phone": "r_I" 508 | }, 509 | { 510 | "duration": 0.19, 511 | "phone": "iy_E" 512 | } 513 | ], 514 | "start": 10.4, 515 | "startOffset": 118, 516 | "word": "subsidiary" 517 | }, 518 | { 519 | "alignedWord": "", 520 | "case": "success", 521 | "end": 12.09, 522 | "endOffset": 137, 523 | "phones": [ 524 | { 525 | "duration": 0.6, 526 | "phone": "oov_S" 527 | } 528 | ], 529 | "start": 11.49, 530 | "startOffset": 130, 531 | "word": "Mozilla" 532 | }, 533 | { 534 | "alignedWord": "corporation", 535 | "case": "success", 536 | "end": 13.03, 537 | "endOffset": 149, 538 | "phones": [ 539 | { 540 | "duration": 0.09, 541 | "phone": "k_B" 542 | }, 543 | { 544 | "duration": 0.06, 545 | "phone": "ao_I" 546 | }, 547 | { 548 | "duration": 0.06, 549 | "phone": "r_I" 550 | }, 551 | { 552 | "duration": 0.09, 553 | "phone": "p_I" 554 | }, 555 | { 556 | "duration": 0.14, 557 | "phone": "er_I" 558 | }, 559 | { 560 | "duration": 0.11, 561 | "phone": "ey_I" 562 | }, 563 | { 564 | "duration": 0.12, 565 | "phone": "sh_I" 566 | }, 567 | { 568 | "duration": 0.08, 569 | "phone": "ah_I" 570 | }, 571 | { 572 | "duration": 0.19, 573 | "phone": "n_E" 574 | } 575 | ], 576 | "start": 12.09, 577 | "startOffset": 138, 578 | "word": "Corporation" 579 | }, 580 | { 581 | "alignedWord": "", 582 | "case": "success", 583 | "end": 14.889999999999999, 584 | "endOffset": 158, 585 | "phones": [ 586 | { 587 | "duration": 0.86, 588 | "phone": "oov_S" 589 | } 590 | ], 591 | "start": 14.03, 592 | "startOffset": 151, 593 | "word": "Firefox" 594 | }, 595 | { 596 | "alignedWord": "is", 597 | "case": "success", 598 | "end": 15.24, 599 | "endOffset": 161, 600 | "phones": [ 601 | { 602 | "duration": 0.18, 603 | "phone": "ih_B" 604 | }, 605 | { 606 | "duration": 0.12, 607 | "phone": "z_E" 608 | } 609 | ], 610 | "start": 14.94, 611 | "startOffset": 159, 612 | "word": "is" 613 | }, 614 | { 615 | "alignedWord": "officially", 616 | "case": "success", 617 | "end": 15.95, 618 | "endOffset": 172, 619 | "phones": [ 620 | { 621 | "duration": 0.08, 622 | "phone": "ah_B" 623 | }, 624 | { 625 | "duration": 0.13, 626 | "phone": "f_I" 627 | }, 628 | { 629 | "duration": 0.08, 630 | "phone": "ih_I" 631 | }, 632 | { 633 | "duration": 0.13, 634 | "phone": "sh_I" 635 | }, 636 | { 637 | "duration": 0.06, 638 | "phone": "ah_I" 639 | }, 640 | { 641 | "duration": 0.1, 642 | "phone": "l_I" 643 | }, 644 | { 645 | "duration": 0.1, 646 | "phone": "iy_E" 647 | } 648 | ], 649 | "start": 15.27, 650 | "startOffset": 162, 651 | "word": "officially" 652 | }, 653 | { 654 | "alignedWord": "available", 655 | "case": "success", 656 | "end": 16.56, 657 | "endOffset": 182, 658 | "phones": [ 659 | { 660 | "duration": 0.05, 661 | "phone": "ah_B" 662 | }, 663 | { 664 | "duration": 0.12, 665 | "phone": "v_I" 666 | }, 667 | { 668 | "duration": 0.08, 669 | "phone": "ey_I" 670 | }, 671 | { 672 | "duration": 0.08, 673 | "phone": "l_I" 674 | }, 675 | { 676 | "duration": 0.05, 677 | "phone": "ah_I" 678 | }, 679 | { 680 | "duration": 0.05, 681 | "phone": "b_I" 682 | }, 683 | { 684 | "duration": 0.06, 685 | "phone": "ah_I" 686 | }, 687 | { 688 | "duration": 0.12, 689 | "phone": "l_E" 690 | } 691 | ], 692 | "start": 15.95, 693 | "startOffset": 173, 694 | "word": "available" 695 | }, 696 | { 697 | "alignedWord": "for", 698 | "case": "success", 699 | "end": 16.740000000000002, 700 | "endOffset": 186, 701 | "phones": [ 702 | { 703 | "duration": 0.09, 704 | "phone": "f_B" 705 | }, 706 | { 707 | "duration": 0.08, 708 | "phone": "er_E" 709 | } 710 | ], 711 | "start": 16.57, 712 | "startOffset": 183, 713 | "word": "for" 714 | }, 715 | { 716 | "alignedWord": "windows", 717 | "case": "success", 718 | "end": 17.209999999999997, 719 | "endOffset": 194, 720 | "phones": [ 721 | { 722 | "duration": 0.06, 723 | "phone": "w_B" 724 | }, 725 | { 726 | "duration": 0.09, 727 | "phone": "ih_I" 728 | }, 729 | { 730 | "duration": 0.03, 731 | "phone": "n_I" 732 | }, 733 | { 734 | "duration": 0.09, 735 | "phone": "d_I" 736 | }, 737 | { 738 | "duration": 0.09, 739 | "phone": "ow_I" 740 | }, 741 | { 742 | "duration": 0.11, 743 | "phone": "z_E" 744 | } 745 | ], 746 | "start": 16.74, 747 | "startOffset": 187, 748 | "word": "Windows" 749 | }, 750 | { 751 | "alignedWord": "", 752 | "case": "success", 753 | "end": 18.059999, 754 | "endOffset": 196, 755 | "phones": [ 756 | { 757 | "duration": 0.01, 758 | "phone": "oov_S" 759 | } 760 | ], 761 | "start": 18.049999, 762 | "startOffset": 195, 763 | "word": "7" 764 | }, 765 | { 766 | "alignedWord": "or", 767 | "case": "success", 768 | "end": 18.389999, 769 | "endOffset": 199, 770 | "phones": [ 771 | { 772 | "duration": 0.09, 773 | "phone": "ao_B" 774 | }, 775 | { 776 | "duration": 0.24, 777 | "phone": "r_E" 778 | } 779 | ], 780 | "start": 18.059999, 781 | "startOffset": 197, 782 | "word": "or" 783 | }, 784 | { 785 | "alignedWord": "newer", 786 | "case": "success", 787 | "end": 18.700000000000003, 788 | "endOffset": 205, 789 | "phones": [ 790 | { 791 | "duration": 0.01, 792 | "phone": "n_B" 793 | }, 794 | { 795 | "duration": 0.01, 796 | "phone": "uw_I" 797 | }, 798 | { 799 | "duration": 0.01, 800 | "phone": "er_E" 801 | } 802 | ], 803 | "start": 18.67, 804 | "startOffset": 200, 805 | "word": "newer" 806 | }, 807 | { 808 | "alignedWord": "", 809 | "case": "success", 810 | "end": 19.529999999999998, 811 | "endOffset": 212, 812 | "phones": [ 813 | { 814 | "duration": 0.83, 815 | "phone": "oov_S" 816 | } 817 | ], 818 | "start": 18.7, 819 | "startOffset": 207, 820 | "word": "macOS" 821 | }, 822 | { 823 | "alignedWord": "and", 824 | "case": "success", 825 | "end": 19.88, 826 | "endOffset": 216, 827 | "phones": [ 828 | { 829 | "duration": 0.14, 830 | "phone": "ae_B" 831 | }, 832 | { 833 | "duration": 0.08, 834 | "phone": "n_I" 835 | }, 836 | { 837 | "duration": 0.05, 838 | "phone": "d_E" 839 | } 840 | ], 841 | "start": 19.61, 842 | "startOffset": 213, 843 | "word": "and" 844 | }, 845 | { 846 | "alignedWord": "linux", 847 | "case": "success", 848 | "end": 20.55, 849 | "endOffset": 222, 850 | "phones": [ 851 | { 852 | "duration": 0.07, 853 | "phone": "l_B" 854 | }, 855 | { 856 | "duration": 0.08, 857 | "phone": "ih_I" 858 | }, 859 | { 860 | "duration": 0.07, 861 | "phone": "n_I" 862 | }, 863 | { 864 | "duration": 0.12, 865 | "phone": "ah_I" 866 | }, 867 | { 868 | "duration": 0.09, 869 | "phone": "k_I" 870 | }, 871 | { 872 | "duration": 0.24, 873 | "phone": "s_E" 874 | } 875 | ], 876 | "start": 19.88, 877 | "startOffset": 217, 878 | "word": "Linux" 879 | }, 880 | { 881 | "alignedWord": "its", 882 | "case": "success", 883 | "end": 21.2, 884 | "endOffset": 227, 885 | "phones": [ 886 | { 887 | "duration": 0.1, 888 | "phone": "ih_B" 889 | }, 890 | { 891 | "duration": 0.07, 892 | "phone": "t_I" 893 | }, 894 | { 895 | "duration": 0.1, 896 | "phone": "s_E" 897 | } 898 | ], 899 | "start": 20.93, 900 | "startOffset": 224, 901 | "word": "its" 902 | }, 903 | { 904 | "alignedWord": "unofficial", 905 | "case": "success", 906 | "end": 21.9, 907 | "endOffset": 238, 908 | "phones": [ 909 | { 910 | "duration": 0.12, 911 | "phone": "ah_B" 912 | }, 913 | { 914 | "duration": 0.08, 915 | "phone": "n_I" 916 | }, 917 | { 918 | "duration": 0.06, 919 | "phone": "ah_I" 920 | }, 921 | { 922 | "duration": 0.1, 923 | "phone": "f_I" 924 | }, 925 | { 926 | "duration": 0.08, 927 | "phone": "ih_I" 928 | }, 929 | { 930 | "duration": 0.1, 931 | "phone": "sh_I" 932 | }, 933 | { 934 | "duration": 0.07, 935 | "phone": "ah_I" 936 | }, 937 | { 938 | "duration": 0.07, 939 | "phone": "l_E" 940 | } 941 | ], 942 | "start": 21.22, 943 | "startOffset": 228, 944 | "word": "unofficial" 945 | }, 946 | { 947 | "alignedWord": "ports", 948 | "case": "success", 949 | "end": 22.459999999999997, 950 | "endOffset": 244, 951 | "phones": [ 952 | { 953 | "duration": 0.12, 954 | "phone": "p_B" 955 | }, 956 | { 957 | "duration": 0.13, 958 | "phone": "ao_I" 959 | }, 960 | { 961 | "duration": 0.06, 962 | "phone": "r_I" 963 | }, 964 | { 965 | "duration": 0.09, 966 | "phone": "t_I" 967 | }, 968 | { 969 | "duration": 0.16, 970 | "phone": "s_E" 971 | } 972 | ], 973 | "start": 21.9, 974 | "startOffset": 239, 975 | "word": "ports" 976 | }, 977 | { 978 | "alignedWord": "are", 979 | "case": "success", 980 | "end": 22.799999999999997, 981 | "endOffset": 248, 982 | "phones": [ 983 | { 984 | "duration": 0.11, 985 | "phone": "aa_B" 986 | }, 987 | { 988 | "duration": 0.18, 989 | "phone": "r_E" 990 | } 991 | ], 992 | "start": 22.509999999999998, 993 | "startOffset": 245, 994 | "word": "are" 995 | }, 996 | { 997 | "alignedWord": "available", 998 | "case": "success", 999 | "end": 23.349999999999998, 1000 | "endOffset": 258, 1001 | "phones": [ 1002 | { 1003 | "duration": 0.01, 1004 | "phone": "ah_B" 1005 | }, 1006 | { 1007 | "duration": 0.11, 1008 | "phone": "v_I" 1009 | }, 1010 | { 1011 | "duration": 0.08, 1012 | "phone": "ey_I" 1013 | }, 1014 | { 1015 | "duration": 0.08, 1016 | "phone": "l_I" 1017 | }, 1018 | { 1019 | "duration": 0.05, 1020 | "phone": "ah_I" 1021 | }, 1022 | { 1023 | "duration": 0.03, 1024 | "phone": "b_I" 1025 | }, 1026 | { 1027 | "duration": 0.06, 1028 | "phone": "ah_I" 1029 | }, 1030 | { 1031 | "duration": 0.12, 1032 | "phone": "l_E" 1033 | } 1034 | ], 1035 | "start": 22.81, 1036 | "startOffset": 249, 1037 | "word": "available" 1038 | }, 1039 | { 1040 | "alignedWord": "for", 1041 | "case": "success", 1042 | "end": 23.59, 1043 | "endOffset": 262, 1044 | "phones": [ 1045 | { 1046 | "duration": 0.09, 1047 | "phone": "f_B" 1048 | }, 1049 | { 1050 | "duration": 0.14, 1051 | "phone": "er_E" 1052 | } 1053 | ], 1054 | "start": 23.36, 1055 | "startOffset": 259, 1056 | "word": "for" 1057 | }, 1058 | { 1059 | "alignedWord": "various", 1060 | "case": "success", 1061 | "end": 24.18, 1062 | "endOffset": 270, 1063 | "phones": [ 1064 | { 1065 | "duration": 0.07, 1066 | "phone": "v_B" 1067 | }, 1068 | { 1069 | "duration": 0.1, 1070 | "phone": "eh_I" 1071 | }, 1072 | { 1073 | "duration": 0.12, 1074 | "phone": "r_I" 1075 | }, 1076 | { 1077 | "duration": 0.09, 1078 | "phone": "iy_I" 1079 | }, 1080 | { 1081 | "duration": 0.08, 1082 | "phone": "ah_I" 1083 | }, 1084 | { 1085 | "duration": 0.12, 1086 | "phone": "s_E" 1087 | } 1088 | ], 1089 | "start": 23.6, 1090 | "startOffset": 263, 1091 | "word": "various" 1092 | }, 1093 | { 1094 | "alignedWord": "unix", 1095 | "case": "success", 1096 | "end": 24.77, 1097 | "endOffset": 275, 1098 | "phones": [ 1099 | { 1100 | "duration": 0.1, 1101 | "phone": "y_B" 1102 | }, 1103 | { 1104 | "duration": 0.1, 1105 | "phone": "uw_I" 1106 | }, 1107 | { 1108 | "duration": 0.07, 1109 | "phone": "n_I" 1110 | }, 1111 | { 1112 | "duration": 0.09, 1113 | "phone": "ih_I" 1114 | }, 1115 | { 1116 | "duration": 0.09, 1117 | "phone": "k_I" 1118 | }, 1119 | { 1120 | "duration": 0.14, 1121 | "phone": "s_E" 1122 | } 1123 | ], 1124 | "start": 24.18, 1125 | "startOffset": 271, 1126 | "word": "Unix" 1127 | }, 1128 | { 1129 | "alignedWord": "and", 1130 | "case": "success", 1131 | "end": 25.41, 1132 | "endOffset": 279, 1133 | "phones": [ 1134 | { 1135 | "duration": 0.21, 1136 | "phone": "ae_B" 1137 | }, 1138 | { 1139 | "duration": 0.1, 1140 | "phone": "n_I" 1141 | }, 1142 | { 1143 | "duration": 0.03, 1144 | "phone": "d_E" 1145 | } 1146 | ], 1147 | "start": 25.07, 1148 | "startOffset": 276, 1149 | "word": "and" 1150 | }, 1151 | { 1152 | "alignedWord": "unix", 1153 | "case": "success", 1154 | "end": 25.950000000000003, 1155 | "endOffset": 284, 1156 | "phones": [ 1157 | { 1158 | "duration": 0.13, 1159 | "phone": "y_B" 1160 | }, 1161 | { 1162 | "duration": 0.1, 1163 | "phone": "uw_I" 1164 | }, 1165 | { 1166 | "duration": 0.06, 1167 | "phone": "n_I" 1168 | }, 1169 | { 1170 | "duration": 0.05, 1171 | "phone": "ih_I" 1172 | }, 1173 | { 1174 | "duration": 0.09, 1175 | "phone": "k_I" 1176 | }, 1177 | { 1178 | "duration": 0.1, 1179 | "phone": "s_E" 1180 | } 1181 | ], 1182 | "start": 25.42, 1183 | "startOffset": 280, 1184 | "word": "Unix" 1185 | }, 1186 | { 1187 | "alignedWord": "like", 1188 | "case": "success", 1189 | "end": 26.259999999999998, 1190 | "endOffset": 289, 1191 | "phones": [ 1192 | { 1193 | "duration": 0.1, 1194 | "phone": "l_B" 1195 | }, 1196 | { 1197 | "duration": 0.12, 1198 | "phone": "ay_I" 1199 | }, 1200 | { 1201 | "duration": 0.09, 1202 | "phone": "k_E" 1203 | } 1204 | ], 1205 | "start": 25.95, 1206 | "startOffset": 285, 1207 | "word": "like" 1208 | }, 1209 | { 1210 | "alignedWord": "operating", 1211 | "case": "success", 1212 | "end": 26.93, 1213 | "endOffset": 299, 1214 | "phones": [ 1215 | { 1216 | "duration": 0.17, 1217 | "phone": "ao_B" 1218 | }, 1219 | { 1220 | "duration": 0.11, 1221 | "phone": "p_I" 1222 | }, 1223 | { 1224 | "duration": 0.11, 1225 | "phone": "er_I" 1226 | }, 1227 | { 1228 | "duration": 0.05, 1229 | "phone": "ey_I" 1230 | }, 1231 | { 1232 | "duration": 0.04, 1233 | "phone": "t_I" 1234 | }, 1235 | { 1236 | "duration": 0.06, 1237 | "phone": "ih_I" 1238 | }, 1239 | { 1240 | "duration": 0.11, 1241 | "phone": "ng_E" 1242 | } 1243 | ], 1244 | "start": 26.28, 1245 | "startOffset": 290, 1246 | "word": "operating" 1247 | }, 1248 | { 1249 | "alignedWord": "systems", 1250 | "case": "success", 1251 | "end": 27.599999000000004, 1252 | "endOffset": 307, 1253 | "phones": [ 1254 | { 1255 | "duration": 0.08, 1256 | "phone": "s_B" 1257 | }, 1258 | { 1259 | "duration": 0.09, 1260 | "phone": "ih_I" 1261 | }, 1262 | { 1263 | "duration": 0.08, 1264 | "phone": "s_I" 1265 | }, 1266 | { 1267 | "duration": 0.07, 1268 | "phone": "t_I" 1269 | }, 1270 | { 1271 | "duration": 0.09, 1272 | "phone": "ah_I" 1273 | }, 1274 | { 1275 | "duration": 0.09, 1276 | "phone": "m_I" 1277 | }, 1278 | { 1279 | "duration": 0.17, 1280 | "phone": "z_E" 1281 | } 1282 | ], 1283 | "start": 26.929999000000002, 1284 | "startOffset": 300, 1285 | "word": "systems" 1286 | }, 1287 | { 1288 | "alignedWord": "including", 1289 | "case": "success", 1290 | "end": 28.73, 1291 | "endOffset": 317, 1292 | "phones": [ 1293 | { 1294 | "duration": 0.13, 1295 | "phone": "ih_B" 1296 | }, 1297 | { 1298 | "duration": 0.08, 1299 | "phone": "n_I" 1300 | }, 1301 | { 1302 | "duration": 0.1, 1303 | "phone": "k_I" 1304 | }, 1305 | { 1306 | "duration": 0.08, 1307 | "phone": "l_I" 1308 | }, 1309 | { 1310 | "duration": 0.09, 1311 | "phone": "uw_I" 1312 | }, 1313 | { 1314 | "duration": 0.06, 1315 | "phone": "d_I" 1316 | }, 1317 | { 1318 | "duration": 0.09, 1319 | "phone": "ih_I" 1320 | }, 1321 | { 1322 | "duration": 0.15, 1323 | "phone": "ng_E" 1324 | } 1325 | ], 1326 | "start": 27.95, 1327 | "startOffset": 308, 1328 | "word": "including" 1329 | }, 1330 | { 1331 | "alignedWord": "", 1332 | "case": "success", 1333 | "end": 28.750000000000004, 1334 | "endOffset": 325, 1335 | "phones": [ 1336 | { 1337 | "duration": 0.01, 1338 | "phone": "oov_S" 1339 | } 1340 | ], 1341 | "start": 28.740000000000002, 1342 | "startOffset": 318, 1343 | "word": "FreeBSD" 1344 | }, 1345 | { 1346 | "alignedWord": "", 1347 | "case": "success", 1348 | "end": 29.970000000000002, 1349 | "endOffset": 334, 1350 | "phones": [ 1351 | { 1352 | "duration": 1.15, 1353 | "phone": "oov_S" 1354 | } 1355 | ], 1356 | "start": 28.820000000000004, 1357 | "startOffset": 327, 1358 | "word": "OpenBSD" 1359 | }, 1360 | { 1361 | "alignedWord": "", 1362 | "case": "success", 1363 | "end": 30.470000000000002, 1364 | "endOffset": 342, 1365 | "phones": [ 1366 | { 1367 | "duration": 0.01, 1368 | "phone": "oov_S" 1369 | } 1370 | ], 1371 | "start": 30.460000000000004, 1372 | "startOffset": 336, 1373 | "word": "NetBSD" 1374 | }, 1375 | { 1376 | "alignedWord": "", 1377 | "case": "success", 1378 | "end": 34.54, 1379 | "endOffset": 351, 1380 | "phones": [ 1381 | { 1382 | "duration": 0.52, 1383 | "phone": "oov_S" 1384 | } 1385 | ], 1386 | "start": 34.019999999999996, 1387 | "startOffset": 344, 1388 | "word": "illumos" 1389 | }, 1390 | { 1391 | "alignedWord": "and", 1392 | "case": "success", 1393 | "end": 35.01, 1394 | "endOffset": 355, 1395 | "phones": [ 1396 | { 1397 | "duration": 0.13, 1398 | "phone": "ae_B" 1399 | }, 1400 | { 1401 | "duration": 0.06, 1402 | "phone": "n_I" 1403 | }, 1404 | { 1405 | "duration": 0.08, 1406 | "phone": "d_E" 1407 | } 1408 | ], 1409 | "start": 34.739999999999995, 1410 | "startOffset": 352, 1411 | "word": "and" 1412 | }, 1413 | { 1414 | "alignedWord": "solaris", 1415 | "case": "success", 1416 | "end": 35.56, 1417 | "endOffset": 363, 1418 | "phones": [ 1419 | { 1420 | "duration": 0.06, 1421 | "phone": "s_B" 1422 | }, 1423 | { 1424 | "duration": 0.06, 1425 | "phone": "ow_I" 1426 | }, 1427 | { 1428 | "duration": 0.1, 1429 | "phone": "l_I" 1430 | }, 1431 | { 1432 | "duration": 0.08, 1433 | "phone": "eh_I" 1434 | }, 1435 | { 1436 | "duration": 0.08, 1437 | "phone": "r_I" 1438 | }, 1439 | { 1440 | "duration": 0.08, 1441 | "phone": "ih_I" 1442 | }, 1443 | { 1444 | "duration": 0.09, 1445 | "phone": "s_E" 1446 | } 1447 | ], 1448 | "start": 35.010000000000005, 1449 | "startOffset": 356, 1450 | "word": "Solaris" 1451 | }, 1452 | { 1453 | "alignedWord": "unix", 1454 | "case": "success", 1455 | "end": 36.25999900000001, 1456 | "endOffset": 368, 1457 | "phones": [ 1458 | { 1459 | "duration": 0.07, 1460 | "phone": "y_B" 1461 | }, 1462 | { 1463 | "duration": 0.11, 1464 | "phone": "uw_I" 1465 | }, 1466 | { 1467 | "duration": 0.07, 1468 | "phone": "n_I" 1469 | }, 1470 | { 1471 | "duration": 0.1, 1472 | "phone": "ih_I" 1473 | }, 1474 | { 1475 | "duration": 0.11, 1476 | "phone": "k_I" 1477 | }, 1478 | { 1479 | "duration": 0.24, 1480 | "phone": "s_E" 1481 | } 1482 | ], 1483 | "start": 35.559999000000005, 1484 | "startOffset": 364, 1485 | "word": "Unix" 1486 | }, 1487 | { 1488 | "alignedWord": "its", 1489 | "case": "success", 1490 | "end": 37.29, 1491 | "endOffset": 373, 1492 | "phones": [ 1493 | { 1494 | "duration": 0.12, 1495 | "phone": "ih_B" 1496 | }, 1497 | { 1498 | "duration": 0.1, 1499 | "phone": "t_I" 1500 | }, 1501 | { 1502 | "duration": 0.02, 1503 | "phone": "s_E" 1504 | } 1505 | ], 1506 | "start": 37.05, 1507 | "startOffset": 370, 1508 | "word": "Its" 1509 | }, 1510 | { 1511 | "alignedWord": "sibling", 1512 | "case": "success", 1513 | "end": 37.93, 1514 | "endOffset": 381, 1515 | "phones": [ 1516 | { 1517 | "duration": 0.11, 1518 | "phone": "s_B" 1519 | }, 1520 | { 1521 | "duration": 0.09, 1522 | "phone": "ih_I" 1523 | }, 1524 | { 1525 | "duration": 0.09, 1526 | "phone": "b_I" 1527 | }, 1528 | { 1529 | "duration": 0.04, 1530 | "phone": "l_I" 1531 | }, 1532 | { 1533 | "duration": 0.13, 1534 | "phone": "ih_I" 1535 | }, 1536 | { 1537 | "duration": 0.18, 1538 | "phone": "ng_E" 1539 | } 1540 | ], 1541 | "start": 37.29, 1542 | "startOffset": 374, 1543 | "word": "sibling" 1544 | }, 1545 | { 1546 | "alignedWord": "", 1547 | "case": "success", 1548 | "end": 38.86, 1549 | "endOffset": 390, 1550 | "phones": [ 1551 | { 1552 | "duration": 0.73, 1553 | "phone": "oov_S" 1554 | } 1555 | ], 1556 | "start": 38.13, 1557 | "startOffset": 383, 1558 | "word": "Firefox" 1559 | }, 1560 | { 1561 | "alignedWord": "for", 1562 | "case": "success", 1563 | "end": 39.01, 1564 | "endOffset": 394, 1565 | "phones": [ 1566 | { 1567 | "duration": 0.06, 1568 | "phone": "f_B" 1569 | }, 1570 | { 1571 | "duration": 0.08, 1572 | "phone": "er_E" 1573 | } 1574 | ], 1575 | "start": 38.87, 1576 | "startOffset": 391, 1577 | "word": "for" 1578 | }, 1579 | { 1580 | "alignedWord": "android", 1581 | "case": "success", 1582 | "end": 39.73, 1583 | "endOffset": 402, 1584 | "phones": [ 1585 | { 1586 | "duration": 0.14, 1587 | "phone": "ae_B" 1588 | }, 1589 | { 1590 | "duration": 0.09, 1591 | "phone": "n_I" 1592 | }, 1593 | { 1594 | "duration": 0.05, 1595 | "phone": "d_I" 1596 | }, 1597 | { 1598 | "duration": 0.09, 1599 | "phone": "r_I" 1600 | }, 1601 | { 1602 | "duration": 0.18, 1603 | "phone": "oy_I" 1604 | }, 1605 | { 1606 | "duration": 0.17, 1607 | "phone": "d_E" 1608 | } 1609 | ], 1610 | "start": 39.01, 1611 | "startOffset": 395, 1612 | "word": "Android" 1613 | }, 1614 | { 1615 | "alignedWord": "is", 1616 | "case": "success", 1617 | "end": 40.32, 1618 | "endOffset": 406, 1619 | "phones": [ 1620 | { 1621 | "duration": 0.16, 1622 | "phone": "ih_B" 1623 | }, 1624 | { 1625 | "duration": 0.12, 1626 | "phone": "z_E" 1627 | } 1628 | ], 1629 | "start": 40.04, 1630 | "startOffset": 404, 1631 | "word": "is" 1632 | }, 1633 | { 1634 | "alignedWord": "also", 1635 | "case": "success", 1636 | "end": 40.79, 1637 | "endOffset": 411, 1638 | "phones": [ 1639 | { 1640 | "duration": 0.14, 1641 | "phone": "ao_B" 1642 | }, 1643 | { 1644 | "duration": 0.08, 1645 | "phone": "l_I" 1646 | }, 1647 | { 1648 | "duration": 0.1, 1649 | "phone": "s_I" 1650 | }, 1651 | { 1652 | "duration": 0.14, 1653 | "phone": "ow_E" 1654 | } 1655 | ], 1656 | "start": 40.33, 1657 | "startOffset": 407, 1658 | "word": "also" 1659 | }, 1660 | { 1661 | "alignedWord": "available", 1662 | "case": "success", 1663 | "end": 41.48, 1664 | "endOffset": 421, 1665 | "phones": [ 1666 | { 1667 | "duration": 0.05, 1668 | "phone": "ah_B" 1669 | }, 1670 | { 1671 | "duration": 0.1, 1672 | "phone": "v_I" 1673 | }, 1674 | { 1675 | "duration": 0.09, 1676 | "phone": "ey_I" 1677 | }, 1678 | { 1679 | "duration": 0.06, 1680 | "phone": "l_I" 1681 | }, 1682 | { 1683 | "duration": 0.06, 1684 | "phone": "ah_I" 1685 | }, 1686 | { 1687 | "duration": 0.04, 1688 | "phone": "b_I" 1689 | }, 1690 | { 1691 | "duration": 0.06, 1692 | "phone": "ah_I" 1693 | }, 1694 | { 1695 | "duration": 0.23, 1696 | "phone": "l_E" 1697 | } 1698 | ], 1699 | "start": 40.79, 1700 | "startOffset": 412, 1701 | "word": "available" 1702 | }, 1703 | { 1704 | "alignedWord": "", 1705 | "case": "success", 1706 | "end": 43.28, 1707 | "endOffset": 430, 1708 | "phones": [ 1709 | { 1710 | "duration": 0.78, 1711 | "phone": "oov_S" 1712 | } 1713 | ], 1714 | "start": 42.5, 1715 | "startOffset": 423, 1716 | "word": "Firefox" 1717 | }, 1718 | { 1719 | "alignedWord": "uses", 1720 | "case": "success", 1721 | "end": 43.550000000000004, 1722 | "endOffset": 435, 1723 | "phones": [ 1724 | { 1725 | "duration": 0.01, 1726 | "phone": "y_B" 1727 | }, 1728 | { 1729 | "duration": 0.07, 1730 | "phone": "uw_I" 1731 | }, 1732 | { 1733 | "duration": 0.04, 1734 | "phone": "z_I" 1735 | }, 1736 | { 1737 | "duration": 0.06, 1738 | "phone": "ih_I" 1739 | }, 1740 | { 1741 | "duration": 0.09, 1742 | "phone": "z_E" 1743 | } 1744 | ], 1745 | "start": 43.28, 1746 | "startOffset": 431, 1747 | "word": "uses" 1748 | }, 1749 | { 1750 | "alignedWord": "the", 1751 | "case": "success", 1752 | "end": 43.71, 1753 | "endOffset": 439, 1754 | "phones": [ 1755 | { 1756 | "duration": 0.07, 1757 | "phone": "dh_B" 1758 | }, 1759 | { 1760 | "duration": 0.07, 1761 | "phone": "ah_E" 1762 | } 1763 | ], 1764 | "start": 43.57, 1765 | "startOffset": 436, 1766 | "word": "the" 1767 | }, 1768 | { 1769 | "alignedWord": "gecko", 1770 | "case": "success", 1771 | "end": 44.17, 1772 | "endOffset": 445, 1773 | "phones": [ 1774 | { 1775 | "duration": 0.12, 1776 | "phone": "g_B" 1777 | }, 1778 | { 1779 | "duration": 0.11, 1780 | "phone": "eh_I" 1781 | }, 1782 | { 1783 | "duration": 0.1, 1784 | "phone": "k_I" 1785 | }, 1786 | { 1787 | "duration": 0.13, 1788 | "phone": "ow_E" 1789 | } 1790 | ], 1791 | "start": 43.71, 1792 | "startOffset": 440, 1793 | "word": "Gecko" 1794 | }, 1795 | { 1796 | "alignedWord": "layout", 1797 | "case": "success", 1798 | "end": 44.56, 1799 | "endOffset": 452, 1800 | "phones": [ 1801 | { 1802 | "duration": 0.13, 1803 | "phone": "l_B" 1804 | }, 1805 | { 1806 | "duration": 0.08, 1807 | "phone": "ey_I" 1808 | }, 1809 | { 1810 | "duration": 0.12, 1811 | "phone": "aw_I" 1812 | }, 1813 | { 1814 | "duration": 0.06, 1815 | "phone": "t_E" 1816 | } 1817 | ], 1818 | "start": 44.17, 1819 | "startOffset": 446, 1820 | "word": "layout" 1821 | }, 1822 | { 1823 | "alignedWord": "engine", 1824 | "case": "success", 1825 | "end": 45.150000000000006, 1826 | "endOffset": 459, 1827 | "phones": [ 1828 | { 1829 | "duration": 0.12, 1830 | "phone": "eh_B" 1831 | }, 1832 | { 1833 | "duration": 0.09, 1834 | "phone": "n_I" 1835 | }, 1836 | { 1837 | "duration": 0.08, 1838 | "phone": "jh_I" 1839 | }, 1840 | { 1841 | "duration": 0.08, 1842 | "phone": "ah_I" 1843 | }, 1844 | { 1845 | "duration": 0.19, 1846 | "phone": "n_E" 1847 | } 1848 | ], 1849 | "start": 44.59, 1850 | "startOffset": 453, 1851 | "word": "engine" 1852 | }, 1853 | { 1854 | "alignedWord": "to", 1855 | "case": "success", 1856 | "end": 45.459999999999994, 1857 | "endOffset": 462, 1858 | "phones": [ 1859 | { 1860 | "duration": 0.09, 1861 | "phone": "t_B" 1862 | }, 1863 | { 1864 | "duration": 0.1, 1865 | "phone": "ah_E" 1866 | } 1867 | ], 1868 | "start": 45.269999999999996, 1869 | "startOffset": 460, 1870 | "word": "to" 1871 | }, 1872 | { 1873 | "alignedWord": "render", 1874 | "case": "success", 1875 | "end": 45.800000000000004, 1876 | "endOffset": 469, 1877 | "phones": [ 1878 | { 1879 | "duration": 0.08, 1880 | "phone": "r_B" 1881 | }, 1882 | { 1883 | "duration": 0.04, 1884 | "phone": "eh_I" 1885 | }, 1886 | { 1887 | "duration": 0.07, 1888 | "phone": "n_I" 1889 | }, 1890 | { 1891 | "duration": 0.07, 1892 | "phone": "d_I" 1893 | }, 1894 | { 1895 | "duration": 0.08, 1896 | "phone": "er_E" 1897 | } 1898 | ], 1899 | "start": 45.46, 1900 | "startOffset": 463, 1901 | "word": "render" 1902 | }, 1903 | { 1904 | "alignedWord": "web", 1905 | "case": "success", 1906 | "end": 46.05, 1907 | "endOffset": 473, 1908 | "phones": [ 1909 | { 1910 | "duration": 0.09, 1911 | "phone": "w_B" 1912 | }, 1913 | { 1914 | "duration": 0.1, 1915 | "phone": "eh_I" 1916 | }, 1917 | { 1918 | "duration": 0.06, 1919 | "phone": "b_E" 1920 | } 1921 | ], 1922 | "start": 45.8, 1923 | "startOffset": 470, 1924 | "word": "web" 1925 | }, 1926 | { 1927 | "alignedWord": "pages", 1928 | "case": "success", 1929 | "end": 46.72, 1930 | "endOffset": 479, 1931 | "phones": [ 1932 | { 1933 | "duration": 0.1, 1934 | "phone": "p_B" 1935 | }, 1936 | { 1937 | "duration": 0.14, 1938 | "phone": "ey_I" 1939 | }, 1940 | { 1941 | "duration": 0.09, 1942 | "phone": "jh_I" 1943 | }, 1944 | { 1945 | "duration": 0.11, 1946 | "phone": "ih_I" 1947 | }, 1948 | { 1949 | "duration": 0.23, 1950 | "phone": "z_E" 1951 | } 1952 | ], 1953 | "start": 46.05, 1954 | "startOffset": 474, 1955 | "word": "pages" 1956 | }, 1957 | { 1958 | "alignedWord": "which", 1959 | "case": "success", 1960 | "end": 47.160000000000004, 1961 | "endOffset": 486, 1962 | "phones": [ 1963 | { 1964 | "duration": 0.05, 1965 | "phone": "hh_B" 1966 | }, 1967 | { 1968 | "duration": 0.06, 1969 | "phone": "w_I" 1970 | }, 1971 | { 1972 | "duration": 0.06, 1973 | "phone": "ih_I" 1974 | }, 1975 | { 1976 | "duration": 0.11, 1977 | "phone": "ch_E" 1978 | } 1979 | ], 1980 | "start": 46.88, 1981 | "startOffset": 481, 1982 | "word": "which" 1983 | }, 1984 | { 1985 | "alignedWord": "implements", 1986 | "case": "success", 1987 | "end": 47.819999, 1988 | "endOffset": 497, 1989 | "phones": [ 1990 | { 1991 | "duration": 0.1, 1992 | "phone": "ih_B" 1993 | }, 1994 | { 1995 | "duration": 0.07, 1996 | "phone": "m_I" 1997 | }, 1998 | { 1999 | "duration": 0.04, 2000 | "phone": "p_I" 2001 | }, 2002 | { 2003 | "duration": 0.08, 2004 | "phone": "l_I" 2005 | }, 2006 | { 2007 | "duration": 0.03, 2008 | "phone": "ah_I" 2009 | }, 2010 | { 2011 | "duration": 0.05, 2012 | "phone": "m_I" 2013 | }, 2014 | { 2015 | "duration": 0.06, 2016 | "phone": "ah_I" 2017 | }, 2018 | { 2019 | "duration": 0.07, 2020 | "phone": "n_I" 2021 | }, 2022 | { 2023 | "duration": 0.05, 2024 | "phone": "t_I" 2025 | }, 2026 | { 2027 | "duration": 0.09, 2028 | "phone": "s_E" 2029 | } 2030 | ], 2031 | "start": 47.179999, 2032 | "startOffset": 487, 2033 | "word": "implements" 2034 | }, 2035 | { 2036 | "alignedWord": "current", 2037 | "case": "success", 2038 | "end": 48.32, 2039 | "endOffset": 505, 2040 | "phones": [ 2041 | { 2042 | "duration": 0.12, 2043 | "phone": "k_B" 2044 | }, 2045 | { 2046 | "duration": 0.13, 2047 | "phone": "er_I" 2048 | }, 2049 | { 2050 | "duration": 0.06, 2051 | "phone": "ah_I" 2052 | }, 2053 | { 2054 | "duration": 0.07, 2055 | "phone": "n_I" 2056 | }, 2057 | { 2058 | "duration": 0.12, 2059 | "phone": "t_E" 2060 | } 2061 | ], 2062 | "start": 47.82, 2063 | "startOffset": 498, 2064 | "word": "current" 2065 | }, 2066 | { 2067 | "alignedWord": "and", 2068 | "case": "success", 2069 | "end": 48.649999, 2070 | "endOffset": 509, 2071 | "phones": [ 2072 | { 2073 | "duration": 0.17, 2074 | "phone": "ae_B" 2075 | }, 2076 | { 2077 | "duration": 0.07, 2078 | "phone": "n_I" 2079 | }, 2080 | { 2081 | "duration": 0.02, 2082 | "phone": "d_E" 2083 | } 2084 | ], 2085 | "start": 48.389999, 2086 | "startOffset": 506, 2087 | "word": "and" 2088 | }, 2089 | { 2090 | "alignedWord": "anticipated", 2091 | "case": "success", 2092 | "end": 49.42, 2093 | "endOffset": 521, 2094 | "phones": [ 2095 | { 2096 | "duration": 0.06, 2097 | "phone": "ae_B" 2098 | }, 2099 | { 2100 | "duration": 0.08, 2101 | "phone": "n_I" 2102 | }, 2103 | { 2104 | "duration": 0.08, 2105 | "phone": "t_I" 2106 | }, 2107 | { 2108 | "duration": 0.08, 2109 | "phone": "ih_I" 2110 | }, 2111 | { 2112 | "duration": 0.07, 2113 | "phone": "s_I" 2114 | }, 2115 | { 2116 | "duration": 0.08, 2117 | "phone": "ah_I" 2118 | }, 2119 | { 2120 | "duration": 0.09, 2121 | "phone": "p_I" 2122 | }, 2123 | { 2124 | "duration": 0.07, 2125 | "phone": "ey_I" 2126 | }, 2127 | { 2128 | "duration": 0.05, 2129 | "phone": "t_I" 2130 | }, 2131 | { 2132 | "duration": 0.05, 2133 | "phone": "ah_I" 2134 | }, 2135 | { 2136 | "duration": 0.06, 2137 | "phone": "d_E" 2138 | } 2139 | ], 2140 | "start": 48.65, 2141 | "startOffset": 510, 2142 | "word": "anticipated" 2143 | }, 2144 | { 2145 | "alignedWord": "web", 2146 | "case": "success", 2147 | "end": 49.679999, 2148 | "endOffset": 525, 2149 | "phones": [ 2150 | { 2151 | "duration": 0.08, 2152 | "phone": "w_B" 2153 | }, 2154 | { 2155 | "duration": 0.08, 2156 | "phone": "eh_I" 2157 | }, 2158 | { 2159 | "duration": 0.09, 2160 | "phone": "b_E" 2161 | } 2162 | ], 2163 | "start": 49.429999, 2164 | "startOffset": 522, 2165 | "word": "web" 2166 | }, 2167 | { 2168 | "alignedWord": "standards", 2169 | "case": "success", 2170 | "end": 50.399999, 2171 | "endOffset": 535, 2172 | "phones": [ 2173 | { 2174 | "duration": 0.06, 2175 | "phone": "s_B" 2176 | }, 2177 | { 2178 | "duration": 0.07, 2179 | "phone": "t_I" 2180 | }, 2181 | { 2182 | "duration": 0.09, 2183 | "phone": "ae_I" 2184 | }, 2185 | { 2186 | "duration": 0.07, 2187 | "phone": "n_I" 2188 | }, 2189 | { 2190 | "duration": 0.06, 2191 | "phone": "d_I" 2192 | }, 2193 | { 2194 | "duration": 0.12, 2195 | "phone": "er_I" 2196 | }, 2197 | { 2198 | "duration": 0.09, 2199 | "phone": "d_I" 2200 | }, 2201 | { 2202 | "duration": 0.16, 2203 | "phone": "z_E" 2204 | } 2205 | ], 2206 | "start": 49.679999, 2207 | "startOffset": 526, 2208 | "word": "standards" 2209 | }, 2210 | { 2211 | "alignedWord": "in", 2212 | "case": "success", 2213 | "end": 51.329999, 2214 | "endOffset": 539, 2215 | "phones": [ 2216 | { 2217 | "duration": 0.15, 2218 | "phone": "ih_B" 2219 | }, 2220 | { 2221 | "duration": 0.09, 2222 | "phone": "n_E" 2223 | } 2224 | ], 2225 | "start": 51.089999, 2226 | "startOffset": 537, 2227 | "word": "In" 2228 | }, 2229 | { 2230 | "alignedWord": "", 2231 | "case": "success", 2232 | "end": 52.9, 2233 | "endOffset": 544, 2234 | "phones": [ 2235 | { 2236 | "duration": 1.07, 2237 | "phone": "oov_S" 2238 | } 2239 | ], 2240 | "start": 51.83, 2241 | "startOffset": 540, 2242 | "word": "2017" 2243 | }, 2244 | { 2245 | "alignedWord": "", 2246 | "case": "success", 2247 | "end": 54.18, 2248 | "endOffset": 553, 2249 | "phones": [ 2250 | { 2251 | "duration": 0.75, 2252 | "phone": "oov_S" 2253 | } 2254 | ], 2255 | "start": 53.43, 2256 | "startOffset": 546, 2257 | "word": "Firefox" 2258 | }, 2259 | { 2260 | "alignedWord": "began", 2261 | "case": "success", 2262 | "end": 54.56, 2263 | "endOffset": 559, 2264 | "phones": [ 2265 | { 2266 | "duration": 0.05, 2267 | "phone": "b_B" 2268 | }, 2269 | { 2270 | "duration": 0.07, 2271 | "phone": "ih_I" 2272 | }, 2273 | { 2274 | "duration": 0.09, 2275 | "phone": "g_I" 2276 | }, 2277 | { 2278 | "duration": 0.07, 2279 | "phone": "ae_I" 2280 | }, 2281 | { 2282 | "duration": 0.07, 2283 | "phone": "n_E" 2284 | } 2285 | ], 2286 | "start": 54.21, 2287 | "startOffset": 554, 2288 | "word": "began" 2289 | }, 2290 | { 2291 | "alignedWord": "incorporating", 2292 | "case": "success", 2293 | "end": 55.440000000000005, 2294 | "endOffset": 573, 2295 | "phones": [ 2296 | { 2297 | "duration": 0.07, 2298 | "phone": "ih_B" 2299 | }, 2300 | { 2301 | "duration": 0.09, 2302 | "phone": "n_I" 2303 | }, 2304 | { 2305 | "duration": 0.1, 2306 | "phone": "k_I" 2307 | }, 2308 | { 2309 | "duration": 0.09, 2310 | "phone": "ao_I" 2311 | }, 2312 | { 2313 | "duration": 0.07, 2314 | "phone": "r_I" 2315 | }, 2316 | { 2317 | "duration": 0.08, 2318 | "phone": "p_I" 2319 | }, 2320 | { 2321 | "duration": 0.11, 2322 | "phone": "er_I" 2323 | }, 2324 | { 2325 | "duration": 0.05, 2326 | "phone": "ey_I" 2327 | }, 2328 | { 2329 | "duration": 0.04, 2330 | "phone": "t_I" 2331 | }, 2332 | { 2333 | "duration": 0.08, 2334 | "phone": "ih_I" 2335 | }, 2336 | { 2337 | "duration": 0.1, 2338 | "phone": "ng_E" 2339 | } 2340 | ], 2341 | "start": 54.56, 2342 | "startOffset": 560, 2343 | "word": "incorporating" 2344 | }, 2345 | { 2346 | "alignedWord": "new", 2347 | "case": "success", 2348 | "end": 55.61, 2349 | "endOffset": 577, 2350 | "phones": [ 2351 | { 2352 | "duration": 0.01, 2353 | "phone": "n_B" 2354 | }, 2355 | { 2356 | "duration": 0.08, 2357 | "phone": "y_I" 2358 | }, 2359 | { 2360 | "duration": 0.08, 2361 | "phone": "uw_E" 2362 | } 2363 | ], 2364 | "start": 55.44, 2365 | "startOffset": 574, 2366 | "word": "new" 2367 | }, 2368 | { 2369 | "alignedWord": "technology", 2370 | "case": "success", 2371 | "end": 56.54, 2372 | "endOffset": 588, 2373 | "phones": [ 2374 | { 2375 | "duration": 0.06, 2376 | "phone": "t_B" 2377 | }, 2378 | { 2379 | "duration": 0.1, 2380 | "phone": "eh_I" 2381 | }, 2382 | { 2383 | "duration": 0.09, 2384 | "phone": "k_I" 2385 | }, 2386 | { 2387 | "duration": 0.05, 2388 | "phone": "n_I" 2389 | }, 2390 | { 2391 | "duration": 0.12, 2392 | "phone": "aa_I" 2393 | }, 2394 | { 2395 | "duration": 0.07, 2396 | "phone": "l_I" 2397 | }, 2398 | { 2399 | "duration": 0.07, 2400 | "phone": "ah_I" 2401 | }, 2402 | { 2403 | "duration": 0.12, 2404 | "phone": "jh_I" 2405 | }, 2406 | { 2407 | "duration": 0.25, 2408 | "phone": "iy_E" 2409 | } 2410 | ], 2411 | "start": 55.61, 2412 | "startOffset": 578, 2413 | "word": "technology" 2414 | }, 2415 | { 2416 | "alignedWord": "under", 2417 | "case": "success", 2418 | "end": 56.900000000000006, 2419 | "endOffset": 594, 2420 | "phones": [ 2421 | { 2422 | "duration": 0.11, 2423 | "phone": "ah_B" 2424 | }, 2425 | { 2426 | "duration": 0.05, 2427 | "phone": "n_I" 2428 | }, 2429 | { 2430 | "duration": 0.06, 2431 | "phone": "d_I" 2432 | }, 2433 | { 2434 | "duration": 0.09, 2435 | "phone": "er_E" 2436 | } 2437 | ], 2438 | "start": 56.59, 2439 | "startOffset": 589, 2440 | "word": "under" 2441 | }, 2442 | { 2443 | "alignedWord": "the", 2444 | "case": "success", 2445 | "end": 57.019999999999996, 2446 | "endOffset": 598, 2447 | "phones": [ 2448 | { 2449 | "duration": 0.05, 2450 | "phone": "dh_B" 2451 | }, 2452 | { 2453 | "duration": 0.07, 2454 | "phone": "ah_E" 2455 | } 2456 | ], 2457 | "start": 56.9, 2458 | "startOffset": 595, 2459 | "word": "the" 2460 | }, 2461 | { 2462 | "alignedWord": "code", 2463 | "case": "success", 2464 | "end": 57.31, 2465 | "endOffset": 603, 2466 | "phones": [ 2467 | { 2468 | "duration": 0.11, 2469 | "phone": "k_B" 2470 | }, 2471 | { 2472 | "duration": 0.11, 2473 | "phone": "ow_I" 2474 | }, 2475 | { 2476 | "duration": 0.07, 2477 | "phone": "d_E" 2478 | } 2479 | ], 2480 | "start": 57.02, 2481 | "startOffset": 599, 2482 | "word": "code" 2483 | }, 2484 | { 2485 | "alignedWord": "name", 2486 | "case": "success", 2487 | "end": 57.56, 2488 | "endOffset": 608, 2489 | "phones": [ 2490 | { 2491 | "duration": 0.06, 2492 | "phone": "n_B" 2493 | }, 2494 | { 2495 | "duration": 0.1, 2496 | "phone": "ey_I" 2497 | }, 2498 | { 2499 | "duration": 0.09, 2500 | "phone": "m_E" 2501 | } 2502 | ], 2503 | "start": 57.31, 2504 | "startOffset": 604, 2505 | "word": "name" 2506 | }, 2507 | { 2508 | "alignedWord": "quantum", 2509 | "case": "success", 2510 | "end": 58.230000000000004, 2511 | "endOffset": 616, 2512 | "phones": [ 2513 | { 2514 | "duration": 0.08, 2515 | "phone": "k_B" 2516 | }, 2517 | { 2518 | "duration": 0.06, 2519 | "phone": "w_I" 2520 | }, 2521 | { 2522 | "duration": 0.09, 2523 | "phone": "aa_I" 2524 | }, 2525 | { 2526 | "duration": 0.08, 2527 | "phone": "n_I" 2528 | }, 2529 | { 2530 | "duration": 0.08, 2531 | "phone": "t_I" 2532 | }, 2533 | { 2534 | "duration": 0.09, 2535 | "phone": "ah_I" 2536 | }, 2537 | { 2538 | "duration": 0.19, 2539 | "phone": "m_E" 2540 | } 2541 | ], 2542 | "start": 57.56, 2543 | "startOffset": 609, 2544 | "word": "Quantum" 2545 | }, 2546 | { 2547 | "alignedWord": "to", 2548 | "case": "success", 2549 | "end": 58.68, 2550 | "endOffset": 619, 2551 | "phones": [ 2552 | { 2553 | "duration": 0.09, 2554 | "phone": "t_B" 2555 | }, 2556 | { 2557 | "duration": 0.09, 2558 | "phone": "uw_E" 2559 | } 2560 | ], 2561 | "start": 58.5, 2562 | "startOffset": 617, 2563 | "word": "to" 2564 | }, 2565 | { 2566 | "alignedWord": "promote", 2567 | "case": "success", 2568 | "end": 59.1, 2569 | "endOffset": 627, 2570 | "phones": [ 2571 | { 2572 | "duration": 0.07, 2573 | "phone": "p_B" 2574 | }, 2575 | { 2576 | "duration": 0.06, 2577 | "phone": "r_I" 2578 | }, 2579 | { 2580 | "duration": 0.03, 2581 | "phone": "ah_I" 2582 | }, 2583 | { 2584 | "duration": 0.1, 2585 | "phone": "m_I" 2586 | }, 2587 | { 2588 | "duration": 0.1, 2589 | "phone": "ow_I" 2590 | }, 2591 | { 2592 | "duration": 0.06, 2593 | "phone": "t_E" 2594 | } 2595 | ], 2596 | "start": 58.68, 2597 | "startOffset": 620, 2598 | "word": "promote" 2599 | }, 2600 | { 2601 | "alignedWord": "", 2602 | "case": "success", 2603 | "end": 60.03, 2604 | "endOffset": 639, 2605 | "phones": [ 2606 | { 2607 | "duration": 0.89, 2608 | "phone": "oov_S" 2609 | } 2610 | ], 2611 | "start": 59.14, 2612 | "startOffset": 628, 2613 | "word": "parallelism" 2614 | }, 2615 | { 2616 | "alignedWord": "and", 2617 | "case": "success", 2618 | "end": 60.54, 2619 | "endOffset": 643, 2620 | "phones": [ 2621 | { 2622 | "duration": 0.16, 2623 | "phone": "ae_B" 2624 | }, 2625 | { 2626 | "duration": 0.05, 2627 | "phone": "n_I" 2628 | }, 2629 | { 2630 | "duration": 0.05, 2631 | "phone": "d_E" 2632 | } 2633 | ], 2634 | "start": 60.28, 2635 | "startOffset": 640, 2636 | "word": "and" 2637 | }, 2638 | { 2639 | "alignedWord": "a", 2640 | "case": "success", 2641 | "end": 60.62, 2642 | "endOffset": 645, 2643 | "phones": [ 2644 | { 2645 | "duration": 0.08, 2646 | "phone": "ah_S" 2647 | } 2648 | ], 2649 | "start": 60.54, 2650 | "startOffset": 644, 2651 | "word": "a" 2652 | }, 2653 | { 2654 | "alignedWord": "more", 2655 | "case": "success", 2656 | "end": 60.86, 2657 | "endOffset": 650, 2658 | "phones": [ 2659 | { 2660 | "duration": 0.09, 2661 | "phone": "m_B" 2662 | }, 2663 | { 2664 | "duration": 0.1, 2665 | "phone": "ao_I" 2666 | }, 2667 | { 2668 | "duration": 0.05, 2669 | "phone": "r_E" 2670 | } 2671 | ], 2672 | "start": 60.62, 2673 | "startOffset": 646, 2674 | "word": "more" 2675 | }, 2676 | { 2677 | "alignedWord": "intuitive", 2678 | "case": "success", 2679 | "end": 61.47, 2680 | "endOffset": 660, 2681 | "phones": [ 2682 | { 2683 | "duration": 0.06, 2684 | "phone": "ih_B" 2685 | }, 2686 | { 2687 | "duration": 0.06, 2688 | "phone": "n_I" 2689 | }, 2690 | { 2691 | "duration": 0.12, 2692 | "phone": "t_I" 2693 | }, 2694 | { 2695 | "duration": 0.1, 2696 | "phone": "uw_I" 2697 | }, 2698 | { 2699 | "duration": 0.06, 2700 | "phone": "ah_I" 2701 | }, 2702 | { 2703 | "duration": 0.05, 2704 | "phone": "t_I" 2705 | }, 2706 | { 2707 | "duration": 0.07, 2708 | "phone": "ih_I" 2709 | }, 2710 | { 2711 | "duration": 0.09, 2712 | "phone": "v_E" 2713 | } 2714 | ], 2715 | "start": 60.86, 2716 | "startOffset": 651, 2717 | "word": "intuitive" 2718 | }, 2719 | { 2720 | "alignedWord": "user", 2721 | "case": "success", 2722 | "end": 61.830000000000005, 2723 | "endOffset": 665, 2724 | "phones": [ 2725 | { 2726 | "duration": 0.07, 2727 | "phone": "y_B" 2728 | }, 2729 | { 2730 | "duration": 0.09, 2731 | "phone": "uw_I" 2732 | }, 2733 | { 2734 | "duration": 0.1, 2735 | "phone": "z_I" 2736 | }, 2737 | { 2738 | "duration": 0.08, 2739 | "phone": "er_E" 2740 | } 2741 | ], 2742 | "start": 61.49, 2743 | "startOffset": 661, 2744 | "word": "user" 2745 | }, 2746 | { 2747 | "alignedWord": "interface", 2748 | "case": "success", 2749 | "end": 62.6, 2750 | "endOffset": 675, 2751 | "phones": [ 2752 | { 2753 | "duration": 0.07, 2754 | "phone": "ih_B" 2755 | }, 2756 | { 2757 | "duration": 0.06, 2758 | "phone": "n_I" 2759 | }, 2760 | { 2761 | "duration": 0.09, 2762 | "phone": "er_I" 2763 | }, 2764 | { 2765 | "duration": 0.13, 2766 | "phone": "f_I" 2767 | }, 2768 | { 2769 | "duration": 0.17, 2770 | "phone": "ey_I" 2771 | }, 2772 | { 2773 | "duration": 0.25, 2774 | "phone": "s_E" 2775 | } 2776 | ], 2777 | "start": 61.83, 2778 | "startOffset": 666, 2779 | "word": "interface" 2780 | }, 2781 | { 2782 | "alignedWord": "an", 2783 | "case": "success", 2784 | "end": 63.48, 2785 | "endOffset": 679, 2786 | "phones": [ 2787 | { 2788 | "duration": 0.11, 2789 | "phone": "ah_B" 2790 | }, 2791 | { 2792 | "duration": 0.05, 2793 | "phone": "n_E" 2794 | } 2795 | ], 2796 | "start": 63.32, 2797 | "startOffset": 677, 2798 | "word": "An" 2799 | }, 2800 | { 2801 | "alignedWord": "additional", 2802 | "case": "success", 2803 | "end": 64.0, 2804 | "endOffset": 690, 2805 | "phones": [ 2806 | { 2807 | "duration": 0.06, 2808 | "phone": "ah_B" 2809 | }, 2810 | { 2811 | "duration": 0.07, 2812 | "phone": "d_I" 2813 | }, 2814 | { 2815 | "duration": 0.09, 2816 | "phone": "ih_I" 2817 | }, 2818 | { 2819 | "duration": 0.09, 2820 | "phone": "sh_I" 2821 | }, 2822 | { 2823 | "duration": 0.03, 2824 | "phone": "ah_I" 2825 | }, 2826 | { 2827 | "duration": 0.08, 2828 | "phone": "n_I" 2829 | }, 2830 | { 2831 | "duration": 0.05, 2832 | "phone": "ah_I" 2833 | }, 2834 | { 2835 | "duration": 0.05, 2836 | "phone": "l_E" 2837 | } 2838 | ], 2839 | "start": 63.480000000000004, 2840 | "startOffset": 680, 2841 | "word": "additional" 2842 | }, 2843 | { 2844 | "alignedWord": "version", 2845 | "case": "success", 2846 | "end": 64.49000000000001, 2847 | "endOffset": 698, 2848 | "phones": [ 2849 | { 2850 | "duration": 0.1, 2851 | "phone": "v_B" 2852 | }, 2853 | { 2854 | "duration": 0.07, 2855 | "phone": "er_I" 2856 | }, 2857 | { 2858 | "duration": 0.07, 2859 | "phone": "zh_I" 2860 | }, 2861 | { 2862 | "duration": 0.08, 2863 | "phone": "ah_I" 2864 | }, 2865 | { 2866 | "duration": 0.16, 2867 | "phone": "n_E" 2868 | } 2869 | ], 2870 | "start": 64.01, 2871 | "startOffset": 691, 2872 | "word": "version" 2873 | }, 2874 | { 2875 | "alignedWord": "", 2876 | "case": "success", 2877 | "end": 65.52, 2878 | "endOffset": 707, 2879 | "phones": [ 2880 | { 2881 | "duration": 0.72, 2882 | "phone": "oov_S" 2883 | } 2884 | ], 2885 | "start": 64.8, 2886 | "startOffset": 700, 2887 | "word": "Firefox" 2888 | }, 2889 | { 2890 | "alignedWord": "for", 2891 | "case": "success", 2892 | "end": 65.7, 2893 | "endOffset": 711, 2894 | "phones": [ 2895 | { 2896 | "duration": 0.08, 2897 | "phone": "f_B" 2898 | }, 2899 | { 2900 | "duration": 0.09, 2901 | "phone": "er_E" 2902 | } 2903 | ], 2904 | "start": 65.53, 2905 | "startOffset": 708, 2906 | "word": "for" 2907 | }, 2908 | { 2909 | "alignedWord": "", 2910 | "case": "success", 2911 | "end": 66.39999999999999, 2912 | "endOffset": 715, 2913 | "phones": [ 2914 | { 2915 | "duration": 0.66, 2916 | "phone": "oov_S" 2917 | } 2918 | ], 2919 | "start": 65.74, 2920 | "startOffset": 712, 2921 | "word": "iOS" 2922 | }, 2923 | { 2924 | "alignedWord": "was", 2925 | "case": "success", 2926 | "end": 67.02, 2927 | "endOffset": 720, 2928 | "phones": [ 2929 | { 2930 | "duration": 0.12, 2931 | "phone": "w_B" 2932 | }, 2933 | { 2934 | "duration": 0.08, 2935 | "phone": "ah_I" 2936 | }, 2937 | { 2938 | "duration": 0.08, 2939 | "phone": "z_E" 2940 | } 2941 | ], 2942 | "start": 66.74, 2943 | "startOffset": 717, 2944 | "word": "was" 2945 | }, 2946 | { 2947 | "alignedWord": "released", 2948 | "case": "success", 2949 | "end": 67.53, 2950 | "endOffset": 729, 2951 | "phones": [ 2952 | { 2953 | "duration": 0.05, 2954 | "phone": "r_B" 2955 | }, 2956 | { 2957 | "duration": 0.07, 2958 | "phone": "iy_I" 2959 | }, 2960 | { 2961 | "duration": 0.1, 2962 | "phone": "l_I" 2963 | }, 2964 | { 2965 | "duration": 0.1, 2966 | "phone": "iy_I" 2967 | }, 2968 | { 2969 | "duration": 0.09, 2970 | "phone": "s_I" 2971 | }, 2972 | { 2973 | "duration": 0.1, 2974 | "phone": "t_E" 2975 | } 2976 | ], 2977 | "start": 67.02, 2978 | "startOffset": 721, 2979 | "word": "released" 2980 | }, 2981 | { 2982 | "alignedWord": "on", 2983 | "case": "success", 2984 | "end": 67.74, 2985 | "endOffset": 732, 2986 | "phones": [ 2987 | { 2988 | "duration": 0.14, 2989 | "phone": "aa_B" 2990 | }, 2991 | { 2992 | "duration": 0.06, 2993 | "phone": "n_E" 2994 | } 2995 | ], 2996 | "start": 67.53999999999999, 2997 | "startOffset": 730, 2998 | "word": "on" 2999 | }, 3000 | { 3001 | "alignedWord": "november", 3002 | "case": "success", 3003 | "end": 68.22999999999999, 3004 | "endOffset": 741, 3005 | "phones": [ 3006 | { 3007 | "duration": 0.05, 3008 | "phone": "n_B" 3009 | }, 3010 | { 3011 | "duration": 0.05, 3012 | "phone": "ow_I" 3013 | }, 3014 | { 3015 | "duration": 0.09, 3016 | "phone": "v_I" 3017 | }, 3018 | { 3019 | "duration": 0.07, 3020 | "phone": "eh_I" 3021 | }, 3022 | { 3023 | "duration": 0.06, 3024 | "phone": "m_I" 3025 | }, 3026 | { 3027 | "duration": 0.05, 3028 | "phone": "b_I" 3029 | }, 3030 | { 3031 | "duration": 0.12, 3032 | "phone": "er_E" 3033 | } 3034 | ], 3035 | "start": 67.74, 3036 | "startOffset": 733, 3037 | "word": "November" 3038 | }, 3039 | { 3040 | "alignedWord": "", 3041 | "case": "success", 3042 | "end": 69.82, 3043 | "endOffset": 744, 3044 | "phones": [ 3045 | { 3046 | "duration": 1.58, 3047 | "phone": "oov_S" 3048 | } 3049 | ], 3050 | "start": 68.24, 3051 | "startOffset": 742, 3052 | "word": "12" 3053 | }, 3054 | { 3055 | "case": "not-found-in-audio", 3056 | "endOffset": 750, 3057 | "startOffset": 746, 3058 | "word": "2015" 3059 | }, 3060 | { 3061 | "alignedWord": "due", 3062 | "case": "success", 3063 | "end": 70.85000000000001, 3064 | "endOffset": 755, 3065 | "phones": [ 3066 | { 3067 | "duration": 0.1, 3068 | "phone": "d_B" 3069 | }, 3070 | { 3071 | "duration": 0.07, 3072 | "phone": "uw_E" 3073 | } 3074 | ], 3075 | "start": 70.68, 3076 | "startOffset": 752, 3077 | "word": "Due" 3078 | }, 3079 | { 3080 | "alignedWord": "to", 3081 | "case": "success", 3082 | "end": 71.03999999999999, 3083 | "endOffset": 758, 3084 | "phones": [ 3085 | { 3086 | "duration": 0.1, 3087 | "phone": "t_B" 3088 | }, 3089 | { 3090 | "duration": 0.09, 3091 | "phone": "uw_E" 3092 | } 3093 | ], 3094 | "start": 70.85, 3095 | "startOffset": 756, 3096 | "word": "to" 3097 | }, 3098 | { 3099 | "alignedWord": "platform", 3100 | "case": "success", 3101 | "end": 71.629999, 3102 | "endOffset": 767, 3103 | "phones": [ 3104 | { 3105 | "duration": 0.1, 3106 | "phone": "p_B" 3107 | }, 3108 | { 3109 | "duration": 0.07, 3110 | "phone": "l_I" 3111 | }, 3112 | { 3113 | "duration": 0.09, 3114 | "phone": "ae_I" 3115 | }, 3116 | { 3117 | "duration": 0.07, 3118 | "phone": "t_I" 3119 | }, 3120 | { 3121 | "duration": 0.07, 3122 | "phone": "f_I" 3123 | }, 3124 | { 3125 | "duration": 0.07, 3126 | "phone": "ao_I" 3127 | }, 3128 | { 3129 | "duration": 0.07, 3130 | "phone": "r_I" 3131 | }, 3132 | { 3133 | "duration": 0.05, 3134 | "phone": "m_E" 3135 | } 3136 | ], 3137 | "start": 71.039999, 3138 | "startOffset": 759, 3139 | "word": "platform" 3140 | }, 3141 | { 3142 | "alignedWord": "restrictions", 3143 | "case": "success", 3144 | "end": 72.439999, 3145 | "endOffset": 780, 3146 | "phones": [ 3147 | { 3148 | "duration": 0.04, 3149 | "phone": "r_B" 3150 | }, 3151 | { 3152 | "duration": 0.07, 3153 | "phone": "iy_I" 3154 | }, 3155 | { 3156 | "duration": 0.05, 3157 | "phone": "s_I" 3158 | }, 3159 | { 3160 | "duration": 0.07, 3161 | "phone": "t_I" 3162 | }, 3163 | { 3164 | "duration": 0.04, 3165 | "phone": "r_I" 3166 | }, 3167 | { 3168 | "duration": 0.05, 3169 | "phone": "ih_I" 3170 | }, 3171 | { 3172 | "duration": 0.08, 3173 | "phone": "k_I" 3174 | }, 3175 | { 3176 | "duration": 0.07, 3177 | "phone": "sh_I" 3178 | }, 3179 | { 3180 | "duration": 0.08, 3181 | "phone": "ah_I" 3182 | }, 3183 | { 3184 | "duration": 0.12, 3185 | "phone": "n_I" 3186 | }, 3187 | { 3188 | "duration": 0.14, 3189 | "phone": "z_E" 3190 | } 3191 | ], 3192 | "start": 71.629999, 3193 | "startOffset": 768, 3194 | "word": "restrictions" 3195 | }, 3196 | { 3197 | "alignedWord": "it", 3198 | "case": "success", 3199 | "end": 72.829999, 3200 | "endOffset": 784, 3201 | "phones": [ 3202 | { 3203 | "duration": 0.11, 3204 | "phone": "ih_B" 3205 | }, 3206 | { 3207 | "duration": 0.08, 3208 | "phone": "t_E" 3209 | } 3210 | ], 3211 | "start": 72.639999, 3212 | "startOffset": 782, 3213 | "word": "it" 3214 | }, 3215 | { 3216 | "alignedWord": "uses", 3217 | "case": "success", 3218 | "end": 73.21, 3219 | "endOffset": 789, 3220 | "phones": [ 3221 | { 3222 | "duration": 0.08, 3223 | "phone": "y_B" 3224 | }, 3225 | { 3226 | "duration": 0.08, 3227 | "phone": "uw_I" 3228 | }, 3229 | { 3230 | "duration": 0.05, 3231 | "phone": "z_I" 3232 | }, 3233 | { 3234 | "duration": 0.08, 3235 | "phone": "ih_I" 3236 | }, 3237 | { 3238 | "duration": 0.09, 3239 | "phone": "z_E" 3240 | } 3241 | ], 3242 | "start": 72.83, 3243 | "startOffset": 785, 3244 | "word": "uses" 3245 | }, 3246 | { 3247 | "alignedWord": "the", 3248 | "case": "success", 3249 | "end": 73.36, 3250 | "endOffset": 793, 3251 | "phones": [ 3252 | { 3253 | "duration": 0.06, 3254 | "phone": "dh_B" 3255 | }, 3256 | { 3257 | "duration": 0.09, 3258 | "phone": "ah_E" 3259 | } 3260 | ], 3261 | "start": 73.21, 3262 | "startOffset": 790, 3263 | "word": "the" 3264 | }, 3265 | { 3266 | "alignedWord": "", 3267 | "case": "success", 3268 | "end": 73.79, 3269 | "endOffset": 800, 3270 | "phones": [ 3271 | { 3272 | "duration": 0.43, 3273 | "phone": "oov_S" 3274 | } 3275 | ], 3276 | "start": 73.36, 3277 | "startOffset": 794, 3278 | "word": "WebKit" 3279 | }, 3280 | { 3281 | "alignedWord": "layout", 3282 | "case": "success", 3283 | "end": 74.23, 3284 | "endOffset": 807, 3285 | "phones": [ 3286 | { 3287 | "duration": 0.13, 3288 | "phone": "l_B" 3289 | }, 3290 | { 3291 | "duration": 0.09, 3292 | "phone": "ey_I" 3293 | }, 3294 | { 3295 | "duration": 0.13, 3296 | "phone": "aw_I" 3297 | }, 3298 | { 3299 | "duration": 0.08, 3300 | "phone": "t_E" 3301 | } 3302 | ], 3303 | "start": 73.8, 3304 | "startOffset": 801, 3305 | "word": "layout" 3306 | }, 3307 | { 3308 | "alignedWord": "engine", 3309 | "case": "success", 3310 | "end": 74.61, 3311 | "endOffset": 814, 3312 | "phones": [ 3313 | { 3314 | "duration": 0.08, 3315 | "phone": "eh_B" 3316 | }, 3317 | { 3318 | "duration": 0.09, 3319 | "phone": "n_I" 3320 | }, 3321 | { 3322 | "duration": 0.04, 3323 | "phone": "jh_I" 3324 | }, 3325 | { 3326 | "duration": 0.07, 3327 | "phone": "ah_I" 3328 | }, 3329 | { 3330 | "duration": 0.1, 3331 | "phone": "n_E" 3332 | } 3333 | ], 3334 | "start": 74.23, 3335 | "startOffset": 808, 3336 | "word": "engine" 3337 | }, 3338 | { 3339 | "alignedWord": "instead", 3340 | "case": "success", 3341 | "end": 75.03, 3342 | "endOffset": 822, 3343 | "phones": [ 3344 | { 3345 | "duration": 0.08, 3346 | "phone": "ih_B" 3347 | }, 3348 | { 3349 | "duration": 0.07, 3350 | "phone": "n_I" 3351 | }, 3352 | { 3353 | "duration": 0.07, 3354 | "phone": "s_I" 3355 | }, 3356 | { 3357 | "duration": 0.08, 3358 | "phone": "t_I" 3359 | }, 3360 | { 3361 | "duration": 0.07, 3362 | "phone": "eh_I" 3363 | }, 3364 | { 3365 | "duration": 0.02, 3366 | "phone": "d_E" 3367 | } 3368 | ], 3369 | "start": 74.64, 3370 | "startOffset": 815, 3371 | "word": "instead" 3372 | }, 3373 | { 3374 | "alignedWord": "of", 3375 | "case": "success", 3376 | "end": 75.18, 3377 | "endOffset": 825, 3378 | "phones": [ 3379 | { 3380 | "duration": 0.07, 3381 | "phone": "ah_B" 3382 | }, 3383 | { 3384 | "duration": 0.08, 3385 | "phone": "v_E" 3386 | } 3387 | ], 3388 | "start": 75.03, 3389 | "startOffset": 823, 3390 | "word": "of" 3391 | }, 3392 | { 3393 | "alignedWord": "gecko", 3394 | "case": "success", 3395 | "end": 75.75, 3396 | "endOffset": 831, 3397 | "phones": [ 3398 | { 3399 | "duration": 0.07, 3400 | "phone": "g_B" 3401 | }, 3402 | { 3403 | "duration": 0.1, 3404 | "phone": "eh_I" 3405 | }, 3406 | { 3407 | "duration": 0.11, 3408 | "phone": "k_I" 3409 | }, 3410 | { 3411 | "duration": 0.26, 3412 | "phone": "ow_E" 3413 | } 3414 | ], 3415 | "start": 75.21, 3416 | "startOffset": 826, 3417 | "word": "Gecko" 3418 | }, 3419 | { 3420 | "alignedWord": "as", 3421 | "case": "success", 3422 | "end": 76.07, 3423 | "endOffset": 835, 3424 | "phones": [ 3425 | { 3426 | "duration": 0.15, 3427 | "phone": "ae_B" 3428 | }, 3429 | { 3430 | "duration": 0.09, 3431 | "phone": "z_E" 3432 | } 3433 | ], 3434 | "start": 75.83, 3435 | "startOffset": 833, 3436 | "word": "as" 3437 | }, 3438 | { 3439 | "alignedWord": "with", 3440 | "case": "success", 3441 | "end": 76.27, 3442 | "endOffset": 840, 3443 | "phones": [ 3444 | { 3445 | "duration": 0.06, 3446 | "phone": "w_B" 3447 | }, 3448 | { 3449 | "duration": 0.05, 3450 | "phone": "ih_I" 3451 | }, 3452 | { 3453 | "duration": 0.09, 3454 | "phone": "th_E" 3455 | } 3456 | ], 3457 | "start": 76.07, 3458 | "startOffset": 836, 3459 | "word": "with" 3460 | }, 3461 | { 3462 | "alignedWord": "all", 3463 | "case": "success", 3464 | "end": 76.54, 3465 | "endOffset": 844, 3466 | "phones": [ 3467 | { 3468 | "duration": 0.15, 3469 | "phone": "ao_B" 3470 | }, 3471 | { 3472 | "duration": 0.11, 3473 | "phone": "l_E" 3474 | } 3475 | ], 3476 | "start": 76.28, 3477 | "startOffset": 841, 3478 | "word": "all" 3479 | }, 3480 | { 3481 | "alignedWord": "other", 3482 | "case": "success", 3483 | "end": 76.92999999999999, 3484 | "endOffset": 850, 3485 | "phones": [ 3486 | { 3487 | "duration": 0.13, 3488 | "phone": "ah_B" 3489 | }, 3490 | { 3491 | "duration": 0.09, 3492 | "phone": "dh_I" 3493 | }, 3494 | { 3495 | "duration": 0.13, 3496 | "phone": "er_E" 3497 | } 3498 | ], 3499 | "start": 76.58, 3500 | "startOffset": 845, 3501 | "word": "other" 3502 | }, 3503 | { 3504 | "alignedWord": "", 3505 | "case": "success", 3506 | "end": 77.44, 3507 | "endOffset": 854, 3508 | "phones": [ 3509 | { 3510 | "duration": 0.47, 3511 | "phone": "oov_S" 3512 | } 3513 | ], 3514 | "start": 76.97, 3515 | "startOffset": 851, 3516 | "word": "iOS" 3517 | }, 3518 | { 3519 | "alignedWord": "web", 3520 | "case": "success", 3521 | "end": 77.66, 3522 | "endOffset": 858, 3523 | "phones": [ 3524 | { 3525 | "duration": 0.07, 3526 | "phone": "w_B" 3527 | }, 3528 | { 3529 | "duration": 0.08, 3530 | "phone": "eh_I" 3531 | }, 3532 | { 3533 | "duration": 0.05, 3534 | "phone": "b_E" 3535 | } 3536 | ], 3537 | "start": 77.46, 3538 | "startOffset": 855, 3539 | "word": "web" 3540 | }, 3541 | { 3542 | "alignedWord": "", 3543 | "case": "success", 3544 | "end": 78.33000000000001, 3545 | "endOffset": 867, 3546 | "phones": [ 3547 | { 3548 | "duration": 0.15, 3549 | "phone": "oov_S" 3550 | } 3551 | ], 3552 | "start": 78.18, 3553 | "startOffset": 859, 3554 | "word": "browsers" 3555 | }, 3556 | { 3557 | "alignedWord": "", 3558 | "case": "success", 3559 | "end": 79.97, 3560 | "endOffset": 877, 3561 | "phones": [ 3562 | { 3563 | "duration": 0.69, 3564 | "phone": "oov_S" 3565 | } 3566 | ], 3567 | "start": 79.28, 3568 | "startOffset": 870, 3569 | "word": "Firefox" 3570 | }, 3571 | { 3572 | "alignedWord": "was", 3573 | "case": "success", 3574 | "end": 80.2, 3575 | "endOffset": 881, 3576 | "phones": [ 3577 | { 3578 | "duration": 0.07, 3579 | "phone": "w_B" 3580 | }, 3581 | { 3582 | "duration": 0.06, 3583 | "phone": "ah_I" 3584 | }, 3585 | { 3586 | "duration": 0.09, 3587 | "phone": "z_E" 3588 | } 3589 | ], 3590 | "start": 79.98, 3591 | "startOffset": 878, 3592 | "word": "was" 3593 | }, 3594 | { 3595 | "alignedWord": "created", 3596 | "case": "success", 3597 | "end": 80.66, 3598 | "endOffset": 889, 3599 | "phones": [ 3600 | { 3601 | "duration": 0.08, 3602 | "phone": "k_B" 3603 | }, 3604 | { 3605 | "duration": 0.07, 3606 | "phone": "r_I" 3607 | }, 3608 | { 3609 | "duration": 0.07, 3610 | "phone": "iy_I" 3611 | }, 3612 | { 3613 | "duration": 0.07, 3614 | "phone": "ey_I" 3615 | }, 3616 | { 3617 | "duration": 0.04, 3618 | "phone": "t_I" 3619 | }, 3620 | { 3621 | "duration": 0.07, 3622 | "phone": "ih_I" 3623 | }, 3624 | { 3625 | "duration": 0.06, 3626 | "phone": "d_E" 3627 | } 3628 | ], 3629 | "start": 80.2, 3630 | "startOffset": 882, 3631 | "word": "created" 3632 | }, 3633 | { 3634 | "alignedWord": "in", 3635 | "case": "success", 3636 | "end": 80.82, 3637 | "endOffset": 892, 3638 | "phones": [ 3639 | { 3640 | "duration": 0.07, 3641 | "phone": "ih_B" 3642 | }, 3643 | { 3644 | "duration": 0.09, 3645 | "phone": "n_E" 3646 | } 3647 | ], 3648 | "start": 80.66, 3649 | "startOffset": 890, 3650 | "word": "in" 3651 | }, 3652 | { 3653 | "alignedWord": "", 3654 | "case": "success", 3655 | "end": 81.1, 3656 | "endOffset": 897, 3657 | "phones": [ 3658 | { 3659 | "duration": 0.28, 3660 | "phone": "oov_S" 3661 | } 3662 | ], 3663 | "start": 80.82, 3664 | "startOffset": 893, 3665 | "word": "2002" 3666 | }, 3667 | { 3668 | "alignedWord": "under", 3669 | "case": "success", 3670 | "end": 82.22, 3671 | "endOffset": 903, 3672 | "phones": [ 3673 | { 3674 | "duration": 0.07, 3675 | "phone": "ah_B" 3676 | }, 3677 | { 3678 | "duration": 0.06, 3679 | "phone": "n_I" 3680 | }, 3681 | { 3682 | "duration": 0.06, 3683 | "phone": "d_I" 3684 | }, 3685 | { 3686 | "duration": 0.08, 3687 | "phone": "er_E" 3688 | } 3689 | ], 3690 | "start": 81.95, 3691 | "startOffset": 898, 3692 | "word": "under" 3693 | }, 3694 | { 3695 | "alignedWord": "the", 3696 | "case": "success", 3697 | "end": 82.329999, 3698 | "endOffset": 907, 3699 | "phones": [ 3700 | { 3701 | "duration": 0.04, 3702 | "phone": "dh_B" 3703 | }, 3704 | { 3705 | "duration": 0.07, 3706 | "phone": "ah_E" 3707 | } 3708 | ], 3709 | "start": 82.219999, 3710 | "startOffset": 904, 3711 | "word": "the" 3712 | }, 3713 | { 3714 | "alignedWord": "", 3715 | "case": "success", 3716 | "end": 83.25000000000001, 3717 | "endOffset": 916, 3718 | "phones": [ 3719 | { 3720 | "duration": 0.04, 3721 | "phone": "oov_S" 3722 | } 3723 | ], 3724 | "start": 83.21000000000001, 3725 | "startOffset": 908, 3726 | "word": "codename" 3727 | }, 3728 | { 3729 | "alignedWord": "phoenix", 3730 | "case": "success", 3731 | "end": 83.5, 3732 | "endOffset": 925, 3733 | "phones": [ 3734 | { 3735 | "duration": 0.01, 3736 | "phone": "f_B" 3737 | }, 3738 | { 3739 | "duration": 0.01, 3740 | "phone": "iy_I" 3741 | }, 3742 | { 3743 | "duration": 0.01, 3744 | "phone": "n_I" 3745 | }, 3746 | { 3747 | "duration": 0.01, 3748 | "phone": "ih_I" 3749 | }, 3750 | { 3751 | "duration": 0.1, 3752 | "phone": "k_I" 3753 | }, 3754 | { 3755 | "duration": 0.11, 3756 | "phone": "s_E" 3757 | } 3758 | ], 3759 | "start": 83.25, 3760 | "startOffset": 918, 3761 | "word": "Phoenix" 3762 | }, 3763 | { 3764 | "alignedWord": "by", 3765 | "case": "success", 3766 | "end": 83.67, 3767 | "endOffset": 929, 3768 | "phones": [ 3769 | { 3770 | "duration": 0.09, 3771 | "phone": "b_B" 3772 | }, 3773 | { 3774 | "duration": 0.08, 3775 | "phone": "ay_E" 3776 | } 3777 | ], 3778 | "start": 83.5, 3779 | "startOffset": 927, 3780 | "word": "by" 3781 | }, 3782 | { 3783 | "alignedWord": "the", 3784 | "case": "success", 3785 | "end": 83.81, 3786 | "endOffset": 933, 3787 | "phones": [ 3788 | { 3789 | "duration": 0.07, 3790 | "phone": "dh_B" 3791 | }, 3792 | { 3793 | "duration": 0.07, 3794 | "phone": "ah_E" 3795 | } 3796 | ], 3797 | "start": 83.67, 3798 | "startOffset": 930, 3799 | "word": "the" 3800 | }, 3801 | { 3802 | "alignedWord": "", 3803 | "case": "success", 3804 | "end": 84.23999900000001, 3805 | "endOffset": 941, 3806 | "phones": [ 3807 | { 3808 | "duration": 0.43, 3809 | "phone": "oov_S" 3810 | } 3811 | ], 3812 | "start": 83.809999, 3813 | "startOffset": 934, 3814 | "word": "Mozilla" 3815 | }, 3816 | { 3817 | "alignedWord": "community", 3818 | "case": "success", 3819 | "end": 84.83, 3820 | "endOffset": 951, 3821 | "phones": [ 3822 | { 3823 | "duration": 0.05, 3824 | "phone": "k_B" 3825 | }, 3826 | { 3827 | "duration": 0.06, 3828 | "phone": "ah_I" 3829 | }, 3830 | { 3831 | "duration": 0.06, 3832 | "phone": "m_I" 3833 | }, 3834 | { 3835 | "duration": 0.07, 3836 | "phone": "y_I" 3837 | }, 3838 | { 3839 | "duration": 0.08, 3840 | "phone": "uw_I" 3841 | }, 3842 | { 3843 | "duration": 0.05, 3844 | "phone": "n_I" 3845 | }, 3846 | { 3847 | "duration": 0.06, 3848 | "phone": "ih_I" 3849 | }, 3850 | { 3851 | "duration": 0.05, 3852 | "phone": "t_I" 3853 | }, 3854 | { 3855 | "duration": 0.08, 3856 | "phone": "iy_E" 3857 | } 3858 | ], 3859 | "start": 84.27, 3860 | "startOffset": 942, 3861 | "word": "community" 3862 | }, 3863 | { 3864 | "alignedWord": "members", 3865 | "case": "success", 3866 | "end": 85.39999999999999, 3867 | "endOffset": 959, 3868 | "phones": [ 3869 | { 3870 | "duration": 0.07, 3871 | "phone": "m_B" 3872 | }, 3873 | { 3874 | "duration": 0.08, 3875 | "phone": "eh_I" 3876 | }, 3877 | { 3878 | "duration": 0.06, 3879 | "phone": "m_I" 3880 | }, 3881 | { 3882 | "duration": 0.07, 3883 | "phone": "b_I" 3884 | }, 3885 | { 3886 | "duration": 0.13, 3887 | "phone": "er_I" 3888 | }, 3889 | { 3890 | "duration": 0.16, 3891 | "phone": "z_E" 3892 | } 3893 | ], 3894 | "start": 84.83, 3895 | "startOffset": 952, 3896 | "word": "members" 3897 | }, 3898 | { 3899 | "alignedWord": "who", 3900 | "case": "success", 3901 | "end": 85.86, 3902 | "endOffset": 963, 3903 | "phones": [ 3904 | { 3905 | "duration": 0.1, 3906 | "phone": "hh_B" 3907 | }, 3908 | { 3909 | "duration": 0.1, 3910 | "phone": "uw_E" 3911 | } 3912 | ], 3913 | "start": 85.66, 3914 | "startOffset": 960, 3915 | "word": "who" 3916 | }, 3917 | { 3918 | "alignedWord": "desired", 3919 | "case": "success", 3920 | "end": 86.4, 3921 | "endOffset": 971, 3922 | "phones": [ 3923 | { 3924 | "duration": 0.06, 3925 | "phone": "d_B" 3926 | }, 3927 | { 3928 | "duration": 0.07, 3929 | "phone": "ih_I" 3930 | }, 3931 | { 3932 | "duration": 0.13, 3933 | "phone": "z_I" 3934 | }, 3935 | { 3936 | "duration": 0.15, 3937 | "phone": "ay_I" 3938 | }, 3939 | { 3940 | "duration": 0.07, 3941 | "phone": "er_I" 3942 | }, 3943 | { 3944 | "duration": 0.06, 3945 | "phone": "d_E" 3946 | } 3947 | ], 3948 | "start": 85.86, 3949 | "startOffset": 964, 3950 | "word": "desired" 3951 | }, 3952 | { 3953 | "alignedWord": "a", 3954 | "case": "success", 3955 | "end": 86.49000000000001, 3956 | "endOffset": 973, 3957 | "phones": [ 3958 | { 3959 | "duration": 0.09, 3960 | "phone": "ah_S" 3961 | } 3962 | ], 3963 | "start": 86.4, 3964 | "startOffset": 972, 3965 | "word": "a" 3966 | }, 3967 | { 3968 | "alignedWord": "", 3969 | "case": "success", 3970 | "end": 87.1, 3971 | "endOffset": 984, 3972 | "phones": [ 3973 | { 3974 | "duration": 0.61, 3975 | "phone": "oov_S" 3976 | } 3977 | ], 3978 | "start": 86.49, 3979 | "startOffset": 974, 3980 | "word": "standalone" 3981 | }, 3982 | { 3983 | "alignedWord": "browser", 3984 | "case": "success", 3985 | "end": 87.72, 3986 | "endOffset": 992, 3987 | "phones": [ 3988 | { 3989 | "duration": 0.08, 3990 | "phone": "b_B" 3991 | }, 3992 | { 3993 | "duration": 0.04, 3994 | "phone": "r_I" 3995 | }, 3996 | { 3997 | "duration": 0.17, 3998 | "phone": "aw_I" 3999 | }, 4000 | { 4001 | "duration": 0.1, 4002 | "phone": "z_I" 4003 | }, 4004 | { 4005 | "duration": 0.22, 4006 | "phone": "er_E" 4007 | } 4008 | ], 4009 | "start": 87.11, 4010 | "startOffset": 985, 4011 | "word": "browser" 4012 | }, 4013 | { 4014 | "alignedWord": "rather", 4015 | "case": "success", 4016 | "end": 88.189999, 4017 | "endOffset": 1000, 4018 | "phones": [ 4019 | { 4020 | "duration": 0.13, 4021 | "phone": "r_B" 4022 | }, 4023 | { 4024 | "duration": 0.09, 4025 | "phone": "ae_I" 4026 | }, 4027 | { 4028 | "duration": 0.07, 4029 | "phone": "dh_I" 4030 | }, 4031 | { 4032 | "duration": 0.1, 4033 | "phone": "er_E" 4034 | } 4035 | ], 4036 | "start": 87.799999, 4037 | "startOffset": 994, 4038 | "word": "rather" 4039 | }, 4040 | { 4041 | "alignedWord": "than", 4042 | "case": "success", 4043 | "end": 88.330001, 4044 | "endOffset": 1005, 4045 | "phones": [ 4046 | { 4047 | "duration": 0.02, 4048 | "phone": "dh_B" 4049 | }, 4050 | { 4051 | "duration": 0.08, 4052 | "phone": "ah_I" 4053 | }, 4054 | { 4055 | "duration": 0.04, 4056 | "phone": "n_E" 4057 | } 4058 | ], 4059 | "start": 88.190001, 4060 | "startOffset": 1001, 4061 | "word": "than" 4062 | }, 4063 | { 4064 | "alignedWord": "the", 4065 | "case": "success", 4066 | "end": 88.45, 4067 | "endOffset": 1009, 4068 | "phones": [ 4069 | { 4070 | "duration": 0.05, 4071 | "phone": "dh_B" 4072 | }, 4073 | { 4074 | "duration": 0.07, 4075 | "phone": "ah_E" 4076 | } 4077 | ], 4078 | "start": 88.33, 4079 | "startOffset": 1006, 4080 | "word": "the" 4081 | }, 4082 | { 4083 | "alignedWord": "", 4084 | "case": "success", 4085 | "end": 88.88999899999999, 4086 | "endOffset": 1017, 4087 | "phones": [ 4088 | { 4089 | "duration": 0.44, 4090 | "phone": "oov_S" 4091 | } 4092 | ], 4093 | "start": 88.44999899999999, 4094 | "startOffset": 1010, 4095 | "word": "Mozilla" 4096 | }, 4097 | { 4098 | "alignedWord": "application", 4099 | "case": "success", 4100 | "end": 89.63000000000001, 4101 | "endOffset": 1029, 4102 | "phones": [ 4103 | { 4104 | "duration": 0.1, 4105 | "phone": "ae_B" 4106 | }, 4107 | { 4108 | "duration": 0.07, 4109 | "phone": "p_I" 4110 | }, 4111 | { 4112 | "duration": 0.04, 4113 | "phone": "l_I" 4114 | }, 4115 | { 4116 | "duration": 0.06, 4117 | "phone": "ah_I" 4118 | }, 4119 | { 4120 | "duration": 0.11, 4121 | "phone": "k_I" 4122 | }, 4123 | { 4124 | "duration": 0.09, 4125 | "phone": "ey_I" 4126 | }, 4127 | { 4128 | "duration": 0.09, 4129 | "phone": "sh_I" 4130 | }, 4131 | { 4132 | "duration": 0.06, 4133 | "phone": "ah_I" 4134 | }, 4135 | { 4136 | "duration": 0.08, 4137 | "phone": "n_E" 4138 | } 4139 | ], 4140 | "start": 88.93, 4141 | "startOffset": 1018, 4142 | "word": "Application" 4143 | }, 4144 | { 4145 | "alignedWord": "suite", 4146 | "case": "success", 4147 | "end": 89.929999, 4148 | "endOffset": 1035, 4149 | "phones": [ 4150 | { 4151 | "duration": 0.13, 4152 | "phone": "s_B" 4153 | }, 4154 | { 4155 | "duration": 0.01, 4156 | "phone": "w_I" 4157 | }, 4158 | { 4159 | "duration": 0.1, 4160 | "phone": "iy_I" 4161 | }, 4162 | { 4163 | "duration": 0.06, 4164 | "phone": "t_E" 4165 | } 4166 | ], 4167 | "start": 89.629999, 4168 | "startOffset": 1030, 4169 | "word": "Suite" 4170 | }, 4171 | { 4172 | "alignedWord": "bundle", 4173 | "case": "success", 4174 | "end": 90.57000000000001, 4175 | "endOffset": 1042, 4176 | "phones": [ 4177 | { 4178 | "duration": 0.06, 4179 | "phone": "b_B" 4180 | }, 4181 | { 4182 | "duration": 0.07, 4183 | "phone": "ah_I" 4184 | }, 4185 | { 4186 | "duration": 0.06, 4187 | "phone": "n_I" 4188 | }, 4189 | { 4190 | "duration": 0.07, 4191 | "phone": "d_I" 4192 | }, 4193 | { 4194 | "duration": 0.07, 4195 | "phone": "ah_I" 4196 | }, 4197 | { 4198 | "duration": 0.31, 4199 | "phone": "l_E" 4200 | } 4201 | ], 4202 | "start": 89.93, 4203 | "startOffset": 1036, 4204 | "word": "bundle" 4205 | }, 4206 | { 4207 | "alignedWord": "during", 4208 | "case": "success", 4209 | "end": 91.57, 4210 | "endOffset": 1050, 4211 | "phones": [ 4212 | { 4213 | "duration": 0.12, 4214 | "phone": "d_B" 4215 | }, 4216 | { 4217 | "duration": 0.11, 4218 | "phone": "er_I" 4219 | }, 4220 | { 4221 | "duration": 0.1, 4222 | "phone": "ih_I" 4223 | }, 4224 | { 4225 | "duration": 0.08, 4226 | "phone": "ng_E" 4227 | } 4228 | ], 4229 | "start": 91.16, 4230 | "startOffset": 1044, 4231 | "word": "During" 4232 | }, 4233 | { 4234 | "alignedWord": "its", 4235 | "case": "success", 4236 | "end": 91.78999999999999, 4237 | "endOffset": 1054, 4238 | "phones": [ 4239 | { 4240 | "duration": 0.05, 4241 | "phone": "ih_B" 4242 | }, 4243 | { 4244 | "duration": 0.08, 4245 | "phone": "t_I" 4246 | }, 4247 | { 4248 | "duration": 0.09, 4249 | "phone": "s_E" 4250 | } 4251 | ], 4252 | "start": 91.57, 4253 | "startOffset": 1051, 4254 | "word": "its" 4255 | }, 4256 | { 4257 | "alignedWord": "beta", 4258 | "case": "success", 4259 | "end": 92.13000000000001, 4260 | "endOffset": 1059, 4261 | "phones": [ 4262 | { 4263 | "duration": 0.08, 4264 | "phone": "b_B" 4265 | }, 4266 | { 4267 | "duration": 0.12, 4268 | "phone": "ey_I" 4269 | }, 4270 | { 4271 | "duration": 0.06, 4272 | "phone": "t_I" 4273 | }, 4274 | { 4275 | "duration": 0.08, 4276 | "phone": "ah_E" 4277 | } 4278 | ], 4279 | "start": 91.79, 4280 | "startOffset": 1055, 4281 | "word": "beta" 4282 | }, 4283 | { 4284 | "alignedWord": "phase", 4285 | "case": "success", 4286 | "end": 92.67, 4287 | "endOffset": 1065, 4288 | "phones": [ 4289 | { 4290 | "duration": 0.14, 4291 | "phone": "f_B" 4292 | }, 4293 | { 4294 | "duration": 0.21, 4295 | "phone": "ey_I" 4296 | }, 4297 | { 4298 | "duration": 0.19, 4299 | "phone": "z_E" 4300 | } 4301 | ], 4302 | "start": 92.13, 4303 | "startOffset": 1060, 4304 | "word": "phase" 4305 | }, 4306 | { 4307 | "alignedWord": "", 4308 | "case": "success", 4309 | "end": 93.74, 4310 | "endOffset": 1074, 4311 | "phones": [ 4312 | { 4313 | "duration": 0.75, 4314 | "phone": "oov_S" 4315 | } 4316 | ], 4317 | "start": 92.99, 4318 | "startOffset": 1067, 4319 | "word": "Firefox" 4320 | }, 4321 | { 4322 | "alignedWord": "proved", 4323 | "case": "success", 4324 | "end": 94.02000000000001, 4325 | "endOffset": 1081, 4326 | "phones": [ 4327 | { 4328 | "duration": 0.05, 4329 | "phone": "p_B" 4330 | }, 4331 | { 4332 | "duration": 0.07, 4333 | "phone": "r_I" 4334 | }, 4335 | { 4336 | "duration": 0.06, 4337 | "phone": "uw_I" 4338 | }, 4339 | { 4340 | "duration": 0.06, 4341 | "phone": "v_I" 4342 | }, 4343 | { 4344 | "duration": 0.02, 4345 | "phone": "d_E" 4346 | } 4347 | ], 4348 | "start": 93.76, 4349 | "startOffset": 1075, 4350 | "word": "proved" 4351 | }, 4352 | { 4353 | "alignedWord": "to", 4354 | "case": "success", 4355 | "end": 94.16, 4356 | "endOffset": 1084, 4357 | "phones": [ 4358 | { 4359 | "duration": 0.06, 4360 | "phone": "t_B" 4361 | }, 4362 | { 4363 | "duration": 0.07, 4364 | "phone": "ih_E" 4365 | } 4366 | ], 4367 | "start": 94.03, 4368 | "startOffset": 1082, 4369 | "word": "to" 4370 | }, 4371 | { 4372 | "alignedWord": "be", 4373 | "case": "success", 4374 | "end": 94.33, 4375 | "endOffset": 1087, 4376 | "phones": [ 4377 | { 4378 | "duration": 0.09, 4379 | "phone": "b_B" 4380 | }, 4381 | { 4382 | "duration": 0.07, 4383 | "phone": "iy_E" 4384 | } 4385 | ], 4386 | "start": 94.17, 4387 | "startOffset": 1085, 4388 | "word": "be" 4389 | }, 4390 | { 4391 | "alignedWord": "popular", 4392 | "case": "success", 4393 | "end": 95.1, 4394 | "endOffset": 1095, 4395 | "phones": [ 4396 | { 4397 | "duration": 0.11, 4398 | "phone": "p_B" 4399 | }, 4400 | { 4401 | "duration": 0.12, 4402 | "phone": "aa_I" 4403 | }, 4404 | { 4405 | "duration": 0.11, 4406 | "phone": "p_I" 4407 | }, 4408 | { 4409 | "duration": 0.04, 4410 | "phone": "y_I" 4411 | }, 4412 | { 4413 | "duration": 0.09, 4414 | "phone": "ah_I" 4415 | }, 4416 | { 4417 | "duration": 0.1, 4418 | "phone": "l_I" 4419 | }, 4420 | { 4421 | "duration": 0.2, 4422 | "phone": "er_E" 4423 | } 4424 | ], 4425 | "start": 94.33, 4426 | "startOffset": 1088, 4427 | "word": "popular" 4428 | }, 4429 | { 4430 | "alignedWord": "with", 4431 | "case": "success", 4432 | "end": 95.32000000000001, 4433 | "endOffset": 1100, 4434 | "phones": [ 4435 | { 4436 | "duration": 0.09, 4437 | "phone": "w_B" 4438 | }, 4439 | { 4440 | "duration": 0.04, 4441 | "phone": "ih_I" 4442 | }, 4443 | { 4444 | "duration": 0.07, 4445 | "phone": "th_E" 4446 | } 4447 | ], 4448 | "start": 95.12, 4449 | "startOffset": 1096, 4450 | "word": "with" 4451 | }, 4452 | { 4453 | "alignedWord": "its", 4454 | "case": "success", 4455 | "end": 95.53999999999999, 4456 | "endOffset": 1104, 4457 | "phones": [ 4458 | { 4459 | "duration": 0.05, 4460 | "phone": "ih_B" 4461 | }, 4462 | { 4463 | "duration": 0.08, 4464 | "phone": "t_I" 4465 | }, 4466 | { 4467 | "duration": 0.09, 4468 | "phone": "s_E" 4469 | } 4470 | ], 4471 | "start": 95.32, 4472 | "startOffset": 1101, 4473 | "word": "its" 4474 | }, 4475 | { 4476 | "alignedWord": "testers", 4477 | "case": "success", 4478 | "end": 96.15, 4479 | "endOffset": 1112, 4480 | "phones": [ 4481 | { 4482 | "duration": 0.08, 4483 | "phone": "t_B" 4484 | }, 4485 | { 4486 | "duration": 0.09, 4487 | "phone": "eh_I" 4488 | }, 4489 | { 4490 | "duration": 0.08, 4491 | "phone": "s_I" 4492 | }, 4493 | { 4494 | "duration": 0.1, 4495 | "phone": "t_I" 4496 | }, 4497 | { 4498 | "duration": 0.13, 4499 | "phone": "er_I" 4500 | }, 4501 | { 4502 | "duration": 0.13, 4503 | "phone": "z_E" 4504 | } 4505 | ], 4506 | "start": 95.54, 4507 | "startOffset": 1105, 4508 | "word": "testers" 4509 | }, 4510 | { 4511 | "alignedWord": "and", 4512 | "case": "success", 4513 | "end": 96.69000000000001, 4514 | "endOffset": 1116, 4515 | "phones": [ 4516 | { 4517 | "duration": 0.13, 4518 | "phone": "ae_B" 4519 | }, 4520 | { 4521 | "duration": 0.05, 4522 | "phone": "n_I" 4523 | }, 4524 | { 4525 | "duration": 0.08, 4526 | "phone": "d_E" 4527 | } 4528 | ], 4529 | "start": 96.43, 4530 | "startOffset": 1113, 4531 | "word": "and" 4532 | }, 4533 | { 4534 | "alignedWord": "was", 4535 | "case": "success", 4536 | "end": 96.89, 4537 | "endOffset": 1120, 4538 | "phones": [ 4539 | { 4540 | "duration": 0.04, 4541 | "phone": "w_B" 4542 | }, 4543 | { 4544 | "duration": 0.07, 4545 | "phone": "ah_I" 4546 | }, 4547 | { 4548 | "duration": 0.09, 4549 | "phone": "z_E" 4550 | } 4551 | ], 4552 | "start": 96.69, 4553 | "startOffset": 1117, 4554 | "word": "was" 4555 | }, 4556 | { 4557 | "alignedWord": "praised", 4558 | "case": "success", 4559 | "end": 97.38, 4560 | "endOffset": 1128, 4561 | "phones": [ 4562 | { 4563 | "duration": 0.07, 4564 | "phone": "p_B" 4565 | }, 4566 | { 4567 | "duration": 0.1, 4568 | "phone": "r_I" 4569 | }, 4570 | { 4571 | "duration": 0.16, 4572 | "phone": "ey_I" 4573 | }, 4574 | { 4575 | "duration": 0.11, 4576 | "phone": "z_I" 4577 | }, 4578 | { 4579 | "duration": 0.05, 4580 | "phone": "d_E" 4581 | } 4582 | ], 4583 | "start": 96.89, 4584 | "startOffset": 1121, 4585 | "word": "praised" 4586 | }, 4587 | { 4588 | "alignedWord": "for", 4589 | "case": "success", 4590 | "end": 97.53999999999999, 4591 | "endOffset": 1132, 4592 | "phones": [ 4593 | { 4594 | "duration": 0.06, 4595 | "phone": "f_B" 4596 | }, 4597 | { 4598 | "duration": 0.05, 4599 | "phone": "ao_I" 4600 | }, 4601 | { 4602 | "duration": 0.05, 4603 | "phone": "r_E" 4604 | } 4605 | ], 4606 | "start": 97.38, 4607 | "startOffset": 1129, 4608 | "word": "for" 4609 | }, 4610 | { 4611 | "alignedWord": "its", 4612 | "case": "success", 4613 | "end": 97.7, 4614 | "endOffset": 1136, 4615 | "phones": [ 4616 | { 4617 | "duration": 0.07, 4618 | "phone": "ih_B" 4619 | }, 4620 | { 4621 | "duration": 0.06, 4622 | "phone": "t_I" 4623 | }, 4624 | { 4625 | "duration": 0.03, 4626 | "phone": "s_E" 4627 | } 4628 | ], 4629 | "start": 97.54, 4630 | "startOffset": 1133, 4631 | "word": "its" 4632 | }, 4633 | { 4634 | "alignedWord": "speed", 4635 | "case": "success", 4636 | "end": 98.26, 4637 | "endOffset": 1142, 4638 | "phones": [ 4639 | { 4640 | "duration": 0.11, 4641 | "phone": "s_B" 4642 | }, 4643 | { 4644 | "duration": 0.11, 4645 | "phone": "p_I" 4646 | }, 4647 | { 4648 | "duration": 0.17, 4649 | "phone": "iy_I" 4650 | }, 4651 | { 4652 | "duration": 0.17, 4653 | "phone": "d_E" 4654 | } 4655 | ], 4656 | "start": 97.7, 4657 | "startOffset": 1137, 4658 | "word": "speed" 4659 | }, 4660 | { 4661 | "alignedWord": "security", 4662 | "case": "success", 4663 | "end": 99.18, 4664 | "endOffset": 1152, 4665 | "phones": [ 4666 | { 4667 | "duration": 0.12, 4668 | "phone": "s_B" 4669 | }, 4670 | { 4671 | "duration": 0.06, 4672 | "phone": "ih_I" 4673 | }, 4674 | { 4675 | "duration": 0.12, 4676 | "phone": "k_I" 4677 | }, 4678 | { 4679 | "duration": 0.01, 4680 | "phone": "y_I" 4681 | }, 4682 | { 4683 | "duration": 0.09, 4684 | "phone": "uh_I" 4685 | }, 4686 | { 4687 | "duration": 0.07, 4688 | "phone": "r_I" 4689 | }, 4690 | { 4691 | "duration": 0.04, 4692 | "phone": "ah_I" 4693 | }, 4694 | { 4695 | "duration": 0.07, 4696 | "phone": "t_I" 4697 | }, 4698 | { 4699 | "duration": 0.2, 4700 | "phone": "iy_E" 4701 | } 4702 | ], 4703 | "start": 98.4, 4704 | "startOffset": 1144, 4705 | "word": "security" 4706 | }, 4707 | { 4708 | "alignedWord": "and", 4709 | "case": "success", 4710 | "end": 99.57000000000001, 4711 | "endOffset": 1157, 4712 | "phones": [ 4713 | { 4714 | "duration": 0.11, 4715 | "phone": "ae_B" 4716 | }, 4717 | { 4718 | "duration": 0.06, 4719 | "phone": "n_I" 4720 | }, 4721 | { 4722 | "duration": 0.06, 4723 | "phone": "d_E" 4724 | } 4725 | ], 4726 | "start": 99.34, 4727 | "startOffset": 1154, 4728 | "word": "and" 4729 | }, 4730 | { 4731 | "alignedWord": "add", 4732 | "case": "success", 4733 | "end": 99.85000000000001, 4734 | "endOffset": 1161, 4735 | "phones": [ 4736 | { 4737 | "duration": 0.16, 4738 | "phone": "ae_B" 4739 | }, 4740 | { 4741 | "duration": 0.07, 4742 | "phone": "d_E" 4743 | } 4744 | ], 4745 | "start": 99.62, 4746 | "startOffset": 1158, 4747 | "word": "add" 4748 | }, 4749 | { 4750 | "alignedWord": "ons", 4751 | "case": "success", 4752 | "end": 100.19999899999999, 4753 | "endOffset": 1165, 4754 | "phones": [ 4755 | { 4756 | "duration": 0.19, 4757 | "phone": "aa_B" 4758 | }, 4759 | { 4760 | "duration": 0.08, 4761 | "phone": "n_I" 4762 | }, 4763 | { 4764 | "duration": 0.08, 4765 | "phone": "z_E" 4766 | } 4767 | ], 4768 | "start": 99.849999, 4769 | "startOffset": 1162, 4770 | "word": "ons" 4771 | }, 4772 | { 4773 | "alignedWord": "compared", 4774 | "case": "success", 4775 | "end": 100.639999, 4776 | "endOffset": 1174, 4777 | "phones": [ 4778 | { 4779 | "duration": 0.07, 4780 | "phone": "k_B" 4781 | }, 4782 | { 4783 | "duration": 0.05, 4784 | "phone": "ah_I" 4785 | }, 4786 | { 4787 | "duration": 0.05, 4788 | "phone": "m_I" 4789 | }, 4790 | { 4791 | "duration": 0.05, 4792 | "phone": "p_I" 4793 | }, 4794 | { 4795 | "duration": 0.09, 4796 | "phone": "eh_I" 4797 | }, 4798 | { 4799 | "duration": 0.05, 4800 | "phone": "r_I" 4801 | }, 4802 | { 4803 | "duration": 0.06, 4804 | "phone": "d_E" 4805 | } 4806 | ], 4807 | "start": 100.219999, 4808 | "startOffset": 1166, 4809 | "word": "compared" 4810 | }, 4811 | { 4812 | "alignedWord": "to", 4813 | "case": "success", 4814 | "end": 100.749999, 4815 | "endOffset": 1177, 4816 | "phones": [ 4817 | { 4818 | "duration": 0.04, 4819 | "phone": "t_B" 4820 | }, 4821 | { 4822 | "duration": 0.07, 4823 | "phone": "ah_E" 4824 | } 4825 | ], 4826 | "start": 100.639999, 4827 | "startOffset": 1175, 4828 | "word": "to" 4829 | }, 4830 | { 4831 | "alignedWord": "microsoft's", 4832 | "case": "success", 4833 | "end": 101.66, 4834 | "endOffset": 1189, 4835 | "phones": [ 4836 | { 4837 | "duration": 0.07, 4838 | "phone": "m_B" 4839 | }, 4840 | { 4841 | "duration": 0.11, 4842 | "phone": "ay_I" 4843 | }, 4844 | { 4845 | "duration": 0.08, 4846 | "phone": "k_I" 4847 | }, 4848 | { 4849 | "duration": 0.01, 4850 | "phone": "r_I" 4851 | }, 4852 | { 4853 | "duration": 0.07, 4854 | "phone": "ow_I" 4855 | }, 4856 | { 4857 | "duration": 0.12, 4858 | "phone": "s_I" 4859 | }, 4860 | { 4861 | "duration": 0.15, 4862 | "phone": "ao_I" 4863 | }, 4864 | { 4865 | "duration": 0.09, 4866 | "phone": "f_I" 4867 | }, 4868 | { 4869 | "duration": 0.21, 4870 | "phone": "s_E" 4871 | } 4872 | ], 4873 | "start": 100.75, 4874 | "startOffset": 1178, 4875 | "word": "Microsoft's" 4876 | }, 4877 | { 4878 | "alignedWord": "then", 4879 | "case": "success", 4880 | "end": 102.11, 4881 | "endOffset": 1194, 4882 | "phones": [ 4883 | { 4884 | "duration": 0.16, 4885 | "phone": "dh_B" 4886 | }, 4887 | { 4888 | "duration": 0.09, 4889 | "phone": "eh_I" 4890 | }, 4891 | { 4892 | "duration": 0.12, 4893 | "phone": "n_E" 4894 | } 4895 | ], 4896 | "start": 101.74, 4897 | "startOffset": 1190, 4898 | "word": "then" 4899 | }, 4900 | { 4901 | "alignedWord": "dominant", 4902 | "case": "success", 4903 | "end": 102.62, 4904 | "endOffset": 1203, 4905 | "phones": [ 4906 | { 4907 | "duration": 0.08, 4908 | "phone": "d_B" 4909 | }, 4910 | { 4911 | "duration": 0.11, 4912 | "phone": "aa_I" 4913 | }, 4914 | { 4915 | "duration": 0.05, 4916 | "phone": "m_I" 4917 | }, 4918 | { 4919 | "duration": 0.04, 4920 | "phone": "ah_I" 4921 | }, 4922 | { 4923 | "duration": 0.06, 4924 | "phone": "n_I" 4925 | }, 4926 | { 4927 | "duration": 0.05, 4928 | "phone": "ah_I" 4929 | }, 4930 | { 4931 | "duration": 0.03, 4932 | "phone": "n_I" 4933 | }, 4934 | { 4935 | "duration": 0.08, 4936 | "phone": "t_E" 4937 | } 4938 | ], 4939 | "start": 102.12, 4940 | "startOffset": 1195, 4941 | "word": "dominant" 4942 | }, 4943 | { 4944 | "alignedWord": "internet", 4945 | "case": "success", 4946 | "end": 103.07, 4947 | "endOffset": 1212, 4948 | "phones": [ 4949 | { 4950 | "duration": 0.13, 4951 | "phone": "ih_B" 4952 | }, 4953 | { 4954 | "duration": 0.02, 4955 | "phone": "n_I" 4956 | }, 4957 | { 4958 | "duration": 0.06, 4959 | "phone": "t_I" 4960 | }, 4961 | { 4962 | "duration": 0.05, 4963 | "phone": "er_I" 4964 | }, 4965 | { 4966 | "duration": 0.06, 4967 | "phone": "n_I" 4968 | }, 4969 | { 4970 | "duration": 0.07, 4971 | "phone": "eh_I" 4972 | }, 4973 | { 4974 | "duration": 0.05, 4975 | "phone": "t_E" 4976 | } 4977 | ], 4978 | "start": 102.63, 4979 | "startOffset": 1204, 4980 | "word": "Internet" 4981 | }, 4982 | { 4983 | "alignedWord": "explorer", 4984 | "case": "success", 4985 | "end": 103.64999999999999, 4986 | "endOffset": 1221, 4987 | "phones": [ 4988 | { 4989 | "duration": 0.05, 4990 | "phone": "ih_B" 4991 | }, 4992 | { 4993 | "duration": 0.07, 4994 | "phone": "k_I" 4995 | }, 4996 | { 4997 | "duration": 0.05, 4998 | "phone": "s_I" 4999 | }, 5000 | { 5001 | "duration": 0.07, 5002 | "phone": "p_I" 5003 | }, 5004 | { 5005 | "duration": 0.05, 5006 | "phone": "l_I" 5007 | }, 5008 | { 5009 | "duration": 0.13, 5010 | "phone": "ao_I" 5011 | }, 5012 | { 5013 | "duration": 0.07, 5014 | "phone": "r_I" 5015 | }, 5016 | { 5017 | "duration": 0.09, 5018 | "phone": "er_E" 5019 | } 5020 | ], 5021 | "start": 103.07, 5022 | "startOffset": 1213, 5023 | "word": "Explorer" 5024 | }, 5025 | { 5026 | "alignedWord": "", 5027 | "case": "success", 5028 | "end": 104.14, 5029 | "endOffset": 1223, 5030 | "phones": [ 5031 | { 5032 | "duration": 0.49, 5033 | "phone": "oov_S" 5034 | } 5035 | ], 5036 | "start": 103.65, 5037 | "startOffset": 1222, 5038 | "word": "6" 5039 | }, 5040 | { 5041 | "alignedWord": "", 5042 | "case": "success", 5043 | "end": 105.94, 5044 | "endOffset": 1232, 5045 | "phones": [ 5046 | { 5047 | "duration": 0.7, 5048 | "phone": "oov_S" 5049 | } 5050 | ], 5051 | "start": 105.24, 5052 | "startOffset": 1225, 5053 | "word": "Firefox" 5054 | }, 5055 | { 5056 | "alignedWord": "was", 5057 | "case": "success", 5058 | "end": 106.17, 5059 | "endOffset": 1236, 5060 | "phones": [ 5061 | { 5062 | "duration": 0.07, 5063 | "phone": "w_B" 5064 | }, 5065 | { 5066 | "duration": 0.06, 5067 | "phone": "ah_I" 5068 | }, 5069 | { 5070 | "duration": 0.09, 5071 | "phone": "z_E" 5072 | } 5073 | ], 5074 | "start": 105.95, 5075 | "startOffset": 1233, 5076 | "word": "was" 5077 | }, 5078 | { 5079 | "alignedWord": "released", 5080 | "case": "success", 5081 | "end": 106.57000000000001, 5082 | "endOffset": 1245, 5083 | "phones": [ 5084 | { 5085 | "duration": 0.04, 5086 | "phone": "r_B" 5087 | }, 5088 | { 5089 | "duration": 0.05, 5090 | "phone": "iy_I" 5091 | }, 5092 | { 5093 | "duration": 0.09, 5094 | "phone": "l_I" 5095 | }, 5096 | { 5097 | "duration": 0.09, 5098 | "phone": "iy_I" 5099 | }, 5100 | { 5101 | "duration": 0.07, 5102 | "phone": "s_I" 5103 | }, 5104 | { 5105 | "duration": 0.06, 5106 | "phone": "t_E" 5107 | } 5108 | ], 5109 | "start": 106.17, 5110 | "startOffset": 1237, 5111 | "word": "released" 5112 | }, 5113 | { 5114 | "alignedWord": "on", 5115 | "case": "success", 5116 | "end": 106.71, 5117 | "endOffset": 1248, 5118 | "phones": [ 5119 | { 5120 | "duration": 0.07, 5121 | "phone": "aa_B" 5122 | }, 5123 | { 5124 | "duration": 0.07, 5125 | "phone": "n_E" 5126 | } 5127 | ], 5128 | "start": 106.57, 5129 | "startOffset": 1246, 5130 | "word": "on" 5131 | }, 5132 | { 5133 | "alignedWord": "november", 5134 | "case": "success", 5135 | "end": 107.209999, 5136 | "endOffset": 1257, 5137 | "phones": [ 5138 | { 5139 | "duration": 0.05, 5140 | "phone": "n_B" 5141 | }, 5142 | { 5143 | "duration": 0.06, 5144 | "phone": "ow_I" 5145 | }, 5146 | { 5147 | "duration": 0.1, 5148 | "phone": "v_I" 5149 | }, 5150 | { 5151 | "duration": 0.08, 5152 | "phone": "eh_I" 5153 | }, 5154 | { 5155 | "duration": 0.05, 5156 | "phone": "m_I" 5157 | }, 5158 | { 5159 | "duration": 0.06, 5160 | "phone": "b_I" 5161 | }, 5162 | { 5163 | "duration": 0.1, 5164 | "phone": "er_E" 5165 | } 5166 | ], 5167 | "start": 106.709999, 5168 | "startOffset": 1249, 5169 | "word": "November" 5170 | }, 5171 | { 5172 | "alignedWord": "", 5173 | "case": "success", 5174 | "end": 107.86999899999999, 5175 | "endOffset": 1259, 5176 | "phones": [ 5177 | { 5178 | "duration": 0.66, 5179 | "phone": "oov_S" 5180 | } 5181 | ], 5182 | "start": 107.209999, 5183 | "startOffset": 1258, 5184 | "word": "9" 5185 | }, 5186 | { 5187 | "alignedWord": "", 5188 | "case": "success", 5189 | "end": 108.80000000000001, 5190 | "endOffset": 1265, 5191 | "phones": [ 5192 | { 5193 | "duration": 0.01, 5194 | "phone": "oov_S" 5195 | } 5196 | ], 5197 | "start": 108.79, 5198 | "startOffset": 1261, 5199 | "word": "2004" 5200 | }, 5201 | { 5202 | "alignedWord": "and", 5203 | "case": "success", 5204 | "end": 109.22, 5205 | "endOffset": 1270, 5206 | "phones": [ 5207 | { 5208 | "duration": 0.09, 5209 | "phone": "ae_B" 5210 | }, 5211 | { 5212 | "duration": 0.07, 5213 | "phone": "n_I" 5214 | }, 5215 | { 5216 | "duration": 0.06, 5217 | "phone": "d_E" 5218 | } 5219 | ], 5220 | "start": 109.0, 5221 | "startOffset": 1267, 5222 | "word": "and" 5223 | }, 5224 | { 5225 | "alignedWord": "challenged", 5226 | "case": "success", 5227 | "end": 109.76, 5228 | "endOffset": 1281, 5229 | "phones": [ 5230 | { 5231 | "duration": 0.1, 5232 | "phone": "ch_B" 5233 | }, 5234 | { 5235 | "duration": 0.11, 5236 | "phone": "ae_I" 5237 | }, 5238 | { 5239 | "duration": 0.06, 5240 | "phone": "l_I" 5241 | }, 5242 | { 5243 | "duration": 0.06, 5244 | "phone": "ah_I" 5245 | }, 5246 | { 5247 | "duration": 0.07, 5248 | "phone": "n_I" 5249 | }, 5250 | { 5251 | "duration": 0.07, 5252 | "phone": "jh_I" 5253 | }, 5254 | { 5255 | "duration": 0.06, 5256 | "phone": "d_E" 5257 | } 5258 | ], 5259 | "start": 109.23, 5260 | "startOffset": 1271, 5261 | "word": "challenged" 5262 | }, 5263 | { 5264 | "alignedWord": "internet", 5265 | "case": "success", 5266 | "end": 110.21000000000001, 5267 | "endOffset": 1290, 5268 | "phones": [ 5269 | { 5270 | "duration": 0.1, 5271 | "phone": "ih_B" 5272 | }, 5273 | { 5274 | "duration": 0.03, 5275 | "phone": "n_I" 5276 | }, 5277 | { 5278 | "duration": 0.06, 5279 | "phone": "t_I" 5280 | }, 5281 | { 5282 | "duration": 0.04, 5283 | "phone": "er_I" 5284 | }, 5285 | { 5286 | "duration": 0.07, 5287 | "phone": "n_I" 5288 | }, 5289 | { 5290 | "duration": 0.07, 5291 | "phone": "eh_I" 5292 | }, 5293 | { 5294 | "duration": 0.05, 5295 | "phone": "t_E" 5296 | } 5297 | ], 5298 | "start": 109.79, 5299 | "startOffset": 1282, 5300 | "word": "Internet" 5301 | }, 5302 | { 5303 | "alignedWord": "", 5304 | "case": "success", 5305 | "end": 110.89999999999999, 5306 | "endOffset": 1301, 5307 | "phones": [ 5308 | { 5309 | "duration": 0.08, 5310 | "phone": "oov_S" 5311 | } 5312 | ], 5313 | "start": 110.82, 5314 | "startOffset": 1291, 5315 | "word": "Explorer's" 5316 | }, 5317 | { 5318 | "alignedWord": "dominance", 5319 | "case": "success", 5320 | "end": 111.56, 5321 | "endOffset": 1311, 5322 | "phones": [ 5323 | { 5324 | "duration": 0.08, 5325 | "phone": "d_B" 5326 | }, 5327 | { 5328 | "duration": 0.12, 5329 | "phone": "aa_I" 5330 | }, 5331 | { 5332 | "duration": 0.04, 5333 | "phone": "m_I" 5334 | }, 5335 | { 5336 | "duration": 0.05, 5337 | "phone": "ah_I" 5338 | }, 5339 | { 5340 | "duration": 0.05, 5341 | "phone": "n_I" 5342 | }, 5343 | { 5344 | "duration": 0.07, 5345 | "phone": "ah_I" 5346 | }, 5347 | { 5348 | "duration": 0.11, 5349 | "phone": "n_I" 5350 | }, 5351 | { 5352 | "duration": 0.13, 5353 | "phone": "s_E" 5354 | } 5355 | ], 5356 | "start": 110.91, 5357 | "startOffset": 1302, 5358 | "word": "dominance" 5359 | }, 5360 | { 5361 | "alignedWord": "with", 5362 | "case": "success", 5363 | "end": 111.82, 5364 | "endOffset": 1316, 5365 | "phones": [ 5366 | { 5367 | "duration": 0.1, 5368 | "phone": "w_B" 5369 | }, 5370 | { 5371 | "duration": 0.04, 5372 | "phone": "ih_I" 5373 | }, 5374 | { 5375 | "duration": 0.1, 5376 | "phone": "th_E" 5377 | } 5378 | ], 5379 | "start": 111.58, 5380 | "startOffset": 1312, 5381 | "word": "with" 5382 | }, 5383 | { 5384 | "alignedWord": "", 5385 | "case": "success", 5386 | "end": 112.33, 5387 | "endOffset": 1319, 5388 | "phones": [ 5389 | { 5390 | "duration": 0.51, 5391 | "phone": "oov_S" 5392 | } 5393 | ], 5394 | "start": 111.82, 5395 | "startOffset": 1317, 5396 | "word": "60" 5397 | }, 5398 | { 5399 | "alignedWord": "million", 5400 | "case": "success", 5401 | "end": 112.74, 5402 | "endOffset": 1327, 5403 | "phones": [ 5404 | { 5405 | "duration": 0.06, 5406 | "phone": "m_B" 5407 | }, 5408 | { 5409 | "duration": 0.09, 5410 | "phone": "ih_I" 5411 | }, 5412 | { 5413 | "duration": 0.07, 5414 | "phone": "l_I" 5415 | }, 5416 | { 5417 | "duration": 0.06, 5418 | "phone": "y_I" 5419 | }, 5420 | { 5421 | "duration": 0.06, 5422 | "phone": "ah_I" 5423 | }, 5424 | { 5425 | "duration": 0.07, 5426 | "phone": "n_E" 5427 | } 5428 | ], 5429 | "start": 112.33, 5430 | "startOffset": 1320, 5431 | "word": "million" 5432 | }, 5433 | { 5434 | "alignedWord": "downloads", 5435 | "case": "success", 5436 | "end": 113.30999999999999, 5437 | "endOffset": 1337, 5438 | "phones": [ 5439 | { 5440 | "duration": 0.05, 5441 | "phone": "d_B" 5442 | }, 5443 | { 5444 | "duration": 0.13, 5445 | "phone": "aw_I" 5446 | }, 5447 | { 5448 | "duration": 0.08, 5449 | "phone": "n_I" 5450 | }, 5451 | { 5452 | "duration": 0.08, 5453 | "phone": "l_I" 5454 | }, 5455 | { 5456 | "duration": 0.1, 5457 | "phone": "ow_I" 5458 | }, 5459 | { 5460 | "duration": 0.07, 5461 | "phone": "d_I" 5462 | }, 5463 | { 5464 | "duration": 0.06, 5465 | "phone": "z_E" 5466 | } 5467 | ], 5468 | "start": 112.74, 5469 | "startOffset": 1328, 5470 | "word": "downloads" 5471 | }, 5472 | { 5473 | "alignedWord": "within", 5474 | "case": "success", 5475 | "end": 113.7, 5476 | "endOffset": 1344, 5477 | "phones": [ 5478 | { 5479 | "duration": 0.05, 5480 | "phone": "w_B" 5481 | }, 5482 | { 5483 | "duration": 0.05, 5484 | "phone": "ih_I" 5485 | }, 5486 | { 5487 | "duration": 0.07, 5488 | "phone": "th_I" 5489 | }, 5490 | { 5491 | "duration": 0.08, 5492 | "phone": "ih_I" 5493 | }, 5494 | { 5495 | "duration": 0.14, 5496 | "phone": "n_E" 5497 | } 5498 | ], 5499 | "start": 113.31, 5500 | "startOffset": 1338, 5501 | "word": "within" 5502 | }, 5503 | { 5504 | "alignedWord": "nine", 5505 | "case": "success", 5506 | "end": 113.98, 5507 | "endOffset": 1349, 5508 | "phones": [ 5509 | { 5510 | "duration": 0.01, 5511 | "phone": "n_B" 5512 | }, 5513 | { 5514 | "duration": 0.2, 5515 | "phone": "ay_I" 5516 | }, 5517 | { 5518 | "duration": 0.07, 5519 | "phone": "n_E" 5520 | } 5521 | ], 5522 | "start": 113.7, 5523 | "startOffset": 1345, 5524 | "word": "nine" 5525 | }, 5526 | { 5527 | "alignedWord": "months", 5528 | "case": "success", 5529 | "end": 114.48, 5530 | "endOffset": 1356, 5531 | "phones": [ 5532 | { 5533 | "duration": 0.06, 5534 | "phone": "m_B" 5535 | }, 5536 | { 5537 | "duration": 0.09, 5538 | "phone": "ah_I" 5539 | }, 5540 | { 5541 | "duration": 0.11, 5542 | "phone": "n_I" 5543 | }, 5544 | { 5545 | "duration": 0.07, 5546 | "phone": "th_I" 5547 | }, 5548 | { 5549 | "duration": 0.17, 5550 | "phone": "s_E" 5551 | } 5552 | ], 5553 | "start": 113.98, 5554 | "startOffset": 1350, 5555 | "word": "months" 5556 | }, 5557 | { 5558 | "alignedWord": "", 5559 | "case": "success", 5560 | "end": 115.88, 5561 | "endOffset": 1365, 5562 | "phones": [ 5563 | { 5564 | "duration": 0.69, 5565 | "phone": "oov_S" 5566 | } 5567 | ], 5568 | "start": 115.19, 5569 | "startOffset": 1358, 5570 | "word": "Firefox" 5571 | }, 5572 | { 5573 | "alignedWord": "is", 5574 | "case": "success", 5575 | "end": 116.09, 5576 | "endOffset": 1368, 5577 | "phones": [ 5578 | { 5579 | "duration": 0.11, 5580 | "phone": "ih_B" 5581 | }, 5582 | { 5583 | "duration": 0.08, 5584 | "phone": "z_E" 5585 | } 5586 | ], 5587 | "start": 115.9, 5588 | "startOffset": 1366, 5589 | "word": "is" 5590 | }, 5591 | { 5592 | "alignedWord": "the", 5593 | "case": "success", 5594 | "end": 116.239999, 5595 | "endOffset": 1372, 5596 | "phones": [ 5597 | { 5598 | "duration": 0.07, 5599 | "phone": "dh_B" 5600 | }, 5601 | { 5602 | "duration": 0.07, 5603 | "phone": "ah_E" 5604 | } 5605 | ], 5606 | "start": 116.099999, 5607 | "startOffset": 1369, 5608 | "word": "the" 5609 | }, 5610 | { 5611 | "alignedWord": "spiritual", 5612 | "case": "success", 5613 | "end": 116.91, 5614 | "endOffset": 1382, 5615 | "phones": [ 5616 | { 5617 | "duration": 0.08, 5618 | "phone": "s_B" 5619 | }, 5620 | { 5621 | "duration": 0.07, 5622 | "phone": "p_I" 5623 | }, 5624 | { 5625 | "duration": 0.04, 5626 | "phone": "ih_I" 5627 | }, 5628 | { 5629 | "duration": 0.09, 5630 | "phone": "r_I" 5631 | }, 5632 | { 5633 | "duration": 0.09, 5634 | "phone": "ih_I" 5635 | }, 5636 | { 5637 | "duration": 0.11, 5638 | "phone": "ch_I" 5639 | }, 5640 | { 5641 | "duration": 0.06, 5642 | "phone": "w_I" 5643 | }, 5644 | { 5645 | "duration": 0.06, 5646 | "phone": "ah_I" 5647 | }, 5648 | { 5649 | "duration": 0.07, 5650 | "phone": "l_E" 5651 | } 5652 | ], 5653 | "start": 116.24, 5654 | "startOffset": 1373, 5655 | "word": "spiritual" 5656 | }, 5657 | { 5658 | "alignedWord": "successor", 5659 | "case": "success", 5660 | "end": 117.53999999999999, 5661 | "endOffset": 1392, 5662 | "phones": [ 5663 | { 5664 | "duration": 0.08, 5665 | "phone": "s_B" 5666 | }, 5667 | { 5668 | "duration": 0.07, 5669 | "phone": "ah_I" 5670 | }, 5671 | { 5672 | "duration": 0.06, 5673 | "phone": "k_I" 5674 | }, 5675 | { 5676 | "duration": 0.1, 5677 | "phone": "s_I" 5678 | }, 5679 | { 5680 | "duration": 0.09, 5681 | "phone": "eh_I" 5682 | }, 5683 | { 5684 | "duration": 0.12, 5685 | "phone": "s_I" 5686 | }, 5687 | { 5688 | "duration": 0.11, 5689 | "phone": "er_E" 5690 | } 5691 | ], 5692 | "start": 116.91, 5693 | "startOffset": 1383, 5694 | "word": "successor" 5695 | }, 5696 | { 5697 | "alignedWord": "of", 5698 | "case": "success", 5699 | "end": 117.67999999999999, 5700 | "endOffset": 1395, 5701 | "phones": [ 5702 | { 5703 | "duration": 0.06, 5704 | "phone": "ah_B" 5705 | }, 5706 | { 5707 | "duration": 0.08, 5708 | "phone": "v_E" 5709 | } 5710 | ], 5711 | "start": 117.53999999999999, 5712 | "startOffset": 1393, 5713 | "word": "of" 5714 | }, 5715 | { 5716 | "alignedWord": "netscape", 5717 | "case": "success", 5718 | "end": 118.22999899999999, 5719 | "endOffset": 1404, 5720 | "phones": [ 5721 | { 5722 | "duration": 0.07, 5723 | "phone": "n_B" 5724 | }, 5725 | { 5726 | "duration": 0.08, 5727 | "phone": "eh_I" 5728 | }, 5729 | { 5730 | "duration": 0.07, 5731 | "phone": "t_I" 5732 | }, 5733 | { 5734 | "duration": 0.08, 5735 | "phone": "s_I" 5736 | }, 5737 | { 5738 | "duration": 0.08, 5739 | "phone": "k_I" 5740 | }, 5741 | { 5742 | "duration": 0.09, 5743 | "phone": "ey_I" 5744 | }, 5745 | { 5746 | "duration": 0.08, 5747 | "phone": "p_E" 5748 | } 5749 | ], 5750 | "start": 117.679999, 5751 | "startOffset": 1396, 5752 | "word": "Netscape" 5753 | }, 5754 | { 5755 | "alignedWord": "navigator", 5756 | "case": "success", 5757 | "end": 118.99000000000001, 5758 | "endOffset": 1414, 5759 | "phones": [ 5760 | { 5761 | "duration": 0.08, 5762 | "phone": "n_B" 5763 | }, 5764 | { 5765 | "duration": 0.12, 5766 | "phone": "ae_I" 5767 | }, 5768 | { 5769 | "duration": 0.04, 5770 | "phone": "v_I" 5771 | }, 5772 | { 5773 | "duration": 0.07, 5774 | "phone": "ah_I" 5775 | }, 5776 | { 5777 | "duration": 0.09, 5778 | "phone": "g_I" 5779 | }, 5780 | { 5781 | "duration": 0.1, 5782 | "phone": "ey_I" 5783 | }, 5784 | { 5785 | "duration": 0.08, 5786 | "phone": "t_I" 5787 | }, 5788 | { 5789 | "duration": 0.18, 5790 | "phone": "er_E" 5791 | } 5792 | ], 5793 | "start": 118.23, 5794 | "startOffset": 1405, 5795 | "word": "Navigator" 5796 | }, 5797 | { 5798 | "alignedWord": "as", 5799 | "case": "success", 5800 | "end": 119.28999999999999, 5801 | "endOffset": 1418, 5802 | "phones": [ 5803 | { 5804 | "duration": 0.14, 5805 | "phone": "ae_B" 5806 | }, 5807 | { 5808 | "duration": 0.08, 5809 | "phone": "z_E" 5810 | } 5811 | ], 5812 | "start": 119.07, 5813 | "startOffset": 1416, 5814 | "word": "as" 5815 | }, 5816 | { 5817 | "alignedWord": "the", 5818 | "case": "success", 5819 | "end": 119.41, 5820 | "endOffset": 1422, 5821 | "phones": [ 5822 | { 5823 | "duration": 0.04, 5824 | "phone": "dh_B" 5825 | }, 5826 | { 5827 | "duration": 0.08, 5828 | "phone": "ah_E" 5829 | } 5830 | ], 5831 | "start": 119.28999999999999, 5832 | "startOffset": 1419, 5833 | "word": "the" 5834 | }, 5835 | { 5836 | "alignedWord": "", 5837 | "case": "success", 5838 | "end": 119.82, 5839 | "endOffset": 1430, 5840 | "phones": [ 5841 | { 5842 | "duration": 0.41, 5843 | "phone": "oov_S" 5844 | } 5845 | ], 5846 | "start": 119.41, 5847 | "startOffset": 1423, 5848 | "word": "Mozilla" 5849 | }, 5850 | { 5851 | "alignedWord": "community", 5852 | "case": "success", 5853 | "end": 120.439999, 5854 | "endOffset": 1440, 5855 | "phones": [ 5856 | { 5857 | "duration": 0.05, 5858 | "phone": "k_B" 5859 | }, 5860 | { 5861 | "duration": 0.06, 5862 | "phone": "ah_I" 5863 | }, 5864 | { 5865 | "duration": 0.06, 5866 | "phone": "m_I" 5867 | }, 5868 | { 5869 | "duration": 0.07, 5870 | "phone": "y_I" 5871 | }, 5872 | { 5873 | "duration": 0.08, 5874 | "phone": "uw_I" 5875 | }, 5876 | { 5877 | "duration": 0.03, 5878 | "phone": "n_I" 5879 | }, 5880 | { 5881 | "duration": 0.07, 5882 | "phone": "ah_I" 5883 | }, 5884 | { 5885 | "duration": 0.06, 5886 | "phone": "t_I" 5887 | }, 5888 | { 5889 | "duration": 0.11, 5890 | "phone": "iy_E" 5891 | } 5892 | ], 5893 | "start": 119.849999, 5894 | "startOffset": 1431, 5895 | "word": "community" 5896 | }, 5897 | { 5898 | "alignedWord": "was", 5899 | "case": "success", 5900 | "end": 120.64999999999999, 5901 | "endOffset": 1444, 5902 | "phones": [ 5903 | { 5904 | "duration": 0.05, 5905 | "phone": "w_B" 5906 | }, 5907 | { 5908 | "duration": 0.07, 5909 | "phone": "ah_I" 5910 | }, 5911 | { 5912 | "duration": 0.09, 5913 | "phone": "z_E" 5914 | } 5915 | ], 5916 | "start": 120.44, 5917 | "startOffset": 1441, 5918 | "word": "was" 5919 | }, 5920 | { 5921 | "alignedWord": "created", 5922 | "case": "success", 5923 | "end": 121.25, 5924 | "endOffset": 1452, 5925 | "phones": [ 5926 | { 5927 | "duration": 0.08, 5928 | "phone": "k_B" 5929 | }, 5930 | { 5931 | "duration": 0.1, 5932 | "phone": "r_I" 5933 | }, 5934 | { 5935 | "duration": 0.13, 5936 | "phone": "iy_I" 5937 | }, 5938 | { 5939 | "duration": 0.07, 5940 | "phone": "ey_I" 5941 | }, 5942 | { 5943 | "duration": 0.06, 5944 | "phone": "t_I" 5945 | }, 5946 | { 5947 | "duration": 0.07, 5948 | "phone": "ih_I" 5949 | }, 5950 | { 5951 | "duration": 0.09, 5952 | "phone": "d_E" 5953 | } 5954 | ], 5955 | "start": 120.65, 5956 | "startOffset": 1445, 5957 | "word": "created" 5958 | }, 5959 | { 5960 | "alignedWord": "by", 5961 | "case": "success", 5962 | "end": 121.52, 5963 | "endOffset": 1455, 5964 | "phones": [ 5965 | { 5966 | "duration": 0.08, 5967 | "phone": "b_B" 5968 | }, 5969 | { 5970 | "duration": 0.19, 5971 | "phone": "ay_E" 5972 | } 5973 | ], 5974 | "start": 121.25, 5975 | "startOffset": 1453, 5976 | "word": "by" 5977 | }, 5978 | { 5979 | "alignedWord": "netscape", 5980 | "case": "success", 5981 | "end": 122.22, 5982 | "endOffset": 1464, 5983 | "phones": [ 5984 | { 5985 | "duration": 0.08, 5986 | "phone": "n_B" 5987 | }, 5988 | { 5989 | "duration": 0.08, 5990 | "phone": "eh_I" 5991 | }, 5992 | { 5993 | "duration": 0.07, 5994 | "phone": "t_I" 5995 | }, 5996 | { 5997 | "duration": 0.1, 5998 | "phone": "s_I" 5999 | }, 6000 | { 6001 | "duration": 0.09, 6002 | "phone": "k_I" 6003 | }, 6004 | { 6005 | "duration": 0.13, 6006 | "phone": "ey_I" 6007 | }, 6008 | { 6009 | "duration": 0.13, 6010 | "phone": "p_E" 6011 | } 6012 | ], 6013 | "start": 121.53999999999999, 6014 | "startOffset": 1456, 6015 | "word": "Netscape" 6016 | }, 6017 | { 6018 | "alignedWord": "in", 6019 | "case": "success", 6020 | "end": 122.709999, 6021 | "endOffset": 1467, 6022 | "phones": [ 6023 | { 6024 | "duration": 0.14, 6025 | "phone": "ih_B" 6026 | }, 6027 | { 6028 | "duration": 0.1, 6029 | "phone": "n_E" 6030 | } 6031 | ], 6032 | "start": 122.469999, 6033 | "startOffset": 1465, 6034 | "word": "in" 6035 | }, 6036 | { 6037 | "alignedWord": "", 6038 | "case": "success", 6039 | "end": 123.879999, 6040 | "endOffset": 1472, 6041 | "phones": [ 6042 | { 6043 | "duration": 1.16, 6044 | "phone": "oov_S" 6045 | } 6046 | ], 6047 | "start": 122.719999, 6048 | "startOffset": 1468, 6049 | "word": "1998" 6050 | }, 6051 | { 6052 | "alignedWord": "before", 6053 | "case": "success", 6054 | "end": 124.559999, 6055 | "endOffset": 1479, 6056 | "phones": [ 6057 | { 6058 | "duration": 0.1, 6059 | "phone": "b_B" 6060 | }, 6061 | { 6062 | "duration": 0.05, 6063 | "phone": "iy_I" 6064 | }, 6065 | { 6066 | "duration": 0.13, 6067 | "phone": "f_I" 6068 | }, 6069 | { 6070 | "duration": 0.07, 6071 | "phone": "ao_I" 6072 | }, 6073 | { 6074 | "duration": 0.08, 6075 | "phone": "r_E" 6076 | } 6077 | ], 6078 | "start": 124.129999, 6079 | "startOffset": 1473, 6080 | "word": "before" 6081 | }, 6082 | { 6083 | "alignedWord": "their", 6084 | "case": "success", 6085 | "end": 124.809999, 6086 | "endOffset": 1485, 6087 | "phones": [ 6088 | { 6089 | "duration": 0.04, 6090 | "phone": "dh_B" 6091 | }, 6092 | { 6093 | "duration": 0.11, 6094 | "phone": "eh_I" 6095 | }, 6096 | { 6097 | "duration": 0.1, 6098 | "phone": "r_E" 6099 | } 6100 | ], 6101 | "start": 124.559999, 6102 | "startOffset": 1480, 6103 | "word": "their" 6104 | }, 6105 | { 6106 | "alignedWord": "acquisition", 6107 | "case": "success", 6108 | "end": 125.39999999999999, 6109 | "endOffset": 1497, 6110 | "phones": [ 6111 | { 6112 | "duration": 0.01, 6113 | "phone": "ae_B" 6114 | }, 6115 | { 6116 | "duration": 0.07, 6117 | "phone": "k_I" 6118 | }, 6119 | { 6120 | "duration": 0.07, 6121 | "phone": "w_I" 6122 | }, 6123 | { 6124 | "duration": 0.02, 6125 | "phone": "ah_I" 6126 | }, 6127 | { 6128 | "duration": 0.1, 6129 | "phone": "z_I" 6130 | }, 6131 | { 6132 | "duration": 0.08, 6133 | "phone": "ih_I" 6134 | }, 6135 | { 6136 | "duration": 0.1, 6137 | "phone": "sh_I" 6138 | }, 6139 | { 6140 | "duration": 0.06, 6141 | "phone": "ah_I" 6142 | }, 6143 | { 6144 | "duration": 0.07, 6145 | "phone": "n_E" 6146 | } 6147 | ], 6148 | "start": 124.82, 6149 | "startOffset": 1486, 6150 | "word": "acquisition" 6151 | }, 6152 | { 6153 | "alignedWord": "by", 6154 | "case": "success", 6155 | "end": 125.61, 6156 | "endOffset": 1500, 6157 | "phones": [ 6158 | { 6159 | "duration": 0.07, 6160 | "phone": "b_B" 6161 | }, 6162 | { 6163 | "duration": 0.14, 6164 | "phone": "ay_E" 6165 | } 6166 | ], 6167 | "start": 125.4, 6168 | "startOffset": 1498, 6169 | "word": "by" 6170 | }, 6171 | { 6172 | "alignedWord": "aol", 6173 | "case": "success", 6174 | "end": 126.339999, 6175 | "endOffset": 1504, 6176 | "phones": [ 6177 | { 6178 | "duration": 0.22, 6179 | "phone": "ey_B" 6180 | }, 6181 | { 6182 | "duration": 0.13, 6183 | "phone": "ow_I" 6184 | }, 6185 | { 6186 | "duration": 0.12, 6187 | "phone": "eh_I" 6188 | }, 6189 | { 6190 | "duration": 0.23, 6191 | "phone": "l_E" 6192 | } 6193 | ], 6194 | "start": 125.639999, 6195 | "startOffset": 1501, 6196 | "word": "AOL" 6197 | }, 6198 | { 6199 | "alignedWord": "", 6200 | "case": "success", 6201 | "end": 127.62, 6202 | "endOffset": 1514, 6203 | "phones": [ 6204 | { 6205 | "duration": 0.62, 6206 | "phone": "oov_S" 6207 | } 6208 | ], 6209 | "start": 127.0, 6210 | "startOffset": 1507, 6211 | "word": "Firefox" 6212 | }, 6213 | { 6214 | "alignedWord": "usage", 6215 | "case": "success", 6216 | "end": 128.22, 6217 | "endOffset": 1520, 6218 | "phones": [ 6219 | { 6220 | "duration": 0.08, 6221 | "phone": "y_B" 6222 | }, 6223 | { 6224 | "duration": 0.07, 6225 | "phone": "uw_I" 6226 | }, 6227 | { 6228 | "duration": 0.11, 6229 | "phone": "s_I" 6230 | }, 6231 | { 6232 | "duration": 0.12, 6233 | "phone": "ih_I" 6234 | }, 6235 | { 6236 | "duration": 0.21, 6237 | "phone": "jh_E" 6238 | } 6239 | ], 6240 | "start": 127.63, 6241 | "startOffset": 1515, 6242 | "word": "usage" 6243 | }, 6244 | { 6245 | "alignedWord": "grew", 6246 | "case": "success", 6247 | "end": 128.47, 6248 | "endOffset": 1525, 6249 | "phones": [ 6250 | { 6251 | "duration": 0.09, 6252 | "phone": "g_B" 6253 | }, 6254 | { 6255 | "duration": 0.06, 6256 | "phone": "r_I" 6257 | }, 6258 | { 6259 | "duration": 0.08, 6260 | "phone": "uw_E" 6261 | } 6262 | ], 6263 | "start": 128.24, 6264 | "startOffset": 1521, 6265 | "word": "grew" 6266 | }, 6267 | { 6268 | "alignedWord": "to", 6269 | "case": "success", 6270 | "end": 128.71, 6271 | "endOffset": 1528, 6272 | "phones": [ 6273 | { 6274 | "duration": 0.13, 6275 | "phone": "t_B" 6276 | }, 6277 | { 6278 | "duration": 0.11, 6279 | "phone": "uw_E" 6280 | } 6281 | ], 6282 | "start": 128.47, 6283 | "startOffset": 1526, 6284 | "word": "to" 6285 | }, 6286 | { 6287 | "alignedWord": "a", 6288 | "case": "success", 6289 | "end": 128.83, 6290 | "endOffset": 1530, 6291 | "phones": [ 6292 | { 6293 | "duration": 0.12, 6294 | "phone": "ah_S" 6295 | } 6296 | ], 6297 | "start": 128.71, 6298 | "startOffset": 1529, 6299 | "word": "a" 6300 | }, 6301 | { 6302 | "alignedWord": "peak", 6303 | "case": "success", 6304 | "end": 129.14000000000001, 6305 | "endOffset": 1535, 6306 | "phones": [ 6307 | { 6308 | "duration": 0.09, 6309 | "phone": "p_B" 6310 | }, 6311 | { 6312 | "duration": 0.12, 6313 | "phone": "iy_I" 6314 | }, 6315 | { 6316 | "duration": 0.09, 6317 | "phone": "k_E" 6318 | } 6319 | ], 6320 | "start": 128.84, 6321 | "startOffset": 1531, 6322 | "word": "peak" 6323 | }, 6324 | { 6325 | "alignedWord": "of", 6326 | "case": "success", 6327 | "end": 129.36999999999998, 6328 | "endOffset": 1538, 6329 | "phones": [ 6330 | { 6331 | "duration": 0.09, 6332 | "phone": "ah_B" 6333 | }, 6334 | { 6335 | "duration": 0.11, 6336 | "phone": "v_E" 6337 | } 6338 | ], 6339 | "start": 129.17, 6340 | "startOffset": 1536, 6341 | "word": "of" 6342 | }, 6343 | { 6344 | "alignedWord": "", 6345 | "case": "success", 6346 | "end": 129.72, 6347 | "endOffset": 1541, 6348 | "phones": [ 6349 | { 6350 | "duration": 0.32, 6351 | "phone": "oov_S" 6352 | } 6353 | ], 6354 | "start": 129.4, 6355 | "startOffset": 1539, 6356 | "word": "32" 6357 | }, 6358 | { 6359 | "alignedWord": "", 6360 | "case": "success", 6361 | "end": 131.37, 6362 | "endOffset": 1544, 6363 | "phones": [ 6364 | { 6365 | "duration": 0.79, 6366 | "phone": "oov_S" 6367 | } 6368 | ], 6369 | "start": 130.58, 6370 | "startOffset": 1542, 6371 | "word": "21" 6372 | }, 6373 | { 6374 | "alignedWord": "at", 6375 | "case": "success", 6376 | "end": 131.61999999999998, 6377 | "endOffset": 1548, 6378 | "phones": [ 6379 | { 6380 | "duration": 0.13, 6381 | "phone": "ae_B" 6382 | }, 6383 | { 6384 | "duration": 0.07, 6385 | "phone": "t_E" 6386 | } 6387 | ], 6388 | "start": 131.42, 6389 | "startOffset": 1546, 6390 | "word": "at" 6391 | }, 6392 | { 6393 | "alignedWord": "the", 6394 | "case": "success", 6395 | "end": 131.77, 6396 | "endOffset": 1552, 6397 | "phones": [ 6398 | { 6399 | "duration": 0.06, 6400 | "phone": "dh_B" 6401 | }, 6402 | { 6403 | "duration": 0.09, 6404 | "phone": "iy_E" 6405 | } 6406 | ], 6407 | "start": 131.62, 6408 | "startOffset": 1549, 6409 | "word": "the" 6410 | }, 6411 | { 6412 | "alignedWord": "end", 6413 | "case": "success", 6414 | "end": 131.98000000000002, 6415 | "endOffset": 1556, 6416 | "phones": [ 6417 | { 6418 | "duration": 0.07, 6419 | "phone": "eh_B" 6420 | }, 6421 | { 6422 | "duration": 0.09, 6423 | "phone": "n_I" 6424 | }, 6425 | { 6426 | "duration": 0.05, 6427 | "phone": "d_E" 6428 | } 6429 | ], 6430 | "start": 131.77, 6431 | "startOffset": 1553, 6432 | "word": "end" 6433 | }, 6434 | { 6435 | "alignedWord": "of", 6436 | "case": "success", 6437 | "end": 132.17, 6438 | "endOffset": 1559, 6439 | "phones": [ 6440 | { 6441 | "duration": 0.09, 6442 | "phone": "ah_B" 6443 | }, 6444 | { 6445 | "duration": 0.1, 6446 | "phone": "v_E" 6447 | } 6448 | ], 6449 | "start": 131.98, 6450 | "startOffset": 1557, 6451 | "word": "of" 6452 | }, 6453 | { 6454 | "alignedWord": "", 6455 | "case": "success", 6456 | "end": 132.48999999999998, 6457 | "endOffset": 1564, 6458 | "phones": [ 6459 | { 6460 | "duration": 0.29, 6461 | "phone": "oov_S" 6462 | } 6463 | ], 6464 | "start": 132.2, 6465 | "startOffset": 1560, 6466 | "word": "2009" 6467 | }, 6468 | { 6469 | "alignedWord": "with", 6470 | "case": "success", 6471 | "end": 133.7, 6472 | "endOffset": 1570, 6473 | "phones": [ 6474 | { 6475 | "duration": 0.08, 6476 | "phone": "w_B" 6477 | }, 6478 | { 6479 | "duration": 0.06, 6480 | "phone": "ih_I" 6481 | }, 6482 | { 6483 | "duration": 0.09, 6484 | "phone": "th_E" 6485 | } 6486 | ], 6487 | "start": 133.47, 6488 | "startOffset": 1566, 6489 | "word": "with" 6490 | }, 6491 | { 6492 | "alignedWord": "version", 6493 | "case": "success", 6494 | "end": 134.16, 6495 | "endOffset": 1578, 6496 | "phones": [ 6497 | { 6498 | "duration": 0.11, 6499 | "phone": "v_B" 6500 | }, 6501 | { 6502 | "duration": 0.08, 6503 | "phone": "er_I" 6504 | }, 6505 | { 6506 | "duration": 0.07, 6507 | "phone": "zh_I" 6508 | }, 6509 | { 6510 | "duration": 0.09, 6511 | "phone": "ah_I" 6512 | }, 6513 | { 6514 | "duration": 0.11, 6515 | "phone": "n_E" 6516 | } 6517 | ], 6518 | "start": 133.7, 6519 | "startOffset": 1571, 6520 | "word": "version" 6521 | }, 6522 | { 6523 | "case": "not-found-in-audio", 6524 | "endOffset": 1580, 6525 | "startOffset": 1579, 6526 | "word": "3" 6527 | }, 6528 | { 6529 | "alignedWord": "", 6530 | "case": "success", 6531 | "end": 135.14, 6532 | "endOffset": 1582, 6533 | "phones": [ 6534 | { 6535 | "duration": 0.98, 6536 | "phone": "oov_S" 6537 | } 6538 | ], 6539 | "start": 134.16, 6540 | "startOffset": 1581, 6541 | "word": "5" 6542 | }, 6543 | { 6544 | "alignedWord": "overtaking", 6545 | "case": "success", 6546 | "end": 135.83999899999998, 6547 | "endOffset": 1593, 6548 | "phones": [ 6549 | { 6550 | "duration": 0.08, 6551 | "phone": "ow_B" 6552 | }, 6553 | { 6554 | "duration": 0.1, 6555 | "phone": "v_I" 6556 | }, 6557 | { 6558 | "duration": 0.08, 6559 | "phone": "er_I" 6560 | }, 6561 | { 6562 | "duration": 0.1, 6563 | "phone": "t_I" 6564 | }, 6565 | { 6566 | "duration": 0.09, 6567 | "phone": "ey_I" 6568 | }, 6569 | { 6570 | "duration": 0.08, 6571 | "phone": "k_I" 6572 | }, 6573 | { 6574 | "duration": 0.07, 6575 | "phone": "ih_I" 6576 | }, 6577 | { 6578 | "duration": 0.1, 6579 | "phone": "ng_E" 6580 | } 6581 | ], 6582 | "start": 135.139999, 6583 | "startOffset": 1583, 6584 | "word": "overtaking" 6585 | }, 6586 | { 6587 | "alignedWord": "internet", 6588 | "case": "success", 6589 | "end": 136.33, 6590 | "endOffset": 1602, 6591 | "phones": [ 6592 | { 6593 | "duration": 0.13, 6594 | "phone": "ih_B" 6595 | }, 6596 | { 6597 | "duration": 0.01, 6598 | "phone": "n_I" 6599 | }, 6600 | { 6601 | "duration": 0.07, 6602 | "phone": "t_I" 6603 | }, 6604 | { 6605 | "duration": 0.05, 6606 | "phone": "er_I" 6607 | }, 6608 | { 6609 | "duration": 0.09, 6610 | "phone": "n_I" 6611 | }, 6612 | { 6613 | "duration": 0.07, 6614 | "phone": "eh_I" 6615 | }, 6616 | { 6617 | "duration": 0.05, 6618 | "phone": "t_E" 6619 | } 6620 | ], 6621 | "start": 135.86, 6622 | "startOffset": 1594, 6623 | "word": "Internet" 6624 | }, 6625 | { 6626 | "alignedWord": "explorer", 6627 | "case": "success", 6628 | "end": 136.93, 6629 | "endOffset": 1611, 6630 | "phones": [ 6631 | { 6632 | "duration": 0.05, 6633 | "phone": "ih_B" 6634 | }, 6635 | { 6636 | "duration": 0.09, 6637 | "phone": "k_I" 6638 | }, 6639 | { 6640 | "duration": 0.05, 6641 | "phone": "s_I" 6642 | }, 6643 | { 6644 | "duration": 0.07, 6645 | "phone": "p_I" 6646 | }, 6647 | { 6648 | "duration": 0.05, 6649 | "phone": "l_I" 6650 | }, 6651 | { 6652 | "duration": 0.13, 6653 | "phone": "ao_I" 6654 | }, 6655 | { 6656 | "duration": 0.07, 6657 | "phone": "r_I" 6658 | }, 6659 | { 6660 | "duration": 0.09, 6661 | "phone": "er_E" 6662 | } 6663 | ], 6664 | "start": 136.33, 6665 | "startOffset": 1603, 6666 | "word": "Explorer" 6667 | }, 6668 | { 6669 | "alignedWord": "", 6670 | "case": "success", 6671 | "end": 137.399999, 6672 | "endOffset": 1613, 6673 | "phones": [ 6674 | { 6675 | "duration": 0.47, 6676 | "phone": "oov_S" 6677 | } 6678 | ], 6679 | "start": 136.929999, 6680 | "startOffset": 1612, 6681 | "word": "7" 6682 | }, 6683 | { 6684 | "alignedWord": "although", 6685 | "case": "success", 6686 | "end": 138.19, 6687 | "endOffset": 1623, 6688 | "phones": [ 6689 | { 6690 | "duration": 0.18, 6691 | "phone": "ao_B" 6692 | }, 6693 | { 6694 | "duration": 0.07, 6695 | "phone": "l_I" 6696 | }, 6697 | { 6698 | "duration": 0.07, 6699 | "phone": "dh_I" 6700 | }, 6701 | { 6702 | "duration": 0.12, 6703 | "phone": "ow_E" 6704 | } 6705 | ], 6706 | "start": 137.75, 6707 | "startOffset": 1615, 6708 | "word": "although" 6709 | }, 6710 | { 6711 | "alignedWord": "not", 6712 | "case": "success", 6713 | "end": 138.54, 6714 | "endOffset": 1627, 6715 | "phones": [ 6716 | { 6717 | "duration": 0.11, 6718 | "phone": "n_B" 6719 | }, 6720 | { 6721 | "duration": 0.16, 6722 | "phone": "aa_I" 6723 | }, 6724 | { 6725 | "duration": 0.08, 6726 | "phone": "t_E" 6727 | } 6728 | ], 6729 | "start": 138.19, 6730 | "startOffset": 1624, 6731 | "word": "not" 6732 | }, 6733 | { 6734 | "alignedWord": "all", 6735 | "case": "success", 6736 | "end": 138.85999999999999, 6737 | "endOffset": 1631, 6738 | "phones": [ 6739 | { 6740 | "duration": 0.18, 6741 | "phone": "ao_B" 6742 | }, 6743 | { 6744 | "duration": 0.11, 6745 | "phone": "l_E" 6746 | } 6747 | ], 6748 | "start": 138.57, 6749 | "startOffset": 1628, 6750 | "word": "all" 6751 | }, 6752 | { 6753 | "alignedWord": "versions", 6754 | "case": "success", 6755 | "end": 139.39000000000001, 6756 | "endOffset": 1640, 6757 | "phones": [ 6758 | { 6759 | "duration": 0.09, 6760 | "phone": "v_B" 6761 | }, 6762 | { 6763 | "duration": 0.1, 6764 | "phone": "er_I" 6765 | }, 6766 | { 6767 | "duration": 0.06, 6768 | "phone": "zh_I" 6769 | }, 6770 | { 6771 | "duration": 0.1, 6772 | "phone": "ah_I" 6773 | }, 6774 | { 6775 | "duration": 0.09, 6776 | "phone": "n_I" 6777 | }, 6778 | { 6779 | "duration": 0.08, 6780 | "phone": "z_E" 6781 | } 6782 | ], 6783 | "start": 138.87, 6784 | "startOffset": 1632, 6785 | "word": "versions" 6786 | }, 6787 | { 6788 | "alignedWord": "of", 6789 | "case": "success", 6790 | "end": 139.6, 6791 | "endOffset": 1643, 6792 | "phones": [ 6793 | { 6794 | "duration": 0.1, 6795 | "phone": "ah_B" 6796 | }, 6797 | { 6798 | "duration": 0.09, 6799 | "phone": "v_E" 6800 | } 6801 | ], 6802 | "start": 139.41, 6803 | "startOffset": 1641, 6804 | "word": "of" 6805 | }, 6806 | { 6807 | "alignedWord": "internet", 6808 | "case": "success", 6809 | "end": 140.04999999999998, 6810 | "endOffset": 1652, 6811 | "phones": [ 6812 | { 6813 | "duration": 0.1, 6814 | "phone": "ih_B" 6815 | }, 6816 | { 6817 | "duration": 0.02, 6818 | "phone": "n_I" 6819 | }, 6820 | { 6821 | "duration": 0.06, 6822 | "phone": "t_I" 6823 | }, 6824 | { 6825 | "duration": 0.05, 6826 | "phone": "er_I" 6827 | }, 6828 | { 6829 | "duration": 0.07, 6830 | "phone": "n_I" 6831 | }, 6832 | { 6833 | "duration": 0.07, 6834 | "phone": "eh_I" 6835 | }, 6836 | { 6837 | "duration": 0.05, 6838 | "phone": "t_E" 6839 | } 6840 | ], 6841 | "start": 139.63, 6842 | "startOffset": 1644, 6843 | "word": "Internet" 6844 | }, 6845 | { 6846 | "alignedWord": "explorer", 6847 | "case": "success", 6848 | "end": 140.679999, 6849 | "endOffset": 1661, 6850 | "phones": [ 6851 | { 6852 | "duration": 0.05, 6853 | "phone": "ih_B" 6854 | }, 6855 | { 6856 | "duration": 0.08, 6857 | "phone": "k_I" 6858 | }, 6859 | { 6860 | "duration": 0.04, 6861 | "phone": "s_I" 6862 | }, 6863 | { 6864 | "duration": 0.09, 6865 | "phone": "p_I" 6866 | }, 6867 | { 6868 | "duration": 0.06, 6869 | "phone": "l_I" 6870 | }, 6871 | { 6872 | "duration": 0.12, 6873 | "phone": "ao_I" 6874 | }, 6875 | { 6876 | "duration": 0.08, 6877 | "phone": "r_I" 6878 | }, 6879 | { 6880 | "duration": 0.11, 6881 | "phone": "er_E" 6882 | } 6883 | ], 6884 | "start": 140.049999, 6885 | "startOffset": 1653, 6886 | "word": "Explorer" 6887 | }, 6888 | { 6889 | "alignedWord": "as", 6890 | "case": "success", 6891 | "end": 140.94, 6892 | "endOffset": 1664, 6893 | "phones": [ 6894 | { 6895 | "duration": 0.14, 6896 | "phone": "ae_B" 6897 | }, 6898 | { 6899 | "duration": 0.1, 6900 | "phone": "z_E" 6901 | } 6902 | ], 6903 | "start": 140.7, 6904 | "startOffset": 1662, 6905 | "word": "as" 6906 | }, 6907 | { 6908 | "alignedWord": "a", 6909 | "case": "success", 6910 | "end": 140.99, 6911 | "endOffset": 1666, 6912 | "phones": [ 6913 | { 6914 | "duration": 0.05, 6915 | "phone": "ah_S" 6916 | } 6917 | ], 6918 | "start": 140.94, 6919 | "startOffset": 1665, 6920 | "word": "a" 6921 | }, 6922 | { 6923 | "alignedWord": "whole", 6924 | "case": "success", 6925 | "end": 141.51000000000002, 6926 | "endOffset": 1672, 6927 | "phones": [ 6928 | { 6929 | "duration": 0.05, 6930 | "phone": "hh_B" 6931 | }, 6932 | { 6933 | "duration": 0.08, 6934 | "phone": "ow_I" 6935 | }, 6936 | { 6937 | "duration": 0.39, 6938 | "phone": "l_E" 6939 | } 6940 | ], 6941 | "start": 140.99, 6942 | "startOffset": 1667, 6943 | "word": "whole" 6944 | }, 6945 | { 6946 | "alignedWord": "as", 6947 | "case": "success", 6948 | "end": 141.99, 6949 | "endOffset": 1676, 6950 | "phones": [ 6951 | { 6952 | "duration": 0.17, 6953 | "phone": "ae_B" 6954 | }, 6955 | { 6956 | "duration": 0.07, 6957 | "phone": "z_E" 6958 | } 6959 | ], 6960 | "start": 141.75, 6961 | "startOffset": 1674, 6962 | "word": "As" 6963 | }, 6964 | { 6965 | "alignedWord": "of", 6966 | "case": "success", 6967 | "end": 142.12, 6968 | "endOffset": 1679, 6969 | "phones": [ 6970 | { 6971 | "duration": 0.05, 6972 | "phone": "ah_B" 6973 | }, 6974 | { 6975 | "duration": 0.08, 6976 | "phone": "v_E" 6977 | } 6978 | ], 6979 | "start": 141.99, 6980 | "startOffset": 1677, 6981 | "word": "of" 6982 | }, 6983 | { 6984 | "alignedWord": "september", 6985 | "case": "success", 6986 | "end": 142.66999900000002, 6987 | "endOffset": 1689, 6988 | "phones": [ 6989 | { 6990 | "duration": 0.07, 6991 | "phone": "s_B" 6992 | }, 6993 | { 6994 | "duration": 0.06, 6995 | "phone": "eh_I" 6996 | }, 6997 | { 6998 | "duration": 0.06, 6999 | "phone": "p_I" 7000 | }, 7001 | { 7002 | "duration": 0.06, 7003 | "phone": "t_I" 7004 | }, 7005 | { 7006 | "duration": 0.09, 7007 | "phone": "eh_I" 7008 | }, 7009 | { 7010 | "duration": 0.06, 7011 | "phone": "m_I" 7012 | }, 7013 | { 7014 | "duration": 0.05, 7015 | "phone": "b_I" 7016 | }, 7017 | { 7018 | "duration": 0.1, 7019 | "phone": "er_E" 7020 | } 7021 | ], 7022 | "start": 142.119999, 7023 | "startOffset": 1680, 7024 | "word": "September" 7025 | }, 7026 | { 7027 | "alignedWord": "", 7028 | "case": "success", 7029 | "end": 142.940001, 7030 | "endOffset": 1694, 7031 | "phones": [ 7032 | { 7033 | "duration": 0.25, 7034 | "phone": "oov_S" 7035 | } 7036 | ], 7037 | "start": 142.690001, 7038 | "startOffset": 1690, 7039 | "word": "2019" 7040 | }, 7041 | { 7042 | "alignedWord": "", 7043 | "case": "success", 7044 | "end": 145.01999899999998, 7045 | "endOffset": 1703, 7046 | "phones": [ 7047 | { 7048 | "duration": 0.66, 7049 | "phone": "oov_S" 7050 | } 7051 | ], 7052 | "start": 144.359999, 7053 | "startOffset": 1696, 7054 | "word": "Firefox" 7055 | }, 7056 | { 7057 | "alignedWord": "has", 7058 | "case": "success", 7059 | "end": 145.26, 7060 | "endOffset": 1707, 7061 | "phones": [ 7062 | { 7063 | "duration": 0.08, 7064 | "phone": "hh_B" 7065 | }, 7066 | { 7067 | "duration": 0.06, 7068 | "phone": "ae_I" 7069 | }, 7070 | { 7071 | "duration": 0.09, 7072 | "phone": "z_E" 7073 | } 7074 | ], 7075 | "start": 145.03, 7076 | "startOffset": 1704, 7077 | "word": "has" 7078 | }, 7079 | { 7080 | "alignedWord": "", 7081 | "case": "success", 7082 | "end": 146.2, 7083 | "endOffset": 1709, 7084 | "phones": [ 7085 | { 7086 | "duration": 0.94, 7087 | "phone": "oov_S" 7088 | } 7089 | ], 7090 | "start": 145.26, 7091 | "startOffset": 1708, 7092 | "word": "9" 7093 | }, 7094 | { 7095 | "alignedWord": "", 7096 | "case": "success", 7097 | "end": 146.92, 7098 | "endOffset": 1712, 7099 | "phones": [ 7100 | { 7101 | "duration": 0.22, 7102 | "phone": "oov_S" 7103 | } 7104 | ], 7105 | "start": 146.7, 7106 | "startOffset": 1710, 7107 | "word": "52" 7108 | }, 7109 | { 7110 | "alignedWord": "usage", 7111 | "case": "success", 7112 | "end": 147.34, 7113 | "endOffset": 1719, 7114 | "phones": [ 7115 | { 7116 | "duration": 0.11, 7117 | "phone": "y_B" 7118 | }, 7119 | { 7120 | "duration": 0.07, 7121 | "phone": "uw_I" 7122 | }, 7123 | { 7124 | "duration": 0.07, 7125 | "phone": "s_I" 7126 | }, 7127 | { 7128 | "duration": 0.08, 7129 | "phone": "ih_I" 7130 | }, 7131 | { 7132 | "duration": 0.07, 7133 | "phone": "jh_E" 7134 | } 7135 | ], 7136 | "start": 146.94, 7137 | "startOffset": 1714, 7138 | "word": "usage" 7139 | }, 7140 | { 7141 | "alignedWord": "share", 7142 | "case": "success", 7143 | "end": 147.74, 7144 | "endOffset": 1725, 7145 | "phones": [ 7146 | { 7147 | "duration": 0.15, 7148 | "phone": "sh_B" 7149 | }, 7150 | { 7151 | "duration": 0.11, 7152 | "phone": "eh_I" 7153 | }, 7154 | { 7155 | "duration": 0.14, 7156 | "phone": "r_E" 7157 | } 7158 | ], 7159 | "start": 147.34, 7160 | "startOffset": 1720, 7161 | "word": "share" 7162 | }, 7163 | { 7164 | "alignedWord": "as", 7165 | "case": "success", 7166 | "end": 147.94, 7167 | "endOffset": 1728, 7168 | "phones": [ 7169 | { 7170 | "duration": 0.1, 7171 | "phone": "ae_B" 7172 | }, 7173 | { 7174 | "duration": 0.08, 7175 | "phone": "z_E" 7176 | } 7177 | ], 7178 | "start": 147.76, 7179 | "startOffset": 1726, 7180 | "word": "as" 7181 | }, 7182 | { 7183 | "alignedWord": "a", 7184 | "case": "success", 7185 | "end": 148.03, 7186 | "endOffset": 1730, 7187 | "phones": [ 7188 | { 7189 | "duration": 0.09, 7190 | "phone": "ah_S" 7191 | } 7192 | ], 7193 | "start": 147.94, 7194 | "startOffset": 1729, 7195 | "word": "a" 7196 | }, 7197 | { 7198 | "alignedWord": "desktop", 7199 | "case": "success", 7200 | "end": 148.68, 7201 | "endOffset": 1739, 7202 | "phones": [ 7203 | { 7204 | "duration": 0.11, 7205 | "phone": "d_B" 7206 | }, 7207 | { 7208 | "duration": 0.09, 7209 | "phone": "eh_I" 7210 | }, 7211 | { 7212 | "duration": 0.11, 7213 | "phone": "s_I" 7214 | }, 7215 | { 7216 | "duration": 0.05, 7217 | "phone": "k_I" 7218 | }, 7219 | { 7220 | "duration": 0.1, 7221 | "phone": "t_I" 7222 | }, 7223 | { 7224 | "duration": 0.1, 7225 | "phone": "aa_I" 7226 | }, 7227 | { 7228 | "duration": 0.09, 7229 | "phone": "p_E" 7230 | } 7231 | ], 7232 | "start": 148.03, 7233 | "startOffset": 1732, 7234 | "word": "desktop" 7235 | }, 7236 | { 7237 | "alignedWord": "browser", 7238 | "case": "success", 7239 | "end": 149.09, 7240 | "endOffset": 1748, 7241 | "phones": [ 7242 | { 7243 | "duration": 0.05, 7244 | "phone": "b_B" 7245 | }, 7246 | { 7247 | "duration": 0.06, 7248 | "phone": "r_I" 7249 | }, 7250 | { 7251 | "duration": 0.19, 7252 | "phone": "aw_I" 7253 | }, 7254 | { 7255 | "duration": 0.1, 7256 | "phone": "z_I" 7257 | } 7258 | ], 7259 | "start": 148.69, 7260 | "startOffset": 1741, 7261 | "word": "browser" 7262 | } 7263 | ] 7264 | } -------------------------------------------------------------------------------- /silence.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jugendhackt/synthi-tts/eb7bcc63f93b054a6786496fdeb4771a2a7047a6/silence.mp3 -------------------------------------------------------------------------------- /synthi-tts.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | from subprocess import Popen, PIPE 4 | import sys 5 | import os 6 | import argparse 7 | 8 | #using argparse to get the information about language, folder and text from CLI 9 | parser = argparse.ArgumentParser("synthi-tts ") 10 | parser.add_argument('text', metavar='', type=str, nargs='*', help='the text the program has to pronounce.') 11 | parser.add_argument('-f', dest='folder', action='store', help='the folder from which the program loads the phonemes.') 12 | parser.add_argument('-l', dest='language', action='store', default='english', help='the language the program uses to determine the pronounciation.\nDefault: english') 13 | parser.add_argument('--no_warnings', dest='missing_phonemes_print', action='store_true', default=False, help="use this flag if you don't want to see messages telling you which parts of the phenatics the program does'nt know.") 14 | 15 | 16 | # Getting folder and files from CLI 17 | args = parser.parse_args() 18 | text = ' '.join(args.text) 19 | print(text) 20 | # Getting language from espeak 21 | process = Popen(['espeak', '-q', '-x', '"' + text + '"', '-v', args.language.lower()], stdout=PIPE, stderr=PIPE) 22 | stdout, stderr = process.communicate() 23 | phonetic = stdout.decode('utf-8').strip()[5:].replace("'", "").replace("_:", "") 24 | print(phonetic) 25 | 26 | # create e_map from espeak-gentle translation 27 | e_map = {} 28 | # TODO: neue ordnerstrktur benutzen 29 | 30 | with open("espeak-to-gentle", encoding="utf-8") as f: 31 | for line in f.readlines(): 32 | ephon, gphon = line.split("=") 33 | gphon = gphon.split(" ") 34 | audiofiles = [(str(args.folder) + '/' + a.strip() + "/1.mp3") for a in gphon] 35 | for audiofile in audiofiles: 36 | if not os.path.exists(audiofile): 37 | audiofiles.remove(audiofile) 38 | if not args.missing_phonemes_print: 39 | print("phoneme " + ephon + ": file not found: " + audiofile, file=sys.stderr) 40 | if audiofiles: 41 | e_map[ephon] = audiofiles 42 | 43 | 44 | e_map[" "] = ["silence.mp3"] 45 | #print(e_map) 46 | 47 | # create list of files from string 48 | files = [] 49 | 50 | # iterating through espeak string 51 | i = 0 52 | while i < len(phonetic): 53 | # multiple chars (1-3) can define a sound 54 | if phonetic[i:i+3] in e_map: 55 | files = files + e_map[phonetic[i:i+3]] 56 | i = i + 3 57 | elif phonetic[i:i+2] in e_map: 58 | files = files + e_map[phonetic[i:i+2]] 59 | i = i + 2 60 | elif phonetic[i:i+1] in e_map: 61 | files = files + e_map[phonetic[i:i+1]] 62 | i = i + 1 63 | else: 64 | if not args.missing_phonemes_print: 65 | print(phonetic[i] + ": not defined. skipping", file=sys.stderr) 66 | i = i + 1 67 | 68 | # Assembly of ffmpeg command 69 | command = "ffmpeg" 70 | 71 | for file in files: 72 | command = command + " -f mp3 -i " + file 73 | 74 | command = command + " -filter_complex '" 75 | 76 | for i in range(len(files)): 77 | command = command + "["+str(i)+":0]" 78 | 79 | # Setup for export 80 | command = command + "concat=n="+str(len(files))+":v=0:a=1[out]' -map [out] -y -loglevel warning output.mp3" 81 | 82 | # Execute ffmpeg 83 | os.system(command) 84 | 85 | if os.system(command) == 0: 86 | print("file successfully written to output.mp3") 87 | # iterating through espeak string 88 | -------------------------------------------------------------------------------- /trimaudios.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo processing folder $1 3 | mkdir $1-trim 4 | 5 | for f in $1/*; do 6 | ffmpeg -i $f -af "silenceremove=start_periods=1:start_duration=0.01:start_threshold=-40dB:detection=peak,aformat=dblp,areverse,silenceremove=start_periods=1:start_duration=0.01:start_threshold=-40dB:detection=peak,aformat=dblp,areverse" -y -loglevel warning $1-trim/$(basename $f) 7 | done 8 | --------------------------------------------------------------------------------