Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix subtitles in video on homepage #292

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/content/en/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,13 @@ Foyle provides an AI powered assistant and literate environment to help you depl

<div style="position: relative; padding-bottom: 25%; height: 0;">
<video controls style="max-width: 50%; height: auto;">
<!-- I believe captions should be embedded in the mp4 but they don't seem to show up. My solution
was to export a vtt file from deskrypt and host it on the site.
Subtitles are served out of hugo/netlify and not Cloud Storage because the request to fetch the vtt
out of cloud storage gets blocked by browser security settings.
!-->
<source src="https://storage.googleapis.com/foyle-public/videos/Foyle-Cost-Demo-Ghost-Cells-Part-1-with-captions.mp4" type="video/mp4">
<track src="https://storage.googleapis.com/foyle-public/videos/Foyle-Cost-Demo-Ghost-Cells-Part-1.vtt" kind="subtitles" srclang="en" label="English">
<track src="/video-subtitles/Foyle-Cost-Demo-Ghost-Cells-Part-1.vtt" kind="subtitles" srclang="en" label="English" default>
</video>
{{% /blocks/lead %}}

Expand Down
40 changes: 40 additions & 0 deletions docs/static/video-subtitles/Foyle-Cost-Demo-Ghost-Cells-Part-1.vtt
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
WEBVTT

NOTE
This file was generated by Descript <www.descript.com>

00:00:00.290 --> 00:00:05.629
To get started, I create a Markdown cell,
and I start typing my question, which in

00:00:05.630 --> 00:00:08.920
this case is, how much does Foyle cost?

00:00:09.350 --> 00:00:16.030
We're going to filter it out to only show
rows where total input tokens is greater

00:00:16.030 --> 00:00:20.960
than zero and you can see that as I'm
typing Foyle is in the background coming

00:00:20.960 --> 00:00:25.879
up with suggestions for the commands that
I can run to achieve that intent and in

00:00:25.879 --> 00:00:29.529
this case those commands get rendered as
a ghost cell which is those lightly grayed

00:00:29.549 --> 00:00:34.270
out text . I can select that cell and
then I can execute it to see the results.

00:00:34.490 --> 00:00:37.949
And so in this case we get back
the query results which tell

00:00:37.950 --> 00:00:42.450
us how much we're spending on
input tokens and output tokens.

Loading