<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ADAC Solutions, LLC</title>
	<atom:link href="http://www.adac-solutions.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.adac-solutions.com</link>
	<description>You think it, we build it.</description>
	<lastBuildDate>Wed, 15 Feb 2012 02:53:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Official Google Blog: Supercharging Android: Google to Acquire Motorola Mobility</title>
		<link>http://www.adac-solutions.com/?p=115</link>
		<comments>http://www.adac-solutions.com/?p=115#comments</comments>
		<pubDate>Mon, 15 Aug 2011 15:29:52 +0000</pubDate>
		<dc:creator>ambrons</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.adac-solutions.com/?p=115</guid>
		<description><![CDATA[Big news! Google is acquiring Motorola Mobile. Yes this is about patents, but it could be good in other ways too. http://googleblog.blogspot.com/2011/08/supercharging-android-google-to-acquire.html?m=1]]></description>
			<content:encoded><![CDATA[<p>Big news! Google is acquiring Motorola Mobile. Yes this is about patents, but it could be good in other ways too.</p>
<p><a href="http://googleblog.blogspot.com/2011/08/supercharging-android-google-to-acquire.html?m=1">http://googleblog.blogspot.com/2011/08/supercharging-android-google-to-acquire.html?m=1</a> </p>
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-url="http://www.adac-solutions.com/?p=115" data-counter="right"></script><div class="plus-one-wrap"><g:plusone size="small" href="http://www.adac-solutions.com/?p=115"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.adac-solutions.com/?feed=rss2&#038;p=115</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Git on GoDaddy&#8217;s SSH-Enabled Virtual Webhosts</title>
		<link>http://www.adac-solutions.com/?p=94</link>
		<comments>http://www.adac-solutions.com/?p=94#comments</comments>
		<pubDate>Wed, 20 Jul 2011 00:03:06 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.adac-solutions.com/?p=94</guid>
		<description><![CDATA[Recently I&#8217;ve switched to using Git for version control for my day-to-day projects. I also finally got around to updating the website theme. This brings me to the point of the post. I&#8217;ve been using GoDaddy&#8217;s virtual web hosting, no this isn&#8217;t a GoDaddy plug, I could take them or leave them. After enabling the [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve switched to using Git for version control for my day-to-day projects.  I also finally got around to updating the website theme.  This brings me to the point of the post.</p>
<p>I&#8217;ve been using GoDaddy&#8217;s virtual web hosting, no this isn&#8217;t a GoDaddy plug, I could take them or leave them.  After enabling the SSH feature through the control panel so I didn&#8217;t have to deal with ftp I quickly decided that it was time to use Git.  The problem is that GoDaddy doesn&#8217;t support Git on their virtual webhosting service.</p>
<p>So the following is a list of steps to get everything setup.</p>
<ul>
<li>Statically compile Git</li>
<li>Install Git on virtual web hosting</li>
<li>Setup ssh</li>
<li>Git workaround for pull, push, fetch</li>
</ul>
<p><span style="text-decoration: underline;">Statically Compile Git</span><br />
1) Find a 32bit linux box to use for this step.  The virtual host I used was 32bit based.  I believe all of their virtual hosts are 32bit based, but you can verify by running:</p>
<pre class="brush: bash; light: true; title: ; notranslate">
$ uname -m
i686
</pre>
<p>2) <a href="http://git-scm.com/download" target="_blank">Download</a> the latest version of Git <a href="http://kernel.org/pub/software/scm/git/git-1.7.6.tar.bz2" target="_blank">source</a>. Create a directory to contain the compiled binaries.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
$ tar -jxvf git-1.7.6.tar.bz2
$ mkdir ~/git-scm
$ cd git-1.7.6
$ ./configure --prefix=~/git-scm CFLAGS=&quot;${CFLAGS} -static&quot;
</pre>
<p>3) Compile and install git into ~/git-scm.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
$ make
$ make install
</pre>
<p>4) Package the statically compiled Git for install on the GoDaddy virtual host.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
$ cd ~/
$ tar -jcvf git-static-1.7.6.tar.bz2 ~/git-scm
</pre>
<p><span style="text-decoration: underline;">Setting up SSH and installing Git</span><br />
1) Creating an ssh public / private keypair is not required, but makes it easier to use git commands if you don&#8217;t have to enter your password each time a remote command is run.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
# On your local system
$ ssh-keygen -t rsa -b 2048 -C &quot;myid@goDaddy&quot;
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/abrons/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /Users/abrons/.ssh/id_rsa.
Your public key has been saved in /Users/abrons/.ssh/id_rsa.pub.
The key fingerprint is:
...
</pre>
<p>2) Log into your GoDaddy account and setup the RSA public key for password-less authentication.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
# SSH to GoDaddy Host
$ mkdir ~/.ssh
$ cd ~/.ssh
$ vi authorized_keys
# Copy the contents of local system myId@goDaddy.pub into authorized_keys
$ chmod 600 authorized_keys
$ chmod 700 ~/.ssh
</pre>
<p>3) Configure local system ssh client to connect as you with using a host alias.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
$ cd ~/.ssh
$ vi config
# Put the following in your config file change &quot;myhost&quot; and &quot;myid&quot; with your
# GoDaddy host and userid
Host myHostAlias
HostName myhost
User myid
IdentityFile ~/.ssh/myid@goDaddy
</pre>
<p><span style="text-decoration: underline;">Install Static Git</span><br />
1) Use secure copy to copy the git-static-1.7.6.tar.bz2 tarball to the GoDaddy virtual web host and install.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
# From local system
$ scp ~/git-static-1.7.6.tar.bz2 myhost:
</pre>
<p>2) SSH to your goDaddyHost and install the git binaries.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
$ ssh myHostAlias
$ tar -jxvf git-static-1.7.6.tar.bz2
$ vi ~/.bash_profile
# Add the git binaries to your execute path
# Find the line that has &quot;PATH=&quot; or add one
PATH=${PATH}:${HOME}/git-scm/bin
</pre>
<p>3) Example git repository of GoDaddyHost/html</p>
<pre class="brush: bash; light: true; title: ; notranslate">
$ ssh myHostAlias
$ cd ~/html
$ git init
# NOTE: Do NOT do the following if you plan to make changes to ~/html locally
#           instead create a bare git repository that both GoDaddy and your local system
#           push and pull to/from.
$ git config receive.denyCurrentBranch ignore
</pre>
<p>4) From your local system clone the myHostAlias(GoDaddyHost) html git repository. You&#8217;ll notice the &#8220;-u&#8221;, this is required because GoDaddy does not allow you to override the PATH variable for a non-interactive ssh session such as git over ssh.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
$ git clone -u /home/content/a/d/a/myid/git-scm/bin/git-upload-pack myHostAlias:html
</pre>
<p>5) Setting up Git paths for push, pull, and fetch on GoDaddyHost.  On the local system cloned repository.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
# Replace &quot;/home/content...&quot; with the FULLPATH on your GoDaddyHost to the git-upload-pack binary
$ git config remote.origin.uploadpack /home/content/a/d/a/myid/git-scm/bin/git-upload-pack

# Replace &quot;/home/content...&quot; with the FULLPATH on your GoDaddyHost to the git-receive-pack binary
$ git config remote.origin.receivepack /home/content/a/d/a/myid/git-scm/bin/git-receive-pack
</pre>
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-url="http://www.adac-solutions.com/?p=94" data-counter="right"></script><div class="plus-one-wrap"><g:plusone size="small" href="http://www.adac-solutions.com/?p=94"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.adac-solutions.com/?feed=rss2&#038;p=94</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ubuntu 11.04 &#8211; Hints and Tips on Upgrading</title>
		<link>http://www.adac-solutions.com/?p=88</link>
		<comments>http://www.adac-solutions.com/?p=88#comments</comments>
		<pubDate>Mon, 09 May 2011 13:25:25 +0000</pubDate>
		<dc:creator>ambrons</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.adac-solutions.com/?p=88</guid>
		<description><![CDATA[This is a work in progress so bare with me, but as I find things that I miss about 10.10, can&#8217;t stand with 11.04, etc. I&#8217;ll post a link or a description here. For now the best resource I&#8217;ve found is this site for making 11.04 usable if you&#8217;re not feeling very &#8220;United&#8221;. Here&#8217;s a [...]]]></description>
			<content:encoded><![CDATA[<p>This is a work in progress so bare with me, but as I find things that I miss about 10.10, can&#8217;t stand with 11.04, etc. I&#8217;ll post a link or a description here.</p>
<p>For now the best resource I&#8217;ve found is <a title="OMG! Ubuntu!" href="http://www.omgubuntu.co.uk/" target="_blank">this site</a> for making 11.04 usable if you&#8217;re not feeling very &#8220;United&#8221;.</p>
<p>Here&#8217;s a couple of Highlights:</p>
<ul>
<li><a href="http://www.omgubuntu.co.uk/2011/05/how-to-fix-the-plymouth-boot-screen-when-using-proprietary-graphics-drivers/" target="_blank">Fix the plymouth boot screen when using proprietary graphic drivers</a></li>
<li><a href="http://www.omgubuntu.co.uk/2011/05/recieve-ubuntu-notifications-when-connecting-usb-peripherals-with-udev-notify/" target="_blank">Udev Notify</a></li>
<li><a href="http://www.omgubuntu.co.uk/2011/05/disable-the-resize-grip-in-ubuntu-11-04/" target="_blank">Disable the &#8220;resize grip&#8221; in Ubuntu 11.04</a></li>
<li><a href="http://www.omgubuntu.co.uk/2011/04/10-things-to-do-after-installing-ubuntu-11-04/" target="_blank">10 Things to do after installing Natty</a></li>
</ul>
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-url="http://www.adac-solutions.com/?p=88" data-counter="right"></script><div class="plus-one-wrap"><g:plusone size="small" href="http://www.adac-solutions.com/?p=88"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.adac-solutions.com/?feed=rss2&#038;p=88</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JClassType Breaking Change in 2.0</title>
		<link>http://www.adac-solutions.com/?p=36</link>
		<comments>http://www.adac-solutions.com/?p=36#comments</comments>
		<pubDate>Fri, 06 May 2011 12:48:39 +0000</pubDate>
		<dc:creator>ambrons</dc:creator>
				<category><![CDATA[GWT]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.adac-solutions.com/?p=36</guid>
		<description><![CDATA[JClassType *(metaData) methods are deprecated and return empty Strings.  Found this out the hardway.  JClassType now implements HasAnnotations and therefore can retrieve a real annotation instead of having to using a JavaDoc style annotation for specifying information about a class/interface to the GWT Generator.]]></description>
			<content:encoded><![CDATA[<p>JClassType *(metaData) methods are deprecated and return empty Strings.  Found this out the hardway.  JClassType now implements HasAnnotations and therefore can retrieve a real annotation instead of having to using a JavaDoc style annotation for specifying information about a class/interface to the GWT Generator.</p>
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-url="http://www.adac-solutions.com/?p=36" data-counter="right"></script><div class="plus-one-wrap"><g:plusone size="small" href="http://www.adac-solutions.com/?p=36"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.adac-solutions.com/?feed=rss2&#038;p=36</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logical Volume Management (LVM): Tips</title>
		<link>http://www.adac-solutions.com/?p=21</link>
		<comments>http://www.adac-solutions.com/?p=21#comments</comments>
		<pubDate>Fri, 06 May 2011 12:48:10 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.adac-solutions.com/?p=21</guid>
		<description><![CDATA[lvcreate -L &#60;Size&#62;G -n &#60;name&#62; &#60;volume_group&#62; lvremove &#60;lv device name&#62;: lvremove /dev/mapper/vg01-uec The following commands will resize an ext2, ext3, or ext4 filesystem running on LVM while it is mounted:]]></description>
			<content:encoded><![CDATA[<p>lvcreate -L &lt;Size&gt;G -n &lt;name&gt; &lt;volume_group&gt;</p>
<p>lvremove &lt;lv device name&gt;: lvremove /dev/mapper/vg01-uec</p>
<p>The following commands will resize an ext2, ext3, or ext4 filesystem  running on LVM while it is mounted:</p>
<pre class="brush: plain; title: ; notranslate">
$ sudo lvresize -L +XXG &lt;path to fs device&gt;
$ sudo resize2fs &lt;path to fs device&gt;
</pre>
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-url="http://www.adac-solutions.com/?p=21" data-counter="right"></script><div class="plus-one-wrap"><g:plusone size="small" href="http://www.adac-solutions.com/?p=21"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.adac-solutions.com/?feed=rss2&#038;p=21</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone/iPad Video Streaming and Conversion with Linux</title>
		<link>http://www.adac-solutions.com/?p=25</link>
		<comments>http://www.adac-solutions.com/?p=25#comments</comments>
		<pubDate>Fri, 06 May 2011 12:44:16 +0000</pubDate>
		<dc:creator>james.zimmerman</dc:creator>
				<category><![CDATA[iOS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.adac-solutions.com/?p=25</guid>
		<description><![CDATA[Being a fairly content user of the iPad in general, I decided to explore what other offerings where available on the web regarding video streaming and conversion.  Upon first glance, I located AirVideo, a $3 app on the iPad with a Lite version available that limits the number of files that can be listed for [...]]]></description>
			<content:encoded><![CDATA[<p>Being a fairly content user of the iPad in general, I decided to explore what other offerings where available on the web regarding video streaming and conversion.  Upon first glance, I located AirVideo, a $3 app on the iPad with a Lite version available that limits the number of files that can be listed for streaming/conversion.</p>
<p>The application requires a server-side component to re-encode the video format.  Luckily, that part is free, and rightfully so as further digging and simple monitoring of the raw output of the file revealed a heavy reliance on an inherent component of many linux environments, ffmpeg.  The application server does offer a few distinct user interface interactions that are still advantageous, but for the core process of conversion, if you don&#8217;t prefer having your hand held, you could simply borrow their commands, though YMMV.</p>
<p>One thing that should be noted is that during the spin up of this solution, I had to hop through a few various hoops in order to get the server-side operating under Linux.  I had to custom compile ffmpeg for the best performance, and the default Ubuntu libraries I had didn&#8217;t cut it.  I found the first set of instructions [<a href="https://launchpad.net/~stemp/+archive/ppa">here</a>].</p>
<ol>
<li>Download &#8220;customized&#8221; ffmpeg binary from AirVideo server. [<a href="http://www.inmethod.com/air-video/download/ffmpeg-for-2.2.5.tar.bz2" target="_blank">Download</a>] [<a href="http://www.inmethod.com/air-video/licenses.html" target="_blank">License</a>]</li>
<li>Add custom repository for [<a href="https://launchpad.net/~stemp/+archive/ppa">Stephane Marguet's PPA</a>]<br />
<strong>sudo add-apt-repository ppa:stemp/ppa</strong></li>
<li>Install required requisites for compilation of ffmpeg with appropriate options.<br />
<strong>sudo aptitude install \<br />
libmp3lame \<br />
libfaad-dev \<br />
libx264-dev \ </strong><em>(Stephane&#8217;s PPA &#8211; 0.svn20100115-0.0)</em><br />
<strong>mpeg4ip-server \<br />
git-core \<br />
pkg-config</strong></li>
<li>Build custom ffmpeg instance <em>(downloaded in step 1)</em>, with specific compilation flags:<br />
<strong>./configure \<br />
&#8211;enable-pthreads \<br />
</strong><strong>&#8211;disable-shared \<br />
&#8211;enable-static \<br />
&#8211;enable-gpl \<br />
&#8211;enable-libx264 \<br />
&#8211;enable-libmp3lame \<br />
</strong><strong>&#8211;enable-libfaad \<br />
&#8211;disable-decoder=aac</strong></li>
<li>&#8220;Make&#8221; the new ffmpeg:<br />
<strong>make</strong><strong> </strong></li>
</ol>
<p>The server side appears to rely heavily on two primary commands to operate:</p>
<p><strong>Live Conversion (Transcoding)</strong>:</p>
<blockquote><p>﻿﻿﻿ffmpeg \<br />
&#8211;conversion-id $hash_id \<br />
&#8211;port-number 46631 \<br />
-threads 4 \<br />
-flags2 \<br />
+fast \<br />
-flags \<br />
+loop \<br />
-g 250 \<br />
-keyint_min 25 \<br />
-bf 0 \<br />
-b_strategy 0 \<br />
-cmp \<br />
+chroma \<br />
-deblockalpha 0 \<br />
-deblockbeta 0 \<br />
-refs 1 \<br />
-coder 0 \<br />
-me_range 16 \<br />
-subq 5 \<br />
-partitions \<br />
+parti4x4+parti8x8+partp8x8 \<br />
-trellis 0 \<br />
-sc_threshold 40 \<br />
-i_qfactor 0.71 \<br />
-qcomp 0.6 \<br />
-map 0.0:0.0 \<br />
-map 0.1:0.1 \<br />
-ss 0.0 \<br />
-i $input_filename \<br />
-cropleft 0 \<br />
-cropright 0 \<br />
-croptop 0 \<br />
-cropbottom 0 \<br />
-s 608&#215;336 \<br />
-aspect 1.8095238 \<br />
-y \<br />
-f mpegts \<br />
-vcodec libx264 \<br />
-bufsize 128k \<br />
-b 1700k \<br />
-bt 1800k \<br />
-qmax 48 \<br />
-qmin 2 \<br />
-r 23.976 \<br />
-acodec libmp3lame \<br />
-ab 192k \<br />
-ar 48000 \<br />
-ac 2 \<br />
-</p></blockquote>
<p><strong>Long Term Conversion</strong>:</p>
<blockquote>
<div id="_mcePaste">ffmpeg \</div>
<div id="_mcePaste">&#8211;conversion-id $hash_id \</div>
<div id="_mcePaste">&#8211;port-number 46631 \</div>
<div id="_mcePaste">-threads 4 \</div>
<div id="_mcePaste">-flags2 \</div>
<div id="_mcePaste">+fast \</div>
<div id="_mcePaste">-flags \</div>
<div id="_mcePaste">+loop \</div>
<div id="_mcePaste">-g 250 \</div>
<div id="_mcePaste">-keyint_min 25 \</div>
<div id="_mcePaste">-bf 0 \</div>
<div id="_mcePaste">-b_strategy 0 \</div>
<div id="_mcePaste">-cmp \</div>
<div id="_mcePaste">+chroma \</div>
<div id="_mcePaste">-deblockalpha 0 \</div>
<div id="_mcePaste">-deblockbeta 0 \</div>
<div id="_mcePaste">-refs 1 \</div>
<div id="_mcePaste">-coder 0 \</div>
<div id="_mcePaste">-me_range 16 \</div>
<div id="_mcePaste">-subq 5 \</div>
<div id="_mcePaste">-partitions \</div>
<div id="_mcePaste">+parti4x4+parti8x8+partp8x8 \</div>
<div id="_mcePaste">-trellis 0 \</div>
<div id="_mcePaste">-sc_threshold 40 \</div>
<div id="_mcePaste">-i_qfactor 0.71 \</div>
<div id="_mcePaste">-qcomp 0.6 \</div>
<div id="_mcePaste">-map 0.0:0.0 \</div>
<div id="_mcePaste">-map 0.1:0.1 \</div>
<div id="_mcePaste">-ss 0.0 \</div>
<div id="_mcePaste">-i $input_filename \</div>
<div id="_mcePaste">-padleft 0 \</div>
<div id="_mcePaste">-padright 0 \</div>
<div id="_mcePaste">-padtop 0 \</div>
<div id="_mcePaste">-padbottom 0 \</div>
<div id="_mcePaste">-cropleft 0 \</div>
<div id="_mcePaste">-cropright 0 \</div>
<div id="_mcePaste">-croptop 0 \</div>
<div id="_mcePaste">-cropbottom 0 \</div>
<div id="_mcePaste">-s 608&#215;336 \</div>
<div id="_mcePaste">-aspect 1.8095238 \</div>
<div id="_mcePaste">-y \</div>
<div id="_mcePaste">-async 1 \</div>
<div id="_mcePaste">-f h264 \</div>
<div id="_mcePaste">-vcodec libx264 \</div>
<div id="_mcePaste">-crf 27 \</div>
<div id="_mcePaste">-qmax 27 \</div>
<div id="_mcePaste">-r 23.976 \</div>
<div id="_mcePaste">$output_filename.h264 \</div>
<div id="_mcePaste">-f adts \</div>
<div id="_mcePaste">-ar 48000 \</div>
<div id="_mcePaste">-f wav \</div>
<div id="_mcePaste">-ac 2 \</div>
<div id="_mcePaste">-</div>
<p><strong>Preparation Muxing</strong>:</p>
<blockquote><p>mp4creator \<br />
-create $output_filename.h264 \<br />
-rate 23.976 \<br />
-optimize $output_filename.m4v</p></blockquote>
<p><strong>Final Muxing</strong>:</p>
<blockquote><p>mp4creator \<br />
-create $output_filename.aac \<br />
$output_filename.m4v \<br />
-I \<br />
-optimize</p></blockquote>
</blockquote>
<p>It appears that with a few simple ffmpeg and mp4creator commands, we can generate the necessary files for play on our iPad/iPhones.  I specifically broke these down into separate lines for easier reference and review.  I will continue tweaking the application settings for conversion and monitor the resulting logs for additional details and update this point as the process continues.  Currently, conversion quality is set at 85% and it took roughly 50 minutes (guesstimate) to convert a 2-hour film.</p>
<p><strong><br />
</strong></p>
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-url="http://www.adac-solutions.com/?p=25" data-counter="right"></script><div class="plus-one-wrap"><g:plusone size="small" href="http://www.adac-solutions.com/?p=25"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.adac-solutions.com/?feed=rss2&#038;p=25</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize FireFox3 URL Bar Style</title>
		<link>http://www.adac-solutions.com/?p=43</link>
		<comments>http://www.adac-solutions.com/?p=43#comments</comments>
		<pubDate>Mon, 21 Jun 2010 18:48:01 +0000</pubDate>
		<dc:creator>ambrons</dc:creator>
				<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.adac-solutions.com/?p=43</guid>
		<description><![CDATA[One of the things that bothers me with Gnome themes in Linux.  Recently I was checking out Slickness.  I enjoy the &#8220;Darker&#8221; themes, but unfortunately it rendered the URL bar in FF3 nearly unusable.  The text was a dark blue on a dark grey.  The contrast to be able to read the URL bar was [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things that bothers me with Gnome themes in Linux.  Recently I was checking out <a title="Gnome Theme Slickness" href="http://gnome-look.org/content/show.php/SlicknesS?content=71993" target="_blank">Slickness</a>.  I enjoy the &#8220;Darker&#8221; themes, but unfortunately it rendered the URL bar in FF3 nearly unusable.  The text was a dark blue on a dark grey.  The contrast to be able to read the URL bar was near impossible.</p>
<p>Being new to customizing FireFox I had to do a little research.  The good news is that FireFox uses <a title="CSS Tutorial" href="http://www.w3schools.com/css/" target="_blank">CSS</a> so it was only a matter of knowing which classes to modify and where to put the CSS modifications.</p>
<p>The basics of creating FireFox customizations can be found at <a title="Customizing Firefox" href="http://www.mozilla.org/unix/customizing.html" target="_blank">this write up</a> on Mozilla&#8217;s website.  In addition to that the comments of <em>$HOME/.mozilla/firefox/&lt;insert goop&gt;.default/chrome/userChrome.css</em> where very helpful.</p>
<p>The following is a snippet from my userChrome.css file to make FireFox&#8217;s URL bar look close to the default.</p>
<pre class="brush: css; light: true; title: ; notranslate">
.ac-comment {
font-size: 100% !important;
color: #444444 !important;
}

.ac-comment[selected=&quot;true&quot;] {
color: #FFFFFF !important;
}

.ac-url-text {
font-size: 100% !important;
color: #000077 !important;
}

.ac-url-text[selected=&quot;true&quot;] {
color:#FFFFFF !important;
}
</pre>
<p>I hope this helps, enjoy!</p>
<p>&nbsp;</p>
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-url="http://www.adac-solutions.com/?p=43" data-counter="right"></script><div class="plus-one-wrap"><g:plusone size="small" href="http://www.adac-solutions.com/?p=43"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.adac-solutions.com/?feed=rss2&#038;p=43</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Change OpenLDAP RootDN Password</title>
		<link>http://www.adac-solutions.com/?p=33</link>
		<comments>http://www.adac-solutions.com/?p=33#comments</comments>
		<pubDate>Fri, 28 May 2010 00:49:27 +0000</pubDate>
		<dc:creator>ambrons</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[ldapmodify]]></category>
		<category><![CDATA[OpenLDAP]]></category>
		<category><![CDATA[slapd]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.adac-solutions.com/?p=33</guid>
		<description><![CDATA[Here is an OpenLDAP quick tip to change the RootDN password via ldapmodify. This tip should work for most systems, but we used Ubuntu 10.04 and this guide for installing OpenLDAP. The first thing you want to do is determine the DN (Distinguished Name) for the database that contains the RootDN password.  To do this [...]]]></description>
			<content:encoded><![CDATA[<p>Here is an <a href="http://www.openldap.org/" target="_blank">OpenLDAP</a> quick tip to change the RootDN password via ldapmodify. This tip should work for most systems, but we used <a title="Ubuntu Server Edition" href="http://www.ubuntu.com/server" target="_blank">Ubuntu 10.04</a> and <a title="OpenLDAP Server Documentation" href="http://doc.ubuntu.com/ubuntu/serverguide/C/openldap-server.html" target="_blank">this guide</a> for installing OpenLDAP.</p>
<p>The first thing you want to do is determine the DN (Distinguished Name) for the database that contains the RootDN password.  To do this we used the following LDAP search command.<em> </em></p>
<pre class="brush: plain; title: ; notranslate">
sudo ldapsearch -LLL -Y EXTERNAL -H ldapi:/// -b  cn=config olcRootDN=cn=admin,dc=adac-solutions,dc=net dn olcRootDN olcRootPW
</pre>
<pre class="brush: plain; title: ; notranslate">
SASL/EXTERNAL authentication started
SASL username: gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth
SASL SSF: 0
&lt;strong&gt;dn: olcDatabase={1}hdb,cn=config&lt;/strong&gt;
olcRootDN: cn=admin,dc=adac-solutions,dc=net
olcRootPW: {MD5}G7ANWX3yX2TWqZo6iaTK6w==
</pre>
<p>We&#8217;ve highlighted the DN for our LDAP database above as it will be needed for the ldapmodify command. Before we run our ldapmodify command we&#8217;re going to use slappasswd to setup an encrypted password.  We choose MD5 for our password encryption.  Use the following command to generate a MD5 password to be used in OpenLDAP.</p>
<pre class="brush: plain; highlight: [4]; title: ; notranslate">
slappasswd -h {MD5}
New password:
Re-enter new password:
{MD5}BNrIr+DKUBWHutZva1zlrQ==
</pre>
<p>We&#8217;ve highlighted the MD5 password you will need to paste into ldapmodify.  The final step is to use ldapmodify to update the password.</p>
<pre class="brush: plain; highlight: [5]; title: ; notranslate">
sudo ldapmodify -Y EXTERNAL -H ldapi:///
SASL/EXTERNAL authentication started
SASL username: gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth
SASL SSF: 0
dn: olcDatabase={1}hdb,cn=config
replace: olcRootPW
olcRootPW: {MD5}BNrIr+DKUBWHutZva1zlrQ==
</pre>
<pre class="brush: plain; title: ; notranslate">modifying entry &quot;olcDatabase={1}hdb,cn=config&quot;</pre>
<p>The three lines above in bold must be typed by use.  As you can see we used the DN we looked up earlier, <em>dn: olcDatabase={1}hdb,cn=config</em>, this tells ldapmodify with object we plan to modify.  Next we enter <em>replace: olcRootPW</em>, this tells ldapmodify that we intend to replace the current value of <em>olcRootPW</em> attribute of object <em>olcDatabase={1}hdb,cn=config</em>.  Finally we update the value of <em>olcRootPW</em> with our password generated by slappasswd.</p>
<p><em><br />
</em></p>
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-url="http://www.adac-solutions.com/?p=33" data-counter="right"></script><div class="plus-one-wrap"><g:plusone size="small" href="http://www.adac-solutions.com/?p=33"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.adac-solutions.com/?feed=rss2&#038;p=33</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GWT DevMode Command Line Arguments</title>
		<link>http://www.adac-solutions.com/?p=17</link>
		<comments>http://www.adac-solutions.com/?p=17#comments</comments>
		<pubDate>Thu, 20 May 2010 14:15:26 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[GWT]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.adac-solutions.com/?p=17</guid>
		<description><![CDATA[I was setting up GWT 2.0.3 today and needed to know the command line arguments for the DevMode class and couldn&#8217;t find them in any of the usual places.  So in case anyone else needs them here you go. Google Web Toolkit 2.0.3 DevMode [-noserver] [-port port-number &#124; "auto"] [-whitelist whitelist-string] [-blacklist blacklist-string] [-logdir directory] [...]]]></description>
			<content:encoded><![CDATA[<p>I was setting up GWT 2.0.3 today and needed to know the command line arguments for the DevMode class and couldn&#8217;t find them in any of the usual places.  So in case anyone else needs them here you go.</p>
<p>Google Web Toolkit 2.0.3<br />
DevMode [-noserver] [-port port-number | "auto"] [-whitelist whitelist-string] [-blacklist blacklist-string] [-logdir directory] [-logLevel level] [-gen dir] [-bindAddress host-name-or-address] [-codeServerPort port-number | "auto"] [-server servletContainerLauncher[:args]] [-startupUrl url] [-war dir] [-extra dir] [-workDir dir] module[s]</p>
<p>where<br />
-noserver        Prevents the embedded web server from running<br />
-port            Specifies the TCP port for the embedded web server (defaults to 8888)<br />
-whitelist       Allows the user to browse URLs that match the specified regexes (comma or space separated)<br />
-blacklist       Prevents the user browsing URLs that match the specified regexes (comma or space separated)<br />
-logdir          Logs to a file in the given directory, as well as graphically<br />
-logLevel        The level of logging detail: ERROR, WARN, INFO, TRACE, DEBUG, SPAM, or ALL<br />
-gen             Debugging: causes normally-transient generated types to be saved in the specified directory<br />
-bindAddress     Specifies the bind address for the code server and web server (defaults to 127.0.0.1)<br />
-codeServerPort  Specifies the TCP port for the code server (defaults to 9997)<br />
-server          Specify a different embedded web server to run (must implement ServletContainerLauncher)<br />
-startupUrl      Automatically launches the specified URL<br />
-war             The directory into which deployable output files will be written (defaults to &#8216;war&#8217;)<br />
-extra           The directory into which extra files, not intended for deployment, will be written<br />
-workDir         The compiler&#8217;s working directory for internal use (must be writeable; defaults to a system temp dir)<br />
and<br />
module[s]        Specifies the name(s) of the module(s) to host</p>
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-url="http://www.adac-solutions.com/?p=17" data-counter="right"></script><div class="plus-one-wrap"><g:plusone size="small" href="http://www.adac-solutions.com/?p=17"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.adac-solutions.com/?feed=rss2&#038;p=17</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In the Beginning</title>
		<link>http://www.adac-solutions.com/?p=1</link>
		<comments>http://www.adac-solutions.com/?p=1#comments</comments>
		<pubDate>Tue, 04 May 2010 16:47:12 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[announcement]]></category>

		<guid isPermaLink="false">http:/?p=1</guid>
		<description><![CDATA[Finally ADAC Solutions, LLC has a website. The site is currently under construction and will be updated in the near future.  Stay tuned for many good things to come.]]></description>
			<content:encoded><![CDATA[<p>Finally ADAC Solutions, LLC has a website. The site is currently under construction and will be updated in the near future.  Stay tuned for many good things to come.</p>
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-url="http://www.adac-solutions.com/?p=1" data-counter="right"></script><div class="plus-one-wrap"><g:plusone size="small" href="http://www.adac-solutions.com/?p=1"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.adac-solutions.com/?feed=rss2&#038;p=1</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

