shiveshnavin commited on
Commit
0188f24
·
1 Parent(s): ec03fd1
Files changed (2) hide show
  1. package.json +1 -0
  2. src/ig-reel/IGScene.tsx +3025 -27
package.json CHANGED
@@ -11,6 +11,7 @@
11
  "extract32": "set MODIFY_FILES=1 && node app.js",
12
  "extract": "MODIFY_FILES=1 && node app.js",
13
  "preview": "remotion studio",
 
14
  "render-build": "remotion render --image-format=jpeg --quality=70 --gl=angle SemibitComposition",
15
  "render-still": "remotion still --image-format=jpeg SemibitCompositionPoster ",
16
  "upgrade": "remotion upgrade",
 
11
  "extract32": "set MODIFY_FILES=1 && node app.js",
12
  "extract": "MODIFY_FILES=1 && node app.js",
13
  "preview": "remotion studio",
14
+ "render-build:igreels": "remotion render --image-format=jpeg --quality=70 --gl=angle IGReelComposition",
15
  "render-build": "remotion render --image-format=jpeg --quality=70 --gl=angle SemibitComposition",
16
  "render-still": "remotion still --image-format=jpeg SemibitCompositionPoster ",
17
  "upgrade": "remotion upgrade",
src/ig-reel/IGScene.tsx CHANGED
@@ -8,7 +8,7 @@ import { RenderUtils } from '../RenderUtils';
8
  export const IGScene: React.FC<any> = (props: { script: any, item: any }) => {
9
  const { fontFamily } = loadFont();
10
  const [subtitles, setSubtitles] = useState(undefined)
11
- const [subtitleGroups, setSubtitleGroups] = useState(undefined)
12
  const [averageCharsPs, setAverageCps] = useState(undefined)
13
  const item = props.item
14
  let { title, subtitle_file } = item
@@ -20,7 +20,8 @@ export const IGScene: React.FC<any> = (props: { script: any, item: any }) => {
20
 
21
  useEffect(() => {
22
  let file = RenderUtils.getFileName(subtitle_file)
23
- let subtitles = require('../../public/' + file)
 
24
  let subtitlesClone = subtitles
25
  let subs = subtitles.words
26
 
@@ -28,27 +29,32 @@ export const IGScene: React.FC<any> = (props: { script: any, item: any }) => {
28
  let noOfCharacters = 0
29
  let groupDuration = 0
30
  for (let i = 0; i < subs.length; i++) {
31
- let frame = subs[i]
32
- frame.idx = i
33
- if (frame.end && frame.start) {
34
- noOfCharacters += frame.endOffset - frame.startOffset
35
- groupDuration += frame.end - frame.start
 
 
 
 
 
36
  }
37
  }
38
  let avgCps = groupDuration / noOfCharacters
39
 
40
  // Fill start and end for missing frames
41
  for (let i = 0; i < subs.length; i++) {
42
- let frame = subs[i]
43
  let prevFrame = subs[i - 1]
44
  let nextFrame = subs[i + 1]
45
- if (!frame.end || !frame.start) {
46
- let noOfCharacters = frame.endOffset - frame.startOffset
47
  let frameDuration = noOfCharacters * avgCps
48
- frame.start = prevFrame?.end || 0
49
- frame.end = (frame.start + frameDuration)
50
  // frame.end = nextFrame?.start || (frame.start + frameDuration)
51
- if (nextFrame?.start < frame.end) {
52
  let next2next = subs[i + 2]
53
  if (next2next && next2next.start) {
54
  nextFrame.end = next2next.start
@@ -62,28 +68,34 @@ export const IGScene: React.FC<any> = (props: { script: any, item: any }) => {
62
 
63
  let arr = subs
64
  let chunkSize = 4;
65
- const groups = [];
66
- for (let i = 0; i < arr.length; i += chunkSize) {
67
- let curGroup = arr.slice(i, i + chunkSize)
68
- let grpDur = getGroupDuration(curGroup, avgCps)
69
- let grpDurFrames = grpDur * meta.fps
70
- groups.push({
71
- duration: grpDur,
72
- durationFrames: grpDurFrames,
73
- frames: arr.slice(i, i + chunkSize)
74
- });
75
- }
76
- setSubtitleGroups(groups)
 
77
 
78
 
79
  }, [])
80
 
81
- if (!subtitleGroups) {
82
  return (<></>)
83
  }
84
 
85
  let curSecond = frame / fps
86
  let word = findCurrentWord(curSecond, subtitles)
 
 
 
 
 
87
  return (
88
  <AbsoluteFill>
89
  <Audio volume={1.0} src={staticFile(audioPath)} />
@@ -91,6 +103,7 @@ export const IGScene: React.FC<any> = (props: { script: any, item: any }) => {
91
  <Title title={word?.start + ' --- ' + word?.end}></Title> */}
92
 
93
  <Title title={(word?.word || '_____')}></Title>
 
94
  {
95
 
96
  }
@@ -122,6 +135,63 @@ export const IGScene: React.FC<any> = (props: { script: any, item: any }) => {
122
  );
123
  };
124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  function findCurrentWord(timeSec, frames) {
126
  var t = timeSec;
127
  let wds = frames
@@ -171,4 +241,2932 @@ const Title: React.FC<{ title?: string, color?: string }> = ({ title = "test", c
171
  return (
172
  <div style={{ backgroundColor: color, textAlign: "center", fontSize: "7em" }}>{title}</div>
173
  );
174
- };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  export const IGScene: React.FC<any> = (props: { script: any, item: any }) => {
9
  const { fontFamily } = loadFont();
10
  const [subtitles, setSubtitles] = useState(undefined)
11
+ const [groups, setGroups] = useState(undefined)
12
  const [averageCharsPs, setAverageCps] = useState(undefined)
13
  const item = props.item
14
  let { title, subtitle_file } = item
 
20
 
21
  useEffect(() => {
22
  let file = RenderUtils.getFileName(subtitle_file)
23
+ // let subtitles = require('../../public/' + file)
24
+ let subtitles = SUBTITLES
25
  let subtitlesClone = subtitles
26
  let subs = subtitles.words
27
 
 
29
  let noOfCharacters = 0
30
  let groupDuration = 0
31
  for (let i = 0; i < subs.length; i++) {
32
+ let word = subs[i]
33
+ word.idx = i
34
+ delete word.phones
35
+ let wordEnd = word.endOffset
36
+ if (['.', ','].includes(subtitles.transcript?.charAt(wordEnd))) {
37
+ word.sentence_end = true
38
+ }
39
+ if (word.end && word.start) {
40
+ noOfCharacters += word.endOffset - word.startOffset
41
+ groupDuration += word.end - word.start
42
  }
43
  }
44
  let avgCps = groupDuration / noOfCharacters
45
 
46
  // Fill start and end for missing frames
47
  for (let i = 0; i < subs.length; i++) {
48
+ let word = subs[i]
49
  let prevFrame = subs[i - 1]
50
  let nextFrame = subs[i + 1]
51
+ if (!word.end || !word.start) {
52
+ let noOfCharacters = word.endOffset - word.startOffset
53
  let frameDuration = noOfCharacters * avgCps
54
+ word.start = prevFrame?.end || 0
55
+ word.end = (word.start + frameDuration)
56
  // frame.end = nextFrame?.start || (frame.start + frameDuration)
57
+ if (nextFrame?.start < word.end) {
58
  let next2next = subs[i + 2]
59
  if (next2next && next2next.start) {
60
  nextFrame.end = next2next.start
 
68
 
69
  let arr = subs
70
  let chunkSize = 4;
71
+ let groups = [];
72
+ // for (let i = 0; i < arr.length; i += chunkSize) {
73
+ // let curGroup = arr.slice(i, i + chunkSize)
74
+ // let grpDur = getGroupDuration(curGroup, avgCps)
75
+ // let grpDurFrames = grpDur * meta.fps
76
+ // groups.push({
77
+ // duration: grpDur,
78
+ // durationFrames: grpDurFrames,
79
+ // words: arr.slice(i, i + chunkSize)
80
+ // });
81
+ // }
82
+ groups = splitWordsIntoGroups(arr)
83
+ setGroups(groups)
84
 
85
 
86
  }, [])
87
 
88
+ if (!groups) {
89
  return (<></>)
90
  }
91
 
92
  let curSecond = frame / fps
93
  let word = findCurrentWord(curSecond, subtitles)
94
+ let group = findCurrentGroup(word, groups)
95
+ if (group && item.curGroup != group) {
96
+ item.curGroup = group
97
+ }
98
+
99
  return (
100
  <AbsoluteFill>
101
  <Audio volume={1.0} src={staticFile(audioPath)} />
 
103
  <Title title={word?.start + ' --- ' + word?.end}></Title> */}
104
 
105
  <Title title={(word?.word || '_____')}></Title>
106
+ <Title title={((item.curGroup)?.map(wod => wod.word).join(" ") || '_____')}></Title>
107
  {
108
 
109
  }
 
135
  );
136
  };
137
 
138
+ function splitWordsIntoGroups(words) {
139
+ const groups = [];
140
+ let currentGroup = [];
141
+
142
+ for (const word of words) {
143
+ if (currentGroup.length === 0) {
144
+ currentGroup.push(word);
145
+ } else if (word.sentence_end) {
146
+ currentGroup.push(word);
147
+ groups.push(currentGroup);
148
+ currentGroup = [];
149
+ } else if (currentGroup.length < 5) {
150
+ currentGroup.push(word);
151
+ } else {
152
+ groups.push(currentGroup);
153
+ currentGroup = [word];
154
+ }
155
+ }
156
+
157
+ if (currentGroup.length > 0) {
158
+ groups.push(currentGroup);
159
+ }
160
+
161
+ // Ensure each group has a maximum of 5 words
162
+ const finalGroups = [];
163
+ for (const group of groups) {
164
+ while (group.length > 5) {
165
+ finalGroups.push(group.slice(0, 5));
166
+ group.splice(0, 5);
167
+ }
168
+ finalGroups.push(group);
169
+ }
170
+
171
+ return finalGroups.map(group => {
172
+ return {
173
+ words: group
174
+ }
175
+ });
176
+ }
177
+
178
+ function findCurrentGroup(wod, group) {
179
+ if (!wod) {
180
+ return
181
+ }
182
+ for (let i = 0; i < group.length; i++) {
183
+
184
+ let cgroup = group[i]?.words
185
+
186
+ for (let j = 0; j < cgroup.length; j++) {
187
+ let cwod = cgroup[j]
188
+ if (cwod.idx == wod.idx) {
189
+ return cgroup
190
+ }
191
+ }
192
+ }
193
+ }
194
+
195
  function findCurrentWord(timeSec, frames) {
196
  var t = timeSec;
197
  let wds = frames
 
241
  return (
242
  <div style={{ backgroundColor: color, textAlign: "center", fontSize: "7em" }}>{title}</div>
243
  );
244
+ };
245
+
246
+
247
+ const SUBTITLES = {
248
+ "transcript": "Before starting any HIIT workout, it's crucial to warm up your muscles and prepare your body for the intense activity ahead. Dynamic stretches, light cardio exercises, or mobility drills can help you warm up properly and reduce the risk of injury. Without a proper warm-up, you may experience discomfort or strains during the workout. Additionally, warming up increases your heart rate and circulation, allowing your muscles to receive the nutrients and oxygen they need to function optimally. Remember, a good warm-up session can make a significant difference in your overall workout performance. So don't forget to take the time to warm up properly before starting your HIIT workout",
249
+ "words": [
250
+ {
251
+ "alignedWord": "before",
252
+ "case": "success",
253
+ "end": 0.3634285714285714,
254
+ "endOffset": 6,
255
+ "phones": [
256
+ {
257
+ "duration": 0.05,
258
+ "phone": "b_B"
259
+ },
260
+ {
261
+ "duration": 0.08,
262
+ "phone": "ih_I"
263
+ },
264
+ {
265
+ "duration": 0.08,
266
+ "phone": "f_I"
267
+ },
268
+ {
269
+ "duration": 0.04,
270
+ "phone": "ao_I"
271
+ },
272
+ {
273
+ "duration": 0.08,
274
+ "phone": "r_E"
275
+ }
276
+ ],
277
+ "start": 0,
278
+ "startOffset": 0,
279
+ "word": "Before",
280
+ "idx": 0
281
+ },
282
+ {
283
+ "alignedWord": "starting",
284
+ "case": "success",
285
+ "end": 0.81,
286
+ "endOffset": 15,
287
+ "phones": [
288
+ {
289
+ "duration": 0.05,
290
+ "phone": "s_B"
291
+ },
292
+ {
293
+ "duration": 0.08,
294
+ "phone": "t_I"
295
+ },
296
+ {
297
+ "duration": 0.08,
298
+ "phone": "aa_I"
299
+ },
300
+ {
301
+ "duration": 0.01,
302
+ "phone": "r_I"
303
+ },
304
+ {
305
+ "duration": 0.11,
306
+ "phone": "t_I"
307
+ },
308
+ {
309
+ "duration": 0.06,
310
+ "phone": "ih_I"
311
+ },
312
+ {
313
+ "duration": 0.09,
314
+ "phone": "ng_E"
315
+ }
316
+ ],
317
+ "start": 0.33,
318
+ "startOffset": 7,
319
+ "word": "starting",
320
+ "idx": 1
321
+ },
322
+ {
323
+ "alignedWord": "any",
324
+ "case": "success",
325
+ "end": 1.02,
326
+ "endOffset": 19,
327
+ "phones": [
328
+ {
329
+ "duration": 0.06,
330
+ "phone": "eh_B"
331
+ },
332
+ {
333
+ "duration": 0.07,
334
+ "phone": "n_I"
335
+ },
336
+ {
337
+ "duration": 0.08,
338
+ "phone": "iy_E"
339
+ }
340
+ ],
341
+ "start": 0.81,
342
+ "startOffset": 16,
343
+ "word": "any",
344
+ "idx": 2
345
+ },
346
+ {
347
+ "alignedWord": "<unk>",
348
+ "case": "success",
349
+ "end": 1.19,
350
+ "endOffset": 24,
351
+ "phones": [
352
+ {
353
+ "duration": 0.16,
354
+ "phone": "oov_S"
355
+ }
356
+ ],
357
+ "start": 1.03,
358
+ "startOffset": 20,
359
+ "word": "HIIT",
360
+ "idx": 3
361
+ },
362
+ {
363
+ "alignedWord": "workout",
364
+ "case": "success",
365
+ "end": 1.7999999999999998,
366
+ "endOffset": 32,
367
+ "phones": [
368
+ {
369
+ "duration": 0.11,
370
+ "phone": "w_B"
371
+ },
372
+ {
373
+ "duration": 0.08,
374
+ "phone": "er_I"
375
+ },
376
+ {
377
+ "duration": 0.08,
378
+ "phone": "k_I"
379
+ },
380
+ {
381
+ "duration": 0.12,
382
+ "phone": "aw_I"
383
+ },
384
+ {
385
+ "duration": 0.19,
386
+ "phone": "t_E"
387
+ }
388
+ ],
389
+ "start": 1.22,
390
+ "startOffset": 25,
391
+ "word": "workout",
392
+ "idx": 4
393
+ },
394
+ {
395
+ "alignedWord": "it's",
396
+ "case": "success",
397
+ "end": 2.19,
398
+ "endOffset": 38,
399
+ "phones": [
400
+ {
401
+ "duration": 0.06,
402
+ "phone": "ih_B"
403
+ },
404
+ {
405
+ "duration": 0.06,
406
+ "phone": "t_I"
407
+ },
408
+ {
409
+ "duration": 0.06,
410
+ "phone": "s_E"
411
+ }
412
+ ],
413
+ "start": 2.01,
414
+ "startOffset": 34,
415
+ "word": "it's",
416
+ "idx": 5
417
+ },
418
+ {
419
+ "alignedWord": "crucial",
420
+ "case": "success",
421
+ "end": 2.5,
422
+ "endOffset": 46,
423
+ "phones": [
424
+ {
425
+ "duration": 0.05,
426
+ "phone": "k_B"
427
+ },
428
+ {
429
+ "duration": 0.04,
430
+ "phone": "r_I"
431
+ },
432
+ {
433
+ "duration": 0.06,
434
+ "phone": "uw_I"
435
+ },
436
+ {
437
+ "duration": 0.07,
438
+ "phone": "sh_I"
439
+ },
440
+ {
441
+ "duration": 0.04,
442
+ "phone": "ah_I"
443
+ },
444
+ {
445
+ "duration": 0.05,
446
+ "phone": "l_E"
447
+ }
448
+ ],
449
+ "start": 2.19,
450
+ "startOffset": 39,
451
+ "word": "crucial",
452
+ "idx": 6
453
+ },
454
+ {
455
+ "alignedWord": "to",
456
+ "case": "success",
457
+ "end": 2.63,
458
+ "endOffset": 49,
459
+ "phones": [
460
+ {
461
+ "duration": 0.05,
462
+ "phone": "t_B"
463
+ },
464
+ {
465
+ "duration": 0.08,
466
+ "phone": "uw_E"
467
+ }
468
+ ],
469
+ "start": 2.5,
470
+ "startOffset": 47,
471
+ "word": "to",
472
+ "idx": 7
473
+ },
474
+ {
475
+ "alignedWord": "warm",
476
+ "case": "success",
477
+ "end": 2.86,
478
+ "endOffset": 54,
479
+ "phones": [
480
+ {
481
+ "duration": 0.04,
482
+ "phone": "w_B"
483
+ },
484
+ {
485
+ "duration": 0.06,
486
+ "phone": "ao_I"
487
+ },
488
+ {
489
+ "duration": 0.06,
490
+ "phone": "r_I"
491
+ },
492
+ {
493
+ "duration": 0.07,
494
+ "phone": "m_E"
495
+ }
496
+ ],
497
+ "start": 2.63,
498
+ "startOffset": 50,
499
+ "word": "warm",
500
+ "idx": 8
501
+ },
502
+ {
503
+ "alignedWord": "up",
504
+ "case": "success",
505
+ "end": 3.01,
506
+ "endOffset": 57,
507
+ "phones": [
508
+ {
509
+ "duration": 0.06,
510
+ "phone": "ah_B"
511
+ },
512
+ {
513
+ "duration": 0.09,
514
+ "phone": "p_E"
515
+ }
516
+ ],
517
+ "start": 2.86,
518
+ "startOffset": 55,
519
+ "word": "up",
520
+ "idx": 9
521
+ },
522
+ {
523
+ "alignedWord": "your",
524
+ "case": "success",
525
+ "end": 3.0799999999999996,
526
+ "endOffset": 62,
527
+ "phones": [
528
+ {
529
+ "duration": 0.01,
530
+ "phone": "y_B"
531
+ },
532
+ {
533
+ "duration": 0.01,
534
+ "phone": "uh_I"
535
+ },
536
+ {
537
+ "duration": 0.05,
538
+ "phone": "r_E"
539
+ }
540
+ ],
541
+ "start": 3.01,
542
+ "startOffset": 58,
543
+ "word": "your",
544
+ "idx": 10
545
+ },
546
+ {
547
+ "alignedWord": "muscles",
548
+ "case": "success",
549
+ "end": 3.48,
550
+ "endOffset": 70,
551
+ "phones": [
552
+ {
553
+ "duration": 0.03,
554
+ "phone": "m_B"
555
+ },
556
+ {
557
+ "duration": 0.09,
558
+ "phone": "ah_I"
559
+ },
560
+ {
561
+ "duration": 0.08,
562
+ "phone": "s_I"
563
+ },
564
+ {
565
+ "duration": 0.05,
566
+ "phone": "ah_I"
567
+ },
568
+ {
569
+ "duration": 0.07,
570
+ "phone": "l_I"
571
+ },
572
+ {
573
+ "duration": 0.08,
574
+ "phone": "z_E"
575
+ }
576
+ ],
577
+ "start": 3.08,
578
+ "startOffset": 63,
579
+ "word": "muscles",
580
+ "idx": 11
581
+ },
582
+ {
583
+ "alignedWord": "and",
584
+ "case": "success",
585
+ "end": 3.6599999999999997,
586
+ "endOffset": 74,
587
+ "phones": [
588
+ {
589
+ "duration": 0.08,
590
+ "phone": "ah_B"
591
+ },
592
+ {
593
+ "duration": 0.01,
594
+ "phone": "n_I"
595
+ },
596
+ {
597
+ "duration": 0.06,
598
+ "phone": "d_E"
599
+ }
600
+ ],
601
+ "start": 3.51,
602
+ "startOffset": 71,
603
+ "word": "and",
604
+ "idx": 12
605
+ },
606
+ {
607
+ "alignedWord": "prepare",
608
+ "case": "success",
609
+ "end": 3.97,
610
+ "endOffset": 82,
611
+ "phones": [
612
+ {
613
+ "duration": 0.04,
614
+ "phone": "p_B"
615
+ },
616
+ {
617
+ "duration": 0.03,
618
+ "phone": "r_I"
619
+ },
620
+ {
621
+ "duration": 0.03,
622
+ "phone": "iy_I"
623
+ },
624
+ {
625
+ "duration": 0.07,
626
+ "phone": "p_I"
627
+ },
628
+ {
629
+ "duration": 0.06,
630
+ "phone": "eh_I"
631
+ },
632
+ {
633
+ "duration": 0.08,
634
+ "phone": "r_E"
635
+ }
636
+ ],
637
+ "start": 3.66,
638
+ "startOffset": 75,
639
+ "word": "prepare",
640
+ "idx": 13
641
+ },
642
+ {
643
+ "alignedWord": "your",
644
+ "case": "success",
645
+ "end": 4.1000000000000005,
646
+ "endOffset": 87,
647
+ "phones": [
648
+ {
649
+ "duration": 0.07,
650
+ "phone": "y_B"
651
+ },
652
+ {
653
+ "duration": 0.01,
654
+ "phone": "uh_I"
655
+ },
656
+ {
657
+ "duration": 0.05,
658
+ "phone": "r_E"
659
+ }
660
+ ],
661
+ "start": 3.97,
662
+ "startOffset": 83,
663
+ "word": "your",
664
+ "idx": 14
665
+ },
666
+ {
667
+ "alignedWord": "body",
668
+ "case": "success",
669
+ "end": 4.35,
670
+ "endOffset": 92,
671
+ "phones": [
672
+ {
673
+ "duration": 0.05,
674
+ "phone": "b_B"
675
+ },
676
+ {
677
+ "duration": 0.06,
678
+ "phone": "aa_I"
679
+ },
680
+ {
681
+ "duration": 0.06,
682
+ "phone": "d_I"
683
+ },
684
+ {
685
+ "duration": 0.08,
686
+ "phone": "iy_E"
687
+ }
688
+ ],
689
+ "start": 4.1,
690
+ "startOffset": 88,
691
+ "word": "body",
692
+ "idx": 15
693
+ },
694
+ {
695
+ "alignedWord": "for",
696
+ "case": "success",
697
+ "end": 4.4799999999999995,
698
+ "endOffset": 96,
699
+ "phones": [
700
+ {
701
+ "duration": 0.06,
702
+ "phone": "f_B"
703
+ },
704
+ {
705
+ "duration": 0.07,
706
+ "phone": "er_E"
707
+ }
708
+ ],
709
+ "start": 4.35,
710
+ "startOffset": 93,
711
+ "word": "for",
712
+ "idx": 16
713
+ },
714
+ {
715
+ "alignedWord": "the",
716
+ "case": "success",
717
+ "end": 4.57,
718
+ "endOffset": 100,
719
+ "phones": [
720
+ {
721
+ "duration": 0.05,
722
+ "phone": "dh_B"
723
+ },
724
+ {
725
+ "duration": 0.04,
726
+ "phone": "iy_E"
727
+ }
728
+ ],
729
+ "start": 4.48,
730
+ "startOffset": 97,
731
+ "word": "the",
732
+ "idx": 17
733
+ },
734
+ {
735
+ "alignedWord": "intense",
736
+ "case": "success",
737
+ "end": 4.96,
738
+ "endOffset": 108,
739
+ "phones": [
740
+ {
741
+ "duration": 0.02,
742
+ "phone": "ih_B"
743
+ },
744
+ {
745
+ "duration": 0.05,
746
+ "phone": "n_I"
747
+ },
748
+ {
749
+ "duration": 0.06,
750
+ "phone": "t_I"
751
+ },
752
+ {
753
+ "duration": 0.07,
754
+ "phone": "eh_I"
755
+ },
756
+ {
757
+ "duration": 0.08,
758
+ "phone": "n_I"
759
+ },
760
+ {
761
+ "duration": 0.11,
762
+ "phone": "s_E"
763
+ }
764
+ ],
765
+ "start": 4.57,
766
+ "startOffset": 101,
767
+ "word": "intense",
768
+ "idx": 18
769
+ },
770
+ {
771
+ "alignedWord": "activity",
772
+ "case": "success",
773
+ "end": 5.34,
774
+ "endOffset": 117,
775
+ "phones": [
776
+ {
777
+ "duration": 0.01,
778
+ "phone": "ae_B"
779
+ },
780
+ {
781
+ "duration": 0.01,
782
+ "phone": "k_I"
783
+ },
784
+ {
785
+ "duration": 0.01,
786
+ "phone": "t_I"
787
+ },
788
+ {
789
+ "duration": 0.08,
790
+ "phone": "ih_I"
791
+ },
792
+ {
793
+ "duration": 0.06,
794
+ "phone": "v_I"
795
+ },
796
+ {
797
+ "duration": 0.05,
798
+ "phone": "ih_I"
799
+ },
800
+ {
801
+ "duration": 0.06,
802
+ "phone": "t_I"
803
+ },
804
+ {
805
+ "duration": 0.04,
806
+ "phone": "iy_E"
807
+ }
808
+ ],
809
+ "start": 5.02,
810
+ "startOffset": 109,
811
+ "word": "activity",
812
+ "idx": 19
813
+ },
814
+ {
815
+ "alignedWord": "ahead",
816
+ "case": "success",
817
+ "end": 5.7299999999999995,
818
+ "endOffset": 123,
819
+ "phones": [
820
+ {
821
+ "duration": 0.02,
822
+ "phone": "ah_B"
823
+ },
824
+ {
825
+ "duration": 0.07,
826
+ "phone": "hh_I"
827
+ },
828
+ {
829
+ "duration": 0.11,
830
+ "phone": "eh_I"
831
+ },
832
+ {
833
+ "duration": 0.19,
834
+ "phone": "d_E"
835
+ }
836
+ ],
837
+ "start": 5.34,
838
+ "startOffset": 118,
839
+ "word": "ahead",
840
+ "idx": 20
841
+ },
842
+ {
843
+ "alignedWord": "dynamic",
844
+ "case": "success",
845
+ "end": 6.7,
846
+ "endOffset": 132,
847
+ "phones": [
848
+ {
849
+ "duration": 0.08,
850
+ "phone": "d_B"
851
+ },
852
+ {
853
+ "duration": 0.09,
854
+ "phone": "ay_I"
855
+ },
856
+ {
857
+ "duration": 0.06,
858
+ "phone": "n_I"
859
+ },
860
+ {
861
+ "duration": 0.06,
862
+ "phone": "ae_I"
863
+ },
864
+ {
865
+ "duration": 0.03,
866
+ "phone": "m_I"
867
+ },
868
+ {
869
+ "duration": 0.06,
870
+ "phone": "ih_I"
871
+ },
872
+ {
873
+ "duration": 0.08,
874
+ "phone": "k_E"
875
+ }
876
+ ],
877
+ "start": 6.24,
878
+ "startOffset": 125,
879
+ "word": "Dynamic",
880
+ "idx": 21
881
+ },
882
+ {
883
+ "alignedWord": "stretches",
884
+ "case": "success",
885
+ "end": 7.3,
886
+ "endOffset": 142,
887
+ "phones": [
888
+ {
889
+ "duration": 0.03,
890
+ "phone": "s_B"
891
+ },
892
+ {
893
+ "duration": 0.07,
894
+ "phone": "t_I"
895
+ },
896
+ {
897
+ "duration": 0.04,
898
+ "phone": "r_I"
899
+ },
900
+ {
901
+ "duration": 0.08,
902
+ "phone": "eh_I"
903
+ },
904
+ {
905
+ "duration": 0.11,
906
+ "phone": "ch_I"
907
+ },
908
+ {
909
+ "duration": 0.06,
910
+ "phone": "ih_I"
911
+ },
912
+ {
913
+ "duration": 0.21,
914
+ "phone": "z_E"
915
+ }
916
+ ],
917
+ "start": 6.7,
918
+ "startOffset": 133,
919
+ "word": "stretches",
920
+ "idx": 22
921
+ },
922
+ {
923
+ "alignedWord": "light",
924
+ "case": "success",
925
+ "end": 7.83,
926
+ "endOffset": 149,
927
+ "phones": [
928
+ {
929
+ "duration": 0.1,
930
+ "phone": "l_B"
931
+ },
932
+ {
933
+ "duration": 0.07,
934
+ "phone": "ay_I"
935
+ },
936
+ {
937
+ "duration": 0.06,
938
+ "phone": "t_E"
939
+ }
940
+ ],
941
+ "start": 7.6,
942
+ "startOffset": 144,
943
+ "word": "light",
944
+ "idx": 23
945
+ },
946
+ {
947
+ "alignedWord": "cardio",
948
+ "case": "success",
949
+ "end": 8.16,
950
+ "endOffset": 156,
951
+ "phones": [
952
+ {
953
+ "duration": 0.07,
954
+ "phone": "k_B"
955
+ },
956
+ {
957
+ "duration": 0.04,
958
+ "phone": "aa_I"
959
+ },
960
+ {
961
+ "duration": 0.03,
962
+ "phone": "r_I"
963
+ },
964
+ {
965
+ "duration": 0.07,
966
+ "phone": "d_I"
967
+ },
968
+ {
969
+ "duration": 0.05,
970
+ "phone": "iy_I"
971
+ },
972
+ {
973
+ "duration": 0.07,
974
+ "phone": "ow_E"
975
+ }
976
+ ],
977
+ "start": 7.83,
978
+ "startOffset": 150,
979
+ "word": "cardio",
980
+ "idx": 24
981
+ },
982
+ {
983
+ "alignedWord": "exercises",
984
+ "case": "success",
985
+ "end": 8.91,
986
+ "endOffset": 166,
987
+ "phones": [
988
+ {
989
+ "duration": 0.07,
990
+ "phone": "eh_B"
991
+ },
992
+ {
993
+ "duration": 0.06,
994
+ "phone": "k_I"
995
+ },
996
+ {
997
+ "duration": 0.06,
998
+ "phone": "s_I"
999
+ },
1000
+ {
1001
+ "duration": 0.02,
1002
+ "phone": "er_I"
1003
+ },
1004
+ {
1005
+ "duration": 0.11,
1006
+ "phone": "s_I"
1007
+ },
1008
+ {
1009
+ "duration": 0.1,
1010
+ "phone": "ay_I"
1011
+ },
1012
+ {
1013
+ "duration": 0.05,
1014
+ "phone": "z_I"
1015
+ },
1016
+ {
1017
+ "duration": 0.09,
1018
+ "phone": "ih_I"
1019
+ },
1020
+ {
1021
+ "duration": 0.19,
1022
+ "phone": "z_E"
1023
+ }
1024
+ ],
1025
+ "start": 8.16,
1026
+ "startOffset": 157,
1027
+ "word": "exercises",
1028
+ "idx": 25
1029
+ },
1030
+ {
1031
+ "alignedWord": "or",
1032
+ "case": "success",
1033
+ "end": 9.19,
1034
+ "endOffset": 170,
1035
+ "phones": [
1036
+ {
1037
+ "duration": 0.11,
1038
+ "phone": "er_S"
1039
+ }
1040
+ ],
1041
+ "start": 9.08,
1042
+ "startOffset": 168,
1043
+ "word": "or",
1044
+ "idx": 26
1045
+ },
1046
+ {
1047
+ "alignedWord": "mobility",
1048
+ "case": "success",
1049
+ "end": 9.629999999999999,
1050
+ "endOffset": 179,
1051
+ "phones": [
1052
+ {
1053
+ "duration": 0.05,
1054
+ "phone": "m_B"
1055
+ },
1056
+ {
1057
+ "duration": 0.06,
1058
+ "phone": "ow_I"
1059
+ },
1060
+ {
1061
+ "duration": 0.04,
1062
+ "phone": "b_I"
1063
+ },
1064
+ {
1065
+ "duration": 0.06,
1066
+ "phone": "ih_I"
1067
+ },
1068
+ {
1069
+ "duration": 0.03,
1070
+ "phone": "l_I"
1071
+ },
1072
+ {
1073
+ "duration": 0.07,
1074
+ "phone": "ah_I"
1075
+ },
1076
+ {
1077
+ "duration": 0.07,
1078
+ "phone": "t_I"
1079
+ },
1080
+ {
1081
+ "duration": 0.06,
1082
+ "phone": "iy_E"
1083
+ }
1084
+ ],
1085
+ "start": 9.19,
1086
+ "startOffset": 171,
1087
+ "word": "mobility",
1088
+ "idx": 27
1089
+ },
1090
+ {
1091
+ "alignedWord": "drills",
1092
+ "case": "success",
1093
+ "end": 9.89,
1094
+ "endOffset": 186,
1095
+ "phones": [
1096
+ {
1097
+ "duration": 0.07,
1098
+ "phone": "d_B"
1099
+ },
1100
+ {
1101
+ "duration": 0.03,
1102
+ "phone": "r_I"
1103
+ },
1104
+ {
1105
+ "duration": 0.05,
1106
+ "phone": "ih_I"
1107
+ },
1108
+ {
1109
+ "duration": 0.03,
1110
+ "phone": "l_I"
1111
+ },
1112
+ {
1113
+ "duration": 0.08,
1114
+ "phone": "z_E"
1115
+ }
1116
+ ],
1117
+ "start": 9.63,
1118
+ "startOffset": 180,
1119
+ "word": "drills",
1120
+ "idx": 28
1121
+ },
1122
+ {
1123
+ "alignedWord": "can",
1124
+ "case": "success",
1125
+ "end": 10.019999,
1126
+ "endOffset": 190,
1127
+ "phones": [
1128
+ {
1129
+ "duration": 0.02,
1130
+ "phone": "k_B"
1131
+ },
1132
+ {
1133
+ "duration": 0.05,
1134
+ "phone": "ah_I"
1135
+ },
1136
+ {
1137
+ "duration": 0.06,
1138
+ "phone": "n_E"
1139
+ }
1140
+ ],
1141
+ "start": 9.889999,
1142
+ "startOffset": 187,
1143
+ "word": "can",
1144
+ "idx": 29
1145
+ },
1146
+ {
1147
+ "alignedWord": "help",
1148
+ "case": "success",
1149
+ "end": 10.24,
1150
+ "endOffset": 195,
1151
+ "phones": [
1152
+ {
1153
+ "duration": 0.02,
1154
+ "phone": "hh_B"
1155
+ },
1156
+ {
1157
+ "duration": 0.05,
1158
+ "phone": "eh_I"
1159
+ },
1160
+ {
1161
+ "duration": 0.06,
1162
+ "phone": "l_I"
1163
+ },
1164
+ {
1165
+ "duration": 0.09,
1166
+ "phone": "p_E"
1167
+ }
1168
+ ],
1169
+ "start": 10.02,
1170
+ "startOffset": 191,
1171
+ "word": "help",
1172
+ "idx": 30
1173
+ },
1174
+ {
1175
+ "alignedWord": "you",
1176
+ "case": "success",
1177
+ "end": 10.35,
1178
+ "endOffset": 199,
1179
+ "phones": [
1180
+ {
1181
+ "duration": 0.04,
1182
+ "phone": "y_B"
1183
+ },
1184
+ {
1185
+ "duration": 0.07,
1186
+ "phone": "uw_E"
1187
+ }
1188
+ ],
1189
+ "start": 10.24,
1190
+ "startOffset": 196,
1191
+ "word": "you",
1192
+ "idx": 31
1193
+ },
1194
+ {
1195
+ "alignedWord": "warm",
1196
+ "case": "success",
1197
+ "end": 10.549999,
1198
+ "endOffset": 204,
1199
+ "phones": [
1200
+ {
1201
+ "duration": 0.07,
1202
+ "phone": "w_B"
1203
+ },
1204
+ {
1205
+ "duration": 0.03,
1206
+ "phone": "ao_I"
1207
+ },
1208
+ {
1209
+ "duration": 0.05,
1210
+ "phone": "r_I"
1211
+ },
1212
+ {
1213
+ "duration": 0.05,
1214
+ "phone": "m_E"
1215
+ }
1216
+ ],
1217
+ "start": 10.349999,
1218
+ "startOffset": 200,
1219
+ "word": "warm",
1220
+ "idx": 32
1221
+ },
1222
+ {
1223
+ "alignedWord": "up",
1224
+ "case": "success",
1225
+ "end": 10.65,
1226
+ "endOffset": 207,
1227
+ "phones": [
1228
+ {
1229
+ "duration": 0.04,
1230
+ "phone": "ah_B"
1231
+ },
1232
+ {
1233
+ "duration": 0.06,
1234
+ "phone": "p_E"
1235
+ }
1236
+ ],
1237
+ "start": 10.55,
1238
+ "startOffset": 205,
1239
+ "word": "up",
1240
+ "idx": 33
1241
+ },
1242
+ {
1243
+ "alignedWord": "properly",
1244
+ "case": "success",
1245
+ "end": 11,
1246
+ "endOffset": 216,
1247
+ "phones": [
1248
+ {
1249
+ "duration": 0.06,
1250
+ "phone": "p_B"
1251
+ },
1252
+ {
1253
+ "duration": 0.01,
1254
+ "phone": "r_I"
1255
+ },
1256
+ {
1257
+ "duration": 0.06,
1258
+ "phone": "aa_I"
1259
+ },
1260
+ {
1261
+ "duration": 0.05,
1262
+ "phone": "p_I"
1263
+ },
1264
+ {
1265
+ "duration": 0.05,
1266
+ "phone": "er_I"
1267
+ },
1268
+ {
1269
+ "duration": 0.05,
1270
+ "phone": "l_I"
1271
+ },
1272
+ {
1273
+ "duration": 0.06,
1274
+ "phone": "iy_E"
1275
+ }
1276
+ ],
1277
+ "start": 10.66,
1278
+ "startOffset": 208,
1279
+ "word": "properly",
1280
+ "idx": 34
1281
+ },
1282
+ {
1283
+ "alignedWord": "and",
1284
+ "case": "success",
1285
+ "end": 11.13,
1286
+ "endOffset": 220,
1287
+ "phones": [
1288
+ {
1289
+ "duration": 0.06,
1290
+ "phone": "ah_B"
1291
+ },
1292
+ {
1293
+ "duration": 0.01,
1294
+ "phone": "n_I"
1295
+ },
1296
+ {
1297
+ "duration": 0.06,
1298
+ "phone": "d_E"
1299
+ }
1300
+ ],
1301
+ "start": 11,
1302
+ "startOffset": 217,
1303
+ "word": "and",
1304
+ "idx": 35
1305
+ },
1306
+ {
1307
+ "alignedWord": "reduce",
1308
+ "case": "success",
1309
+ "end": 11.440000000000001,
1310
+ "endOffset": 227,
1311
+ "phones": [
1312
+ {
1313
+ "duration": 0.02,
1314
+ "phone": "r_B"
1315
+ },
1316
+ {
1317
+ "duration": 0.06,
1318
+ "phone": "ih_I"
1319
+ },
1320
+ {
1321
+ "duration": 0.09,
1322
+ "phone": "d_I"
1323
+ },
1324
+ {
1325
+ "duration": 0.08,
1326
+ "phone": "uw_I"
1327
+ },
1328
+ {
1329
+ "duration": 0.06,
1330
+ "phone": "s_E"
1331
+ }
1332
+ ],
1333
+ "start": 11.13,
1334
+ "startOffset": 221,
1335
+ "word": "reduce",
1336
+ "idx": 36
1337
+ },
1338
+ {
1339
+ "alignedWord": "the",
1340
+ "case": "success",
1341
+ "end": 11.549999999999999,
1342
+ "endOffset": 231,
1343
+ "phones": [
1344
+ {
1345
+ "duration": 0.05,
1346
+ "phone": "dh_B"
1347
+ },
1348
+ {
1349
+ "duration": 0.06,
1350
+ "phone": "ah_E"
1351
+ }
1352
+ ],
1353
+ "start": 11.44,
1354
+ "startOffset": 228,
1355
+ "word": "the",
1356
+ "idx": 37
1357
+ },
1358
+ {
1359
+ "alignedWord": "risk",
1360
+ "case": "success",
1361
+ "end": 11.81,
1362
+ "endOffset": 236,
1363
+ "phones": [
1364
+ {
1365
+ "duration": 0.04,
1366
+ "phone": "r_B"
1367
+ },
1368
+ {
1369
+ "duration": 0.09,
1370
+ "phone": "ih_I"
1371
+ },
1372
+ {
1373
+ "duration": 0.09,
1374
+ "phone": "s_I"
1375
+ },
1376
+ {
1377
+ "duration": 0.04,
1378
+ "phone": "k_E"
1379
+ }
1380
+ ],
1381
+ "start": 11.55,
1382
+ "startOffset": 232,
1383
+ "word": "risk",
1384
+ "idx": 38
1385
+ },
1386
+ {
1387
+ "alignedWord": "of",
1388
+ "case": "success",
1389
+ "end": 11.909999,
1390
+ "endOffset": 239,
1391
+ "phones": [
1392
+ {
1393
+ "duration": 0.05,
1394
+ "phone": "ah_B"
1395
+ },
1396
+ {
1397
+ "duration": 0.05,
1398
+ "phone": "v_E"
1399
+ }
1400
+ ],
1401
+ "start": 11.809999,
1402
+ "startOffset": 237,
1403
+ "word": "of",
1404
+ "idx": 39
1405
+ },
1406
+ {
1407
+ "alignedWord": "injury",
1408
+ "case": "success",
1409
+ "end": 12.39,
1410
+ "endOffset": 246,
1411
+ "phones": [
1412
+ {
1413
+ "duration": 0.05,
1414
+ "phone": "ih_B"
1415
+ },
1416
+ {
1417
+ "duration": 0.07,
1418
+ "phone": "n_I"
1419
+ },
1420
+ {
1421
+ "duration": 0.08,
1422
+ "phone": "jh_I"
1423
+ },
1424
+ {
1425
+ "duration": 0.1,
1426
+ "phone": "er_I"
1427
+ },
1428
+ {
1429
+ "duration": 0.18,
1430
+ "phone": "iy_E"
1431
+ }
1432
+ ],
1433
+ "start": 11.91,
1434
+ "startOffset": 240,
1435
+ "word": "injury",
1436
+ "idx": 40
1437
+ },
1438
+ {
1439
+ "alignedWord": "without",
1440
+ "case": "success",
1441
+ "end": 13.209999999999999,
1442
+ "endOffset": 255,
1443
+ "phones": [
1444
+ {
1445
+ "duration": 0.08,
1446
+ "phone": "w_B"
1447
+ },
1448
+ {
1449
+ "duration": 0.04,
1450
+ "phone": "ih_I"
1451
+ },
1452
+ {
1453
+ "duration": 0.06,
1454
+ "phone": "th_I"
1455
+ },
1456
+ {
1457
+ "duration": 0.06,
1458
+ "phone": "aw_I"
1459
+ },
1460
+ {
1461
+ "duration": 0.05,
1462
+ "phone": "t_E"
1463
+ }
1464
+ ],
1465
+ "start": 12.92,
1466
+ "startOffset": 248,
1467
+ "word": "Without",
1468
+ "idx": 41
1469
+ },
1470
+ {
1471
+ "alignedWord": "a",
1472
+ "case": "success",
1473
+ "end": 13.260000000000002,
1474
+ "endOffset": 257,
1475
+ "phones": [
1476
+ {
1477
+ "duration": 0.05,
1478
+ "phone": "ah_S"
1479
+ }
1480
+ ],
1481
+ "start": 13.21,
1482
+ "startOffset": 256,
1483
+ "word": "a",
1484
+ "idx": 42
1485
+ },
1486
+ {
1487
+ "alignedWord": "proper",
1488
+ "case": "success",
1489
+ "end": 13.549999,
1490
+ "endOffset": 264,
1491
+ "phones": [
1492
+ {
1493
+ "duration": 0.07,
1494
+ "phone": "p_B"
1495
+ },
1496
+ {
1497
+ "duration": 0.05,
1498
+ "phone": "r_I"
1499
+ },
1500
+ {
1501
+ "duration": 0.07,
1502
+ "phone": "aa_I"
1503
+ },
1504
+ {
1505
+ "duration": 0.05,
1506
+ "phone": "p_I"
1507
+ },
1508
+ {
1509
+ "duration": 0.05,
1510
+ "phone": "er_E"
1511
+ }
1512
+ ],
1513
+ "start": 13.259999,
1514
+ "startOffset": 258,
1515
+ "word": "proper",
1516
+ "idx": 43
1517
+ },
1518
+ {
1519
+ "alignedWord": "warm",
1520
+ "case": "success",
1521
+ "end": 13.759999,
1522
+ "endOffset": 269,
1523
+ "phones": [
1524
+ {
1525
+ "duration": 0.07,
1526
+ "phone": "w_B"
1527
+ },
1528
+ {
1529
+ "duration": 0.06,
1530
+ "phone": "ao_I"
1531
+ },
1532
+ {
1533
+ "duration": 0.05,
1534
+ "phone": "r_I"
1535
+ },
1536
+ {
1537
+ "duration": 0.03,
1538
+ "phone": "m_E"
1539
+ }
1540
+ ],
1541
+ "start": 13.549999,
1542
+ "startOffset": 265,
1543
+ "word": "warm",
1544
+ "idx": 44
1545
+ },
1546
+ {
1547
+ "alignedWord": "up",
1548
+ "case": "success",
1549
+ "end": 14.049999,
1550
+ "endOffset": 272,
1551
+ "phones": [
1552
+ {
1553
+ "duration": 0.08,
1554
+ "phone": "ah_B"
1555
+ },
1556
+ {
1557
+ "duration": 0.21,
1558
+ "phone": "p_E"
1559
+ }
1560
+ ],
1561
+ "start": 13.759999,
1562
+ "startOffset": 270,
1563
+ "word": "up",
1564
+ "idx": 45
1565
+ },
1566
+ {
1567
+ "alignedWord": "you",
1568
+ "case": "success",
1569
+ "end": 14.309999,
1570
+ "endOffset": 277,
1571
+ "phones": [
1572
+ {
1573
+ "duration": 0.12,
1574
+ "phone": "y_B"
1575
+ },
1576
+ {
1577
+ "duration": 0.05,
1578
+ "phone": "uw_E"
1579
+ }
1580
+ ],
1581
+ "start": 14.139999,
1582
+ "startOffset": 274,
1583
+ "word": "you",
1584
+ "idx": 46
1585
+ },
1586
+ {
1587
+ "alignedWord": "may",
1588
+ "case": "success",
1589
+ "end": 14.489999,
1590
+ "endOffset": 281,
1591
+ "phones": [
1592
+ {
1593
+ "duration": 0.09,
1594
+ "phone": "m_B"
1595
+ },
1596
+ {
1597
+ "duration": 0.09,
1598
+ "phone": "ey_E"
1599
+ }
1600
+ ],
1601
+ "start": 14.309999,
1602
+ "startOffset": 278,
1603
+ "word": "may",
1604
+ "idx": 47
1605
+ },
1606
+ {
1607
+ "alignedWord": "experience",
1608
+ "case": "success",
1609
+ "end": 14.93,
1610
+ "endOffset": 292,
1611
+ "phones": [
1612
+ {
1613
+ "duration": 0.01,
1614
+ "phone": "ih_B"
1615
+ },
1616
+ {
1617
+ "duration": 0.05,
1618
+ "phone": "k_I"
1619
+ },
1620
+ {
1621
+ "duration": 0.06,
1622
+ "phone": "s_I"
1623
+ },
1624
+ {
1625
+ "duration": 0.03,
1626
+ "phone": "p_I"
1627
+ },
1628
+ {
1629
+ "duration": 0.1,
1630
+ "phone": "ih_I"
1631
+ },
1632
+ {
1633
+ "duration": 0.05,
1634
+ "phone": "r_I"
1635
+ },
1636
+ {
1637
+ "duration": 0.03,
1638
+ "phone": "iy_I"
1639
+ },
1640
+ {
1641
+ "duration": 0.03,
1642
+ "phone": "ah_I"
1643
+ },
1644
+ {
1645
+ "duration": 0.07,
1646
+ "phone": "n_I"
1647
+ },
1648
+ {
1649
+ "duration": 0.01,
1650
+ "phone": "s_E"
1651
+ }
1652
+ ],
1653
+ "start": 14.49,
1654
+ "startOffset": 282,
1655
+ "word": "experience",
1656
+ "idx": 48
1657
+ },
1658
+ {
1659
+ "alignedWord": "discomfort",
1660
+ "case": "success",
1661
+ "end": 15.449999,
1662
+ "endOffset": 303,
1663
+ "phones": [
1664
+ {
1665
+ "duration": 0.01,
1666
+ "phone": "d_B"
1667
+ },
1668
+ {
1669
+ "duration": 0.01,
1670
+ "phone": "ih_I"
1671
+ },
1672
+ {
1673
+ "duration": 0.11,
1674
+ "phone": "s_I"
1675
+ },
1676
+ {
1677
+ "duration": 0.06,
1678
+ "phone": "k_I"
1679
+ },
1680
+ {
1681
+ "duration": 0.05,
1682
+ "phone": "ah_I"
1683
+ },
1684
+ {
1685
+ "duration": 0.07,
1686
+ "phone": "m_I"
1687
+ },
1688
+ {
1689
+ "duration": 0.06,
1690
+ "phone": "f_I"
1691
+ },
1692
+ {
1693
+ "duration": 0.05,
1694
+ "phone": "er_I"
1695
+ },
1696
+ {
1697
+ "duration": 0.1,
1698
+ "phone": "t_E"
1699
+ }
1700
+ ],
1701
+ "start": 14.929999,
1702
+ "startOffset": 293,
1703
+ "word": "discomfort",
1704
+ "idx": 49
1705
+ },
1706
+ {
1707
+ "alignedWord": "or",
1708
+ "case": "success",
1709
+ "end": 15.64,
1710
+ "endOffset": 306,
1711
+ "phones": [
1712
+ {
1713
+ "duration": 0.08,
1714
+ "phone": "ao_B"
1715
+ },
1716
+ {
1717
+ "duration": 0.06,
1718
+ "phone": "r_E"
1719
+ }
1720
+ ],
1721
+ "start": 15.5,
1722
+ "startOffset": 304,
1723
+ "word": "or",
1724
+ "idx": 50
1725
+ },
1726
+ {
1727
+ "alignedWord": "strains",
1728
+ "case": "success",
1729
+ "end": 15.989999,
1730
+ "endOffset": 314,
1731
+ "phones": [
1732
+ {
1733
+ "duration": 0.05,
1734
+ "phone": "s_B"
1735
+ },
1736
+ {
1737
+ "duration": 0.05,
1738
+ "phone": "t_I"
1739
+ },
1740
+ {
1741
+ "duration": 0.06,
1742
+ "phone": "r_I"
1743
+ },
1744
+ {
1745
+ "duration": 0.06,
1746
+ "phone": "ey_I"
1747
+ },
1748
+ {
1749
+ "duration": 0.06,
1750
+ "phone": "n_I"
1751
+ },
1752
+ {
1753
+ "duration": 0.07,
1754
+ "phone": "z_E"
1755
+ }
1756
+ ],
1757
+ "start": 15.639999,
1758
+ "startOffset": 307,
1759
+ "word": "strains",
1760
+ "idx": 51
1761
+ },
1762
+ {
1763
+ "alignedWord": "during",
1764
+ "case": "success",
1765
+ "end": 16.21,
1766
+ "endOffset": 321,
1767
+ "phones": [
1768
+ {
1769
+ "duration": 0.05,
1770
+ "phone": "d_B"
1771
+ },
1772
+ {
1773
+ "duration": 0.09,
1774
+ "phone": "er_I"
1775
+ },
1776
+ {
1777
+ "duration": 0.03,
1778
+ "phone": "ih_I"
1779
+ },
1780
+ {
1781
+ "duration": 0.05,
1782
+ "phone": "ng_E"
1783
+ }
1784
+ ],
1785
+ "start": 15.99,
1786
+ "startOffset": 315,
1787
+ "word": "during",
1788
+ "idx": 52
1789
+ },
1790
+ {
1791
+ "alignedWord": "the",
1792
+ "case": "success",
1793
+ "end": 16.309999,
1794
+ "endOffset": 325,
1795
+ "phones": [
1796
+ {
1797
+ "duration": 0.04,
1798
+ "phone": "dh_B"
1799
+ },
1800
+ {
1801
+ "duration": 0.06,
1802
+ "phone": "ah_E"
1803
+ }
1804
+ ],
1805
+ "start": 16.209999,
1806
+ "startOffset": 322,
1807
+ "word": "the",
1808
+ "idx": 53
1809
+ },
1810
+ {
1811
+ "alignedWord": "workout",
1812
+ "case": "success",
1813
+ "end": 16.839999000000002,
1814
+ "endOffset": 333,
1815
+ "phones": [
1816
+ {
1817
+ "duration": 0.08,
1818
+ "phone": "w_B"
1819
+ },
1820
+ {
1821
+ "duration": 0.09,
1822
+ "phone": "er_I"
1823
+ },
1824
+ {
1825
+ "duration": 0.08,
1826
+ "phone": "k_I"
1827
+ },
1828
+ {
1829
+ "duration": 0.09,
1830
+ "phone": "aw_I"
1831
+ },
1832
+ {
1833
+ "duration": 0.19,
1834
+ "phone": "t_E"
1835
+ }
1836
+ ],
1837
+ "start": 16.309999,
1838
+ "startOffset": 326,
1839
+ "word": "workout",
1840
+ "idx": 54
1841
+ },
1842
+ {
1843
+ "alignedWord": "additionally",
1844
+ "case": "success",
1845
+ "end": 18.11,
1846
+ "endOffset": 347,
1847
+ "phones": [
1848
+ {
1849
+ "duration": 0.1,
1850
+ "phone": "ah_B"
1851
+ },
1852
+ {
1853
+ "duration": 0.08,
1854
+ "phone": "d_I"
1855
+ },
1856
+ {
1857
+ "duration": 0.06,
1858
+ "phone": "ih_I"
1859
+ },
1860
+ {
1861
+ "duration": 0.1,
1862
+ "phone": "sh_I"
1863
+ },
1864
+ {
1865
+ "duration": 0.01,
1866
+ "phone": "ah_I"
1867
+ },
1868
+ {
1869
+ "duration": 0.05,
1870
+ "phone": "n_I"
1871
+ },
1872
+ {
1873
+ "duration": 0.07,
1874
+ "phone": "ah_I"
1875
+ },
1876
+ {
1877
+ "duration": 0.09,
1878
+ "phone": "l_I"
1879
+ },
1880
+ {
1881
+ "duration": 0.21,
1882
+ "phone": "iy_E"
1883
+ }
1884
+ ],
1885
+ "start": 17.34,
1886
+ "startOffset": 335,
1887
+ "word": "Additionally",
1888
+ "idx": 55
1889
+ },
1890
+ {
1891
+ "alignedWord": "warming",
1892
+ "case": "success",
1893
+ "end": 18.57,
1894
+ "endOffset": 356,
1895
+ "phones": [
1896
+ {
1897
+ "duration": 0.12,
1898
+ "phone": "w_B"
1899
+ },
1900
+ {
1901
+ "duration": 0.06,
1902
+ "phone": "ao_I"
1903
+ },
1904
+ {
1905
+ "duration": 0.04,
1906
+ "phone": "r_I"
1907
+ },
1908
+ {
1909
+ "duration": 0.03,
1910
+ "phone": "m_I"
1911
+ },
1912
+ {
1913
+ "duration": 0.07,
1914
+ "phone": "ih_I"
1915
+ },
1916
+ {
1917
+ "duration": 0.07,
1918
+ "phone": "ng_E"
1919
+ }
1920
+ ],
1921
+ "start": 18.18,
1922
+ "startOffset": 349,
1923
+ "word": "warming",
1924
+ "idx": 56
1925
+ },
1926
+ {
1927
+ "alignedWord": "up",
1928
+ "case": "success",
1929
+ "end": 18.69,
1930
+ "endOffset": 359,
1931
+ "phones": [
1932
+ {
1933
+ "duration": 0.05,
1934
+ "phone": "ah_B"
1935
+ },
1936
+ {
1937
+ "duration": 0.07,
1938
+ "phone": "p_E"
1939
+ }
1940
+ ],
1941
+ "start": 18.57,
1942
+ "startOffset": 357,
1943
+ "word": "up",
1944
+ "idx": 57
1945
+ },
1946
+ {
1947
+ "alignedWord": "increases",
1948
+ "case": "success",
1949
+ "end": 19.190001,
1950
+ "endOffset": 369,
1951
+ "phones": [
1952
+ {
1953
+ "duration": 0.06,
1954
+ "phone": "ih_B"
1955
+ },
1956
+ {
1957
+ "duration": 0.06,
1958
+ "phone": "n_I"
1959
+ },
1960
+ {
1961
+ "duration": 0.05,
1962
+ "phone": "k_I"
1963
+ },
1964
+ {
1965
+ "duration": 0.07,
1966
+ "phone": "r_I"
1967
+ },
1968
+ {
1969
+ "duration": 0.04,
1970
+ "phone": "iy_I"
1971
+ },
1972
+ {
1973
+ "duration": 0.06,
1974
+ "phone": "s_I"
1975
+ },
1976
+ {
1977
+ "duration": 0.07,
1978
+ "phone": "ih_I"
1979
+ },
1980
+ {
1981
+ "duration": 0.09,
1982
+ "phone": "z_E"
1983
+ }
1984
+ ],
1985
+ "start": 18.690001,
1986
+ "startOffset": 360,
1987
+ "word": "increases",
1988
+ "idx": 58
1989
+ },
1990
+ {
1991
+ "alignedWord": "your",
1992
+ "case": "success",
1993
+ "end": 19.289999,
1994
+ "endOffset": 374,
1995
+ "phones": [
1996
+ {
1997
+ "duration": 0.02,
1998
+ "phone": "y_B"
1999
+ },
2000
+ {
2001
+ "duration": 0.04,
2002
+ "phone": "uh_I"
2003
+ },
2004
+ {
2005
+ "duration": 0.04,
2006
+ "phone": "r_E"
2007
+ }
2008
+ ],
2009
+ "start": 19.189999,
2010
+ "startOffset": 370,
2011
+ "word": "your",
2012
+ "idx": 59
2013
+ },
2014
+ {
2015
+ "alignedWord": "heart",
2016
+ "case": "success",
2017
+ "end": 19.499999000000003,
2018
+ "endOffset": 380,
2019
+ "phones": [
2020
+ {
2021
+ "duration": 0.06,
2022
+ "phone": "hh_B"
2023
+ },
2024
+ {
2025
+ "duration": 0.07,
2026
+ "phone": "aa_I"
2027
+ },
2028
+ {
2029
+ "duration": 0.02,
2030
+ "phone": "r_I"
2031
+ },
2032
+ {
2033
+ "duration": 0.06,
2034
+ "phone": "t_E"
2035
+ }
2036
+ ],
2037
+ "start": 19.289999,
2038
+ "startOffset": 375,
2039
+ "word": "heart",
2040
+ "idx": 60
2041
+ },
2042
+ {
2043
+ "alignedWord": "rate",
2044
+ "case": "success",
2045
+ "end": 19.819999000000003,
2046
+ "endOffset": 385,
2047
+ "phones": [
2048
+ {
2049
+ "duration": 0.12,
2050
+ "phone": "r_B"
2051
+ },
2052
+ {
2053
+ "duration": 0.06,
2054
+ "phone": "ey_I"
2055
+ },
2056
+ {
2057
+ "duration": 0.13,
2058
+ "phone": "t_E"
2059
+ }
2060
+ ],
2061
+ "start": 19.509999000000004,
2062
+ "startOffset": 381,
2063
+ "word": "rate",
2064
+ "idx": 61
2065
+ },
2066
+ {
2067
+ "alignedWord": "and",
2068
+ "case": "success",
2069
+ "end": 19.969999,
2070
+ "endOffset": 389,
2071
+ "phones": [
2072
+ {
2073
+ "duration": 0.03,
2074
+ "phone": "ah_B"
2075
+ },
2076
+ {
2077
+ "duration": 0.04,
2078
+ "phone": "n_I"
2079
+ },
2080
+ {
2081
+ "duration": 0.06,
2082
+ "phone": "d_E"
2083
+ }
2084
+ ],
2085
+ "start": 19.839999000000002,
2086
+ "startOffset": 386,
2087
+ "word": "and",
2088
+ "idx": 62
2089
+ },
2090
+ {
2091
+ "alignedWord": "circulation",
2092
+ "case": "success",
2093
+ "end": 20.759999000000004,
2094
+ "endOffset": 401,
2095
+ "phones": [
2096
+ {
2097
+ "duration": 0.08,
2098
+ "phone": "s_B"
2099
+ },
2100
+ {
2101
+ "duration": 0.05,
2102
+ "phone": "er_I"
2103
+ },
2104
+ {
2105
+ "duration": 0.06,
2106
+ "phone": "k_I"
2107
+ },
2108
+ {
2109
+ "duration": 0.01,
2110
+ "phone": "y_I"
2111
+ },
2112
+ {
2113
+ "duration": 0.04,
2114
+ "phone": "ah_I"
2115
+ },
2116
+ {
2117
+ "duration": 0.08,
2118
+ "phone": "l_I"
2119
+ },
2120
+ {
2121
+ "duration": 0.06,
2122
+ "phone": "ey_I"
2123
+ },
2124
+ {
2125
+ "duration": 0.09,
2126
+ "phone": "sh_I"
2127
+ },
2128
+ {
2129
+ "duration": 0.06,
2130
+ "phone": "ah_I"
2131
+ },
2132
+ {
2133
+ "duration": 0.26,
2134
+ "phone": "n_E"
2135
+ }
2136
+ ],
2137
+ "start": 19.969999,
2138
+ "startOffset": 390,
2139
+ "word": "circulation",
2140
+ "idx": 63
2141
+ },
2142
+ {
2143
+ "case": "not-found-in-audio",
2144
+ "endOffset": 411,
2145
+ "startOffset": 403,
2146
+ "word": "allowing",
2147
+ "idx": 64,
2148
+ "start": 20.759999000000004,
2149
+ "end": 21.244570428571432
2150
+ },
2151
+ {
2152
+ "case": "not-found-in-audio",
2153
+ "endOffset": 416,
2154
+ "startOffset": 412,
2155
+ "word": "your",
2156
+ "idx": 65,
2157
+ "start": 21.244570428571432,
2158
+ "end": 21.486856142857146
2159
+ },
2160
+ {
2161
+ "case": "not-found-in-audio",
2162
+ "endOffset": 424,
2163
+ "startOffset": 417,
2164
+ "word": "muscles",
2165
+ "idx": 66,
2166
+ "start": 21.486856142857146,
2167
+ "end": 21.910856142857146
2168
+ },
2169
+ {
2170
+ "case": "not-found-in-audio",
2171
+ "endOffset": 427,
2172
+ "startOffset": 425,
2173
+ "word": "to",
2174
+ "idx": 67,
2175
+ "start": 21.910856142857146,
2176
+ "end": 22.031999000000003
2177
+ },
2178
+ {
2179
+ "case": "not-found-in-audio",
2180
+ "endOffset": 435,
2181
+ "startOffset": 428,
2182
+ "word": "receive",
2183
+ "idx": 68,
2184
+ "start": 22.031999000000003,
2185
+ "end": 22.455999000000002
2186
+ },
2187
+ {
2188
+ "case": "not-found-in-audio",
2189
+ "endOffset": 439,
2190
+ "startOffset": 436,
2191
+ "word": "the",
2192
+ "idx": 69,
2193
+ "start": 22.455999000000002,
2194
+ "end": 22.637713285714288
2195
+ },
2196
+ {
2197
+ "case": "not-found-in-audio",
2198
+ "endOffset": 449,
2199
+ "startOffset": 440,
2200
+ "word": "nutrients",
2201
+ "idx": 70,
2202
+ "start": 22.637713285714288,
2203
+ "end": 23.182856142857144
2204
+ },
2205
+ {
2206
+ "case": "not-found-in-audio",
2207
+ "endOffset": 453,
2208
+ "startOffset": 450,
2209
+ "word": "and",
2210
+ "idx": 71,
2211
+ "start": 23.182856142857144,
2212
+ "end": 23.36457042857143
2213
+ },
2214
+ {
2215
+ "case": "not-found-in-audio",
2216
+ "endOffset": 460,
2217
+ "startOffset": 454,
2218
+ "word": "oxygen",
2219
+ "idx": 72,
2220
+ "start": 23.36457042857143,
2221
+ "end": 23.727999
2222
+ },
2223
+ {
2224
+ "case": "not-found-in-audio",
2225
+ "endOffset": 465,
2226
+ "startOffset": 461,
2227
+ "word": "they",
2228
+ "idx": 73,
2229
+ "start": 23.727999,
2230
+ "end": 23.970284714285715
2231
+ },
2232
+ {
2233
+ "case": "not-found-in-audio",
2234
+ "endOffset": 470,
2235
+ "startOffset": 466,
2236
+ "word": "need",
2237
+ "idx": 74,
2238
+ "start": 23.970284714285715,
2239
+ "end": 24.21257042857143
2240
+ },
2241
+ {
2242
+ "case": "not-found-in-audio",
2243
+ "endOffset": 473,
2244
+ "startOffset": 471,
2245
+ "word": "to",
2246
+ "idx": 75,
2247
+ "start": 24.21257042857143,
2248
+ "end": 24.333713285714285
2249
+ },
2250
+ {
2251
+ "case": "not-found-in-audio",
2252
+ "endOffset": 482,
2253
+ "startOffset": 474,
2254
+ "word": "function",
2255
+ "idx": 76,
2256
+ "start": 24.333713285714285,
2257
+ "end": 24.818284714285713
2258
+ },
2259
+ {
2260
+ "alignedWord": "<unk>",
2261
+ "case": "success",
2262
+ "end": 24.77,
2263
+ "endOffset": 492,
2264
+ "phones": [
2265
+ {
2266
+ "duration": 3.84,
2267
+ "phone": "oov_S"
2268
+ }
2269
+ ],
2270
+ "start": 20.93,
2271
+ "startOffset": 483,
2272
+ "word": "optimally",
2273
+ "idx": 77
2274
+ },
2275
+ {
2276
+ "alignedWord": "remember",
2277
+ "case": "success",
2278
+ "end": 25.88,
2279
+ "endOffset": 502,
2280
+ "phones": [
2281
+ {
2282
+ "duration": 0.08,
2283
+ "phone": "r_B"
2284
+ },
2285
+ {
2286
+ "duration": 0.06,
2287
+ "phone": "iy_I"
2288
+ },
2289
+ {
2290
+ "duration": 0.05,
2291
+ "phone": "m_I"
2292
+ },
2293
+ {
2294
+ "duration": 0.08,
2295
+ "phone": "eh_I"
2296
+ },
2297
+ {
2298
+ "duration": 0.08,
2299
+ "phone": "m_I"
2300
+ },
2301
+ {
2302
+ "duration": 0.05,
2303
+ "phone": "b_I"
2304
+ },
2305
+ {
2306
+ "duration": 0.16,
2307
+ "phone": "er_E"
2308
+ }
2309
+ ],
2310
+ "start": 25.32,
2311
+ "startOffset": 494,
2312
+ "word": "Remember",
2313
+ "idx": 78
2314
+ },
2315
+ {
2316
+ "alignedWord": "a",
2317
+ "case": "success",
2318
+ "end": 26.11,
2319
+ "endOffset": 505,
2320
+ "phones": [
2321
+ {
2322
+ "duration": 0.09,
2323
+ "phone": "ah_S"
2324
+ }
2325
+ ],
2326
+ "start": 26.02,
2327
+ "startOffset": 504,
2328
+ "word": "a",
2329
+ "idx": 79
2330
+ },
2331
+ {
2332
+ "alignedWord": "good",
2333
+ "case": "success",
2334
+ "end": 26.31,
2335
+ "endOffset": 510,
2336
+ "phones": [
2337
+ {
2338
+ "duration": 0.07,
2339
+ "phone": "g_B"
2340
+ },
2341
+ {
2342
+ "duration": 0.05,
2343
+ "phone": "uh_I"
2344
+ },
2345
+ {
2346
+ "duration": 0.08,
2347
+ "phone": "d_E"
2348
+ }
2349
+ ],
2350
+ "start": 26.11,
2351
+ "startOffset": 506,
2352
+ "word": "good",
2353
+ "idx": 80
2354
+ },
2355
+ {
2356
+ "alignedWord": "warm",
2357
+ "case": "success",
2358
+ "end": 26.509998999999997,
2359
+ "endOffset": 515,
2360
+ "phones": [
2361
+ {
2362
+ "duration": 0.06,
2363
+ "phone": "w_B"
2364
+ },
2365
+ {
2366
+ "duration": 0.03,
2367
+ "phone": "ao_I"
2368
+ },
2369
+ {
2370
+ "duration": 0.05,
2371
+ "phone": "r_I"
2372
+ },
2373
+ {
2374
+ "duration": 0.06,
2375
+ "phone": "m_E"
2376
+ }
2377
+ ],
2378
+ "start": 26.309998999999998,
2379
+ "startOffset": 511,
2380
+ "word": "warm",
2381
+ "idx": 81
2382
+ },
2383
+ {
2384
+ "alignedWord": "up",
2385
+ "case": "success",
2386
+ "end": 26.659999999999997,
2387
+ "endOffset": 518,
2388
+ "phones": [
2389
+ {
2390
+ "duration": 0.08,
2391
+ "phone": "ah_B"
2392
+ },
2393
+ {
2394
+ "duration": 0.07,
2395
+ "phone": "p_E"
2396
+ }
2397
+ ],
2398
+ "start": 26.509999999999998,
2399
+ "startOffset": 516,
2400
+ "word": "up",
2401
+ "idx": 82
2402
+ },
2403
+ {
2404
+ "alignedWord": "session",
2405
+ "case": "success",
2406
+ "end": 27.03,
2407
+ "endOffset": 526,
2408
+ "phones": [
2409
+ {
2410
+ "duration": 0.07,
2411
+ "phone": "s_B"
2412
+ },
2413
+ {
2414
+ "duration": 0.07,
2415
+ "phone": "eh_I"
2416
+ },
2417
+ {
2418
+ "duration": 0.08,
2419
+ "phone": "sh_I"
2420
+ },
2421
+ {
2422
+ "duration": 0.07,
2423
+ "phone": "ah_I"
2424
+ },
2425
+ {
2426
+ "duration": 0.08,
2427
+ "phone": "n_E"
2428
+ }
2429
+ ],
2430
+ "start": 26.66,
2431
+ "startOffset": 519,
2432
+ "word": "session",
2433
+ "idx": 83
2434
+ },
2435
+ {
2436
+ "alignedWord": "can",
2437
+ "case": "success",
2438
+ "end": 27.17,
2439
+ "endOffset": 530,
2440
+ "phones": [
2441
+ {
2442
+ "duration": 0.07,
2443
+ "phone": "k_B"
2444
+ },
2445
+ {
2446
+ "duration": 0.04,
2447
+ "phone": "ah_I"
2448
+ },
2449
+ {
2450
+ "duration": 0.03,
2451
+ "phone": "n_E"
2452
+ }
2453
+ ],
2454
+ "start": 27.03,
2455
+ "startOffset": 527,
2456
+ "word": "can",
2457
+ "idx": 84
2458
+ },
2459
+ {
2460
+ "alignedWord": "make",
2461
+ "case": "success",
2462
+ "end": 27.360000000000003,
2463
+ "endOffset": 535,
2464
+ "phones": [
2465
+ {
2466
+ "duration": 0.05,
2467
+ "phone": "m_B"
2468
+ },
2469
+ {
2470
+ "duration": 0.09,
2471
+ "phone": "ey_I"
2472
+ },
2473
+ {
2474
+ "duration": 0.05,
2475
+ "phone": "k_E"
2476
+ }
2477
+ ],
2478
+ "start": 27.17,
2479
+ "startOffset": 531,
2480
+ "word": "make",
2481
+ "idx": 85
2482
+ },
2483
+ {
2484
+ "alignedWord": "a",
2485
+ "case": "success",
2486
+ "end": 27.4,
2487
+ "endOffset": 537,
2488
+ "phones": [
2489
+ {
2490
+ "duration": 0.04,
2491
+ "phone": "ah_S"
2492
+ }
2493
+ ],
2494
+ "start": 27.36,
2495
+ "startOffset": 536,
2496
+ "word": "a",
2497
+ "idx": 86
2498
+ },
2499
+ {
2500
+ "alignedWord": "significant",
2501
+ "case": "success",
2502
+ "end": 27.9,
2503
+ "endOffset": 549,
2504
+ "phones": [
2505
+ {
2506
+ "duration": 0.06,
2507
+ "phone": "s_B"
2508
+ },
2509
+ {
2510
+ "duration": 0.05,
2511
+ "phone": "ih_I"
2512
+ },
2513
+ {
2514
+ "duration": 0.06,
2515
+ "phone": "g_I"
2516
+ },
2517
+ {
2518
+ "duration": 0.04,
2519
+ "phone": "n_I"
2520
+ },
2521
+ {
2522
+ "duration": 0.04,
2523
+ "phone": "ih_I"
2524
+ },
2525
+ {
2526
+ "duration": 0.05,
2527
+ "phone": "f_I"
2528
+ },
2529
+ {
2530
+ "duration": 0.07,
2531
+ "phone": "ih_I"
2532
+ },
2533
+ {
2534
+ "duration": 0.03,
2535
+ "phone": "k_I"
2536
+ },
2537
+ {
2538
+ "duration": 0.04,
2539
+ "phone": "ah_I"
2540
+ },
2541
+ {
2542
+ "duration": 0.04,
2543
+ "phone": "n_I"
2544
+ },
2545
+ {
2546
+ "duration": 0.02,
2547
+ "phone": "t_E"
2548
+ }
2549
+ ],
2550
+ "start": 27.4,
2551
+ "startOffset": 538,
2552
+ "word": "significant",
2553
+ "idx": 87
2554
+ },
2555
+ {
2556
+ "alignedWord": "difference",
2557
+ "case": "success",
2558
+ "end": 28.299999999999997,
2559
+ "endOffset": 560,
2560
+ "phones": [
2561
+ {
2562
+ "duration": 0.03,
2563
+ "phone": "d_B"
2564
+ },
2565
+ {
2566
+ "duration": 0.1,
2567
+ "phone": "ih_I"
2568
+ },
2569
+ {
2570
+ "duration": 0.07,
2571
+ "phone": "f_I"
2572
+ },
2573
+ {
2574
+ "duration": 0.03,
2575
+ "phone": "r_I"
2576
+ },
2577
+ {
2578
+ "duration": 0.04,
2579
+ "phone": "ah_I"
2580
+ },
2581
+ {
2582
+ "duration": 0.05,
2583
+ "phone": "n_I"
2584
+ },
2585
+ {
2586
+ "duration": 0.08,
2587
+ "phone": "s_E"
2588
+ }
2589
+ ],
2590
+ "start": 27.9,
2591
+ "startOffset": 550,
2592
+ "word": "difference",
2593
+ "idx": 88
2594
+ },
2595
+ {
2596
+ "alignedWord": "in",
2597
+ "case": "success",
2598
+ "end": 28.439998999999997,
2599
+ "endOffset": 563,
2600
+ "phones": [
2601
+ {
2602
+ "duration": 0.07,
2603
+ "phone": "ih_B"
2604
+ },
2605
+ {
2606
+ "duration": 0.06,
2607
+ "phone": "n_E"
2608
+ }
2609
+ ],
2610
+ "start": 28.309998999999998,
2611
+ "startOffset": 561,
2612
+ "word": "in",
2613
+ "idx": 89
2614
+ },
2615
+ {
2616
+ "alignedWord": "your",
2617
+ "case": "success",
2618
+ "end": 28.56,
2619
+ "endOffset": 568,
2620
+ "phones": [
2621
+ {
2622
+ "duration": 0.03,
2623
+ "phone": "y_B"
2624
+ },
2625
+ {
2626
+ "duration": 0.04,
2627
+ "phone": "uh_I"
2628
+ },
2629
+ {
2630
+ "duration": 0.05,
2631
+ "phone": "r_E"
2632
+ }
2633
+ ],
2634
+ "start": 28.439999999999998,
2635
+ "startOffset": 564,
2636
+ "word": "your",
2637
+ "idx": 90
2638
+ },
2639
+ {
2640
+ "alignedWord": "overall",
2641
+ "case": "success",
2642
+ "end": 28.869998999999996,
2643
+ "endOffset": 576,
2644
+ "phones": [
2645
+ {
2646
+ "duration": 0.06,
2647
+ "phone": "ow_B"
2648
+ },
2649
+ {
2650
+ "duration": 0.1,
2651
+ "phone": "v_I"
2652
+ },
2653
+ {
2654
+ "duration": 0.06,
2655
+ "phone": "er_I"
2656
+ },
2657
+ {
2658
+ "duration": 0.03,
2659
+ "phone": "ao_I"
2660
+ },
2661
+ {
2662
+ "duration": 0.06,
2663
+ "phone": "l_E"
2664
+ }
2665
+ ],
2666
+ "start": 28.559998999999998,
2667
+ "startOffset": 569,
2668
+ "word": "overall",
2669
+ "idx": 91
2670
+ },
2671
+ {
2672
+ "alignedWord": "workout",
2673
+ "case": "success",
2674
+ "end": 29.249999999999996,
2675
+ "endOffset": 584,
2676
+ "phones": [
2677
+ {
2678
+ "duration": 0.09,
2679
+ "phone": "w_B"
2680
+ },
2681
+ {
2682
+ "duration": 0.07,
2683
+ "phone": "er_I"
2684
+ },
2685
+ {
2686
+ "duration": 0.08,
2687
+ "phone": "k_I"
2688
+ },
2689
+ {
2690
+ "duration": 0.07,
2691
+ "phone": "aw_I"
2692
+ },
2693
+ {
2694
+ "duration": 0.07,
2695
+ "phone": "t_E"
2696
+ }
2697
+ ],
2698
+ "start": 28.869999999999997,
2699
+ "startOffset": 577,
2700
+ "word": "workout",
2701
+ "idx": 92
2702
+ },
2703
+ {
2704
+ "alignedWord": "performance",
2705
+ "case": "success",
2706
+ "end": 29.93,
2707
+ "endOffset": 596,
2708
+ "phones": [
2709
+ {
2710
+ "duration": 0.06,
2711
+ "phone": "p_B"
2712
+ },
2713
+ {
2714
+ "duration": 0.05,
2715
+ "phone": "er_I"
2716
+ },
2717
+ {
2718
+ "duration": 0.08,
2719
+ "phone": "f_I"
2720
+ },
2721
+ {
2722
+ "duration": 0.05,
2723
+ "phone": "ao_I"
2724
+ },
2725
+ {
2726
+ "duration": 0.05,
2727
+ "phone": "r_I"
2728
+ },
2729
+ {
2730
+ "duration": 0.05,
2731
+ "phone": "m_I"
2732
+ },
2733
+ {
2734
+ "duration": 0.05,
2735
+ "phone": "ah_I"
2736
+ },
2737
+ {
2738
+ "duration": 0.08,
2739
+ "phone": "n_I"
2740
+ },
2741
+ {
2742
+ "duration": 0.21,
2743
+ "phone": "s_E"
2744
+ }
2745
+ ],
2746
+ "start": 29.25,
2747
+ "startOffset": 585,
2748
+ "word": "performance",
2749
+ "idx": 93
2750
+ },
2751
+ {
2752
+ "alignedWord": "so",
2753
+ "case": "success",
2754
+ "end": 30.71,
2755
+ "endOffset": 600,
2756
+ "phones": [
2757
+ {
2758
+ "duration": 0.11,
2759
+ "phone": "s_B"
2760
+ },
2761
+ {
2762
+ "duration": 0.06,
2763
+ "phone": "ow_E"
2764
+ }
2765
+ ],
2766
+ "start": 30.54,
2767
+ "startOffset": 598,
2768
+ "word": "So",
2769
+ "idx": 94
2770
+ },
2771
+ {
2772
+ "alignedWord": "don't",
2773
+ "case": "success",
2774
+ "end": 30.970000000000002,
2775
+ "endOffset": 606,
2776
+ "phones": [
2777
+ {
2778
+ "duration": 0.07,
2779
+ "phone": "d_B"
2780
+ },
2781
+ {
2782
+ "duration": 0.08,
2783
+ "phone": "ow_I"
2784
+ },
2785
+ {
2786
+ "duration": 0.05,
2787
+ "phone": "n_I"
2788
+ },
2789
+ {
2790
+ "duration": 0.06,
2791
+ "phone": "t_E"
2792
+ }
2793
+ ],
2794
+ "start": 30.71,
2795
+ "startOffset": 601,
2796
+ "word": "don't",
2797
+ "idx": 95
2798
+ },
2799
+ {
2800
+ "alignedWord": "forget",
2801
+ "case": "success",
2802
+ "end": 31.239999,
2803
+ "endOffset": 613,
2804
+ "phones": [
2805
+ {
2806
+ "duration": 0.04,
2807
+ "phone": "f_B"
2808
+ },
2809
+ {
2810
+ "duration": 0.05,
2811
+ "phone": "er_I"
2812
+ },
2813
+ {
2814
+ "duration": 0.06,
2815
+ "phone": "g_I"
2816
+ },
2817
+ {
2818
+ "duration": 0.06,
2819
+ "phone": "eh_I"
2820
+ },
2821
+ {
2822
+ "duration": 0.06,
2823
+ "phone": "t_E"
2824
+ }
2825
+ ],
2826
+ "start": 30.969999,
2827
+ "startOffset": 607,
2828
+ "word": "forget",
2829
+ "idx": 96
2830
+ },
2831
+ {
2832
+ "alignedWord": "to",
2833
+ "case": "success",
2834
+ "end": 31.36,
2835
+ "endOffset": 616,
2836
+ "phones": [
2837
+ {
2838
+ "duration": 0.06,
2839
+ "phone": "t_B"
2840
+ },
2841
+ {
2842
+ "duration": 0.05,
2843
+ "phone": "ih_E"
2844
+ }
2845
+ ],
2846
+ "start": 31.25,
2847
+ "startOffset": 614,
2848
+ "word": "to",
2849
+ "idx": 97
2850
+ },
2851
+ {
2852
+ "alignedWord": "take",
2853
+ "case": "success",
2854
+ "end": 31.59,
2855
+ "endOffset": 621,
2856
+ "phones": [
2857
+ {
2858
+ "duration": 0.07,
2859
+ "phone": "t_B"
2860
+ },
2861
+ {
2862
+ "duration": 0.1,
2863
+ "phone": "ey_I"
2864
+ },
2865
+ {
2866
+ "duration": 0.06,
2867
+ "phone": "k_E"
2868
+ }
2869
+ ],
2870
+ "start": 31.36,
2871
+ "startOffset": 617,
2872
+ "word": "take",
2873
+ "idx": 98
2874
+ },
2875
+ {
2876
+ "alignedWord": "the",
2877
+ "case": "success",
2878
+ "end": 31.68,
2879
+ "endOffset": 625,
2880
+ "phones": [
2881
+ {
2882
+ "duration": 0.05,
2883
+ "phone": "dh_B"
2884
+ },
2885
+ {
2886
+ "duration": 0.04,
2887
+ "phone": "ah_E"
2888
+ }
2889
+ ],
2890
+ "start": 31.59,
2891
+ "startOffset": 622,
2892
+ "word": "the",
2893
+ "idx": 99
2894
+ },
2895
+ {
2896
+ "alignedWord": "time",
2897
+ "case": "success",
2898
+ "end": 31.939999000000004,
2899
+ "endOffset": 630,
2900
+ "phones": [
2901
+ {
2902
+ "duration": 0.07,
2903
+ "phone": "t_B"
2904
+ },
2905
+ {
2906
+ "duration": 0.13,
2907
+ "phone": "ay_I"
2908
+ },
2909
+ {
2910
+ "duration": 0.06,
2911
+ "phone": "m_E"
2912
+ }
2913
+ ],
2914
+ "start": 31.679999000000002,
2915
+ "startOffset": 626,
2916
+ "word": "time",
2917
+ "idx": 100
2918
+ },
2919
+ {
2920
+ "alignedWord": "to",
2921
+ "case": "success",
2922
+ "end": 32.08,
2923
+ "endOffset": 633,
2924
+ "phones": [
2925
+ {
2926
+ "duration": 0.07,
2927
+ "phone": "t_B"
2928
+ },
2929
+ {
2930
+ "duration": 0.07,
2931
+ "phone": "uw_E"
2932
+ }
2933
+ ],
2934
+ "start": 31.939999999999998,
2935
+ "startOffset": 631,
2936
+ "word": "to",
2937
+ "idx": 101
2938
+ },
2939
+ {
2940
+ "alignedWord": "warm",
2941
+ "case": "success",
2942
+ "end": 32.3,
2943
+ "endOffset": 638,
2944
+ "phones": [
2945
+ {
2946
+ "duration": 0.05,
2947
+ "phone": "w_B"
2948
+ },
2949
+ {
2950
+ "duration": 0.06,
2951
+ "phone": "ao_I"
2952
+ },
2953
+ {
2954
+ "duration": 0.06,
2955
+ "phone": "r_I"
2956
+ },
2957
+ {
2958
+ "duration": 0.05,
2959
+ "phone": "m_E"
2960
+ }
2961
+ ],
2962
+ "start": 32.08,
2963
+ "startOffset": 634,
2964
+ "word": "warm",
2965
+ "idx": 102
2966
+ },
2967
+ {
2968
+ "alignedWord": "up",
2969
+ "case": "success",
2970
+ "end": 32.409999,
2971
+ "endOffset": 641,
2972
+ "phones": [
2973
+ {
2974
+ "duration": 0.06,
2975
+ "phone": "ah_B"
2976
+ },
2977
+ {
2978
+ "duration": 0.05,
2979
+ "phone": "p_E"
2980
+ }
2981
+ ],
2982
+ "start": 32.299999,
2983
+ "startOffset": 639,
2984
+ "word": "up",
2985
+ "idx": 103
2986
+ },
2987
+ {
2988
+ "alignedWord": "properly",
2989
+ "case": "success",
2990
+ "end": 32.77,
2991
+ "endOffset": 650,
2992
+ "phones": [
2993
+ {
2994
+ "duration": 0.05,
2995
+ "phone": "p_B"
2996
+ },
2997
+ {
2998
+ "duration": 0.02,
2999
+ "phone": "r_I"
3000
+ },
3001
+ {
3002
+ "duration": 0.06,
3003
+ "phone": "aa_I"
3004
+ },
3005
+ {
3006
+ "duration": 0.04,
3007
+ "phone": "p_I"
3008
+ },
3009
+ {
3010
+ "duration": 0.06,
3011
+ "phone": "er_I"
3012
+ },
3013
+ {
3014
+ "duration": 0.05,
3015
+ "phone": "l_I"
3016
+ },
3017
+ {
3018
+ "duration": 0.07,
3019
+ "phone": "iy_E"
3020
+ }
3021
+ ],
3022
+ "start": 32.42,
3023
+ "startOffset": 642,
3024
+ "word": "properly",
3025
+ "idx": 104
3026
+ },
3027
+ {
3028
+ "alignedWord": "before",
3029
+ "case": "success",
3030
+ "end": 33.019999999999996,
3031
+ "endOffset": 657,
3032
+ "phones": [
3033
+ {
3034
+ "duration": 0.04,
3035
+ "phone": "b_B"
3036
+ },
3037
+ {
3038
+ "duration": 0.08,
3039
+ "phone": "ih_I"
3040
+ },
3041
+ {
3042
+ "duration": 0.05,
3043
+ "phone": "f_I"
3044
+ },
3045
+ {
3046
+ "duration": 0.02,
3047
+ "phone": "ao_I"
3048
+ },
3049
+ {
3050
+ "duration": 0.06,
3051
+ "phone": "r_E"
3052
+ }
3053
+ ],
3054
+ "start": 32.769999999999996,
3055
+ "startOffset": 651,
3056
+ "word": "before",
3057
+ "idx": 105
3058
+ },
3059
+ {
3060
+ "alignedWord": "starting",
3061
+ "case": "success",
3062
+ "end": 33.379999999999995,
3063
+ "endOffset": 666,
3064
+ "phones": [
3065
+ {
3066
+ "duration": 0.04,
3067
+ "phone": "s_B"
3068
+ },
3069
+ {
3070
+ "duration": 0.07,
3071
+ "phone": "t_I"
3072
+ },
3073
+ {
3074
+ "duration": 0.06,
3075
+ "phone": "aa_I"
3076
+ },
3077
+ {
3078
+ "duration": 0.01,
3079
+ "phone": "r_I"
3080
+ },
3081
+ {
3082
+ "duration": 0.09,
3083
+ "phone": "t_I"
3084
+ },
3085
+ {
3086
+ "duration": 0.03,
3087
+ "phone": "ih_I"
3088
+ },
3089
+ {
3090
+ "duration": 0.06,
3091
+ "phone": "ng_E"
3092
+ }
3093
+ ],
3094
+ "start": 33.019999999999996,
3095
+ "startOffset": 658,
3096
+ "word": "starting",
3097
+ "idx": 106
3098
+ },
3099
+ {
3100
+ "alignedWord": "your",
3101
+ "case": "success",
3102
+ "end": 33.5,
3103
+ "endOffset": 671,
3104
+ "phones": [
3105
+ {
3106
+ "duration": 0.04,
3107
+ "phone": "y_B"
3108
+ },
3109
+ {
3110
+ "duration": 0.02,
3111
+ "phone": "uh_I"
3112
+ },
3113
+ {
3114
+ "duration": 0.06,
3115
+ "phone": "r_E"
3116
+ }
3117
+ ],
3118
+ "start": 33.38,
3119
+ "startOffset": 667,
3120
+ "word": "your",
3121
+ "idx": 107
3122
+ },
3123
+ {
3124
+ "alignedWord": "<unk>",
3125
+ "case": "success",
3126
+ "end": 33.64,
3127
+ "endOffset": 676,
3128
+ "phones": [
3129
+ {
3130
+ "duration": 0.14,
3131
+ "phone": "oov_S"
3132
+ }
3133
+ ],
3134
+ "start": 33.5,
3135
+ "startOffset": 672,
3136
+ "word": "HIIT",
3137
+ "idx": 108
3138
+ },
3139
+ {
3140
+ "alignedWord": "workout",
3141
+ "case": "success",
3142
+ "end": 34.149999,
3143
+ "endOffset": 684,
3144
+ "phones": [
3145
+ {
3146
+ "duration": 0.1,
3147
+ "phone": "w_B"
3148
+ },
3149
+ {
3150
+ "duration": 0.08,
3151
+ "phone": "er_I"
3152
+ },
3153
+ {
3154
+ "duration": 0.1,
3155
+ "phone": "k_I"
3156
+ },
3157
+ {
3158
+ "duration": 0.1,
3159
+ "phone": "aw_I"
3160
+ },
3161
+ {
3162
+ "duration": 0.09,
3163
+ "phone": "t_E"
3164
+ }
3165
+ ],
3166
+ "start": 33.679999,
3167
+ "startOffset": 677,
3168
+ "word": "workout",
3169
+ "idx": 109
3170
+ }
3171
+ ]
3172
+ }