-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (22 loc) · 22.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>vapoursynth-ts</title><meta name="description" content="Documentation for vapoursynth-ts"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script async src="assets/search.js" id="search-script"></script></head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base="."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">vapoursynth-ts</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><h1>vapoursynth-ts</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><div class="tsd-panel tsd-typography">
<a href="#typescript-bindings-for-vapoursynth" id="typescript-bindings-for-vapoursynth" style="color: inherit; text-decoration: none;">
<h1>TypeScript bindings for VapourSynth</h1>
</a>
<a href="#installation" id="installation" style="color: inherit; text-decoration: none;">
<h2>Installation</h2>
</a>
<pre><code class="language-sh"><span class="hl-0">yarn add vapoursynth-ts</span>
</code></pre>
<br>
<a href="#getting-started" id="getting-started" style="color: inherit; text-decoration: none;">
<h2>Getting started</h2>
</a>
<pre><code class="language-ts"><span class="hl-1">import</span><span class="hl-0"> { </span><span class="hl-2">core</span><span class="hl-0">, </span><span class="hl-2">PyScript</span><span class="hl-0"> } </span><span class="hl-1">from</span><span class="hl-0"> </span><span class="hl-3">'vapoursynth-ts'</span><br/><br/><span class="hl-4">// Like you would in the Python bindings</span><br/><span class="hl-5">const</span><span class="hl-0"> </span><span class="hl-6">source</span><span class="hl-0"> = </span><span class="hl-2">core</span><span class="hl-0">.</span><span class="hl-2">lsmas</span><span class="hl-0">.</span><span class="hl-7">LibavSMASHSource</span><span class="hl-0">(</span><span class="hl-3">'./haruhi_01.mkv'</span><span class="hl-0">)</span><br/><br/><span class="hl-4">// can also import a Python script</span><br/><span class="hl-5">const</span><span class="hl-0"> </span><span class="hl-6">myscript</span><span class="hl-0"> = </span><span class="hl-5">new</span><span class="hl-0"> </span><span class="hl-7">PyScript</span><span class="hl-0">(</span><span class="hl-3">'./haruhi_01.vpy'</span><span class="hl-0">)</span><br/><span class="hl-5">const</span><span class="hl-0"> </span><span class="hl-6">myscript2</span><span class="hl-0"> = </span><span class="hl-5">new</span><span class="hl-0"> </span><span class="hl-7">PyScript</span><span class="hl-0">(</span><span class="hl-3">'./haruhi_01v2.vpy'</span><span class="hl-0">)</span><br/><br/><span class="hl-4">// Boring!!</span><br/><span class="hl-5">const</span><span class="hl-0"> </span><span class="hl-6">comp</span><span class="hl-0"> = </span><span class="hl-2">core</span><span class="hl-0">.</span><span class="hl-2">std</span><span class="hl-0">.</span><span class="hl-7">StackVertical</span><span class="hl-0">([</span><br/><span class="hl-0"> </span><span class="hl-2">myscript</span><span class="hl-0">.</span><span class="hl-7">getOutput</span><span class="hl-0">(</span><span class="hl-8">0</span><span class="hl-0">).</span><span class="hl-2">clip</span><span class="hl-0">,</span><br/><span class="hl-0"> </span><span class="hl-2">myscript2</span><span class="hl-0">.</span><span class="hl-7">getOutput</span><span class="hl-0">(</span><span class="hl-8">0</span><span class="hl-0">).</span><span class="hl-2">clip</span><br/><span class="hl-0">])</span><br/><br/><span class="hl-4">// Way better 👍</span><br/><span class="hl-5">const</span><span class="hl-0"> </span><span class="hl-6">bitOfGrain</span><span class="hl-0"> = </span><span class="hl-2">comp</span><span class="hl-0">.</span><span class="hl-2">grain</span><span class="hl-0">.</span><span class="hl-7">Add</span><span class="hl-0">(</span><span class="hl-8">10</span><span class="hl-0">, </span><span class="hl-8">15</span><span class="hl-0">)</span><br/><br/><span class="hl-4">// Way more betterer 👍👍</span><br/><span class="hl-5">const</span><span class="hl-0"> </span><span class="hl-6">lottaOfGrain</span><span class="hl-0"> = </span><span class="hl-2">comp</span><span class="hl-0">.</span><span class="hl-2">grain</span><span class="hl-0">.</span><span class="hl-7">Add</span><span class="hl-0">({ </span><span class="hl-2">var:</span><span class="hl-0"> </span><span class="hl-8">26</span><span class="hl-0">, </span><span class="hl-2">uvar:</span><span class="hl-0"> </span><span class="hl-8">12</span><span class="hl-0"> })</span><br/><br/><span class="hl-2">source</span><span class="hl-0">.</span><span class="hl-7">setOutput</span><span class="hl-0">(</span><span class="hl-8">0</span><span class="hl-0">)</span><br/><span class="hl-2">comp</span><span class="hl-0">.</span><span class="hl-7">setOutput</span><span class="hl-0">(</span><span class="hl-8">1</span><span class="hl-0">)</span><br/><span class="hl-2">bitOfGrain</span><span class="hl-0">.</span><span class="hl-7">setOutput</span><span class="hl-0">(</span><span class="hl-8">2</span><span class="hl-0">)</span><br/><span class="hl-2">lottaOfGrain</span><span class="hl-0">.</span><span class="hl-7">setOutput</span><span class="hl-0">(</span><span class="hl-8">3</span><span class="hl-0">)</span><br/>
</code></pre>
<br>
<a href="#specifying-core-flags" id="specifying-core-flags" style="color: inherit; text-decoration: none;">
<h2>Specifying core flags</h2>
</a>
<pre><code class="language-ts"><span class="hl-1">import</span><span class="hl-0"> { </span><span class="hl-2">core</span><span class="hl-0">, </span><span class="hl-2">CoreCreationFlags</span><span class="hl-0">, </span><span class="hl-2">setCoreCreationFlags</span><span class="hl-0"> } </span><span class="hl-1">from</span><span class="hl-0"> </span><span class="hl-3">'vapoursynth-ts'</span><br/><br/><span class="hl-4">// Has to be set before any call to core has been done</span><br/><span class="hl-7">setCoreCreationFlags</span><span class="hl-0">(</span><br/><span class="hl-0"> </span><span class="hl-2">CoreCreationFlags</span><span class="hl-0">.</span><span class="hl-2">DisableAutoLoading</span><span class="hl-0">,</span><br/><span class="hl-0"> </span><span class="hl-2">CoreCreationFlags</span><span class="hl-0">.</span><span class="hl-2">DisableLibraryUnloading</span><span class="hl-0">,</span><br/><span class="hl-0"> </span><span class="hl-2">CoreCreationFlags</span><span class="hl-0">.</span><span class="hl-2">EnableGraphInspection</span><br/><span class="hl-0">)</span><br/><br/><span class="hl-5">const</span><span class="hl-0"> </span><span class="hl-6">clip</span><span class="hl-0"> = </span><span class="hl-2">core</span><span class="hl-0">.</span><span class="hl-2">std</span><span class="hl-0">.</span><span class="hl-7">BlankClip</span><span class="hl-0">()</span>
</code></pre>
</div></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class="current"><a href="modules.html">Exports</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="tsd-kind-enum"><a href="enums/ChromaLocation.html" class="tsd-kind-icon">Chroma<wbr/>Location</a></li><li class="tsd-kind-enum"><a href="enums/ColorFamily.html" class="tsd-kind-icon">Color<wbr/>Family</a></li><li class="tsd-kind-enum"><a href="enums/ColorPrimaries.html" class="tsd-kind-icon">Color<wbr/>Primaries</a></li><li class="tsd-kind-enum"><a href="enums/ColorRange.html" class="tsd-kind-icon">Color<wbr/>Range</a></li><li class="tsd-kind-enum"><a href="enums/CoreCreationFlags.html" class="tsd-kind-icon">Core<wbr/>Creation<wbr/>Flags</a></li><li class="tsd-kind-enum"><a href="enums/FieldBased.html" class="tsd-kind-icon">Field<wbr/>Based</a></li><li class="tsd-kind-enum"><a href="enums/MatrixCoefficients.html" class="tsd-kind-icon">Matrix<wbr/>Coefficients</a></li><li class="tsd-kind-enum"><a href="enums/MediaType.html" class="tsd-kind-icon">Media<wbr/>Type</a></li><li class="tsd-kind-enum"><a href="enums/PresetFormat.html" class="tsd-kind-icon">Preset<wbr/>Format</a></li><li class="tsd-kind-enum"><a href="enums/SampleType.html" class="tsd-kind-icon">Sample<wbr/>Type</a></li><li class="tsd-kind-enum"><a href="enums/TransferCharacteristics.html" class="tsd-kind-icon">Transfer<wbr/>Characteristics</a></li><li class="tsd-kind-interface"><a href="interfaces/AudioNode.html" class="tsd-kind-icon">Audio<wbr/>Node</a></li><li class="tsd-kind-interface"><a href="interfaces/Core.html" class="tsd-kind-icon">Core</a></li><li class="tsd-kind-interface"><a href="interfaces/Plugin.html" class="tsd-kind-icon">Plugin</a></li><li class="tsd-kind-interface"><a href="interfaces/VideoNode.html" class="tsd-kind-icon">Video<wbr/>Node</a></li><li class="tsd-kind-interface"><a href="interfaces/VideoTuple.html" class="tsd-kind-icon">Video<wbr/>Tuple</a></li><li class="tsd-kind-variable"><a href="modules.html#CHROMA_BOTTOM" class="tsd-kind-icon">CHROMA_<wbr/>BOTTOM</a></li><li class="tsd-kind-variable"><a href="modules.html#CHROMA_BOTTOM_LEFT" class="tsd-kind-icon">CHROMA_<wbr/>BOTTOM_<wbr/>LEFT</a></li><li class="tsd-kind-variable"><a href="modules.html#CHROMA_CENTER" class="tsd-kind-icon">CHROMA_<wbr/>CENTER</a></li><li class="tsd-kind-variable"><a href="modules.html#CHROMA_LEFT" class="tsd-kind-icon">CHROMA_<wbr/>LEFT</a></li><li class="tsd-kind-variable"><a href="modules.html#CHROMA_TOP" class="tsd-kind-icon">CHROMA_<wbr/>TOP</a></li><li class="tsd-kind-variable"><a href="modules.html#CHROMA_TOP_LEFT" class="tsd-kind-icon">CHROMA_<wbr/>TOP_<wbr/>LEFT</a></li><li class="tsd-kind-variable"><a href="modules.html#FIELD_BOTTOM" class="tsd-kind-icon">FIELD_<wbr/>BOTTOM</a></li><li class="tsd-kind-variable"><a href="modules.html#FIELD_PROGRESSIVE" class="tsd-kind-icon">FIELD_<wbr/>PROGRESSIVE</a></li><li class="tsd-kind-variable"><a href="modules.html#FIELD_TOP" class="tsd-kind-icon">FIELD_<wbr/>TOP</a></li><li class="tsd-kind-variable"><a href="modules.html#FLOAT" class="tsd-kind-icon">FLOAT</a></li><li class="tsd-kind-variable"><a href="modules.html#GRAY" class="tsd-kind-icon">GRAY</a></li><li class="tsd-kind-variable"><a href="modules.html#GRAY10" class="tsd-kind-icon">GRAY10</a></li><li class="tsd-kind-variable"><a href="modules.html#GRAY12" class="tsd-kind-icon">GRAY12</a></li><li class="tsd-kind-variable"><a href="modules.html#GRAY14" class="tsd-kind-icon">GRAY14</a></li><li class="tsd-kind-variable"><a href="modules.html#GRAY16" class="tsd-kind-icon">GRAY16</a></li><li class="tsd-kind-variable"><a href="modules.html#GRAY32" class="tsd-kind-icon">GRAY32</a></li><li class="tsd-kind-variable"><a href="modules.html#GRAY8" class="tsd-kind-icon">GRAY8</a></li><li class="tsd-kind-variable"><a href="modules.html#GRAY9" class="tsd-kind-icon">GRAY9</a></li><li class="tsd-kind-variable"><a href="modules.html#GRAYH" class="tsd-kind-icon">GRAYH</a></li><li class="tsd-kind-variable"><a href="modules.html#GRAYS" class="tsd-kind-icon">GRAYS</a></li><li class="tsd-kind-variable"><a href="modules.html#INTEGER" class="tsd-kind-icon">INTEGER</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_BT2020_CL" class="tsd-kind-icon">MATRIX_<wbr/>BT2020_<wbr/>CL</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_BT2020_NCL" class="tsd-kind-icon">MATRIX_<wbr/>BT2020_<wbr/>NCL</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_BT470_BG" class="tsd-kind-icon">MATRIX_<wbr/>BT470_<wbr/>BG</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_BT709" class="tsd-kind-icon">MATRIX_<wbr/>BT709</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_CHROMATICITY_DERIVED_CL" class="tsd-kind-icon">MATRIX_<wbr/>CHROMATICITY_<wbr/>DERIVED_<wbr/>CL</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_CHROMATICITY_DERIVED_NCL" class="tsd-kind-icon">MATRIX_<wbr/>CHROMATICITY_<wbr/>DERIVED_<wbr/>NCL</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_FCC" class="tsd-kind-icon">MATRIX_<wbr/>FCC</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_ICTCP" class="tsd-kind-icon">MATRIX_<wbr/>ICTCP</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_RGB" class="tsd-kind-icon">MATRIX_<wbr/>RGB</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_ST170_M" class="tsd-kind-icon">MATRIX_<wbr/>ST170_<wbr/>M</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_ST240_M" class="tsd-kind-icon">MATRIX_<wbr/>ST240_<wbr/>M</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_UNSPECIFIED" class="tsd-kind-icon">MATRIX_<wbr/>UNSPECIFIED</a></li><li class="tsd-kind-variable"><a href="modules.html#MATRIX_YCGCO" class="tsd-kind-icon">MATRIX_<wbr/>YCGCO</a></li><li class="tsd-kind-variable"><a href="modules.html#NONE" class="tsd-kind-icon">NONE</a></li><li class="tsd-kind-variable"><a href="modules.html#PRIMARIES_BT2020" class="tsd-kind-icon">PRIMARIES_<wbr/>BT2020</a></li><li class="tsd-kind-variable"><a href="modules.html#PRIMARIES_BT470_BG" class="tsd-kind-icon">PRIMARIES_<wbr/>BT470_<wbr/>BG</a></li><li class="tsd-kind-variable"><a href="modules.html#PRIMARIES_BT470_M" class="tsd-kind-icon">PRIMARIES_<wbr/>BT470_<wbr/>M</a></li><li class="tsd-kind-variable"><a href="modules.html#PRIMARIES_BT709" class="tsd-kind-icon">PRIMARIES_<wbr/>BT709</a></li><li class="tsd-kind-variable"><a href="modules.html#PRIMARIES_EBU3213_E" class="tsd-kind-icon">PRIMARIES_<wbr/>EBU3213_<wbr/>E</a></li><li class="tsd-kind-variable"><a href="modules.html#PRIMARIES_FILM" class="tsd-kind-icon">PRIMARIES_<wbr/>FILM</a></li><li class="tsd-kind-variable"><a href="modules.html#PRIMARIES_ST170_M" class="tsd-kind-icon">PRIMARIES_<wbr/>ST170_<wbr/>M</a></li><li class="tsd-kind-variable"><a href="modules.html#PRIMARIES_ST240_M" class="tsd-kind-icon">PRIMARIES_<wbr/>ST240_<wbr/>M</a></li><li class="tsd-kind-variable"><a href="modules.html#PRIMARIES_ST428" class="tsd-kind-icon">PRIMARIES_<wbr/>ST428</a></li><li class="tsd-kind-variable"><a href="modules.html#PRIMARIES_ST431_2" class="tsd-kind-icon">PRIMARIES_<wbr/>ST431_<wbr/>2</a></li><li class="tsd-kind-variable"><a href="modules.html#PRIMARIES_ST432_1" class="tsd-kind-icon">PRIMARIES_<wbr/>ST432_<wbr/>1</a></li><li class="tsd-kind-variable"><a href="modules.html#PRIMARIES_UNSPECIFIED" class="tsd-kind-icon">PRIMARIES_<wbr/>UNSPECIFIED</a></li><li class="tsd-kind-variable"><a href="modules.html#PyScript" class="tsd-kind-icon">Py<wbr/>Script</a></li><li class="tsd-kind-variable"><a href="modules.html#RANGE_FULL" class="tsd-kind-icon">RANGE_<wbr/>FULL</a></li><li class="tsd-kind-variable"><a href="modules.html#RANGE_LIMITED" class="tsd-kind-icon">RANGE_<wbr/>LIMITED</a></li><li class="tsd-kind-variable"><a href="modules.html#RGB" class="tsd-kind-icon">RGB</a></li><li class="tsd-kind-variable"><a href="modules.html#RGB24" class="tsd-kind-icon">RGB24</a></li><li class="tsd-kind-variable"><a href="modules.html#RGB27" class="tsd-kind-icon">RGB27</a></li><li class="tsd-kind-variable"><a href="modules.html#RGB30" class="tsd-kind-icon">RGB30</a></li><li class="tsd-kind-variable"><a href="modules.html#RGB36" class="tsd-kind-icon">RGB36</a></li><li class="tsd-kind-variable"><a href="modules.html#RGB42" class="tsd-kind-icon">RGB42</a></li><li class="tsd-kind-variable"><a href="modules.html#RGB48" class="tsd-kind-icon">RGB48</a></li><li class="tsd-kind-variable"><a href="modules.html#RGBH" class="tsd-kind-icon">RGBH</a></li><li class="tsd-kind-variable"><a href="modules.html#RGBS" class="tsd-kind-icon">RGBS</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_ARIB_B67" class="tsd-kind-icon">TRANSFER_<wbr/>ARIB_<wbr/>B67</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_BT2020_10" class="tsd-kind-icon">TRANSFER_<wbr/>BT2020_<wbr/>10</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_BT2020_12" class="tsd-kind-icon">TRANSFER_<wbr/>BT2020_<wbr/>12</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_BT470_BG" class="tsd-kind-icon">TRANSFER_<wbr/>BT470_<wbr/>BG</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_BT470_M" class="tsd-kind-icon">TRANSFER_<wbr/>BT470_<wbr/>M</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_BT601" class="tsd-kind-icon">TRANSFER_<wbr/>BT601</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_BT709" class="tsd-kind-icon">TRANSFER_<wbr/>BT709</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_IEC_61966_2_1" class="tsd-kind-icon">TRANSFER_<wbr/>IEC_<wbr/>61966_<wbr/>2_<wbr/>1</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_IEC_61966_2_4" class="tsd-kind-icon">TRANSFER_<wbr/>IEC_<wbr/>61966_<wbr/>2_<wbr/>4</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_LINEAR" class="tsd-kind-icon">TRANSFER_<wbr/>LINEAR</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_LOG_100" class="tsd-kind-icon">TRANSFER_<wbr/>LOG_<wbr/>100</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_LOG_316" class="tsd-kind-icon">TRANSFER_<wbr/>LOG_<wbr/>316</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_ST2084" class="tsd-kind-icon">TRANSFER_<wbr/>ST2084</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_ST240_M" class="tsd-kind-icon">TRANSFER_<wbr/>ST240_<wbr/>M</a></li><li class="tsd-kind-variable"><a href="modules.html#TRANSFER_UNSPECIFIED" class="tsd-kind-icon">TRANSFER_<wbr/>UNSPECIFIED</a></li><li class="tsd-kind-variable"><a href="modules.html#UNDEFINED" class="tsd-kind-icon">UNDEFINED</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV" class="tsd-kind-icon">YUV</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV410P8" class="tsd-kind-icon">YUV410<wbr/>P8</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV411P8" class="tsd-kind-icon">YUV411<wbr/>P8</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV420P10" class="tsd-kind-icon">YUV420<wbr/>P10</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV420P12" class="tsd-kind-icon">YUV420<wbr/>P12</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV420P14" class="tsd-kind-icon">YUV420<wbr/>P14</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV420P16" class="tsd-kind-icon">YUV420<wbr/>P16</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV420P8" class="tsd-kind-icon">YUV420<wbr/>P8</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV420P9" class="tsd-kind-icon">YUV420<wbr/>P9</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV422P10" class="tsd-kind-icon">YUV422<wbr/>P10</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV422P12" class="tsd-kind-icon">YUV422<wbr/>P12</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV422P14" class="tsd-kind-icon">YUV422<wbr/>P14</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV422P16" class="tsd-kind-icon">YUV422<wbr/>P16</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV422P8" class="tsd-kind-icon">YUV422<wbr/>P8</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV422P9" class="tsd-kind-icon">YUV422<wbr/>P9</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV440P8" class="tsd-kind-icon">YUV440<wbr/>P8</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV444P10" class="tsd-kind-icon">YUV444<wbr/>P10</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV444P12" class="tsd-kind-icon">YUV444<wbr/>P12</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV444P14" class="tsd-kind-icon">YUV444<wbr/>P14</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV444P16" class="tsd-kind-icon">YUV444<wbr/>P16</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV444P8" class="tsd-kind-icon">YUV444<wbr/>P8</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV444P9" class="tsd-kind-icon">YUV444<wbr/>P9</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV444PH" class="tsd-kind-icon">YUV444PH</a></li><li class="tsd-kind-variable"><a href="modules.html#YUV444PS" class="tsd-kind-icon">YUV444PS</a></li><li class="tsd-kind-variable"><a href="modules.html#core" class="tsd-kind-icon">core</a></li><li class="tsd-kind-variable"><a href="modules.html#default" class="tsd-kind-icon">default</a></li><li class="tsd-kind-function"><a href="modules.html#clearOutput" class="tsd-kind-icon">clear<wbr/>Output</a></li><li class="tsd-kind-function"><a href="modules.html#clearOutputs" class="tsd-kind-icon">clear<wbr/>Outputs</a></li><li class="tsd-kind-function tsd-has-type-parameter"><a href="modules.html#getOutput" class="tsd-kind-icon">get<wbr/>Output</a></li><li class="tsd-kind-function"><a href="modules.html#getOutputs" class="tsd-kind-icon">get<wbr/>Outputs</a></li><li class="tsd-kind-function"><a href="modules.html#setCoreCreationFlags" class="tsd-kind-icon">set<wbr/>Core<wbr/>Creation<wbr/>Flags</a></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="assets/main.js"></script></body></html>