Code
</iframe>
<iframe width="640" height="480" src="https://www.youtube.com/embed/wo9vZccmqwc" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen>
</iframe>Tony Duan
January 4, 2023

sample:
sample:
sample:
sample:
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
https://quarto.org/docs/authoring/videos.html
https://github.com/quarto-ext/lightbox
---
title: "quarto embed video"
author: "Tony Duan"
date: "2023-01-04"
categories: [publish]
execute:
warning: false
error: false
format:
html:
toc: true
code-fold: show
code-tools: true
---

## 1.youtube video with iframe
sample:
```{r}
#| eval: false
</iframe>
<iframe width="640" height="480" src="https://www.youtube.com/embed/wo9vZccmqwc" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen>
</iframe>
```
</iframe>
<iframe width="640" height="480" src="https://www.youtube.com/embed/wo9vZccmqwc" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen>
</iframe>
## 2.local video with iframe
sample:
```{r}
#| eval: false
</iframe>
<iframe width="640" height="480" src="local.mp4" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen>
</iframe>
```
</iframe>
<iframe width="640" height="480" src="local.mp4" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen>
</iframe>
## 3.youtube video with video
sample:
```{r}
#| eval: false
{{< video https://www.youtube.com/embed/wo9vZccmqwc >}}
```
{{< video https://www.youtube.com/embed/wo9vZccmqwc >}}
## 4.local video with video
sample:
```{r}
#| eval: false
{{< video local.mp4 width="550" height="675" >}}
```
{{< video local.mp4 width="550" height="675" >}}
# Reference
https://quarto.org/docs/authoring/videos.html
https://github.com/quarto-ext/lightbox