<?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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: InterFrame 2.0b1 released	</title>
	<atom:link href="https://www.spirton.com/interframe-2-0b1-released/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.spirton.com/interframe-2-0b1-released/</link>
	<description></description>
	<lastBuildDate>Mon, 26 Mar 2012 13:45:59 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.4</generator>
	<item>
		<title>
		By: Sander van Leeuwen		</title>
		<link>https://www.spirton.com/interframe-2-0b1-released/comment-page-1/#comment-5076</link>

		<dc:creator><![CDATA[Sander van Leeuwen]]></dc:creator>
		<pubDate>Mon, 26 Mar 2012 13:45:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.spirton.com/?p=938#comment-5076</guid>

					<description><![CDATA[Thanks for the new version. I&#039;m still with 1.14 since I use Interframe in a different way then its designed for using Magic Lantern to get HDR video. I do have problems with 2.0b1, but that&#039;s probably because I use it wrong...

Video: http://vimeo.com/35867786

So we have a 25FPS framerate looking like THIS: O-U-O-U-O-U etc.... (O = overexposed and U = underexposed)
The result we need is an 25 fps overexposed and a 25fps underexposed stream which are saved as image sequences.
How we do it:

A = FFVideoSource(&quot;..\RAW.MOV&quot;)
A = ConvertToRGB(A, matrix=&quot;PC.601&quot;, interlaced=false)
A = Converttoyv12(A)           # convert to yv12 needed for Interframe
A = selecteven(A)              # select even or odd frames and interpolate them 
A = assumefps(A, 25)           # Interframe doesn&#039;t work with 12,5 fps 
A = InterFrame(A, NewNum=50, NewDen=1, GPU=false, FlowPath=ScriptDir()+&quot;..\Avisynth-plugins\&quot;)
A = assumefps(A, 25)
A = trim(A, 1, 0)
A = ConvertToRGB(A)
A = ImageWriter(A, &quot;..\frames\A&quot;, type = &quot;jpg&quot;)

B = FFVideoSource(&quot;..\RAW.MOV&quot;)
B = ConvertToRGB(B, matrix=&quot;PC.601&quot;, interlaced=false)
B = Converttoyv12(B)          # convert to yv12 needed for Interframe
B = selectodd(B)              # select even or odd frames and interpolate them 
B = assumefps(B, 25)          # Interframe doesn&#039;t work with 12,5 fps 
B = InterFrame(B, NewNum=50, NewDen=1, GPU=false, FlowPath=ScriptDir()+&quot;..\Avisynth-plugins\&quot;)
B = assumefps(B, 25)
B = ConvertToRGB(B)
B = ImageWriter(B, &quot;..\frames\B&quot;, type = &quot;jpg&quot;)

return Interleave(A,B)

It would be awesome if we could use information of the underexposed frame for the overexposed interpolated frame and vise versa to get a better result. 
Is there any chance this is possible somehow?

Kind regards Sander]]></description>
			<content:encoded><![CDATA[<p>Thanks for the new version. I&#8217;m still with 1.14 since I use Interframe in a different way then its designed for using Magic Lantern to get HDR video. I do have problems with 2.0b1, but that&#8217;s probably because I use it wrong&#8230;</p>
<p>Video: <a href="http://vimeo.com/35867786" rel="nofollow ugc">http://vimeo.com/35867786</a></p>
<p>So we have a 25FPS framerate looking like THIS: O-U-O-U-O-U etc&#8230;. (O = overexposed and U = underexposed)<br />
The result we need is an 25 fps overexposed and a 25fps underexposed stream which are saved as image sequences.<br />
How we do it:</p>
<p>A = FFVideoSource(&#8220;..\RAW.MOV&#8221;)<br />
A = ConvertToRGB(A, matrix=&#8221;PC.601&#8243;, interlaced=false)<br />
A = Converttoyv12(A)           # convert to yv12 needed for Interframe<br />
A = selecteven(A)              # select even or odd frames and interpolate them<br />
A = assumefps(A, 25)           # Interframe doesn&#8217;t work with 12,5 fps<br />
A = InterFrame(A, NewNum=50, NewDen=1, GPU=false, FlowPath=ScriptDir()+&#8221;..\Avisynth-plugins\&#8221;)<br />
A = assumefps(A, 25)<br />
A = trim(A, 1, 0)<br />
A = ConvertToRGB(A)<br />
A = ImageWriter(A, &#8220;..\frames\A&#8221;, type = &#8220;jpg&#8221;)</p>
<p>B = FFVideoSource(&#8220;..\RAW.MOV&#8221;)<br />
B = ConvertToRGB(B, matrix=&#8221;PC.601&#8243;, interlaced=false)<br />
B = Converttoyv12(B)          # convert to yv12 needed for Interframe<br />
B = selectodd(B)              # select even or odd frames and interpolate them<br />
B = assumefps(B, 25)          # Interframe doesn&#8217;t work with 12,5 fps<br />
B = InterFrame(B, NewNum=50, NewDen=1, GPU=false, FlowPath=ScriptDir()+&#8221;..\Avisynth-plugins\&#8221;)<br />
B = assumefps(B, 25)<br />
B = ConvertToRGB(B)<br />
B = ImageWriter(B, &#8220;..\frames\B&#8221;, type = &#8220;jpg&#8221;)</p>
<p>return Interleave(A,B)</p>
<p>It would be awesome if we could use information of the underexposed frame for the overexposed interpolated frame and vise versa to get a better result.<br />
Is there any chance this is possible somehow?</p>
<p>Kind regards Sander</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
