### S3 버킷 URL 임베딩 하는 코드
```html
<video id="inlineFrameExample" title="Inline Frame Example" width="800" height="450" controls>
<source src="https://yoonwoo-memories.s3.ap-northeast-2.amazonaws.com/2024 year/%E1%84%82%E1%85%A1%E1%86%B7%E1%84%89%E1%85%A1%E1%86%AB%E1%84%90%E1%85%A1%E1%84%8B%E1%85%AFout.mp4" type="video/mp4">
</video>
```
- id, title, src, type 모두 변경 가능함
- controls를 넣어서 자동재생하지 않도록 함
- 유튜브나 비메오의 경우 autoplay=0 값을 넣어야 자동 재생이 되지 않음
### 유튜브나 비메오, 트위터 임베딩 하는 방법
https://help.obsidian.md/Editing+and+formatting/Embed+web+pages
```html
<iframe width="560" height="315" src="https://jake10.synology.me:5001/photo/mo/sharing/hy6Zv9zS3" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
```
<video id="inlineFrameExample" title="Inline Frame Example" width="800" height="450" controls>
<source src="https://yoonwoo-memories.s3.ap-northeast-2.amazonaws.com/2024+year/%E1%84%82%E1%85%A1%E1%86%B7%E1%84%89%E1%85%A1%E1%86%AB%E1%84%90%E1%85%A1%E1%84%8B%E1%85%AFout.mp4" type="video/mp4">
</video>