<?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: Video Encoding Script</title>
	<atom:link href="http://www.helyar.net/enc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.helyar.net</link>
	<description>From the desktop of George Helyar</description>
	<lastBuildDate>Sat, 04 Feb 2012 18:35:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Sean</title>
		<link>http://www.helyar.net/enc/comment-page-1/#comment-9606</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Wed, 04 Jan 2012 17:30:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.helyar.net/?page_id=352#comment-9606</guid>
		<description>What an excellent script!  You have saved me a lot of time and effort in working out how to get this done and for that I thank you!</description>
		<content:encoded><![CDATA[<p>What an excellent script!  You have saved me a lot of time and effort in working out how to get this done and for that I thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George Helyar</title>
		<link>http://www.helyar.net/enc/comment-page-1/#comment-1120</link>
		<dc:creator>George Helyar</dc:creator>
		<pubDate>Mon, 13 Sep 2010 21:07:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.helyar.net/?page_id=352#comment-1120</guid>
		<description>That is outside of the scope of this script.

This script simplifies video encoding using ffmpeg, x264, faac and an mp4 container. Specifically, it simplifies it by drastically reducing the command line arguments you need to enter, batching multiple files to encode and automatically calculating bitrates to target a given file size e.g. to fit on a CD and play in a Blu-ray player or computer.</description>
		<content:encoded><![CDATA[<p>That is outside of the scope of this script.</p>
<p>This script simplifies video encoding using ffmpeg, x264, faac and an mp4 container. Specifically, it simplifies it by drastically reducing the command line arguments you need to enter, batching multiple files to encode and automatically calculating bitrates to target a given file size e.g. to fit on a CD and play in a Blu-ray player or computer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: a,alex</title>
		<link>http://www.helyar.net/enc/comment-page-1/#comment-1117</link>
		<dc:creator>a,alex</dc:creator>
		<pubDate>Mon, 13 Sep 2010 18:25:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.helyar.net/?page_id=352#comment-1117</guid>
		<description>hi, is there a chance you can add flvtool meta injection for mp4 clips and automate the entire process with cron ?</description>
		<content:encoded><![CDATA[<p>hi, is there a chance you can add flvtool meta injection for mp4 clips and automate the entire process with cron ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George Helyar</title>
		<link>http://www.helyar.net/enc/comment-page-1/#comment-850</link>
		<dc:creator>George Helyar</dc:creator>
		<pubDate>Tue, 10 Aug 2010 20:52:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.helyar.net/?page_id=352#comment-850</guid>
		<description>No, the tmp file is not used by the second pass at all and can even be deleted safely before the second pass.

Only the log file (and other similar files) are used by the second pass, as well as the original input media of course.

The script does not delete anything. You have to clean it up yourself.

If you still have the log and need to make changes such as choosing a different audio stream, you may be able to skip the first pass and run only the second pass again.</description>
		<content:encoded><![CDATA[<p>No, the tmp file is not used by the second pass at all and can even be deleted safely before the second pass.</p>
<p>Only the log file (and other similar files) are used by the second pass, as well as the original input media of course.</p>
<p>The script does not delete anything. You have to clean it up yourself.</p>
<p>If you still have the log and need to make changes such as choosing a different audio stream, you may be able to skip the first pass and run only the second pass again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.helyar.net/enc/comment-page-1/#comment-848</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 10 Aug 2010 20:07:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.helyar.net/?page_id=352#comment-848</guid>
		<description>Erm, I don&#039;t know if this is a bug but it seems to act weird when it does the 2 passes. Here&#039;s an example of the commands it sends out..

ffmpeg -i 1.VOB -pass 1 -an -vcodec libx264 -vpre fastfirstpass -b 378744 -bt 378744 -threads 0 -y -f mp4 pass1.tmp
ffmpeg -i 1.VOB -pass 2 -acodec libfaac -ac 2 -ab 128k -vcodec libx264 -vpre hq -b 378744 -bt 378744 -threads 0 -y 1.VOB.mp4

is it supposed to input from A to pass1.tmp and then from A to B? Shouldn&#039;t it be A to tmp then tmp to B.

Another thing. It doesn&#039;t get rid of pass1.tmp when it finishes.</description>
		<content:encoded><![CDATA[<p>Erm, I don&#8217;t know if this is a bug but it seems to act weird when it does the 2 passes. Here&#8217;s an example of the commands it sends out..</p>
<p>ffmpeg -i 1.VOB -pass 1 -an -vcodec libx264 -vpre fastfirstpass -b 378744 -bt 378744 -threads 0 -y -f mp4 pass1.tmp<br />
ffmpeg -i 1.VOB -pass 2 -acodec libfaac -ac 2 -ab 128k -vcodec libx264 -vpre hq -b 378744 -bt 378744 -threads 0 -y 1.VOB.mp4</p>
<p>is it supposed to input from A to pass1.tmp and then from A to B? Shouldn&#8217;t it be A to tmp then tmp to B.</p>
<p>Another thing. It doesn&#8217;t get rid of pass1.tmp when it finishes.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

