@revideo/create 0.5.11-alpha.1102 → 0.5.11-alpha.1104
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/examples/README.md +43 -0
- package/examples/avatar-with-background/package.json +27 -0
- package/examples/avatar-with-background/src/project.meta +31 -0
- package/examples/avatar-with-background/src/project.ts +6 -0
- package/examples/avatar-with-background/src/render.ts +14 -0
- package/examples/avatar-with-background/src/revideo.d.ts +1 -0
- package/examples/avatar-with-background/src/scenes/example.meta +5 -0
- package/examples/avatar-with-background/src/scenes/example.tsx +28 -0
- package/examples/avatar-with-background/tsconfig.json +9 -0
- package/examples/avatar-with-background/vite.config.ts +8 -0
- package/examples/default/README.md +19 -0
- package/examples/default/package.json +20 -0
- package/examples/default/src/project.tsx +56 -0
- package/examples/default/src/render.ts +15 -0
- package/examples/default/tsconfig.json +10 -0
- package/examples/github-stars-celebration/package-lock.json +3833 -0
- package/examples/github-stars-celebration/package.json +24 -0
- package/examples/github-stars-celebration/src/global.css +1 -0
- package/examples/github-stars-celebration/src/project.meta +28 -0
- package/examples/github-stars-celebration/src/project.ts +8 -0
- package/examples/github-stars-celebration/src/render.ts +15 -0
- package/examples/github-stars-celebration/src/revideo.d.ts +1 -0
- package/examples/github-stars-celebration/src/scenes/example.meta +5 -0
- package/examples/github-stars-celebration/src/scenes/example.tsx +51 -0
- package/examples/github-stars-celebration/tsconfig.json +9 -0
- package/examples/github-stars-celebration/vite.config.ts +8 -0
- package/examples/google-cloud-run-parallelized/README.md +127 -0
- package/examples/google-cloud-run-parallelized/render-orchestrator/Dockerfile +56 -0
- package/examples/google-cloud-run-parallelized/render-orchestrator/package.json +22 -0
- package/examples/google-cloud-run-parallelized/render-orchestrator/src/index.ts +72 -0
- package/examples/google-cloud-run-parallelized/render-orchestrator/src/revideo.d.ts +1 -0
- package/examples/google-cloud-run-parallelized/render-orchestrator/tsconfig.json +10 -0
- package/examples/google-cloud-run-parallelized/render-worker/.gcloudignore +17 -0
- package/examples/google-cloud-run-parallelized/render-worker/.puppeteerrc.cjs +9 -0
- package/examples/google-cloud-run-parallelized/render-worker/package.json +30 -0
- package/examples/google-cloud-run-parallelized/render-worker/src/index.ts +45 -0
- package/examples/google-cloud-run-parallelized/render-worker/src/project.meta +31 -0
- package/examples/google-cloud-run-parallelized/render-worker/src/project.ts +6 -0
- package/examples/google-cloud-run-parallelized/render-worker/src/render.ts +14 -0
- package/examples/google-cloud-run-parallelized/render-worker/src/revideo.d.ts +1 -0
- package/examples/google-cloud-run-parallelized/render-worker/src/scenes/example.tsx +30 -0
- package/examples/google-cloud-run-parallelized/render-worker/tsconfig.json +13 -0
- package/examples/google-cloud-run-parallelized/render-worker/vite.config.ts +9 -0
- package/examples/logo.svg +6 -0
- package/examples/logo_dark.svg +6 -0
- package/examples/marketing-templates/README.md +10 -0
- package/examples/marketing-templates/marketing-template/package.json +24 -0
- package/examples/marketing-templates/marketing-template/src/globals.css +0 -0
- package/examples/marketing-templates/marketing-template/src/project.meta +28 -0
- package/examples/marketing-templates/marketing-template/src/project.ts +9 -0
- package/examples/marketing-templates/marketing-template/src/render.ts +15 -0
- package/examples/marketing-templates/marketing-template/src/revideo.d.ts +1 -0
- package/examples/marketing-templates/marketing-template/src/scenes/example.meta +5 -0
- package/examples/marketing-templates/marketing-template/src/scenes/example.tsx +67 -0
- package/examples/marketing-templates/marketing-template/tsconfig.json +9 -0
- package/examples/marketing-templates/marketing-template/vite.config.ts +9 -0
- package/examples/marketing-templates/multiple-videos-in-one/package.json +24 -0
- package/examples/marketing-templates/multiple-videos-in-one/src/project.meta +28 -0
- package/examples/marketing-templates/multiple-videos-in-one/src/project.ts +9 -0
- package/examples/marketing-templates/multiple-videos-in-one/src/render.ts +15 -0
- package/examples/marketing-templates/multiple-videos-in-one/src/revideo.d.ts +1 -0
- package/examples/marketing-templates/multiple-videos-in-one/src/scenes/example.meta +5 -0
- package/examples/marketing-templates/multiple-videos-in-one/src/scenes/example.tsx +122 -0
- package/examples/marketing-templates/multiple-videos-in-one/tsconfig.json +9 -0
- package/examples/marketing-templates/multiple-videos-in-one/vite.config.ts +9 -0
- package/examples/minimal-drag-drop/README.md +29 -0
- package/examples/minimal-drag-drop/next/app/api/render/route.ts +22 -0
- package/examples/minimal-drag-drop/next/app/globals.css +3 -0
- package/examples/minimal-drag-drop/next/app/layout.tsx +25 -0
- package/examples/minimal-drag-drop/next/app/page.tsx +277 -0
- package/examples/minimal-drag-drop/next/next-env.d.ts +5 -0
- package/examples/minimal-drag-drop/next/next.config.mjs +4 -0
- package/examples/minimal-drag-drop/next/package-lock.json +5577 -0
- package/examples/minimal-drag-drop/next/package.json +35 -0
- package/examples/minimal-drag-drop/next/postcss.config.js +6 -0
- package/examples/minimal-drag-drop/next/public/favicon.ico +0 -0
- package/examples/minimal-drag-drop/next/public/next.svg +1 -0
- package/examples/minimal-drag-drop/next/public/vercel.svg +1 -0
- package/examples/minimal-drag-drop/next/tailwind.config.ts +30 -0
- package/examples/minimal-drag-drop/next/tsconfig.json +26 -0
- package/examples/minimal-drag-drop/next/utils/parse.ts +35 -0
- package/examples/minimal-drag-drop/revideo/package-lock.json +3771 -0
- package/examples/minimal-drag-drop/revideo/package.json +24 -0
- package/examples/minimal-drag-drop/revideo/src/global.css +1 -0
- package/examples/minimal-drag-drop/revideo/src/project.meta +28 -0
- package/examples/minimal-drag-drop/revideo/src/project.ts +9 -0
- package/examples/minimal-drag-drop/revideo/src/render.ts +15 -0
- package/examples/minimal-drag-drop/revideo/src/revideo.d.ts +1 -0
- package/examples/minimal-drag-drop/revideo/src/scenes/example.meta +5 -0
- package/examples/minimal-drag-drop/revideo/src/scenes/example.tsx +44 -0
- package/examples/minimal-drag-drop/revideo/tsconfig.json +9 -0
- package/examples/minimal-drag-drop/revideo/vite.config.ts +6 -0
- package/examples/parallelized-aws-lambda/.dockerignore +3 -0
- package/examples/parallelized-aws-lambda/Dockerfile +21 -0
- package/examples/parallelized-aws-lambda/Dockerfile.base +64 -0
- package/examples/parallelized-aws-lambda/README.md +197 -0
- package/examples/parallelized-aws-lambda/revideo-project/.puppeteerrc.cjs +9 -0
- package/examples/parallelized-aws-lambda/revideo-project/package-lock.json +4133 -0
- package/examples/parallelized-aws-lambda/revideo-project/package.json +28 -0
- package/examples/parallelized-aws-lambda/revideo-project/src/lambda.ts +157 -0
- package/examples/parallelized-aws-lambda/revideo-project/src/project.meta +28 -0
- package/examples/parallelized-aws-lambda/revideo-project/src/project.ts +7 -0
- package/examples/parallelized-aws-lambda/revideo-project/src/render.ts +17 -0
- package/examples/parallelized-aws-lambda/revideo-project/src/revideo.d.ts +1 -0
- package/examples/parallelized-aws-lambda/revideo-project/src/scenes/example.meta +5 -0
- package/examples/parallelized-aws-lambda/revideo-project/src/scenes/example.tsx +30 -0
- package/examples/parallelized-aws-lambda/revideo-project/tsconfig.json +10 -0
- package/examples/parallelized-aws-lambda/revideo-project/vite.config.ts +9 -0
- package/examples/reddit-post-video/README.md +84 -0
- package/examples/reddit-post-video/package-lock.json +2941 -0
- package/examples/reddit-post-video/package.json +27 -0
- package/examples/reddit-post-video/src/global.css +1 -0
- package/examples/reddit-post-video/src/metadata.json +576 -0
- package/examples/reddit-post-video/src/project.meta +31 -0
- package/examples/reddit-post-video/src/project.ts +9 -0
- package/examples/reddit-post-video/src/render.ts +157 -0
- package/examples/reddit-post-video/src/revideo.d.ts +1 -0
- package/examples/reddit-post-video/src/scenes/example.meta +5 -0
- package/examples/reddit-post-video/src/scenes/example.tsx +74 -0
- package/examples/reddit-post-video/tsconfig.json +9 -0
- package/examples/reddit-post-video/vite.config.ts +6 -0
- package/examples/rive-explanation-video/README.md +9 -0
- package/examples/rive-explanation-video/package.json +25 -0
- package/examples/rive-explanation-video/src/global.css +1 -0
- package/examples/rive-explanation-video/src/project.meta +31 -0
- package/examples/rive-explanation-video/src/project.ts +8 -0
- package/examples/rive-explanation-video/src/render.ts +15 -0
- package/examples/rive-explanation-video/src/revideo.d.ts +1 -0
- package/examples/rive-explanation-video/src/scenes/example.meta +5 -0
- package/examples/rive-explanation-video/src/scenes/example.tsx +218 -0
- package/examples/rive-explanation-video/tsconfig.json +9 -0
- package/examples/rive-explanation-video/vite.config.ts +8 -0
- package/examples/saas-template/.prettierrc +9 -0
- package/examples/saas-template/README.md +26 -0
- package/examples/saas-template/app/actions.tsx +114 -0
- package/examples/saas-template/app/api/render/route.ts +23 -0
- package/examples/saas-template/app/globals.css +3 -0
- package/examples/saas-template/app/layout.tsx +25 -0
- package/examples/saas-template/app/page.tsx +204 -0
- package/examples/saas-template/next.config.mjs +4 -0
- package/examples/saas-template/package.json +40 -0
- package/examples/saas-template/postcss.config.js +6 -0
- package/examples/saas-template/revideo/global.css +1 -0
- package/examples/saas-template/revideo/project.ts +9 -0
- package/examples/saas-template/revideo/scene.tsx +179 -0
- package/examples/saas-template/tailwind.config.ts +30 -0
- package/examples/saas-template/tsconfig.json +27 -0
- package/examples/saas-template/utils/parse.ts +35 -0
- package/examples/stitching-videos/README.md +7 -0
- package/examples/stitching-videos/package.json +23 -0
- package/examples/stitching-videos/src/project.meta +28 -0
- package/examples/stitching-videos/src/project.ts +20 -0
- package/examples/stitching-videos/src/render.ts +27 -0
- package/examples/stitching-videos/src/revideo.d.ts +1 -0
- package/examples/stitching-videos/src/scenes/example.tsx +30 -0
- package/examples/stitching-videos/tsconfig.json +9 -0
- package/examples/stitching-videos/vite.config.ts +8 -0
- package/examples/three-js-example/README.md +8 -0
- package/examples/three-js-example/package-lock.json +2753 -0
- package/examples/three-js-example/package.json +25 -0
- package/examples/three-js-example/src/components/Three.ts +166 -0
- package/examples/three-js-example/src/global.css +1 -0
- package/examples/three-js-example/src/project.meta +31 -0
- package/examples/three-js-example/src/project.ts +8 -0
- package/examples/three-js-example/src/render.ts +15 -0
- package/examples/three-js-example/src/revideo.d.ts +1 -0
- package/examples/three-js-example/src/scenes/basic3D.meta +5 -0
- package/examples/three-js-example/src/scenes/basic3D.tsx +89 -0
- package/examples/three-js-example/tsconfig.json +9 -0
- package/examples/three-js-example/vite.config.ts +6 -0
- package/examples/youtube-shorts/README.md +65 -0
- package/examples/youtube-shorts/package-lock.json +3881 -0
- package/examples/youtube-shorts/package.json +30 -0
- package/examples/youtube-shorts/src/get-assets.ts +34 -0
- package/examples/youtube-shorts/src/global.css +3 -0
- package/examples/youtube-shorts/src/metadata.json +635 -0
- package/examples/youtube-shorts/src/project.meta +28 -0
- package/examples/youtube-shorts/src/project.ts +9 -0
- package/examples/youtube-shorts/src/render.ts +12 -0
- package/examples/youtube-shorts/src/revideo.d.ts +1 -0
- package/examples/youtube-shorts/src/scenes/example.tsx +224 -0
- package/examples/youtube-shorts/src/utils.ts +123 -0
- package/examples/youtube-shorts/tsconfig.json +9 -0
- package/examples/youtube-shorts/vite.config.ts +8 -0
- package/package.json +9 -9
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "revideo",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"start": "vite",
|
|
7
|
+
"serve": "vite",
|
|
8
|
+
"build": "tsc && vite build",
|
|
9
|
+
"render": "tsc && node dist/render.js"
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@deepgram/sdk": "^3.3.1",
|
|
13
|
+
"@revideo/2d": "0.5.10",
|
|
14
|
+
"@revideo/cli": "0.5.10",
|
|
15
|
+
"@revideo/core": "0.5.10",
|
|
16
|
+
"@revideo/ffmpeg": "0.5.10",
|
|
17
|
+
"@revideo/renderer": "0.5.10",
|
|
18
|
+
"@revideo/vite-plugin": "0.5.10",
|
|
19
|
+
"dotenv": "^16.4.5",
|
|
20
|
+
"express": "^4.19.2",
|
|
21
|
+
"openai": "^4.40.2",
|
|
22
|
+
"uuid": "^9.0.1"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@revideo/ui": "0.5.10",
|
|
26
|
+
"@types/uuid": "^9.0.8",
|
|
27
|
+
"typescript": "5.5.4",
|
|
28
|
+
"vite": "^4.5"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
require('dotenv').config();
|
|
2
|
+
|
|
3
|
+
import { getVideoScript, generateAudio, getWordTimestamps, dalleGenerate, getImagePromptFromScript } from './utils';
|
|
4
|
+
import { v4 as uuidv4 } from 'uuid';
|
|
5
|
+
import * as fs from 'fs';
|
|
6
|
+
|
|
7
|
+
async function createAssets(topic: string, voiceName: string){
|
|
8
|
+
const jobId = uuidv4();
|
|
9
|
+
|
|
10
|
+
console.log("Generating assets...")
|
|
11
|
+
const script = await getVideoScript(topic);
|
|
12
|
+
console.log("script", script);
|
|
13
|
+
|
|
14
|
+
await generateAudio(script, voiceName, `./public/${jobId}-audio.wav`);
|
|
15
|
+
const words = await getWordTimestamps(`./public/${jobId}-audio.wav`);
|
|
16
|
+
|
|
17
|
+
console.log("Generating images...")
|
|
18
|
+
const imagePromises = Array.from({ length: 5 }).map(async (_, index) => {
|
|
19
|
+
const imagePrompt = await getImagePromptFromScript(script);
|
|
20
|
+
await dalleGenerate(imagePrompt, `./public/${jobId}-image-${index}.png`);
|
|
21
|
+
return `/${jobId}-image-${index}.png`;
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const imageFileNames = await Promise.all(imagePromises);
|
|
25
|
+
const metadata = {
|
|
26
|
+
audioUrl: `${jobId}-audio.wav`,
|
|
27
|
+
images: imageFileNames,
|
|
28
|
+
words: words
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
await fs.promises.writeFile(`./public/${jobId}-metadata.json`, JSON.stringify(metadata, null, 2));
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
createAssets("The moon landing", "Sarah")
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
|
|
2
|
+
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
|
|
3
|
+
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
|
|
@@ -0,0 +1,635 @@
|
|
|
1
|
+
{
|
|
2
|
+
"audioUrl": "https://revideo-example-assets.s3.amazonaws.com/12c4cb20-36b8-4ccf-a1bd-7a68b6b47173/audio.wav",
|
|
3
|
+
"images": [
|
|
4
|
+
"https://revideo-example-assets.s3.amazonaws.com/12c4cb20-36b8-4ccf-a1bd-7a68b6b47173/image-0.png",
|
|
5
|
+
"https://revideo-example-assets.s3.amazonaws.com/12c4cb20-36b8-4ccf-a1bd-7a68b6b47173/image-1.png",
|
|
6
|
+
"https://revideo-example-assets.s3.amazonaws.com/12c4cb20-36b8-4ccf-a1bd-7a68b6b47173/image-2.png",
|
|
7
|
+
"https://revideo-example-assets.s3.amazonaws.com/12c4cb20-36b8-4ccf-a1bd-7a68b6b47173/image-3.png",
|
|
8
|
+
"https://revideo-example-assets.s3.amazonaws.com/12c4cb20-36b8-4ccf-a1bd-7a68b6b47173/image-4.png"
|
|
9
|
+
],
|
|
10
|
+
"words": [
|
|
11
|
+
{
|
|
12
|
+
"word": "ready",
|
|
13
|
+
"start": 0.08,
|
|
14
|
+
"end": 0.39999998,
|
|
15
|
+
"confidence": 0.9988054,
|
|
16
|
+
"punctuated_word": "Ready"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"word": "to",
|
|
20
|
+
"start": 0.39999998,
|
|
21
|
+
"end": 0.48,
|
|
22
|
+
"confidence": 0.99993455,
|
|
23
|
+
"punctuated_word": "to"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"word": "have",
|
|
27
|
+
"start": 0.48,
|
|
28
|
+
"end": 0.71999997,
|
|
29
|
+
"confidence": 0.99994206,
|
|
30
|
+
"punctuated_word": "have"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"word": "your",
|
|
34
|
+
"start": 0.71999997,
|
|
35
|
+
"end": 0.88,
|
|
36
|
+
"confidence": 0.9997631,
|
|
37
|
+
"punctuated_word": "your"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"word": "mind",
|
|
41
|
+
"start": 0.88,
|
|
42
|
+
"end": 1.28,
|
|
43
|
+
"confidence": 0.99993217,
|
|
44
|
+
"punctuated_word": "mind"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"word": "blown",
|
|
48
|
+
"start": 1.28,
|
|
49
|
+
"end": 1.68,
|
|
50
|
+
"confidence": 0.99995804,
|
|
51
|
+
"punctuated_word": "blown"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"word": "by",
|
|
55
|
+
"start": 1.68,
|
|
56
|
+
"end": 1.8399999,
|
|
57
|
+
"confidence": 0.9996729,
|
|
58
|
+
"punctuated_word": "by"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"word": "the",
|
|
62
|
+
"start": 1.8399999,
|
|
63
|
+
"end": 2,
|
|
64
|
+
"confidence": 0.99946827,
|
|
65
|
+
"punctuated_word": "the"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"word": "world's",
|
|
69
|
+
"start": 2,
|
|
70
|
+
"end": 2.48,
|
|
71
|
+
"confidence": 0.9884629,
|
|
72
|
+
"punctuated_word": "world's"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"word": "largest",
|
|
76
|
+
"start": 2.48,
|
|
77
|
+
"end": 2.98,
|
|
78
|
+
"confidence": 0.9995808,
|
|
79
|
+
"punctuated_word": "largest"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"word": "volksfest",
|
|
83
|
+
"start": 3.04,
|
|
84
|
+
"end": 3.54,
|
|
85
|
+
"confidence": 0.94936365,
|
|
86
|
+
"punctuated_word": "Volksfest?"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"word": "welcome",
|
|
90
|
+
"start": 4.16,
|
|
91
|
+
"end": 4.56,
|
|
92
|
+
"confidence": 0.999281,
|
|
93
|
+
"punctuated_word": "Welcome"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"word": "to",
|
|
97
|
+
"start": 4.56,
|
|
98
|
+
"end": 4.64,
|
|
99
|
+
"confidence": 0.99980026,
|
|
100
|
+
"punctuated_word": "to"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"word": "the",
|
|
104
|
+
"start": 4.64,
|
|
105
|
+
"end": 4.7999997,
|
|
106
|
+
"confidence": 0.99983585,
|
|
107
|
+
"punctuated_word": "the"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"word": "heart",
|
|
111
|
+
"start": 4.7999997,
|
|
112
|
+
"end": 5.04,
|
|
113
|
+
"confidence": 0.9977786,
|
|
114
|
+
"punctuated_word": "heart"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"word": "of",
|
|
118
|
+
"start": 5.04,
|
|
119
|
+
"end": 5.2,
|
|
120
|
+
"confidence": 0.9982095,
|
|
121
|
+
"punctuated_word": "of"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"word": "munich",
|
|
125
|
+
"start": 5.2,
|
|
126
|
+
"end": 5.68,
|
|
127
|
+
"confidence": 0.99278367,
|
|
128
|
+
"punctuated_word": "Munich,"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"word": "germany",
|
|
132
|
+
"start": 5.68,
|
|
133
|
+
"end": 6.16,
|
|
134
|
+
"confidence": 0.999559,
|
|
135
|
+
"punctuated_word": "Germany"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"word": "for",
|
|
139
|
+
"start": 6.16,
|
|
140
|
+
"end": 6.3999996,
|
|
141
|
+
"confidence": 0.8465627,
|
|
142
|
+
"punctuated_word": "for"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"word": "the",
|
|
146
|
+
"start": 6.3999996,
|
|
147
|
+
"end": 6.48,
|
|
148
|
+
"confidence": 0.99971575,
|
|
149
|
+
"punctuated_word": "the"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"word": "legendary",
|
|
153
|
+
"start": 6.48,
|
|
154
|
+
"end": 6.98,
|
|
155
|
+
"confidence": 0.99840206,
|
|
156
|
+
"punctuated_word": "legendary"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"word": "oktoberfest",
|
|
160
|
+
"start": 7.3599997,
|
|
161
|
+
"end": 7.8599997,
|
|
162
|
+
"confidence": 0.9987529,
|
|
163
|
+
"punctuated_word": "Oktoberfest."
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"word": "imagine",
|
|
167
|
+
"start": 8.724999,
|
|
168
|
+
"end": 9.045,
|
|
169
|
+
"confidence": 0.9981363,
|
|
170
|
+
"punctuated_word": "Imagine"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"word": "a",
|
|
174
|
+
"start": 9.045,
|
|
175
|
+
"end": 9.285,
|
|
176
|
+
"confidence": 0.99952865,
|
|
177
|
+
"punctuated_word": "a"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"word": "festival",
|
|
181
|
+
"start": 9.285,
|
|
182
|
+
"end": 9.764999,
|
|
183
|
+
"confidence": 0.99793196,
|
|
184
|
+
"punctuated_word": "festival"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"word": "stretching",
|
|
188
|
+
"start": 9.764999,
|
|
189
|
+
"end": 10.245,
|
|
190
|
+
"confidence": 0.9995197,
|
|
191
|
+
"punctuated_word": "stretching"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"word": "over",
|
|
195
|
+
"start": 10.245,
|
|
196
|
+
"end": 10.485,
|
|
197
|
+
"confidence": 0.9997055,
|
|
198
|
+
"punctuated_word": "over"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"word": "18",
|
|
202
|
+
"start": 10.485,
|
|
203
|
+
"end": 10.884999,
|
|
204
|
+
"confidence": 0.9971296,
|
|
205
|
+
"punctuated_word": "18"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"word": "days",
|
|
209
|
+
"start": 10.884999,
|
|
210
|
+
"end": 11.384999,
|
|
211
|
+
"confidence": 0.901999,
|
|
212
|
+
"punctuated_word": "days,"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"word": "featuring",
|
|
216
|
+
"start": 11.684999,
|
|
217
|
+
"end": 12.084999,
|
|
218
|
+
"confidence": 0.9996741,
|
|
219
|
+
"punctuated_word": "featuring"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"word": "the",
|
|
223
|
+
"start": 12.084999,
|
|
224
|
+
"end": 12.245,
|
|
225
|
+
"confidence": 0.99989414,
|
|
226
|
+
"punctuated_word": "the"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"word": "world's",
|
|
230
|
+
"start": 12.245,
|
|
231
|
+
"end": 12.6449995,
|
|
232
|
+
"confidence": 0.99881995,
|
|
233
|
+
"punctuated_word": "world's"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"word": "most",
|
|
237
|
+
"start": 12.6449995,
|
|
238
|
+
"end": 13.125,
|
|
239
|
+
"confidence": 0.99981004,
|
|
240
|
+
"punctuated_word": "most"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"word": "extravagant",
|
|
244
|
+
"start": 13.125,
|
|
245
|
+
"end": 13.625,
|
|
246
|
+
"confidence": 0.9998173,
|
|
247
|
+
"punctuated_word": "extravagant"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"word": "beer",
|
|
251
|
+
"start": 13.764999,
|
|
252
|
+
"end": 14.084999,
|
|
253
|
+
"confidence": 0.9997545,
|
|
254
|
+
"punctuated_word": "beer"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"word": "halls",
|
|
258
|
+
"start": 14.084999,
|
|
259
|
+
"end": 14.584999,
|
|
260
|
+
"confidence": 0.99831164,
|
|
261
|
+
"punctuated_word": "halls,"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"word": "thrilling",
|
|
265
|
+
"start": 14.804999,
|
|
266
|
+
"end": 15.205,
|
|
267
|
+
"confidence": 0.99957234,
|
|
268
|
+
"punctuated_word": "thrilling"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"word": "fun",
|
|
272
|
+
"start": 15.205,
|
|
273
|
+
"end": 15.525,
|
|
274
|
+
"confidence": 0.9991985,
|
|
275
|
+
"punctuated_word": "fun"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"word": "rides",
|
|
279
|
+
"start": 15.525,
|
|
280
|
+
"end": 16.025,
|
|
281
|
+
"confidence": 0.99723136,
|
|
282
|
+
"punctuated_word": "rides,"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"word": "traditional",
|
|
286
|
+
"start": 16.28,
|
|
287
|
+
"end": 16.78,
|
|
288
|
+
"confidence": 0.99739826,
|
|
289
|
+
"punctuated_word": "traditional"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"word": "bavarian",
|
|
293
|
+
"start": 16.84,
|
|
294
|
+
"end": 17.320002,
|
|
295
|
+
"confidence": 0.99255073,
|
|
296
|
+
"punctuated_word": "Bavarian"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"word": "music",
|
|
300
|
+
"start": 17.320002,
|
|
301
|
+
"end": 17.800001,
|
|
302
|
+
"confidence": 0.97201467,
|
|
303
|
+
"punctuated_word": "music,"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"word": "and",
|
|
307
|
+
"start": 17.800001,
|
|
308
|
+
"end": 18.12,
|
|
309
|
+
"confidence": 0.99851114,
|
|
310
|
+
"punctuated_word": "and"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"word": "lederhosen",
|
|
314
|
+
"start": 18.12,
|
|
315
|
+
"end": 18.62,
|
|
316
|
+
"confidence": 0.849826,
|
|
317
|
+
"punctuated_word": "Lederhosen"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"word": "as",
|
|
321
|
+
"start": 19.080002,
|
|
322
|
+
"end": 19.240002,
|
|
323
|
+
"confidence": 0.81338906,
|
|
324
|
+
"punctuated_word": "as"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"word": "far",
|
|
328
|
+
"start": 19.240002,
|
|
329
|
+
"end": 19.400002,
|
|
330
|
+
"confidence": 0.9995309,
|
|
331
|
+
"punctuated_word": "far"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"word": "as",
|
|
335
|
+
"start": 19.400002,
|
|
336
|
+
"end": 19.560001,
|
|
337
|
+
"confidence": 0.99795973,
|
|
338
|
+
"punctuated_word": "as"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"word": "the",
|
|
342
|
+
"start": 19.560001,
|
|
343
|
+
"end": 19.720001,
|
|
344
|
+
"confidence": 0.99738353,
|
|
345
|
+
"punctuated_word": "the"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"word": "eye",
|
|
349
|
+
"start": 19.720001,
|
|
350
|
+
"end": 19.960001,
|
|
351
|
+
"confidence": 0.9982356,
|
|
352
|
+
"punctuated_word": "eye"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"word": "can",
|
|
356
|
+
"start": 19.960001,
|
|
357
|
+
"end": 20.12,
|
|
358
|
+
"confidence": 0.99665534,
|
|
359
|
+
"punctuated_word": "can"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"word": "see",
|
|
363
|
+
"start": 20.12,
|
|
364
|
+
"end": 20.62,
|
|
365
|
+
"confidence": 0.99476826,
|
|
366
|
+
"punctuated_word": "see."
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"word": "starting",
|
|
370
|
+
"start": 20.920002,
|
|
371
|
+
"end": 21.240002,
|
|
372
|
+
"confidence": 0.998594,
|
|
373
|
+
"punctuated_word": "Starting"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"word": "in",
|
|
377
|
+
"start": 21.240002,
|
|
378
|
+
"end": 21.400002,
|
|
379
|
+
"confidence": 0.9951212,
|
|
380
|
+
"punctuated_word": "in"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"word": "late",
|
|
384
|
+
"start": 21.400002,
|
|
385
|
+
"end": 21.640001,
|
|
386
|
+
"confidence": 0.9984485,
|
|
387
|
+
"punctuated_word": "late"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"word": "september",
|
|
391
|
+
"start": 21.640001,
|
|
392
|
+
"end": 22.140001,
|
|
393
|
+
"confidence": 0.99702036,
|
|
394
|
+
"punctuated_word": "September,"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"word": "over",
|
|
398
|
+
"start": 22.52,
|
|
399
|
+
"end": 22.84,
|
|
400
|
+
"confidence": 0.9900007,
|
|
401
|
+
"punctuated_word": "over"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"word": "6",
|
|
405
|
+
"start": 22.84,
|
|
406
|
+
"end": 23.055,
|
|
407
|
+
"confidence": 0.6389271,
|
|
408
|
+
"punctuated_word": "6"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"word": "million",
|
|
412
|
+
"start": 23.295,
|
|
413
|
+
"end": 23.535,
|
|
414
|
+
"confidence": 0.54406315,
|
|
415
|
+
"punctuated_word": "million"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"word": "people",
|
|
419
|
+
"start": 23.535,
|
|
420
|
+
"end": 23.935,
|
|
421
|
+
"confidence": 0.9996222,
|
|
422
|
+
"punctuated_word": "people"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"word": "from",
|
|
426
|
+
"start": 23.935,
|
|
427
|
+
"end": 24.175001,
|
|
428
|
+
"confidence": 0.9993486,
|
|
429
|
+
"punctuated_word": "from"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"word": "around",
|
|
433
|
+
"start": 24.175001,
|
|
434
|
+
"end": 24.415,
|
|
435
|
+
"confidence": 0.99978036,
|
|
436
|
+
"punctuated_word": "around"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"word": "the",
|
|
440
|
+
"start": 24.415,
|
|
441
|
+
"end": 24.575,
|
|
442
|
+
"confidence": 0.99894863,
|
|
443
|
+
"punctuated_word": "the"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"word": "globe",
|
|
447
|
+
"start": 24.575,
|
|
448
|
+
"end": 25.055,
|
|
449
|
+
"confidence": 0.9992418,
|
|
450
|
+
"punctuated_word": "globe"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"word": "gather",
|
|
454
|
+
"start": 25.055,
|
|
455
|
+
"end": 25.375,
|
|
456
|
+
"confidence": 0.9074952,
|
|
457
|
+
"punctuated_word": "gather"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"word": "to",
|
|
461
|
+
"start": 25.375,
|
|
462
|
+
"end": 25.535,
|
|
463
|
+
"confidence": 0.9997744,
|
|
464
|
+
"punctuated_word": "to"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"word": "celebrate",
|
|
468
|
+
"start": 25.535,
|
|
469
|
+
"end": 26.015,
|
|
470
|
+
"confidence": 0.9998642,
|
|
471
|
+
"punctuated_word": "celebrate"
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"word": "bavarian",
|
|
475
|
+
"start": 26.015,
|
|
476
|
+
"end": 26.515,
|
|
477
|
+
"confidence": 0.9886686,
|
|
478
|
+
"punctuated_word": "Bavarian"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"word": "culture",
|
|
482
|
+
"start": 26.575,
|
|
483
|
+
"end": 27.075,
|
|
484
|
+
"confidence": 0.9953433,
|
|
485
|
+
"punctuated_word": "culture,"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"word": "savor",
|
|
489
|
+
"start": 27.375,
|
|
490
|
+
"end": 27.855,
|
|
491
|
+
"confidence": 0.98999786,
|
|
492
|
+
"punctuated_word": "savor"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"word": "mouthwatering",
|
|
496
|
+
"start": 27.855,
|
|
497
|
+
"end": 28.355,
|
|
498
|
+
"confidence": 0.8768036,
|
|
499
|
+
"punctuated_word": "mouthwatering"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"word": "sausages",
|
|
503
|
+
"start": 28.575,
|
|
504
|
+
"end": 29.075,
|
|
505
|
+
"confidence": 0.99394596,
|
|
506
|
+
"punctuated_word": "sausages,"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"word": "and",
|
|
510
|
+
"start": 29.455,
|
|
511
|
+
"end": 29.775,
|
|
512
|
+
"confidence": 0.83777654,
|
|
513
|
+
"punctuated_word": "and,"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"word": "of",
|
|
517
|
+
"start": 29.775,
|
|
518
|
+
"end": 29.855,
|
|
519
|
+
"confidence": 0.99985945,
|
|
520
|
+
"punctuated_word": "of"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"word": "course",
|
|
524
|
+
"start": 29.855,
|
|
525
|
+
"end": 30.340313,
|
|
526
|
+
"confidence": 0.999547,
|
|
527
|
+
"punctuated_word": "course,"
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"word": "indulge",
|
|
531
|
+
"start": 30.580313,
|
|
532
|
+
"end": 30.940311,
|
|
533
|
+
"confidence": 0.99718326,
|
|
534
|
+
"punctuated_word": "indulge"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"word": "in",
|
|
538
|
+
"start": 30.940311,
|
|
539
|
+
"end": 31.300312,
|
|
540
|
+
"confidence": 0.99884796,
|
|
541
|
+
"punctuated_word": "in"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"word": "over",
|
|
545
|
+
"start": 31.300312,
|
|
546
|
+
"end": 31.620314,
|
|
547
|
+
"confidence": 0.9988391,
|
|
548
|
+
"punctuated_word": "over"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"word": "7,700,000",
|
|
552
|
+
"start": 31.620314,
|
|
553
|
+
"end": 32.120316,
|
|
554
|
+
"confidence": 0.94937944,
|
|
555
|
+
"punctuated_word": "7,700,000"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"word": "liters",
|
|
559
|
+
"start": 33.060314,
|
|
560
|
+
"end": 33.46031,
|
|
561
|
+
"confidence": 0.9917587,
|
|
562
|
+
"punctuated_word": "liters"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"word": "of",
|
|
566
|
+
"start": 33.46031,
|
|
567
|
+
"end": 33.62031,
|
|
568
|
+
"confidence": 0.99943703,
|
|
569
|
+
"punctuated_word": "of"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"word": "beer",
|
|
573
|
+
"start": 33.62031,
|
|
574
|
+
"end": 34.12031,
|
|
575
|
+
"confidence": 0.99747306,
|
|
576
|
+
"punctuated_word": "beer."
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"word": "now",
|
|
580
|
+
"start": 34.42031,
|
|
581
|
+
"end": 34.660313,
|
|
582
|
+
"confidence": 0.99840266,
|
|
583
|
+
"punctuated_word": "Now"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"word": "that's",
|
|
587
|
+
"start": 34.660313,
|
|
588
|
+
"end": 34.900314,
|
|
589
|
+
"confidence": 0.9490575,
|
|
590
|
+
"punctuated_word": "that's"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"word": "a",
|
|
594
|
+
"start": 34.900314,
|
|
595
|
+
"end": 35.060314,
|
|
596
|
+
"confidence": 0.99784327,
|
|
597
|
+
"punctuated_word": "a"
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"word": "party",
|
|
601
|
+
"start": 35.060314,
|
|
602
|
+
"end": 35.380314,
|
|
603
|
+
"confidence": 0.9999093,
|
|
604
|
+
"punctuated_word": "party"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"word": "not",
|
|
608
|
+
"start": 35.380314,
|
|
609
|
+
"end": 35.62031,
|
|
610
|
+
"confidence": 0.9994562,
|
|
611
|
+
"punctuated_word": "not"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"word": "to",
|
|
615
|
+
"start": 35.62031,
|
|
616
|
+
"end": 35.700314,
|
|
617
|
+
"confidence": 0.9987685,
|
|
618
|
+
"punctuated_word": "to"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"word": "be",
|
|
622
|
+
"start": 35.700314,
|
|
623
|
+
"end": 35.860313,
|
|
624
|
+
"confidence": 0.99990654,
|
|
625
|
+
"punctuated_word": "be"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"word": "missed",
|
|
629
|
+
"start": 35.860313,
|
|
630
|
+
"end": 36.360313,
|
|
631
|
+
"confidence": 0.9969932,
|
|
632
|
+
"punctuated_word": "missed."
|
|
633
|
+
}
|
|
634
|
+
]
|
|
635
|
+
}
|