<?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 for dragonsbyte.ca</title>
	<atom:link href="http://dragonsbyte.ca/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://dragonsbyte.ca</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Wed, 09 Jan 2008 08:00:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on GPS and Video on the Blackberry 8830 by dragon</title>
		<link>http://dragonsbyte.ca/2007/09/10/gps-and-video-on-the-blackberry-8830/#comment-17</link>
		<dc:creator>dragon</dc:creator>
		<pubDate>Wed, 09 Jan 2008 08:00:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragonsbyte.ca/?p=71#comment-17</guid>
		<description>That appears to work nicely Adam - I also came across another useful site &lt;a href=&quot;http://ffaat.pointclark.net/blog/archives/140-Video-on-the-Blackberry-8830-with-FFMPEG.html&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.

Rob A has what appear to be better settings than mine for using ffmpeg to output 8830 compatible files.  He is obviously using Windows, but under Linux, the same commands work, you just need to use $1 instead of %1 in the script (and put #!/bin/bash as the first line...)  Looks like I may have tried to get too fancy to start.

For &#039;normal&#039; size videos:

&lt;code&gt;#!/bin/bash
ffmpeg -i $1 -f mp4 -vcodec mpeg4 -b 400k -r 24 -s 320x240 -aspect 4:3 -acodec aac -ar 22050 -ac 2 -ab 48k $1.mp4&lt;/code&gt;

For &#039;widescreen&#039; videos:

&lt;code&gt;#!/bin/bash
ffmpeg -i $1 -f mp4 -vcodec mpeg4 -b 400k -r 24 -s 320x180 -aspect 16:9 -acodec aac -ar 22050 -ac 2 -ab 48k $1.mp4
&lt;/code&gt;

Either one will accept a filename as input, and spit out an mp4 version.</description>
		<content:encoded><![CDATA[<p>That appears to work nicely Adam &#8211; I also came across another useful site <a href="http://ffaat.pointclark.net/blog/archives/140-Video-on-the-Blackberry-8830-with-FFMPEG.html" rel="nofollow">here</a>.</p>
<p>Rob A has what appear to be better settings than mine for using ffmpeg to output 8830 compatible files.  He is obviously using Windows, but under Linux, the same commands work, you just need to use $1 instead of %1 in the script (and put #!/bin/bash as the first line&#8230;)  Looks like I may have tried to get too fancy to start.</p>
<p>For &#8216;normal&#8217; size videos:</p>
<p><code>#!/bin/bash<br />
ffmpeg -i $1 -f mp4 -vcodec mpeg4 -b 400k -r 24 -s 320x240 -aspect 4:3 -acodec aac -ar 22050 -ac 2 -ab 48k $1.mp4</code></p>
<p>For &#8216;widescreen&#8217; videos:</p>
<p><code>#!/bin/bash<br />
ffmpeg -i $1 -f mp4 -vcodec mpeg4 -b 400k -r 24 -s 320x180 -aspect 16:9 -acodec aac -ar 22050 -ac 2 -ab 48k $1.mp4<br />
</code></p>
<p>Either one will accept a filename as input, and spit out an mp4 version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GPS and Video on the Blackberry 8830 by Adam</title>
		<link>http://dragonsbyte.ca/2007/09/10/gps-and-video-on-the-blackberry-8830/#comment-16</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Wed, 09 Jan 2008 07:56:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragonsbyte.ca/?p=71#comment-16</guid>
		<description>woops, that -t option only takes a single number.  In my example above the only title 1 was encoded, which was what I wanted.</description>
		<content:encoded><![CDATA[<p>woops, that -t option only takes a single number.  In my example above the only title 1 was encoded, which was what I wanted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GPS and Video on the Blackberry 8830 by Adam</title>
		<link>http://dragonsbyte.ca/2007/09/10/gps-and-video-on-the-blackberry-8830/#comment-15</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Wed, 09 Jan 2008 03:18:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragonsbyte.ca/?p=71#comment-15</guid>
		<description>I&#039;ve had some success with Handbrake getting nice looking video on my pearl.  Handbrake doesn&#039;t do transcoding and is only meant for ripping from dvd to a source.  If you are using Mac or windows you can use the GUI but I did some testing and the HandbrakeCLI seems to be a bit more than 2x faster, and there are pre-compiled linux versions of the CLI.

To rip from a dvd to a blackberry compatible format I did ran the following command


HandBrakeCLI -i /Volumes/ARRESTED_D1/VIDEO_TS/ -t 1-5 -e ffmpeg -b 400 -w 320 -l 176 -f mp4 -o ~/Desktop/AD101.mp4


The options I used are these

-i input device or folder containing

-t titles to encode (on my arrested development dvd titles 1-5 contain 1 episode.

-e use the ffmpeg encoder

-b bitrate I haven&#039;t tested what the max was but 500 gave a pretty good output for my screen. I couldn&#039;t see any artifacts.

-w output video width

-l output video height

-f use the mp4 container format

-o output file</description>
		<content:encoded><![CDATA[<p>I&#8217;ve had some success with Handbrake getting nice looking video on my pearl.  Handbrake doesn&#8217;t do transcoding and is only meant for ripping from dvd to a source.  If you are using Mac or windows you can use the GUI but I did some testing and the HandbrakeCLI seems to be a bit more than 2x faster, and there are pre-compiled linux versions of the CLI.</p>
<p>To rip from a dvd to a blackberry compatible format I did ran the following command</p>
<p>HandBrakeCLI -i /Volumes/ARRESTED_D1/VIDEO_TS/ -t 1-5 -e ffmpeg -b 400 -w 320 -l 176 -f mp4 -o ~/Desktop/AD101.mp4</p>
<p>The options I used are these</p>
<p>-i input device or folder containing</p>
<p>-t titles to encode (on my arrested development dvd titles 1-5 contain 1 episode.</p>
<p>-e use the ffmpeg encoder</p>
<p>-b bitrate I haven&#8217;t tested what the max was but 500 gave a pretty good output for my screen. I couldn&#8217;t see any artifacts.</p>
<p>-w output video width</p>
<p>-l output video height</p>
<p>-f use the mp4 container format</p>
<p>-o output file</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GPS and Video on the Blackberry 8830 by David</title>
		<link>http://dragonsbyte.ca/2007/09/10/gps-and-video-on-the-blackberry-8830/#comment-14</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 13 Nov 2007 02:53:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragonsbyte.ca/?p=71#comment-14</guid>
		<description>Thanks for your help... I&#039;ve been playing around with this.  Some videos seem to play in slow motion and get behind the sound.  I tried dropping the bitrate to 400 max 500 (which btw still looks good when played in the computer), same problem though.  I dropped the resolution to 240x180 w/ bitrate 400 max 500, and it works great.  But the video is of course smaller (and the blackberry doesn&#039;t even scale it to fullscreen), so this is a lot less rewarding.  Anyone else with further hints would be great.
David</description>
		<content:encoded><![CDATA[<p>Thanks for your help&#8230; I&#8217;ve been playing around with this.  Some videos seem to play in slow motion and get behind the sound.  I tried dropping the bitrate to 400 max 500 (which btw still looks good when played in the computer), same problem though.  I dropped the resolution to 240&#215;180 w/ bitrate 400 max 500, and it works great.  But the video is of course smaller (and the blackberry doesn&#8217;t even scale it to fullscreen), so this is a lot less rewarding.  Anyone else with further hints would be great.<br />
David</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GPS and Video on the Blackberry 8830 by dragon</title>
		<link>http://dragonsbyte.ca/2007/09/10/gps-and-video-on-the-blackberry-8830/#comment-13</link>
		<dc:creator>dragon</dc:creator>
		<pubDate>Tue, 11 Sep 2007 05:11:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragonsbyte.ca/?p=71#comment-13</guid>
		<description>HandBrake is not as useful in this case as might be hoped.  It&#039;s possible that it can be used to generate compatible files for the 8830, but I wasn&#039;t able to.

On Linux, there is only a command line interface version of the software, not a gui version.  It doesn&#039;t appear to support reading from media files (avi, mpg, etc) only from a dvd or dvd image.  As a result, it takes a long time to make a change and test it.</description>
		<content:encoded><![CDATA[<p>HandBrake is not as useful in this case as might be hoped.  It&#8217;s possible that it can be used to generate compatible files for the 8830, but I wasn&#8217;t able to.</p>
<p>On Linux, there is only a command line interface version of the software, not a gui version.  It doesn&#8217;t appear to support reading from media files (avi, mpg, etc) only from a dvd or dvd image.  As a result, it takes a long time to make a change and test it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GPS and Video on the Blackberry 8830 by Adam</title>
		<link>http://dragonsbyte.ca/2007/09/10/gps-and-video-on-the-blackberry-8830/#comment-12</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Mon, 10 Sep 2007 22:01:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragonsbyte.ca/?p=71#comment-12</guid>
		<description>Nice to see you back!

If you&#039;re interested in a tool for ripping dvd&#039;s to a suitable form, I recommend &lt;a href=&quot;http://handbrake.m0k.org/?article=details&quot; rel=&quot;nofollow&quot;&gt;Handbrake&lt;/a&gt;.  I use it on my macbook for dvd ripping.  It allows profiles to be set up for sizes, containers, encoders etc.  So set up a profile for the bb and then rip away!</description>
		<content:encoded><![CDATA[<p>Nice to see you back!</p>
<p>If you&#8217;re interested in a tool for ripping dvd&#8217;s to a suitable form, I recommend <a href="http://handbrake.m0k.org/?article=details" rel="nofollow">Handbrake</a>.  I use it on my macbook for dvd ripping.  It allows profiles to be set up for sizes, containers, encoders etc.  So set up a profile for the bb and then rip away!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lord of the Rings &#8211; The Musical by dragonsbyte</title>
		<link>http://dragonsbyte.ca/2006/03/04/lord-of-the-rings-the-musical/#comment-10</link>
		<dc:creator>dragonsbyte</dc:creator>
		<pubDate>Wed, 03 Jan 2007 02:29:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragonsbyte.ca/?p=40#comment-10</guid>
		<description>Hi Steven,

Happy New Year to you as well!

As far as the music, I&#039;d say that, yes, it is good.    I probably didn&#039;t mention it, because it worked so well that I really didn&#039;t think about it a lot.  It is a strange thing to omit when talking about a musical, isn&#039;t it?

If a CD had been available, I&#039;d definitely have bought it, not having one available was another of my gripes.</description>
		<content:encoded><![CDATA[<p>Hi Steven,</p>
<p>Happy New Year to you as well!</p>
<p>As far as the music, I&#8217;d say that, yes, it is good.    I probably didn&#8217;t mention it, because it worked so well that I really didn&#8217;t think about it a lot.  It is a strange thing to omit when talking about a musical, isn&#8217;t it?</p>
<p>If a CD had been available, I&#8217;d definitely have bought it, not having one available was another of my gripes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lord of the Rings &#8211; The Musical by Steven Morin</title>
		<link>http://dragonsbyte.ca/2006/03/04/lord-of-the-rings-the-musical/#comment-9</link>
		<dc:creator>Steven Morin</dc:creator>
		<pubDate>Tue, 02 Jan 2007 17:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragonsbyte.ca/?p=40#comment-9</guid>
		<description>Hi Michael,

Didn&#039;t know you saw that show... The musical composer of this show is one of my fave, A.R. Rahman, a very famous indian Bollywood composer. Unfortunately, you don&#039;t mention anything about the music. Was it good?

Happy New Year 2007 to you and Jen!!

Steven</description>
		<content:encoded><![CDATA[<p>Hi Michael,</p>
<p>Didn&#8217;t know you saw that show&#8230; The musical composer of this show is one of my fave, A.R. Rahman, a very famous indian Bollywood composer. Unfortunately, you don&#8217;t mention anything about the music. Was it good?</p>
<p>Happy New Year 2007 to you and Jen!!</p>
<p>Steven</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lombard Streeet at Night (San Francisco) by Adam</title>
		<link>http://dragonsbyte.ca/2006/05/11/lombard-streeet-at-night-san-francisco/#comment-11</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 20 Jun 2006 16:26:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragonsbyte.ca/?p=55#comment-11</guid>
		<description>Dude, that&#039;s a fantastic picture!</description>
		<content:encoded><![CDATA[<p>Dude, that&#8217;s a fantastic picture!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on No photo &#8211; site change by Paul</title>
		<link>http://dragonsbyte.ca/2006/01/10/no-photo-site-change/#comment-6</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Wed, 01 Mar 2006 00:27:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragonsbyte.ca/?p=30#comment-6</guid>
		<description>I&#039;m one of Christa&#039;s past workmates and current friend, Paul.

I discovered lightbox at about the same time as you and I&#039;m using it in almost all my web image applications now.  I never realized the issue if the filename isn&#039;t valid.  I&#039;ll be checking that out too.</description>
		<content:encoded><![CDATA[<p>I&#8217;m one of Christa&#8217;s past workmates and current friend, Paul.</p>
<p>I discovered lightbox at about the same time as you and I&#8217;m using it in almost all my web image applications now.  I never realized the issue if the filename isn&#8217;t valid.  I&#8217;ll be checking that out too.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

