Skip to content

Commit 53e773c

Browse files
authored
fix video (CodingCatDev#469)
1 parent 1c4d5fe commit 53e773c

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

  • apps/codingcatdev/src/routes/(content-single)/(non-course)/post/how-to-achieve-16-9-resolution-while-using-divvy-on-a-mac

apps/codingcatdev/src/routes/(content-single)/(non-course)/post/how-to-achieve-16-9-resolution-while-using-divvy-on-a-mac/+page.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ start: March 19, 2022
1414
title: How to achieve 16:9 resolution while using Divvy on a Mac
1515
---
1616

17+
<script lang="ts">
18+
import Video from '$lib/components/content/Video.svelte';
19+
</script>
20+
1721
Have you ever tried to record a video and notice that it is a few pixels off? Lets fix that so you can produce good quality videos!
1822

1923
## Easy Solution
@@ -92,9 +96,7 @@ So if you screen is 4K 3840px by 2160px, and your menu is 24px high then your ac
9296

9397
This is an amazingly simple, but yet very powerful tool. You can break your screen up into anything from 1x1 all the way to 10x10 blocks. There are a lot more features check out the below video to see more of what is possible.
9498

95-
<div style={{overflow: 'hidden',paddingTop: '56.25%', position: 'relative', width: '100%', height: '0px'}}> <div style={{width: '100%', height:'100%',position: 'absolute', top: 0, left: 0}}> <iframe src="https://www.youtube.com/embed/Z6eBPC-4ZOY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen style={{width: '100%', height:'100%'}}></iframe> </div> </div>
96-
97-
[https://www.youtube.com/embed/Z6eBPC-4ZOY](https://www.youtube.com/embed/Z6eBPC-4ZOY)
99+
<Video src="https://youtu.be/Z6eBPC-4ZOY" title="Divvy Blocks" />
98100

99101
## What is the big deal
100102

0 commit comments

Comments
 (0)