-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed fa40d9b with MkDocs version: 1.5.3
- Loading branch information
Unknown
committed
Apr 15, 2024
0 parents
commit 1ff0ea6
Showing
264 changed files
with
172,668 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ctt.cx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="refresh" content="0;url=/video/obs/advanced"> | ||
<style> | ||
body {background-color: #1e2129;} | ||
</style> | ||
<script> | ||
window.onload = function() { | ||
var currentFragment = window.location.hash; | ||
var newUrl = "/video/obs/advanced" + currentFragment; | ||
window.location.replace(newUrl); | ||
} | ||
</script> | ||
</head> | ||
<body> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="refresh" content="0;url=/video/voukoder/after-effects"> | ||
<style> | ||
body {background-color: #1e2129;} | ||
</style> | ||
<script> | ||
window.onload = function() { | ||
var currentFragment = window.location.hash; | ||
var newUrl = "/video/voukoder/after-effects" + currentFragment; | ||
window.location.replace(newUrl); | ||
} | ||
</script> | ||
</head> | ||
<body> | ||
</body> | ||
</html> | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
/* dark mode: override main header & tabs navigation */ | ||
[data-md-color-scheme="slate"] .md-header { | ||
background-color: #1e2029; | ||
border-bottom: 0.10rem solid var(--md-accent-fg-color); | ||
} | ||
|
||
[data-md-color-scheme="slate"] .md-tabs { | ||
border-bottom-left-radius: 10px !important; | ||
border-bottom-right-radius: 10px !important; | ||
background-color: #2e2c3e; | ||
} | ||
|
||
/* light mode: override main header & tabs navigation */ | ||
[data-md-color-scheme="default"] .md-header { | ||
background-color: white; | ||
border-bottom: 0.10rem solid var(--md-accent-fg-color); | ||
color: black; | ||
} | ||
|
||
[data-md-color-scheme="default"] .md-tabs { | ||
color: black; | ||
background-color: white; | ||
} | ||
|
||
/* make the "View source of this page" and "Edit this page" only vieweable on hover */ | ||
.md-icon.md-content__button { | ||
opacity: 0; | ||
transition: opacity 0.5s cubic-bezier(.29, 1.01, 1, -0.68); | ||
} | ||
|
||
.md-icon.md-content__button:hover { | ||
opacity: 1; | ||
} | ||
|
||
.md-nav[data-md-level="2"]>.md-nav__list { | ||
margin-left: 1.45em; | ||
padding-left: 0.75em; | ||
position: relative; | ||
} | ||
|
||
.md-nav[data-md-level="2"]>.md-nav__list::before { | ||
content: ""; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
height: 100%; | ||
width: 1px; | ||
background: linear-gradient(to bottom, rgba(124, 77, 255, 0.3) 0%, rgba(124, 77, 255, 0.1) 50%, rgba(124, 77, 255, 0.3) 100%); | ||
} | ||
|
||
@media (max-width: 1220px) { | ||
.md-nav[data-md-level="2"]>.md-nav__list::before { | ||
opacity: 0%; | ||
} | ||
|
||
.md-nav[data-md-level="2"]>.md-nav__list { | ||
margin-left: 0; | ||
padding-left: 0; | ||
} | ||
} | ||
|
||
/* .md-footer { | ||
border-bottom: 0.10rem solid var(--md-accent-fg-color); | ||
} */ | ||
|
||
/* Stretch content area */ | ||
.md-main__inner.md-grid { | ||
/* Default 61rem */ | ||
max-width: 61rem; | ||
} | ||
|
||
.md-grid { | ||
/* Default 61rem */ | ||
max-width: 61rem; | ||
} | ||
|
||
.md-typeset .admonition.image, | ||
.md-typeset details.image { | ||
border-color: rgb(var(--main-color)); | ||
} | ||
|
||
.md-typeset .image>.admonition-title, | ||
.md-typeset .image>summary { | ||
background-color: rgba(var(--main-color), 0.1); | ||
} | ||
|
||
.md-typeset .image>.admonition-title::before, | ||
.md-typeset .image>summary::before { | ||
background-color: rgb(var(--main-color)); | ||
-webkit-mask-image: var(--md-admonition-icon--image); | ||
mask-image: var(--md-admonition-icon--image); | ||
} | ||
|
||
|
||
/* Makes click to copy have pointer cursor on hover */ | ||
.md-typeset [data-clipboard-text] { | ||
cursor: pointer; | ||
} | ||
|
||
|
||
/* le permalink toc */ | ||
.md-typeset .headerlink:hover, | ||
.md-typeset [id]:target .headerlink { | ||
background-color: var(--md-accent-fg-color); | ||
} | ||
|
||
.md-typeset .headerlink { | ||
scale: 60%; | ||
width: 1em; | ||
height: 1em; | ||
vertical-align: middle; | ||
background-color: var(--md-default-fg-color--lighter); | ||
background-size: 1em; | ||
-webkit-mask-size: 1em; | ||
mask-size: 1em; | ||
-webkit-mask-repeat: no-repeat; | ||
mask-repeat: no-repeat; | ||
visibility: visible; | ||
-webkit-mask-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7a5 5 0 0 0-5 5 5 5 0 0 0 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1M8 13h8v-2H8v2m9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.71-1.39 3.1-3.1 3.1h-4V17h4a5 5 0 0 0 5-5 5 5 0 0 0-5-5Z"/></svg>'); | ||
mask-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7a5 5 0 0 0-5 5 5 5 0 0 0 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1M8 13h8v-2H8v2m9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.71-1.39 3.1-3.1 3.1h-4V17h4a5 5 0 0 0 5-5 5 5 0 0 0-5-5Z"/></svg>'); | ||
} | ||
|
||
.archblue { | ||
color: #1793d1; | ||
} | ||
|
||
.green { | ||
color: #3dc375; | ||
} | ||
|
||
.md-footer__link { | ||
margin-bottom: 0 !important; | ||
margin-top: 0.2rem !important; | ||
} | ||
|
||
.md-social, | ||
.md-copyright { | ||
padding: 0 !important | ||
} | ||
|
||
.md-copyright { | ||
display: none !important; | ||
} | ||
|
||
.md-social { | ||
margin: auto !important; | ||
} | ||
|
||
.md-typeset h1 { | ||
color: var(--md-typeset-a-color); | ||
font-weight: 700; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+233 KB
assets/images/video/ffmpeg/video-cutters/losslesscut/losslesscut-export.png
Oops, something went wrong.
Binary file added
BIN
+837 KB
assets/images/video/ffmpeg/video-cutters/losslesscut/losslesscut-ui.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.