@remotion/openai-whisper 4.0.217

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.md ADDED
@@ -0,0 +1,49 @@
1
+ # Remotion License
2
+
3
+ In Remotion 5.0, the license will slightly change. [View the changes here](https://github.com/remotion-dev/remotion/pull/3750).
4
+
5
+ ---
6
+
7
+ Depending on the type of your legal entity, you are granted permission to use Remotion for your project. Individuals and small companies are allowed to use Remotion to create videos for free (even commercial), while a company license is required for for-profit organizations of a certain size. This two-tier system was designed to ensure funding for this project while still allowing the source code to be available and the program to be free for most. Read below for the exact terms of use.
8
+
9
+ - [Free license](#free-license)
10
+ - [Company license](#company-license)
11
+
12
+ ## Free license
13
+
14
+ Copyright © 2024 [Remotion](https://www.remotion.dev)
15
+
16
+ ### Eligibility
17
+
18
+ You are eligible to use Remotion for free if you are:
19
+
20
+ - an individual
21
+ - a for-profit organization with up to 3 employees
22
+ - a non-profit or not-for-profit organization
23
+ - evaluating whether Remotion is a good fit, and are not yet using it in a commercial way
24
+
25
+ ### Allowed use cases
26
+
27
+ Permission is hereby granted, free of charge, to any person eligible for the "Free license", to use the software non-commercially or commercially for the purpose of creating videos and images and to modify the software to their own liking, for the purpose of fulfilling their custom use case or to contribute bug fixes or improvements back to Remotion.
28
+
29
+ ### Disallowed use cases
30
+
31
+ It is not allowed to copy or modify Remotion code for the purpose of selling, renting, licensing, relicensing, or sublicensing your own derivate of Remotion.
32
+
33
+ ### Warranty notice
34
+
35
+ The software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and non-infringement. In no event shall the author or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.
36
+
37
+ ### Support
38
+
39
+ Support is provided on a best-we-can-do basis via GitHub Issues and Discord.
40
+
41
+ ## Company license
42
+
43
+ You are required to obtain a company license to use Remotion if you are not within the group of entities eligible for a free license. This license will enable you to use Remotion for the allowed use cases specified in the free license, and give you access to prioritized support (read the [Support Policy](https://www.remotion.dev/docs/support)).
44
+
45
+ Visit [remotion.pro](https://www.remotion.pro/license) for pricing and to buy a license.
46
+
47
+ ### FAQs
48
+
49
+ Are you not sure whether you need a company license because of an edge case? Here are some [frequently asked questions](https://www.remotion.pro/faq).
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # @remotion/openai-whisper
2
+
3
+ Work with the output of the OpenAI Whisper API
4
+
5
+ [![NPM Downloads](https://img.shields.io/npm/dm/@remotion/openai-whisper.svg?style=flat&color=black&label=Downloads)](https://npmcharts.com/compare/@remotion/openai-whisper?minimal=true)
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @remotion/openai-whisper --save-exact
11
+ ```
12
+
13
+ When installing a Remotion package, make sure to align the version of all `remotion` and `@remotion/*` packages to the same version.
14
+ Remove the `^` character from the version number to use the exact version.
15
+
16
+ ## Usage
17
+
18
+ See the [documentation](https://www.remotion.dev/docs/openai-whisper) for more information.
@@ -0,0 +1,2 @@
1
+ export { OpenAiToCaptionsInput, OpenAiToCaptionsOutput, openAiWhisperApiToCaptions, } from './openai-whisper-api-to-captions';
2
+ export { OpenAiVerboseTranscription } from './openai-format';
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.openAiWhisperApiToCaptions = void 0;
4
+ var openai_whisper_api_to_captions_1 = require("./openai-whisper-api-to-captions");
5
+ Object.defineProperty(exports, "openAiWhisperApiToCaptions", { enumerable: true, get: function () { return openai_whisper_api_to_captions_1.openAiWhisperApiToCaptions; } });
@@ -0,0 +1,25 @@
1
+ export interface TranscriptionWord {
2
+ end: number;
3
+ start: number;
4
+ word: string;
5
+ }
6
+ export interface TranscriptionSegment {
7
+ id: number;
8
+ avg_logprob: number;
9
+ compression_ratio: number;
10
+ end: number;
11
+ no_speech_prob: number;
12
+ seek: number;
13
+ start: number;
14
+ temperature: number;
15
+ text: string;
16
+ tokens: Array<number>;
17
+ }
18
+ export interface OpenAiVerboseTranscription {
19
+ duration: number | string;
20
+ task?: string;
21
+ language: string;
22
+ text: string;
23
+ segments?: Array<TranscriptionSegment>;
24
+ words?: Array<TranscriptionWord>;
25
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ import type { Caption } from '@remotion/captions';
2
+ import type { OpenAiVerboseTranscription } from './openai-format';
3
+ export type OpenAiToCaptionsInput = {
4
+ transcription: OpenAiVerboseTranscription;
5
+ };
6
+ export type OpenAiToCaptionsOutput = {
7
+ captions: Caption[];
8
+ };
9
+ export declare const openAiWhisperApiToCaptions: ({ transcription, }: OpenAiToCaptionsInput) => OpenAiToCaptionsOutput;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.openAiWhisperApiToCaptions = void 0;
4
+ const openAiWhisperApiToCaptions = ({ transcription, }) => {
5
+ const captions = [];
6
+ if (!transcription.words) {
7
+ throw new Error('The transcription does need to be been generated with `timestamp_granularities: ["word"]`');
8
+ }
9
+ let remainingText = transcription.text;
10
+ for (const word of transcription.words) {
11
+ const match = new RegExp(`^(^.{0,4})${word.word}([\\?,\\.]{0,3})?`).exec(remainingText);
12
+ if (!match) {
13
+ throw new Error(`Unable to parse punctuation from OpenAI Whisper output. Could not find word "${word.word}" in text "${remainingText.slice(0, 100)}". File an issue under https://remotion.dev/issue to ask for a fix.`);
14
+ }
15
+ const foundText = match[0];
16
+ remainingText = remainingText.slice(foundText.length);
17
+ captions.push({
18
+ confidence: null,
19
+ endMs: word.end * 1000,
20
+ startMs: word.start * 1000,
21
+ text: foundText,
22
+ timestampMs: ((word.start + word.end) / 2) * 1000,
23
+ });
24
+ }
25
+ return { captions };
26
+ };
27
+ exports.openAiWhisperApiToCaptions = openAiWhisperApiToCaptions;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,100 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const bun_test_1 = require("bun:test");
7
+ const fs_1 = __importDefault(require("fs"));
8
+ const openai_1 = __importDefault(require("openai"));
9
+ const path_1 = __importDefault(require("path"));
10
+ const openai_whisper_api_to_captions_1 = require("../openai-whisper-api-to-captions");
11
+ const output_1 = require("./output");
12
+ (0, bun_test_1.test)('Should convert to captions from mock', () => {
13
+ const results = (0, openai_whisper_api_to_captions_1.openAiWhisperApiToCaptions)({ transcription: output_1.testOutput });
14
+ (0, bun_test_1.expect)(results.captions.slice(0, 10)).toEqual([
15
+ {
16
+ confidence: null,
17
+ endMs: 7039.999961853027,
18
+ startMs: 6519.999980926514,
19
+ text: "What's",
20
+ timestampMs: 6779.9999713897705,
21
+ },
22
+ {
23
+ confidence: null,
24
+ endMs: 7559.999942779541,
25
+ startMs: 7039.999961853027,
26
+ text: ' up,',
27
+ timestampMs: 7299.999952316284,
28
+ },
29
+ {
30
+ confidence: null,
31
+ endMs: 7880.000114440918,
32
+ startMs: 7619.999885559082,
33
+ text: ' everybody?',
34
+ timestampMs: 7750,
35
+ },
36
+ {
37
+ confidence: null,
38
+ endMs: 8300.000190734863,
39
+ startMs: 8239.999771118164,
40
+ text: ' This',
41
+ timestampMs: 8269.999980926514,
42
+ },
43
+ {
44
+ confidence: null,
45
+ endMs: 8699.999809265137,
46
+ startMs: 8300.000190734863,
47
+ text: ' is',
48
+ timestampMs: 8500,
49
+ },
50
+ {
51
+ confidence: null,
52
+ endMs: 8899.999618530273,
53
+ startMs: 8699.999809265137,
54
+ text: ' Cortland',
55
+ timestampMs: 8799.999713897705,
56
+ },
57
+ {
58
+ confidence: null,
59
+ endMs: 9159.99984741211,
60
+ startMs: 8899.999618530273,
61
+ text: ' from',
62
+ timestampMs: 9029.999732971191,
63
+ },
64
+ {
65
+ confidence: null,
66
+ endMs: 9560.0004196167,
67
+ startMs: 9159.99984741211,
68
+ text: ' IndieHackers.',
69
+ timestampMs: 9360.000133514404,
70
+ },
71
+ {
72
+ confidence: null,
73
+ endMs: 10000,
74
+ startMs: 9560.0004196167,
75
+ text: 'com',
76
+ timestampMs: 9780.00020980835,
77
+ },
78
+ {
79
+ confidence: null,
80
+ endMs: 10359.999656677246,
81
+ startMs: 10000,
82
+ text: ' and',
83
+ timestampMs: 10179.999828338623,
84
+ },
85
+ ]);
86
+ });
87
+ if (!process.env.CI) {
88
+ (0, bun_test_1.test)('Should convert to captions', async () => {
89
+ const openai = new openai_1.default();
90
+ const transcription = await openai.audio.transcriptions.create({
91
+ file: fs_1.default.createReadStream(path_1.default.join(__dirname, '..', '..', '..', 'template-audiogram', 'public', 'audio.mp3')),
92
+ model: 'whisper-1',
93
+ response_format: 'verbose_json',
94
+ prompt: 'Hello, welcome to my lecture.',
95
+ timestamp_granularities: ['word'],
96
+ });
97
+ const { captions } = (0, openai_whisper_api_to_captions_1.openAiWhisperApiToCaptions)({ transcription });
98
+ (0, bun_test_1.expect)(captions.length).toBeGreaterThan(400);
99
+ }, { timeout: 60000 });
100
+ }
@@ -0,0 +1,11 @@
1
+ export declare const testOutput: {
2
+ task: string;
3
+ language: string;
4
+ duration: number;
5
+ text: string;
6
+ words: {
7
+ word: string;
8
+ start: number;
9
+ end: number;
10
+ }[];
11
+ };
@@ -0,0 +1,512 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.testOutput = void 0;
4
+ exports.testOutput = {
5
+ task: 'transcribe',
6
+ language: 'english',
7
+ duration: 170.3699951171875,
8
+ text: "What's up, everybody? This is Cortland from IndieHackers.com and you're listening to the IndieHackers podcast. More people than ever are building cool stuff online and making a lot of money in the process. And on this show, I sit down with these IndieHackers to discuss the ideas, the opportunities and the strategies they're taking advantage of, so the rest of us can do the same. I'm here with Justin Jackson, the founder of Transistor, which is a very successful podcast hosting company. It's what I'm using to host this podcast and also my other podcast, Brains. Justin, welcome back to IndieHackers. I think this is your third time on the show. Yeah, well, it's good. It's just good to chat with you. It's actually good to chat with any human being these days. Yeah, well, you're particularly fun to talk to because you're very easy to talk to. We have our Twitter DMs back and forth where we share random thoughts on stuff, but it's good to just flow. Yeah, totally. Yeah, I've noticed the change in the way you do the show. When I listen, it's become a lot more conversational. Yeah, well, it's much more fun to have authentic, normal conversations. And there's this idea of a... You're familiar with the concept of an Overton window? It's kind of like, what are you allowed to say? What are you not allowed to say? There's kind of like, in polite society, there's just balance on things. Everybody agrees you're okay, and everybody doesn't agree you're okay. And I think if you have a show or an audience, Twitter account, a newsletter or whatever, you kind of create your own Overton window, meaning that whatever it is that you put out, the people who like it will stick with you, and the people who don't won't. And so you can kind of do whatever you want on your own show, but once you pick something, you're kind of locked into it because now your audience wants that. And so it's always kind of hard to change the format of a podcast show, because it's like, if I've been doing interviews for a long time, and then I'm like, you know what, I want to do more conversational stuff. A lot of people will be like, what the hell? What happened to the interviews? Yeah, what an interesting idea. What's Bon Jovi's Overton window? It's like, everyone wants to hear the same songs over and over again. They don't want anything new, right? You get locked in. Yeah, yeah. And this is a fundamental challenge of life, which is, I do think people need to grow. Businesses need to grow and change and adapt. And people don't like change. But if you don't change, you can recede. Your business can die over time just because it becomes gradually more irrelevant or doesn't respond to current market conditions. And then you as a person, you know, you might...",
9
+ words: [
10
+ { word: "What's", start: 6.519999980926514, end: 7.039999961853027 },
11
+ { word: 'up', start: 7.039999961853027, end: 7.559999942779541 },
12
+ { word: 'everybody', start: 7.619999885559082, end: 7.880000114440918 },
13
+ { word: 'This', start: 8.239999771118164, end: 8.300000190734863 },
14
+ { word: 'is', start: 8.300000190734863, end: 8.699999809265137 },
15
+ { word: 'Cortland', start: 8.699999809265137, end: 8.899999618530273 },
16
+ { word: 'from', start: 8.899999618530273, end: 9.15999984741211 },
17
+ { word: 'IndieHackers', start: 9.15999984741211, end: 9.5600004196167 },
18
+ { word: 'com', start: 9.5600004196167, end: 10 },
19
+ { word: 'and', start: 10, end: 10.359999656677246 },
20
+ { word: "you're", start: 10.359999656677246, end: 10.539999961853027 },
21
+ { word: 'listening', start: 10.539999961853027, end: 10.800000190734863 },
22
+ { word: 'to', start: 10.800000190734863, end: 11.260000228881836 },
23
+ { word: 'the', start: 11.260000228881836, end: 11.539999961853027 },
24
+ { word: 'IndieHackers', start: 11.539999961853027, end: 12 },
25
+ { word: 'podcast', start: 12, end: 12.579999923706055 },
26
+ { word: 'More', start: 13.260000228881836, end: 13.359999656677246 },
27
+ { word: 'people', start: 13.359999656677246, end: 13.539999961853027 },
28
+ { word: 'than', start: 13.539999961853027, end: 13.800000190734863 },
29
+ { word: 'ever', start: 13.800000190734863, end: 13.979999542236328 },
30
+ { word: 'are', start: 13.979999542236328, end: 14.319999694824219 },
31
+ { word: 'building', start: 14.319999694824219, end: 14.539999961853027 },
32
+ { word: 'cool', start: 14.539999961853027, end: 14.899999618530273 },
33
+ { word: 'stuff', start: 14.899999618530273, end: 15.079999923706055 },
34
+ { word: 'online', start: 15.079999923706055, end: 15.399999618530273 },
35
+ { word: 'and', start: 15.399999618530273, end: 15.600000381469727 },
36
+ { word: 'making', start: 15.600000381469727, end: 15.739999771118164 },
37
+ { word: 'a', start: 15.739999771118164, end: 15.979999542236328 },
38
+ { word: 'lot', start: 15.979999542236328, end: 15.979999542236328 },
39
+ { word: 'of', start: 15.979999542236328, end: 16.100000381469727 },
40
+ { word: 'money', start: 16.100000381469727, end: 16.100000381469727 },
41
+ { word: 'in', start: 16.100000381469727, end: 16.280000686645508 },
42
+ { word: 'the', start: 16.280000686645508, end: 16.399999618530273 },
43
+ { word: 'process', start: 16.399999618530273, end: 16.639999389648438 },
44
+ { word: 'And', start: 16.799999237060547, end: 17.15999984741211 },
45
+ { word: 'on', start: 17.15999984741211, end: 17.239999771118164 },
46
+ { word: 'this', start: 17.239999771118164, end: 17.420000076293945 },
47
+ { word: 'show', start: 17.420000076293945, end: 17.520000457763672 },
48
+ { word: 'I', start: 17.540000915527344, end: 17.719999313354492 },
49
+ { word: 'sit', start: 17.719999313354492, end: 17.84000015258789 },
50
+ { word: 'down', start: 17.84000015258789, end: 18 },
51
+ { word: 'with', start: 18, end: 18.139999389648438 },
52
+ { word: 'these', start: 18.139999389648438, end: 18.260000228881836 },
53
+ { word: 'IndieHackers', start: 18.260000228881836, end: 18.600000381469727 },
54
+ { word: 'to', start: 18.600000381469727, end: 19.100000381469727 },
55
+ { word: 'discuss', start: 19.100000381469727, end: 19.440000534057617 },
56
+ { word: 'the', start: 19.440000534057617, end: 19.739999771118164 },
57
+ { word: 'ideas', start: 19.739999771118164, end: 19.959999084472656 },
58
+ { word: 'the', start: 20.200000762939453, end: 20.719999313354492 },
59
+ { word: 'opportunities', start: 20.719999313354492, end: 20.719999313354492 },
60
+ { word: 'and', start: 20.719999313354492, end: 21.280000686645508 },
61
+ { word: 'the', start: 21.5, end: 22.020000457763672 },
62
+ { word: 'strategies', start: 22.020000457763672, end: 22.020000457763672 },
63
+ { word: "they're", start: 22.020000457763672, end: 22.459999084472656 },
64
+ { word: 'taking', start: 22.459999084472656, end: 22.459999084472656 },
65
+ { word: 'advantage', start: 22.459999084472656, end: 22.719999313354492 },
66
+ { word: 'of', start: 22.719999313354492, end: 23.100000381469727 },
67
+ { word: 'so', start: 23.100000381469727, end: 23.479999542236328 },
68
+ { word: 'the', start: 23.479999542236328, end: 23.700000762939453 },
69
+ { word: 'rest', start: 23.700000762939453, end: 23.700000762939453 },
70
+ { word: 'of', start: 23.700000762939453, end: 23.81999969482422 },
71
+ { word: 'us', start: 23.81999969482422, end: 23.899999618530273 },
72
+ { word: 'can', start: 23.899999618530273, end: 24.059999465942383 },
73
+ { word: 'do', start: 24.059999465942383, end: 24.139999389648438 },
74
+ { word: 'the', start: 24.139999389648438, end: 24.399999618530273 },
75
+ { word: 'same', start: 24.399999618530273, end: 24.68000030517578 },
76
+ { word: "I'm", start: 28.799999237060547, end: 29.200000762939453 },
77
+ { word: 'here', start: 29.200000762939453, end: 29.600000381469727 },
78
+ { word: 'with', start: 29.600000381469727, end: 30 },
79
+ { word: 'Justin', start: 30, end: 30 },
80
+ { word: 'Jackson', start: 30, end: 30.299999237060547 },
81
+ { word: 'the', start: 30.420000076293945, end: 30.81999969482422 },
82
+ { word: 'founder', start: 30.81999969482422, end: 30.81999969482422 },
83
+ { word: 'of', start: 30.81999969482422, end: 31.079999923706055 },
84
+ { word: 'Transistor', start: 31.079999923706055, end: 31.479999542236328 },
85
+ { word: 'which', start: 32.18000030517578, end: 32.29999923706055 },
86
+ { word: 'is', start: 32.29999923706055, end: 32.400001525878906 },
87
+ { word: 'a', start: 32.400001525878906, end: 32.52000045776367 },
88
+ { word: 'very', start: 32.52000045776367, end: 32.900001525878906 },
89
+ { word: 'successful', start: 32.900001525878906, end: 33.279998779296875 },
90
+ { word: 'podcast', start: 33.720001220703125, end: 34.119998931884766 },
91
+ { word: 'hosting', start: 34.119998931884766, end: 34.439998626708984 },
92
+ { word: 'company', start: 34.439998626708984, end: 34.70000076293945 },
93
+ { word: "It's", start: 34.79999923706055, end: 34.91999816894531 },
94
+ { word: 'what', start: 34.91999816894531, end: 34.959999084472656 },
95
+ { word: "I'm", start: 34.959999084472656, end: 35.08000183105469 },
96
+ { word: 'using', start: 35.08000183105469, end: 35.18000030517578 },
97
+ { word: 'to', start: 35.18000030517578, end: 35.5 },
98
+ { word: 'host', start: 35.5, end: 35.5 },
99
+ { word: 'this', start: 35.5, end: 36.15999984741211 },
100
+ { word: 'podcast', start: 36.15999984741211, end: 36.15999984741211 },
101
+ { word: 'and', start: 36.15999984741211, end: 37.099998474121094 },
102
+ { word: 'also', start: 37.099998474121094, end: 37.279998779296875 },
103
+ { word: 'my', start: 37.279998779296875, end: 37.439998626708984 },
104
+ { word: 'other', start: 37.439998626708984, end: 37.58000183105469 },
105
+ { word: 'podcast', start: 37.58000183105469, end: 37.91999816894531 },
106
+ { word: 'Brains', start: 38.279998779296875, end: 38.279998779296875 },
107
+ { word: 'Justin', start: 39.15999984741211, end: 39.20000076293945 },
108
+ { word: 'welcome', start: 39.400001525878906, end: 39.52000045776367 },
109
+ { word: 'back', start: 39.52000045776367, end: 39.97999954223633 },
110
+ { word: 'to', start: 39.97999954223633, end: 40.119998931884766 },
111
+ { word: 'IndieHackers', start: 40.119998931884766, end: 40.41999816894531 },
112
+ { word: 'I', start: 40.47999954223633, end: 40.65999984741211 },
113
+ { word: 'think', start: 40.65999984741211, end: 40.65999984741211 },
114
+ { word: 'this', start: 40.65999984741211, end: 40.81999969482422 },
115
+ { word: 'is', start: 40.81999969482422, end: 40.86000061035156 },
116
+ { word: 'your', start: 40.86000061035156, end: 41.099998474121094 },
117
+ { word: 'third', start: 41.099998474121094, end: 41.13999938964844 },
118
+ { word: 'time', start: 41.13999938964844, end: 41.400001525878906 },
119
+ { word: 'on', start: 41.400001525878906, end: 41.52000045776367 },
120
+ { word: 'the', start: 41.52000045776367, end: 41.68000030517578 },
121
+ { word: 'show', start: 41.68000030517578, end: 41.79999923706055 },
122
+ { word: 'Yeah', start: 43.20000076293945, end: 43.599998474121094 },
123
+ { word: 'well', start: 43.599998474121094, end: 44 },
124
+ { word: "it's", start: 44, end: 44.13999938964844 },
125
+ { word: 'good', start: 44.13999938964844, end: 44.36000061035156 },
126
+ { word: "It's", start: 44.439998626708984, end: 44.70000076293945 },
127
+ { word: 'just', start: 44.70000076293945, end: 44.900001525878906 },
128
+ { word: 'good', start: 44.900001525878906, end: 45.119998931884766 },
129
+ { word: 'to', start: 45.119998931884766, end: 45.81999969482422 },
130
+ { word: 'chat', start: 45.81999969482422, end: 45.81999969482422 },
131
+ { word: 'with', start: 45.81999969482422, end: 46.5 },
132
+ { word: 'you', start: 46.5, end: 46.63999938964844 },
133
+ { word: "It's", start: 46.7599983215332, end: 47.15999984741211 },
134
+ { word: 'actually', start: 47.15999984741211, end: 47.36000061035156 },
135
+ { word: 'good', start: 47.36000061035156, end: 47.58000183105469 },
136
+ { word: 'to', start: 47.58000183105469, end: 48.060001373291016 },
137
+ { word: 'chat', start: 48.060001373291016, end: 48.060001373291016 },
138
+ { word: 'with', start: 48.060001373291016, end: 48.15999984741211 },
139
+ { word: 'any', start: 48.15999984741211, end: 48.380001068115234 },
140
+ { word: 'human', start: 48.380001068115234, end: 48.52000045776367 },
141
+ { word: 'being', start: 48.52000045776367, end: 48.84000015258789 },
142
+ { word: 'these', start: 48.84000015258789, end: 49.36000061035156 },
143
+ { word: 'days', start: 49.36000061035156, end: 49.560001373291016 },
144
+ { word: 'Yeah', start: 50.939998626708984, end: 51.34000015258789 },
145
+ { word: 'well', start: 51.34000015258789, end: 51.7400016784668 },
146
+ { word: "you're", start: 51.7400016784668, end: 52.060001373291016 },
147
+ { word: 'particularly', start: 52.060001373291016, end: 52.31999969482422 },
148
+ { word: 'fun', start: 52.31999969482422, end: 52.5 },
149
+ { word: 'to', start: 52.5, end: 52.7400016784668 },
150
+ { word: 'talk', start: 52.7400016784668, end: 52.7599983215332 },
151
+ { word: 'to', start: 52.7599983215332, end: 52.880001068115234 },
152
+ { word: 'because', start: 52.880001068115234, end: 53.08000183105469 },
153
+ { word: "you're", start: 53.08000183105469, end: 53.18000030517578 },
154
+ { word: 'very', start: 53.18000030517578, end: 53.380001068115234 },
155
+ { word: 'easy', start: 53.380001068115234, end: 53.540000915527344 },
156
+ { word: 'to', start: 53.540000915527344, end: 53.7400016784668 },
157
+ { word: 'talk', start: 53.7400016784668, end: 53.86000061035156 },
158
+ { word: 'to', start: 53.86000061035156, end: 54.040000915527344 },
159
+ { word: 'We', start: 54.040000915527344, end: 54.400001525878906 },
160
+ { word: 'have', start: 54.400001525878906, end: 54.599998474121094 },
161
+ { word: 'our', start: 54.599998474121094, end: 54.7599983215332 },
162
+ { word: 'Twitter', start: 54.7599983215332, end: 55.13999938964844 },
163
+ { word: 'DMs', start: 55.13999938964844, end: 55.619998931884766 },
164
+ { word: 'back', start: 55.619998931884766, end: 55.779998779296875 },
165
+ { word: 'and', start: 55.779998779296875, end: 56.060001373291016 },
166
+ { word: 'forth', start: 56.060001373291016, end: 56.08000183105469 },
167
+ { word: 'where', start: 56.08000183105469, end: 56.31999969482422 },
168
+ { word: 'we', start: 56.31999969482422, end: 56.36000061035156 },
169
+ { word: 'share', start: 56.36000061035156, end: 56.560001373291016 },
170
+ { word: 'random', start: 56.560001373291016, end: 57.439998626708984 },
171
+ { word: 'thoughts', start: 57.439998626708984, end: 57.7599983215332 },
172
+ { word: 'on', start: 57.7599983215332, end: 58.220001220703125 },
173
+ { word: 'stuff', start: 58.220001220703125, end: 58.220001220703125 },
174
+ { word: 'but', start: 58.2599983215332, end: 58.380001068115234 },
175
+ { word: "it's", start: 58.380001068115234, end: 58.5 },
176
+ { word: 'good', start: 58.5, end: 58.619998931884766 },
177
+ { word: 'to', start: 58.619998931884766, end: 58.7400016784668 },
178
+ { word: 'just', start: 58.7400016784668, end: 58.91999816894531 },
179
+ { word: 'flow', start: 58.91999816894531, end: 59.63999938964844 },
180
+ { word: 'Yeah', start: 60.2400016784668, end: 60.380001068115234 },
181
+ { word: 'totally', start: 60.380001068115234, end: 60.7599983215332 },
182
+ { word: 'Yeah', start: 60.880001068115234, end: 61.279998779296875 },
183
+ { word: "I've", start: 61.279998779296875, end: 61.68000030517578 },
184
+ { word: 'noticed', start: 61.68000030517578, end: 61.7599983215332 },
185
+ { word: 'the', start: 61.7599983215332, end: 62.040000915527344 },
186
+ { word: 'change', start: 62.040000915527344, end: 62.5 },
187
+ { word: 'in', start: 62.5, end: 63.400001525878906 },
188
+ { word: 'the', start: 63.400001525878906, end: 63.52000045776367 },
189
+ { word: 'way', start: 63.52000045776367, end: 63.63999938964844 },
190
+ { word: 'you', start: 63.63999938964844, end: 63.7599983215332 },
191
+ { word: 'do', start: 63.7599983215332, end: 63.880001068115234 },
192
+ { word: 'the', start: 63.880001068115234, end: 64.08000183105469 },
193
+ { word: 'show', start: 64.08000183105469, end: 64.37999725341797 },
194
+ { word: 'When', start: 64.73999786376953, end: 64.83999633789062 },
195
+ { word: 'I', start: 64.83999633789062, end: 65 },
196
+ { word: 'listen', start: 65, end: 65.13999938964844 },
197
+ { word: "it's", start: 65.30000305175781, end: 65.55999755859375 },
198
+ { word: 'become', start: 65.55999755859375, end: 65.77999877929688 },
199
+ { word: 'a', start: 65.77999877929688, end: 65.9800033569336 },
200
+ { word: 'lot', start: 65.9800033569336, end: 66.04000091552734 },
201
+ { word: 'more', start: 66.04000091552734, end: 66.36000061035156 },
202
+ { word: 'conversational', start: 66.36000061035156, end: 66.95999908447266 },
203
+ { word: 'Yeah', start: 67.81999969482422, end: 68.22000122070312 },
204
+ { word: 'well', start: 68.22000122070312, end: 68.45999908447266 },
205
+ { word: "it's", start: 68.45999908447266, end: 68.5199966430664 },
206
+ { word: 'much', start: 68.5199966430664, end: 68.66000366210938 },
207
+ { word: 'more', start: 68.66000366210938, end: 68.9000015258789 },
208
+ { word: 'fun', start: 68.9000015258789, end: 68.95999908447266 },
209
+ { word: 'to', start: 68.95999908447266, end: 69.12000274658203 },
210
+ { word: 'have', start: 69.12000274658203, end: 69.27999877929688 },
211
+ { word: 'authentic', start: 69.27999877929688, end: 70.13999938964844 },
212
+ { word: 'normal', start: 70.5, end: 70.5 },
213
+ { word: 'conversations', start: 70.5, end: 71.05999755859375 },
214
+ { word: 'And', start: 71.81999969482422, end: 71.9000015258789 },
215
+ { word: "there's", start: 71.9000015258789, end: 72.0199966430664 },
216
+ { word: 'this', start: 72.0199966430664, end: 72.31999969482422 },
217
+ { word: 'idea', start: 72.31999969482422, end: 72.63999938964844 },
218
+ { word: 'of', start: 72.63999938964844, end: 73.0199966430664 },
219
+ { word: 'a', start: 73.0199966430664, end: 73.22000122070312 },
220
+ { word: "You're", start: 74.81999969482422, end: 75.22000122070312 },
221
+ { word: 'familiar', start: 75.22000122070312, end: 75.22000122070312 },
222
+ { word: 'with', start: 75.22000122070312, end: 75.36000061035156 },
223
+ { word: 'the', start: 75.36000061035156, end: 75.54000091552734 },
224
+ { word: 'concept', start: 75.54000091552734, end: 75.63999938964844 },
225
+ { word: 'of', start: 75.63999938964844, end: 75.87999725341797 },
226
+ { word: 'an', start: 75.87999725341797, end: 76.30000305175781 },
227
+ { word: 'Overton', start: 76.30000305175781, end: 76.66000366210938 },
228
+ { word: 'window', start: 76.66000366210938, end: 76.95999908447266 },
229
+ { word: "It's", start: 77.72000122070312, end: 78.12000274658203 },
230
+ { word: 'kind', start: 78.12000274658203, end: 78.27999877929688 },
231
+ { word: 'of', start: 78.27999877929688, end: 78.31999969482422 },
232
+ { word: 'like', start: 78.31999969482422, end: 78.5199966430664 },
233
+ { word: 'what', start: 78.5199966430664, end: 78.5999984741211 },
234
+ { word: 'are', start: 78.5999984741211, end: 78.68000030517578 },
235
+ { word: 'you', start: 78.68000030517578, end: 78.83999633789062 },
236
+ { word: 'allowed', start: 78.83999633789062, end: 79.0999984741211 },
237
+ { word: 'to', start: 79.0999984741211, end: 79.54000091552734 },
238
+ { word: 'say', start: 79.54000091552734, end: 79.5999984741211 },
239
+ { word: 'What', start: 79.69999694824219, end: 79.81999969482422 },
240
+ { word: 'are', start: 79.81999969482422, end: 79.91999816894531 },
241
+ { word: 'you', start: 79.91999816894531, end: 79.9800033569336 },
242
+ { word: 'not', start: 79.9800033569336, end: 80.19999694824219 },
243
+ { word: 'allowed', start: 80.19999694824219, end: 80.30000305175781 },
244
+ { word: 'to', start: 80.30000305175781, end: 80.72000122070312 },
245
+ { word: 'say', start: 80.72000122070312, end: 80.77999877929688 },
246
+ { word: "There's", start: 81.33999633789062, end: 81.77999877929688 },
247
+ { word: 'kind', start: 81.77999877929688, end: 81.9000015258789 },
248
+ { word: 'of', start: 81.9000015258789, end: 82.0199966430664 },
249
+ { word: 'like', start: 82.0199966430664, end: 82.30000305175781 },
250
+ { word: 'in', start: 82.30000305175781, end: 82.58000183105469 },
251
+ { word: 'polite', start: 82.58000183105469, end: 82.83999633789062 },
252
+ { word: 'society', start: 82.83999633789062, end: 83.33999633789062 },
253
+ { word: "there's", start: 83.5199966430664, end: 83.55999755859375 },
254
+ { word: 'just', start: 83.55999755859375, end: 83.77999877929688 },
255
+ { word: 'balance', start: 83.77999877929688, end: 84.18000030517578 },
256
+ { word: 'on', start: 84.18000030517578, end: 84.33999633789062 },
257
+ { word: 'things', start: 84.33999633789062, end: 84.66000366210938 },
258
+ { word: 'Everybody', start: 84.72000122070312, end: 85 },
259
+ { word: 'agrees', start: 85, end: 85.31999969482422 },
260
+ { word: "you're", start: 85.31999969482422, end: 85.5199966430664 },
261
+ { word: 'okay', start: 85.5199966430664, end: 85.73999786376953 },
262
+ { word: 'and', start: 85.87999725341797, end: 86.0199966430664 },
263
+ { word: 'everybody', start: 86.0199966430664, end: 86.19999694824219 },
264
+ { word: "doesn't", start: 86.19999694824219, end: 86.5199966430664 },
265
+ { word: 'agree', start: 86.5199966430664, end: 86.73999786376953 },
266
+ { word: "you're", start: 86.73999786376953, end: 86.86000061035156 },
267
+ { word: 'okay', start: 86.86000061035156, end: 87.30000305175781 },
268
+ { word: 'And', start: 87.5199966430664, end: 87.91999816894531 },
269
+ { word: 'I', start: 87.91999816894531, end: 88 },
270
+ { word: 'think', start: 88, end: 88.05999755859375 },
271
+ { word: 'if', start: 88.05999755859375, end: 88.18000030517578 },
272
+ { word: 'you', start: 88.18000030517578, end: 88.26000213623047 },
273
+ { word: 'have', start: 88.26000213623047, end: 88.37999725341797 },
274
+ { word: 'a', start: 88.37999725341797, end: 88.77999877929688 },
275
+ { word: 'show', start: 88.77999877929688, end: 89.0999984741211 },
276
+ { word: 'or', start: 89.0999984741211, end: 89.4800033569336 },
277
+ { word: 'an', start: 89.4800033569336, end: 89.80000305175781 },
278
+ { word: 'audience', start: 89.80000305175781, end: 90.18000030517578 },
279
+ { word: 'Twitter', start: 90.4800033569336, end: 90.5999984741211 },
280
+ { word: 'account', start: 90.5999984741211, end: 90.83999633789062 },
281
+ { word: 'a', start: 90.9800033569336, end: 91.19999694824219 },
282
+ { word: 'newsletter', start: 91.19999694824219, end: 91.19999694824219 },
283
+ { word: 'or', start: 91.19999694824219, end: 91.37999725341797 },
284
+ { word: 'whatever', start: 91.37999725341797, end: 91.63999938964844 },
285
+ { word: 'you', start: 92.19999694824219, end: 92.37999725341797 },
286
+ { word: 'kind', start: 92.37999725341797, end: 92.5 },
287
+ { word: 'of', start: 92.5, end: 92.83999633789062 },
288
+ { word: 'create', start: 92.83999633789062, end: 92.83999633789062 },
289
+ { word: 'your', start: 92.83999633789062, end: 93.04000091552734 },
290
+ { word: 'own', start: 93.04000091552734, end: 93.41999816894531 },
291
+ { word: 'Overton', start: 93.41999816894531, end: 93.73999786376953 },
292
+ { word: 'window', start: 93.73999786376953, end: 93.94000244140625 },
293
+ { word: 'meaning', start: 94.08000183105469, end: 94.27999877929688 },
294
+ { word: 'that', start: 94.27999877929688, end: 94.62000274658203 },
295
+ { word: 'whatever', start: 94.62000274658203, end: 95.23999786376953 },
296
+ { word: 'it', start: 95.23999786376953, end: 95.4800033569336 },
297
+ { word: 'is', start: 95.4800033569336, end: 95.68000030517578 },
298
+ { word: 'that', start: 95.68000030517578, end: 95.86000061035156 },
299
+ { word: 'you', start: 95.86000061035156, end: 96.0199966430664 },
300
+ { word: 'put', start: 96.0199966430664, end: 96.16000366210938 },
301
+ { word: 'out', start: 96.16000366210938, end: 96.45999908447266 },
302
+ { word: 'the', start: 97.0199966430664, end: 97.18000030517578 },
303
+ { word: 'people', start: 97.18000030517578, end: 97.27999877929688 },
304
+ { word: 'who', start: 97.27999877929688, end: 97.44000244140625 },
305
+ { word: 'like', start: 97.44000244140625, end: 97.5999984741211 },
306
+ { word: 'it', start: 97.5999984741211, end: 97.72000122070312 },
307
+ { word: 'will', start: 97.72000122070312, end: 97.83999633789062 },
308
+ { word: 'stick', start: 97.83999633789062, end: 97.94000244140625 },
309
+ { word: 'with', start: 97.94000244140625, end: 98.13999938964844 },
310
+ { word: 'you', start: 98.13999938964844, end: 98.37999725341797 },
311
+ { word: 'and', start: 98.41999816894531, end: 98.55999755859375 },
312
+ { word: 'the', start: 98.55999755859375, end: 98.63999938964844 },
313
+ { word: 'people', start: 98.63999938964844, end: 98.72000122070312 },
314
+ { word: 'who', start: 98.72000122070312, end: 98.86000061035156 },
315
+ { word: "don't", start: 98.86000061035156, end: 99.23999786376953 },
316
+ { word: "won't", start: 99.23999786376953, end: 99.54000091552734 },
317
+ { word: 'And', start: 100.26000213623047, end: 100.41999816894531 },
318
+ { word: 'so', start: 100.41999816894531, end: 100.63999938964844 },
319
+ { word: 'you', start: 100.63999938964844, end: 100.83999633789062 },
320
+ { word: 'can', start: 100.83999633789062, end: 101 },
321
+ { word: 'kind', start: 101, end: 101.23999786376953 },
322
+ { word: 'of', start: 101.23999786376953, end: 101.4000015258789 },
323
+ { word: 'do', start: 101.4000015258789, end: 101.54000091552734 },
324
+ { word: 'whatever', start: 101.54000091552734, end: 101.76000213623047 },
325
+ { word: 'you', start: 101.76000213623047, end: 102 },
326
+ { word: 'want', start: 102, end: 102.13999938964844 },
327
+ { word: 'on', start: 102.13999938964844, end: 102.31999969482422 },
328
+ { word: 'your', start: 102.31999969482422, end: 102.44000244140625 },
329
+ { word: 'own', start: 102.44000244140625, end: 102.77999877929688 },
330
+ { word: 'show', start: 102.77999877929688, end: 103.08000183105469 },
331
+ { word: 'but', start: 103.23999786376953, end: 103.41999816894531 },
332
+ { word: 'once', start: 103.41999816894531, end: 104.05999755859375 },
333
+ { word: 'you', start: 104.05999755859375, end: 104.30000305175781 },
334
+ { word: 'pick', start: 104.30000305175781, end: 104.91999816894531 },
335
+ { word: 'something', start: 104.91999816894531, end: 105.30000305175781 },
336
+ { word: "you're", start: 106.0999984741211, end: 106.37999725341797 },
337
+ { word: 'kind', start: 106.37999725341797, end: 106.5199966430664 },
338
+ { word: 'of', start: 106.5199966430664, end: 106.80000305175781 },
339
+ { word: 'locked', start: 106.80000305175781, end: 106.80000305175781 },
340
+ { word: 'into', start: 106.80000305175781, end: 107.04000091552734 },
341
+ { word: 'it', start: 107.04000091552734, end: 107.44000244140625 },
342
+ { word: 'because', start: 107.44000244140625, end: 107.5999984741211 },
343
+ { word: 'now', start: 107.5999984741211, end: 107.83999633789062 },
344
+ { word: 'your', start: 107.83999633789062, end: 108.08000183105469 },
345
+ { word: 'audience', start: 108.08000183105469, end: 108.26000213623047 },
346
+ { word: 'wants', start: 108.26000213623047, end: 108.63999938964844 },
347
+ { word: 'that', start: 108.63999938964844, end: 109 },
348
+ { word: 'And', start: 109, end: 109.41999816894531 },
349
+ { word: 'so', start: 109.41999816894531, end: 109.54000091552734 },
350
+ { word: "it's", start: 109.54000091552734, end: 109.69999694824219 },
351
+ { word: 'always', start: 109.69999694824219, end: 109.86000061035156 },
352
+ { word: 'kind', start: 109.86000061035156, end: 110.05999755859375 },
353
+ { word: 'of', start: 110.05999755859375, end: 110.12000274658203 },
354
+ { word: 'hard', start: 110.12000274658203, end: 110.19999694824219 },
355
+ { word: 'to', start: 110.19999694824219, end: 110.44000244140625 },
356
+ { word: 'change', start: 110.44000244140625, end: 110.76000213623047 },
357
+ { word: 'the', start: 110.76000213623047, end: 111.0199966430664 },
358
+ { word: 'format', start: 111.0199966430664, end: 111.16000366210938 },
359
+ { word: 'of', start: 111.16000366210938, end: 111.27999877929688 },
360
+ { word: 'a', start: 111.27999877929688, end: 111.5 },
361
+ { word: 'podcast', start: 111.5, end: 111.69999694824219 },
362
+ { word: 'show', start: 111.69999694824219, end: 111.94000244140625 },
363
+ { word: 'because', start: 111.95999908447266, end: 112.08000183105469 },
364
+ { word: "it's", start: 112.08000183105469, end: 112.18000030517578 },
365
+ { word: 'like', start: 112.18000030517578, end: 112.30000305175781 },
366
+ { word: 'if', start: 112.44000244140625, end: 112.44000244140625 },
367
+ { word: "I've", start: 112.44000244140625, end: 112.58000183105469 },
368
+ { word: 'been', start: 112.58000183105469, end: 112.62000274658203 },
369
+ { word: 'doing', start: 112.62000274658203, end: 112.83999633789062 },
370
+ { word: 'interviews', start: 112.83999633789062, end: 113.04000091552734 },
371
+ { word: 'for', start: 113.04000091552734, end: 113.27999877929688 },
372
+ { word: 'a', start: 113.27999877929688, end: 113.54000091552734 },
373
+ { word: 'long', start: 113.54000091552734, end: 113.54000091552734 },
374
+ { word: 'time', start: 113.54000091552734, end: 113.83999633789062 },
375
+ { word: 'and', start: 113.9000015258789, end: 114.31999969482422 },
376
+ { word: 'then', start: 114.31999969482422, end: 114.41999816894531 },
377
+ { word: "I'm", start: 114.41999816894531, end: 114.4800033569336 },
378
+ { word: 'like', start: 114.4800033569336, end: 114.55999755859375 },
379
+ { word: 'you', start: 114.58000183105469, end: 114.68000030517578 },
380
+ { word: 'know', start: 114.68000030517578, end: 114.72000122070312 },
381
+ { word: 'what', start: 114.72000122070312, end: 114.83999633789062 },
382
+ { word: 'I', start: 114.86000061035156, end: 114.91999816894531 },
383
+ { word: 'want', start: 114.91999816894531, end: 115.0199966430664 },
384
+ { word: 'to', start: 115.0199966430664, end: 115.08000183105469 },
385
+ { word: 'do', start: 115.08000183105469, end: 115.19999694824219 },
386
+ { word: 'more', start: 115.19999694824219, end: 115.37999725341797 },
387
+ {
388
+ word: 'conversational',
389
+ start: 115.37999725341797,
390
+ end: 115.87999725341797,
391
+ },
392
+ { word: 'stuff', start: 115.87999725341797, end: 116.22000122070312 },
393
+ { word: 'A', start: 116.66000366210938, end: 116.91999816894531 },
394
+ { word: 'lot', start: 116.91999816894531, end: 116.94000244140625 },
395
+ { word: 'of', start: 116.94000244140625, end: 117 },
396
+ { word: 'people', start: 117, end: 117.13999938964844 },
397
+ { word: 'will', start: 117.13999938964844, end: 117.23999786376953 },
398
+ { word: 'be', start: 117.23999786376953, end: 117.23999786376953 },
399
+ { word: 'like', start: 117.23999786376953, end: 117.36000061035156 },
400
+ { word: 'what', start: 117.45999908447266, end: 117.55999755859375 },
401
+ { word: 'the', start: 117.55999755859375, end: 117.86000061035156 },
402
+ { word: 'hell', start: 117.86000061035156, end: 117.87999725341797 },
403
+ { word: 'What', start: 118.05999755859375, end: 118.31999969482422 },
404
+ { word: 'happened', start: 118.31999969482422, end: 118.55999755859375 },
405
+ { word: 'to', start: 118.55999755859375, end: 118.68000030517578 },
406
+ { word: 'the', start: 118.68000030517578, end: 118.77999877929688 },
407
+ { word: 'interviews', start: 118.77999877929688, end: 119.13999938964844 },
408
+ { word: 'Yeah', start: 120.37999725341797, end: 120.55999755859375 },
409
+ { word: 'what', start: 120.55999755859375, end: 120.81999969482422 },
410
+ { word: 'an', start: 120.81999969482422, end: 121.08000183105469 },
411
+ { word: 'interesting', start: 121.08000183105469, end: 121.33999633789062 },
412
+ { word: 'idea', start: 121.33999633789062, end: 121.87999725341797 },
413
+ { word: "What's", start: 123.69999694824219, end: 124.0999984741211 },
414
+ { word: 'Bon', start: 124.0999984741211, end: 124.5 },
415
+ { word: "Jovi's", start: 124.5, end: 124.76000213623047 },
416
+ { word: 'Overton', start: 124.76000213623047, end: 125.0999984741211 },
417
+ { word: 'window', start: 125.0999984741211, end: 125.4000015258789 },
418
+ { word: "It's", start: 125.63999938964844, end: 125.81999969482422 },
419
+ { word: 'like', start: 125.81999969482422, end: 126.27999877929688 },
420
+ { word: 'everyone', start: 126.27999877929688, end: 126.5 },
421
+ { word: 'wants', start: 126.5, end: 126.73999786376953 },
422
+ { word: 'to', start: 126.73999786376953, end: 127 },
423
+ { word: 'hear', start: 127, end: 127.19999694824219 },
424
+ { word: 'the', start: 127.19999694824219, end: 127.94000244140625 },
425
+ { word: 'same', start: 127.94000244140625, end: 128.16000366210938 },
426
+ { word: 'songs', start: 128.16000366210938, end: 128.55999755859375 },
427
+ { word: 'over', start: 128.55999755859375, end: 129.0399932861328 },
428
+ { word: 'and', start: 129.0399932861328, end: 129.22000122070312 },
429
+ { word: 'over', start: 129.22000122070312, end: 129.36000061035156 },
430
+ { word: 'again', start: 129.36000061035156, end: 129.52000427246094 },
431
+ { word: 'They', start: 129.63999938964844, end: 129.63999938964844 },
432
+ { word: "don't", start: 129.63999938964844, end: 129.74000549316406 },
433
+ { word: 'want', start: 129.74000549316406, end: 129.8800048828125 },
434
+ { word: 'anything', start: 129.8800048828125, end: 132.86000061035156 },
435
+ { word: 'new', start: 132.86000061035156, end: 133.36000061035156 },
436
+ { word: 'right', start: 133.36000061035156, end: 133.63999938964844 },
437
+ { word: 'You', start: 133.63999938964844, end: 133.77999877929688 },
438
+ { word: 'get', start: 133.77999877929688, end: 133.89999389648438 },
439
+ { word: 'locked', start: 133.89999389648438, end: 134.10000610351562 },
440
+ { word: 'in', start: 134.10000610351562, end: 134.52000427246094 },
441
+ { word: 'Yeah', start: 136.44000244140625, end: 136.83999633789062 },
442
+ { word: 'yeah', start: 136.83999633789062, end: 137.24000549316406 },
443
+ { word: 'And', start: 137.24000549316406, end: 137.6199951171875 },
444
+ { word: 'this', start: 137.6199951171875, end: 138.82000732421875 },
445
+ { word: 'is', start: 138.82000732421875, end: 138.9600067138672 },
446
+ { word: 'a', start: 138.9600067138672, end: 140.32000732421875 },
447
+ { word: 'fundamental', start: 140.32000732421875, end: 140.89999389648438 },
448
+ { word: 'challenge', start: 140.89999389648438, end: 141.3800048828125 },
449
+ { word: 'of', start: 141.3800048828125, end: 141.6199951171875 },
450
+ { word: 'life', start: 141.6199951171875, end: 142 },
451
+ { word: 'which', start: 142.4600067138672, end: 142.55999755859375 },
452
+ { word: 'is', start: 142.55999755859375, end: 143.1199951171875 },
453
+ { word: 'I', start: 144.3800048828125, end: 144.39999389648438 },
454
+ { word: 'do', start: 144.39999389648438, end: 144.60000610351562 },
455
+ { word: 'think', start: 144.60000610351562, end: 144.8000030517578 },
456
+ { word: 'people', start: 144.8000030517578, end: 145.16000366210938 },
457
+ { word: 'need', start: 145.16000366210938, end: 145.5 },
458
+ { word: 'to', start: 145.5, end: 146.05999755859375 },
459
+ { word: 'grow', start: 146.05999755859375, end: 146.05999755859375 },
460
+ { word: 'Businesses', start: 147, end: 147.55999755859375 },
461
+ { word: 'need', start: 147.55999755859375, end: 147.72000122070312 },
462
+ { word: 'to', start: 147.72000122070312, end: 147.9600067138672 },
463
+ { word: 'grow', start: 147.9600067138672, end: 148.10000610351562 },
464
+ { word: 'and', start: 148.10000610351562, end: 148.3800048828125 },
465
+ { word: 'change', start: 148.3800048828125, end: 148.63999938964844 },
466
+ { word: 'and', start: 148.63999938964844, end: 149.22000122070312 },
467
+ { word: 'adapt', start: 149.22000122070312, end: 149.24000549316406 },
468
+ { word: 'And', start: 150.55999755859375, end: 151.24000549316406 },
469
+ { word: 'people', start: 151.24000549316406, end: 151.36000061035156 },
470
+ { word: "don't", start: 151.36000061035156, end: 151.66000366210938 },
471
+ { word: 'like', start: 151.66000366210938, end: 152.0399932861328 },
472
+ { word: 'change', start: 152.0399932861328, end: 152.72000122070312 },
473
+ { word: 'But', start: 153, end: 153.17999267578125 },
474
+ { word: 'if', start: 153.17999267578125, end: 153.82000732421875 },
475
+ { word: 'you', start: 153.82000732421875, end: 154.0399932861328 },
476
+ { word: "don't", start: 154.0399932861328, end: 154.3000030517578 },
477
+ { word: 'change', start: 154.3000030517578, end: 154.77999877929688 },
478
+ { word: 'you', start: 155.39999389648438, end: 156.39999389648438 },
479
+ { word: 'can', start: 156.39999389648438, end: 156.55999755859375 },
480
+ { word: 'recede', start: 156.55999755859375, end: 157.17999267578125 },
481
+ { word: 'Your', start: 158.17999267578125, end: 158.44000244140625 },
482
+ { word: 'business', start: 158.44000244140625, end: 158.6999969482422 },
483
+ { word: 'can', start: 158.6999969482422, end: 159.5800018310547 },
484
+ { word: 'die', start: 159.5800018310547, end: 159.82000732421875 },
485
+ { word: 'over', start: 159.82000732421875, end: 160.44000244140625 },
486
+ { word: 'time', start: 160.44000244140625, end: 160.66000366210938 },
487
+ { word: 'just', start: 160.66000366210938, end: 160.94000244140625 },
488
+ { word: 'because', start: 160.94000244140625, end: 161.13999938964844 },
489
+ { word: 'it', start: 161.13999938964844, end: 161.39999389648438 },
490
+ { word: 'becomes', start: 161.39999389648438, end: 161.72000122070312 },
491
+ { word: 'gradually', start: 161.72000122070312, end: 162.17999267578125 },
492
+ { word: 'more', start: 162.17999267578125, end: 162.8000030517578 },
493
+ { word: 'irrelevant', start: 162.8000030517578, end: 163.1199951171875 },
494
+ { word: 'or', start: 163.1199951171875, end: 163.75999450683594 },
495
+ { word: "doesn't", start: 163.75999450683594, end: 164.05999755859375 },
496
+ { word: 'respond', start: 164.05999755859375, end: 164.4199981689453 },
497
+ { word: 'to', start: 164.4199981689453, end: 164.74000549316406 },
498
+ { word: 'current', start: 164.74000549316406, end: 164.9199981689453 },
499
+ { word: 'market', start: 164.9199981689453, end: 165.25999450683594 },
500
+ { word: 'conditions', start: 165.25999450683594, end: 165.72000122070312 },
501
+ { word: 'And', start: 166.52000427246094, end: 166.86000061035156 },
502
+ { word: 'then', start: 166.86000061035156, end: 167.02000427246094 },
503
+ { word: 'you', start: 167.02000427246094, end: 167.17999267578125 },
504
+ { word: 'as', start: 167.17999267578125, end: 167.3000030517578 },
505
+ { word: 'a', start: 167.3000030517578, end: 167.47999572753906 },
506
+ { word: 'person', start: 167.47999572753906, end: 168.0399932861328 },
507
+ { word: 'you', start: 168.67999267578125, end: 169.5 },
508
+ { word: 'know', start: 169.5, end: 169.55999755859375 },
509
+ { word: 'you', start: 169.5800018310547, end: 169.6999969482422 },
510
+ { word: 'might', start: 169.6999969482422, end: 170.33999633789062 },
511
+ ],
512
+ };
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "repository": {
3
+ "url": "https://github.com/remotion-dev/remotion/tree/main/packages/openai-whisper"
4
+ },
5
+ "name": "@remotion/openai-whisper",
6
+ "version": "4.0.217",
7
+ "description": "Work with the output of the OpenAI Whisper API",
8
+ "main": "dist/index.js",
9
+ "sideEffects": false,
10
+ "bugs": {
11
+ "url": "https://github.com/remotion-dev/remotion/issues"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "author": "Jonny Burger <jonny@remotion.dev>",
17
+ "license": "MIT",
18
+ "dependencies": {
19
+ "@remotion/captions": "4.0.217"
20
+ },
21
+ "peerDependencies": {},
22
+ "devDependencies": {
23
+ "openai": "4.67.1"
24
+ },
25
+ "keywords": [
26
+ "remotion"
27
+ ],
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
31
+ "homepage": "https://www.remotion.dev/docs/openai-whisper",
32
+ "scripts": {
33
+ "formatting": "prettier src --check",
34
+ "lint": "eslint src --ext ts,tsx",
35
+ "test": "bun test src"
36
+ }
37
+ }