<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Selur's Little Message Board - Step-by-Step]]></title>
		<link>https://forum.selur.net/</link>
		<description><![CDATA[Selur's Little Message Board - https://forum.selur.net]]></description>
		<pubDate>Sat, 04 Apr 2026 01:16:19 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Load 64bit Avisynth filter in Vapoursynth]]></title>
			<link>https://forum.selur.net/thread-3839.html</link>
			<pubDate>Fri, 30 Aug 2024 16:17:33 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.selur.net/member.php?action=profile&uid=1">Selur</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.selur.net/thread-3839.html</guid>
			<description><![CDATA[On Windows, it's possible to load and use Avisynth filters (!not scripts!) inside Vapoursynth.<br />
You can do this in Hybrid inside 'Filtering-&gt;Vapoursynth-&gt;Custom' sections.<br />
Here's an example how to load and use <a href="http://avisynth.nl/index.php/DeSpot" target="_blank" rel="noopener" class="mycode_url">DeSpot</a>:<br />
<div class="codeblock"><!--div class="title">Code:</div--><div class="body" dir="ltr"><code>core.avs.LoadPlugin("F:/Hybrid/64bit/Avisynth/avisynthPlugins/despot.dll")<br />
# requires colorformat YUV420P8<br />
clip = core.avs.DeSpot(clip, median=False,p1=24,p2=12,pwidth=6,pheight=5,ranked=True,sign=0,minpts=0,maxpts=0,p1percent=10,dilate=1,fitluma=True,blur=1,tsmooth=0,motpn=True,seg=2,color=False,mscene=0,mthres=16,mwidth=7,mheight=5,show=0,show_chroma=False,interlaced=False)<br />
<br />
return clip</code></div></div><span style="font-weight: bold;" class="mycode_b"><span style="text-decoration: underline;" class="mycode_u">Explanation:</span></span><br />
<div class="codeblock"><!--div class="title">Code:</div--><div class="body" dir="ltr"><code>core.avs.LoadPlugin("F:/Hybrid/64bit/Avisynth/avisynthPlugins/despot.dll")</code></div></div>Loads the DeSpot filter from "F:/Hybrid/64bit/Avisynth/avisynthPlugins/despot.dll".<br />
Note that I use slashes (/) instead of backslashes (\) and you need to adjust this path to wherever the filter you want to use is located.<br />
<div class="codeblock"><!--div class="title">Code:</div--><div class="body" dir="ltr"><code># requires colorformat YUV420P8</code></div></div>Lets Hybrid know that the filter only supports YUV420P8 (&lt;&gt; 8bit YV12). This should be adjusted according to your needs and the capability of the filter.<br />
<div class="codeblock"><!--div class="title">Code:</div--><div class="body" dir="ltr"><code>clip = core.avs.DeSpot(clip, median=False,p1=24,p2=12,pwidth=6,pheight=5,ranked=True,sign=0,minpts=0,maxpts=0,p1percent=10,dilate=1,fitluma=True,blur=1,tsmooth=0,motpn=True,seg=2,color=False,mscene=0,mthres=16,mwidth=7,mheight=5,show=0,show_chroma=False,interlaced=False)</code></div></div>calls the filter with the signature from the  <a href="http://avisynth.nl/index.php/DeSpot" target="_blank" rel="noopener" class="mycode_url">DeSpot-Avisynth Page</a>.<br />
Note that Vapoursynth uses 'True' and 'False' instead of Avisynths 'true' and 'false'.<br />
<div class="codeblock"><!--div class="title">Code:</div--><div class="body" dir="ltr"><code>return clip</code></div></div>returns the clip.<br />
<br />
Hope, this helps to load 64bit Avisynth filters in Hybrid if need be.<br />
<br />
Cu Selur]]></description>
			<content:encoded><![CDATA[On Windows, it's possible to load and use Avisynth filters (!not scripts!) inside Vapoursynth.<br />
You can do this in Hybrid inside 'Filtering-&gt;Vapoursynth-&gt;Custom' sections.<br />
Here's an example how to load and use <a href="http://avisynth.nl/index.php/DeSpot" target="_blank" rel="noopener" class="mycode_url">DeSpot</a>:<br />
<div class="codeblock"><!--div class="title">Code:</div--><div class="body" dir="ltr"><code>core.avs.LoadPlugin("F:/Hybrid/64bit/Avisynth/avisynthPlugins/despot.dll")<br />
# requires colorformat YUV420P8<br />
clip = core.avs.DeSpot(clip, median=False,p1=24,p2=12,pwidth=6,pheight=5,ranked=True,sign=0,minpts=0,maxpts=0,p1percent=10,dilate=1,fitluma=True,blur=1,tsmooth=0,motpn=True,seg=2,color=False,mscene=0,mthres=16,mwidth=7,mheight=5,show=0,show_chroma=False,interlaced=False)<br />
<br />
return clip</code></div></div><span style="font-weight: bold;" class="mycode_b"><span style="text-decoration: underline;" class="mycode_u">Explanation:</span></span><br />
<div class="codeblock"><!--div class="title">Code:</div--><div class="body" dir="ltr"><code>core.avs.LoadPlugin("F:/Hybrid/64bit/Avisynth/avisynthPlugins/despot.dll")</code></div></div>Loads the DeSpot filter from "F:/Hybrid/64bit/Avisynth/avisynthPlugins/despot.dll".<br />
Note that I use slashes (/) instead of backslashes (\) and you need to adjust this path to wherever the filter you want to use is located.<br />
<div class="codeblock"><!--div class="title">Code:</div--><div class="body" dir="ltr"><code># requires colorformat YUV420P8</code></div></div>Lets Hybrid know that the filter only supports YUV420P8 (&lt;&gt; 8bit YV12). This should be adjusted according to your needs and the capability of the filter.<br />
<div class="codeblock"><!--div class="title">Code:</div--><div class="body" dir="ltr"><code>clip = core.avs.DeSpot(clip, median=False,p1=24,p2=12,pwidth=6,pheight=5,ranked=True,sign=0,minpts=0,maxpts=0,p1percent=10,dilate=1,fitluma=True,blur=1,tsmooth=0,motpn=True,seg=2,color=False,mscene=0,mthres=16,mwidth=7,mheight=5,show=0,show_chroma=False,interlaced=False)</code></div></div>calls the filter with the signature from the  <a href="http://avisynth.nl/index.php/DeSpot" target="_blank" rel="noopener" class="mycode_url">DeSpot-Avisynth Page</a>.<br />
Note that Vapoursynth uses 'True' and 'False' instead of Avisynths 'true' and 'false'.<br />
<div class="codeblock"><!--div class="title">Code:</div--><div class="body" dir="ltr"><code>return clip</code></div></div>returns the clip.<br />
<br />
Hope, this helps to load 64bit Avisynth filters in Hybrid if need be.<br />
<br />
Cu Selur]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Convert to 60fps]]></title>
			<link>https://forum.selur.net/thread-429.html</link>
			<pubDate>Mon, 21 May 2018 08:05:37 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.selur.net/member.php?action=profile&uid=1">Selur</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.selur.net/thread-429.html</guid>
			<description><![CDATA[Here are possible ways to get it to 60fps.<ul class="mycode_list"><li>Start Hybrid<br />
</li>
<li>Set 'Base-&gt;Processing-&gt;Audio' to 'passthrough all' since we want to keep the audio as it is.<br />
</li>
<li>Choose the encoder you want 'Base-&gt;Processing-&gt;Video' for simplicity I kept it set to 'x264'<br />
</li>
<li>Configure the encoder the way you want. (I just changed 'x264-&gt;Base-&gt;General Settings-&gt;Encoding mode' to 'constant rate factor (1-pass)', but depending on your resolution you might need to use a higher value than the default 4.1 under x264-&gt;Base-&gt;Restriction Settings-&gt;AVC Profile/<span style="font-weight: bold;" class="mycode_b">Level</span>.)<br />
</li>
<li>Set default folders (Config-&gt;Path-&gt;Default ...)<br />
</li>
<li>Enable 'Config-&gt;Internals-&gt;Handling-&gt;Ignore all input timecodes', so that Hybrid will ignore the time codes and not try to keep them for the output<br />
</li>
<li>Enable 'Base-&gt;Generate' so that Hybrid will automatically set the output name<br />
</li>
<li>Now there are multiple different ways to interpolate the frames.<br />
<ol type="a" class="mycode_list"><li>Without Avisynth and Vapoursynth, using FFmpeg<ul class="mycode_list"><li>Now one can either set:<ul class="mycode_list"><li>'Filtering-&gt;Speed Change-&gt;Speed Settings-&gt;Interpolate frame rate' to '60fps', which will interpolate frames to archive the wanted frame rate, or<br />
</li>
<li>'Filtering-&gt;Speed Change-&gt;Speed Settings-&gt;Scale output frame rate' to '60fps', which will insert duplicate frames to archive the wanted frame rate.<br />
</li>
</ul>
</li>
</ul>
</li>
<li>Using Avisynth (make sure Filtering-&gt;Support is set to 'Avisynth'), don't try to convert 4k+ video with 32bit Avisynth.<ul class="mycode_list"><li>Here one again has multiple options, all under 'Filtering-&gt;Avisynth-&gt;Frame-&gt;FPS adjust'. Depending on the source some times one or the other interpolation method offers the best results.<ul class="mycode_list"><li>When using SalFPS3, your need to set 'Filtering-&gt;Avisynth-&gt;Frame-&gt;FPS adjust-&gt;SalFps3-&gt;Fps' to '60' and depending on your source your will want to tweak some of the other settings.<br />
</li>
<li>When using Interframe, your need to set 'Filtering-&gt;Avisynth-&gt;Frame-&gt;Interframe-&gt;Target frame rate' to '60', depending on your system you might also want to enable 'GPU' and depending on your preference you will likely want to set 'Tuning' and 'Override Algo.'<br />
</li>
<li>When using FrameRateConverter, there are tons of settings to play with, can't really recommend anything in general.<br />
</li>
</ul>
</li>
</ul>
</li>
<li>Using Vapoursynth (make sure Filtering-&gt;Support is set to 'Vapoursynth')<ul class="mycode_list"><li>Again there are multiple choices to archive 60fps, all under 'Filtering-&gt;Vapoursynth-&gt;Other-&gt;Frame Interpolation'<ul class="mycode_list"><li>'Interframe/SVP', basically the same as in Avisynth. Remember so set 'FPS' to '60'<br />
</li>
<li>'MVToolsFPS', remember to set 'TargetFPS' to '60'<br />
</li>
<li>'RIFE', chose model, set Target FPS (nu,/den) to 60/1<br />
</li>
<li>'FrameRateConverter': same as for Avisynth (but has more presets)<br />
</li>
<li>'TorchRIFE' same as 'RIFE', but with more options (requires torch-addon for Hybrid)<br />
</li>
<li>'RIFEmlrt' same as RIFE, but with support for different Backends.  (requires vsmlrt-addon for Hybrid)<br />
</li>
</ul>
</li>
</ul>
</li>
</ol>
</li>
<li>Create a job for the current settings. (Base-&gt;Add to queue)<br />
</li>
<li>Start the job processing. (Jobs-&gt;Queue-&gt;Start)<br />
</li>
</ul>
<br />
Note that each of the methods has it's downsides and it's 'normal' to get artefacts when interpolating frames.<br />
<br />
Cu Selur]]></description>
			<content:encoded><![CDATA[Here are possible ways to get it to 60fps.<ul class="mycode_list"><li>Start Hybrid<br />
</li>
<li>Set 'Base-&gt;Processing-&gt;Audio' to 'passthrough all' since we want to keep the audio as it is.<br />
</li>
<li>Choose the encoder you want 'Base-&gt;Processing-&gt;Video' for simplicity I kept it set to 'x264'<br />
</li>
<li>Configure the encoder the way you want. (I just changed 'x264-&gt;Base-&gt;General Settings-&gt;Encoding mode' to 'constant rate factor (1-pass)', but depending on your resolution you might need to use a higher value than the default 4.1 under x264-&gt;Base-&gt;Restriction Settings-&gt;AVC Profile/<span style="font-weight: bold;" class="mycode_b">Level</span>.)<br />
</li>
<li>Set default folders (Config-&gt;Path-&gt;Default ...)<br />
</li>
<li>Enable 'Config-&gt;Internals-&gt;Handling-&gt;Ignore all input timecodes', so that Hybrid will ignore the time codes and not try to keep them for the output<br />
</li>
<li>Enable 'Base-&gt;Generate' so that Hybrid will automatically set the output name<br />
</li>
<li>Now there are multiple different ways to interpolate the frames.<br />
<ol type="a" class="mycode_list"><li>Without Avisynth and Vapoursynth, using FFmpeg<ul class="mycode_list"><li>Now one can either set:<ul class="mycode_list"><li>'Filtering-&gt;Speed Change-&gt;Speed Settings-&gt;Interpolate frame rate' to '60fps', which will interpolate frames to archive the wanted frame rate, or<br />
</li>
<li>'Filtering-&gt;Speed Change-&gt;Speed Settings-&gt;Scale output frame rate' to '60fps', which will insert duplicate frames to archive the wanted frame rate.<br />
</li>
</ul>
</li>
</ul>
</li>
<li>Using Avisynth (make sure Filtering-&gt;Support is set to 'Avisynth'), don't try to convert 4k+ video with 32bit Avisynth.<ul class="mycode_list"><li>Here one again has multiple options, all under 'Filtering-&gt;Avisynth-&gt;Frame-&gt;FPS adjust'. Depending on the source some times one or the other interpolation method offers the best results.<ul class="mycode_list"><li>When using SalFPS3, your need to set 'Filtering-&gt;Avisynth-&gt;Frame-&gt;FPS adjust-&gt;SalFps3-&gt;Fps' to '60' and depending on your source your will want to tweak some of the other settings.<br />
</li>
<li>When using Interframe, your need to set 'Filtering-&gt;Avisynth-&gt;Frame-&gt;Interframe-&gt;Target frame rate' to '60', depending on your system you might also want to enable 'GPU' and depending on your preference you will likely want to set 'Tuning' and 'Override Algo.'<br />
</li>
<li>When using FrameRateConverter, there are tons of settings to play with, can't really recommend anything in general.<br />
</li>
</ul>
</li>
</ul>
</li>
<li>Using Vapoursynth (make sure Filtering-&gt;Support is set to 'Vapoursynth')<ul class="mycode_list"><li>Again there are multiple choices to archive 60fps, all under 'Filtering-&gt;Vapoursynth-&gt;Other-&gt;Frame Interpolation'<ul class="mycode_list"><li>'Interframe/SVP', basically the same as in Avisynth. Remember so set 'FPS' to '60'<br />
</li>
<li>'MVToolsFPS', remember to set 'TargetFPS' to '60'<br />
</li>
<li>'RIFE', chose model, set Target FPS (nu,/den) to 60/1<br />
</li>
<li>'FrameRateConverter': same as for Avisynth (but has more presets)<br />
</li>
<li>'TorchRIFE' same as 'RIFE', but with more options (requires torch-addon for Hybrid)<br />
</li>
<li>'RIFEmlrt' same as RIFE, but with support for different Backends.  (requires vsmlrt-addon for Hybrid)<br />
</li>
</ul>
</li>
</ul>
</li>
</ol>
</li>
<li>Create a job for the current settings. (Base-&gt;Add to queue)<br />
</li>
<li>Start the job processing. (Jobs-&gt;Queue-&gt;Start)<br />
</li>
</ul>
<br />
Note that each of the methods has it's downsides and it's 'normal' to get artefacts when interpolating frames.<br />
<br />
Cu Selur]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Simple container change]]></title>
			<link>https://forum.selur.net/thread-394.html</link>
			<pubDate>Sun, 29 Apr 2018 08:14:07 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.selur.net/member.php?action=profile&uid=1">Selur</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.selur.net/thread-394.html</guid>
			<description><![CDATA[Sometimes one just wants to change the container,...<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Change the container (passthrough all audio, video, subtitle streams)</span>:<br />
<ol type="1" class="mycode_list"><li>Start Hybrid<br />
</li>
<li>Enable Config-&gt;Automation-&gt;Passthrough streams-&gt;Subtitle<br />
</li>
<li>Set 'Base-&gt;Processing-&gt;Audio' to 'passthrough all'<br />
</li>
<li>Set 'Base-&gt;Processing-&gt;Video' to 'passthrough'<br />
</li>
<li>Load Source ('Base-&gt;Open File')<br />
</li>
<li>Set the output ('Base-&gt;Output File') and make sure it has the extension of the new container.<br />
</li>
<li>Add job to queue ('Base-&gt;Add to queue')<br />
</li>
<li>Start the job processing ('Jobs-&gt;Queue-&gt;Start')<br />
</li>
</ol>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Change the container (passthrough all audio, video, no subtitle streams)</span>:<ul class="mycode_list"><li>same as <span style="font-style: italic;" class="mycode_i"><span style="font-weight: bold;" class="mycode_b">Change the container (passthrough all audio, video, subtitle streams</span></span>, but skip step 2.<br />
</li>
</ul>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Change the container (passthrough video, but just audio and subtitle streams of specific languages)</span>:<br />
<ol type="1" class="mycode_list"><li>Start Hybrid<br />
</li>
<li>Enable Config-&gt;Automation-&gt;All subtitle only add/extract' and select the languages you want in the drop-down menu.<br />
</li>
<li>Enable Config-&gt;Automation-&gt;Limit audio passthrough/auto add all' and select the languages you want in the drop-down menu.<br />
</li>
<li>Set 'Base-&gt;Processing-&gt;Audio' to 'passthrough all'<br />
</li>
<li>Set 'Base-&gt;Processing-&gt;Video' to 'passthrough'<br />
</li>
<li>Load Source ('Base-&gt;Open File')<br />
</li>
<li>Set the output ('Base-&gt;Output File') and make sure it has the extension of the new container.<br />
</li>
<li>Add job to queue ('Base-&gt;Add to queue')<br />
</li>
<li>Start the job processing ('Jobs-&gt;Queue-&gt;Start')<br />
</li>
</ol>
</li>
</ul>
]]></description>
			<content:encoded><![CDATA[Sometimes one just wants to change the container,...<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Change the container (passthrough all audio, video, subtitle streams)</span>:<br />
<ol type="1" class="mycode_list"><li>Start Hybrid<br />
</li>
<li>Enable Config-&gt;Automation-&gt;Passthrough streams-&gt;Subtitle<br />
</li>
<li>Set 'Base-&gt;Processing-&gt;Audio' to 'passthrough all'<br />
</li>
<li>Set 'Base-&gt;Processing-&gt;Video' to 'passthrough'<br />
</li>
<li>Load Source ('Base-&gt;Open File')<br />
</li>
<li>Set the output ('Base-&gt;Output File') and make sure it has the extension of the new container.<br />
</li>
<li>Add job to queue ('Base-&gt;Add to queue')<br />
</li>
<li>Start the job processing ('Jobs-&gt;Queue-&gt;Start')<br />
</li>
</ol>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Change the container (passthrough all audio, video, no subtitle streams)</span>:<ul class="mycode_list"><li>same as <span style="font-style: italic;" class="mycode_i"><span style="font-weight: bold;" class="mycode_b">Change the container (passthrough all audio, video, subtitle streams</span></span>, but skip step 2.<br />
</li>
</ul>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Change the container (passthrough video, but just audio and subtitle streams of specific languages)</span>:<br />
<ol type="1" class="mycode_list"><li>Start Hybrid<br />
</li>
<li>Enable Config-&gt;Automation-&gt;All subtitle only add/extract' and select the languages you want in the drop-down menu.<br />
</li>
<li>Enable Config-&gt;Automation-&gt;Limit audio passthrough/auto add all' and select the languages you want in the drop-down menu.<br />
</li>
<li>Set 'Base-&gt;Processing-&gt;Audio' to 'passthrough all'<br />
</li>
<li>Set 'Base-&gt;Processing-&gt;Video' to 'passthrough'<br />
</li>
<li>Load Source ('Base-&gt;Open File')<br />
</li>
<li>Set the output ('Base-&gt;Output File') and make sure it has the extension of the new container.<br />
</li>
<li>Add job to queue ('Base-&gt;Add to queue')<br />
</li>
<li>Start the job processing ('Jobs-&gt;Queue-&gt;Start')<br />
</li>
</ol>
</li>
</ul>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Enforcing vfw decoding through Avisynth]]></title>
			<link>https://forum.selur.net/thread-21.html</link>
			<pubDate>Sat, 27 May 2017 07:38:46 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.selur.net/member.php?action=profile&uid=1">Selur</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.selur.net/thread-21.html</guid>
			<description><![CDATA[Sometimes there are .<a href="https://en.wikipedia.org/wiki/Audio_Video_Interleave" target="_blank" rel="noopener" class="mycode_url">avi</a> files which can't be decoded through <a href="https://en.wikipedia.org/wiki/Libav" target="_blank" rel="noopener" class="mycode_url">libav</a>/<a href="https://en.wikipedia.org/wiki/FFmpeg" target="_blank" rel="noopener" class="mycode_url">ffmpeg</a>, but there are <a href="https://en.wikipedia.org/wiki/Video_for_Windows" target="_blank" rel="noopener" class="mycode_url">vfw</a> decoders.<br />
In case those vfw decoders are installed Hybrid can use them through <a href="http://avisynth.nl/index.php/AviSource" target="_blank" rel="noopener" class="mycode_url">AviSource()</a>-Avisynth filter.<br />
<br />
To enforce the usage of Avisynth and the AviSource filter in Hybrid to the following (before loading your source file):<ul class="mycode_list"><li>activate "Config-&gt;Internals-&gt;Avisynth-&gt;Always use Avisynth"<br />
This forces Hybrid to use Avisynth<br />
</li>
<li>deactivate "Config-&gt;Internals-&gt;Avisynth-&gt;No Avisynth during Preview"<br />
This allows Avisynth decoding during the normal preview; only needed if the 'Avisynth Preview' isn't enough)<br />
</li>
<li>activate "Filtering-&gt;Avisynth-&gt;Misc-&gt;Prefer AviSource for avi input"<br />
This tells Hybrid to check the vfw decoders in the system and use AviSource whenever the source is .avi and there is a vfw decoder installed.<br />
</li>
</ul>
<br />
Cu Selur<br />
<br />
Ps.: Not that Hybrid uses 32bit Avisynth so even on 64bit system only 32bit vfw decoders are used.]]></description>
			<content:encoded><![CDATA[Sometimes there are .<a href="https://en.wikipedia.org/wiki/Audio_Video_Interleave" target="_blank" rel="noopener" class="mycode_url">avi</a> files which can't be decoded through <a href="https://en.wikipedia.org/wiki/Libav" target="_blank" rel="noopener" class="mycode_url">libav</a>/<a href="https://en.wikipedia.org/wiki/FFmpeg" target="_blank" rel="noopener" class="mycode_url">ffmpeg</a>, but there are <a href="https://en.wikipedia.org/wiki/Video_for_Windows" target="_blank" rel="noopener" class="mycode_url">vfw</a> decoders.<br />
In case those vfw decoders are installed Hybrid can use them through <a href="http://avisynth.nl/index.php/AviSource" target="_blank" rel="noopener" class="mycode_url">AviSource()</a>-Avisynth filter.<br />
<br />
To enforce the usage of Avisynth and the AviSource filter in Hybrid to the following (before loading your source file):<ul class="mycode_list"><li>activate "Config-&gt;Internals-&gt;Avisynth-&gt;Always use Avisynth"<br />
This forces Hybrid to use Avisynth<br />
</li>
<li>deactivate "Config-&gt;Internals-&gt;Avisynth-&gt;No Avisynth during Preview"<br />
This allows Avisynth decoding during the normal preview; only needed if the 'Avisynth Preview' isn't enough)<br />
</li>
<li>activate "Filtering-&gt;Avisynth-&gt;Misc-&gt;Prefer AviSource for avi input"<br />
This tells Hybrid to check the vfw decoders in the system and use AviSource whenever the source is .avi and there is a vfw decoder installed.<br />
</li>
</ul>
<br />
Cu Selur<br />
<br />
Ps.: Not that Hybrid uses 32bit Avisynth so even on 64bit system only 32bit vfw decoders are used.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[What is this sub-forum about?]]></title>
			<link>https://forum.selur.net/thread-9.html</link>
			<pubDate>Sat, 06 May 2017 16:03:59 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.selur.net/member.php?action=profile&uid=1">Selur</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.selur.net/thread-9.html</guid>
			<description><![CDATA[Hoi,<br />
since I form time to time post small step-by-step guides for users to help them I thought it might be a good idea to collect them in this forum so new users will be able to find them more quickly.<br />
<br />
Note: Normal users can't create new threads/topics inside this sub-forum.<br />
<br />
Cu Selur]]></description>
			<content:encoded><![CDATA[Hoi,<br />
since I form time to time post small step-by-step guides for users to help them I thought it might be a good idea to collect them in this forum so new users will be able to find them more quickly.<br />
<br />
Note: Normal users can't create new threads/topics inside this sub-forum.<br />
<br />
Cu Selur]]></content:encoded>
		</item>
	</channel>
</rss>