<?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>Jason L. Froebe - Tech tips and How Tos for Fellow Techies &#187; audiobook</title>
	<atom:link href="http://froebe.net/blog/index.php/tag/audiobook/feed/" rel="self" type="application/rss+xml" />
	<link>http://froebe.net/blog</link>
	<description>Tips &#38; Tricks for Databases (Sybase, Oracle, MySQL, PostgreSQL, SQLite), Windows, Linux, Solaris, Perl, Java, Bash and so much much more</description>
	<lastBuildDate>Sat, 07 Jan 2012 22:12:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>How to create an iTunes/iPod compatible audiobook (MPEG4 m4b) on Linux using MP4Box and mp4v2 v1.9.1 &#8211; it can be done!</title>
		<link>http://froebe.net/blog/2009/12/24/how-to-create-an-itunesipod-compatible-audiobook-mpeg4-m4b-on-linux-using-mp4box-and-mp4v2-v1-9-1-it-can-be-done/</link>
		<comments>http://froebe.net/blog/2009/12/24/how-to-create-an-itunesipod-compatible-audiobook-mpeg4-m4b-on-linux-using-mp4box-and-mp4v2-v1-9-1-it-can-be-done/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 17:39:18 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[add chapters]]></category>
		<category><![CDATA[audiobook]]></category>
		<category><![CDATA[chapters]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[gpac]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[mp4box]]></category>
		<category><![CDATA[mp4v2]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1163</guid>
		<description><![CDATA[I&#8217;ve been wracking my brains over this for the past few weeks and it finally struck me how to create an m4b audiobook with chapters that is compatible with your iPod, iTunes, VLC, etc.  It was very simple once I figured it out: Step 1: encode the mp3 files to &#8220;aac&#8221; (mpeg4) using your favorite [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been wracking my brains over this for the past few weeks and it finally struck me how to create an m4b audiobook with chapters that is compatible with your iPod, iTunes, VLC, etc.  It was very simple once I figured it out:</p>
<h3>Step 1:</h3>
<p>encode the mp3 files to &#8220;aac&#8221; (mpeg4) using your favorite converter (I use ffmpeg):</p>
<div class="bash dean_ch"><span class="kw2">ffmpeg</span> <span class="re5">-i</span> <span class="st0">&quot;track1.mp3&quot;</span> <span class="re5">-y</span> <span class="re5">-vn</span> <span class="re5">-acodec</span> libfaac <span class="re5">-ab</span> 128k <span class="re5">-ar</span> <span class="nu0">44100</span> <span class="re5">-threads</span> <span class="nu0">3</span> <span class="re5">-f</span> mp4 track1.aac</div>
<h3>Step 2:</h3>
<p>Create a <i>chapters</i> file so that <a href="http://gpac.sourceforge.net">MP4Box</a> can understand it:</p>
<blockquote><p>    * Common syntax : CHAPTERX=h:m:s[:ms or .ms] on one line and CHAPTERXNAME=name on the other &#8211; the order is not important but chapter lines MUST be declared sequencially (same X value expected for 2 consecutive lines).</p></blockquote>
<div class="bash dean_ch">$ <span class="kw2">cat</span> track1.chapters<br />
<span class="re2">CHAPTER1</span>=00:00:<span class="nu0">00.000</span><br />
<span class="re2">CHAPTER1NAME</span>=Chapter 001<br />
<span class="re2">CHAPTER2</span>=00:<span class="nu0">30</span>:<span class="nu0">00.139</span><br />
<span class="re2">CHAPTER2NAME</span>=Chapter 002<br />
<span class="re2">CHAPTER3</span>=01:00:<span class="nu0">00.728</span><br />
<span class="re2">CHAPTER3NAME</span>=Chapter 003<br />
<span class="re2">CHAPTER4</span>=01:<span class="nu0">30</span>:<span class="nu0">01.269</span><br />
<span class="re2">CHAPTER4NAME</span>=Chapter 004<br />
<span class="re2">CHAPTER5</span>=02:00:<span class="nu0">01.858</span><br />
<span class="re2">CHAPTER5NAME</span>=Chapter 005<br />
<span class="re2">CHAPTER6</span>=02:<span class="nu0">30</span>:<span class="nu0">02.375</span><br />
<span class="re2">CHAPTER6NAME</span>=Chapter 006<br />
<span class="re2">CHAPTER7</span>=03:00:<span class="nu0">02.964</span><br />
<span class="re2">CHAPTER7NAME</span>=Chapter 007<br />
<span class="re2">CHAPTER8</span>=03:<span class="nu0">30</span>:<span class="nu0">03.553</span><br />
<span class="re2">CHAPTER8NAME</span>=Chapter 008<br />
<span class="re2">CHAPTER9</span>=04:00:<span class="nu0">04.094</span><br />
<span class="re2">CHAPTER9NAME</span>=Chapter 009<br />
<span class="re2">CHAPTER10</span>=04:<span class="nu0">30</span>:<span class="nu0">04.683</span><br />
<span class="re2">CHAPTER10NAME</span>=Chapter 010<br />
<span class="re2">CHAPTER11</span>=05:00:<span class="nu0">05.224</span><br />
<span class="re2">CHAPTER11NAME</span>=Chapter 011<br />
<span class="re2">CHAPTER12</span>=05:<span class="nu0">30</span>:<span class="nu0">05.765</span><br />
<span class="re2">CHAPTER12NAME</span>=Chapter 012<br />
<span class="re2">CHAPTER13</span>=05:<span class="nu0">46</span>:<span class="nu0">14.106</span><br />
<span class="re2">CHAPTER13NAME</span>=Chapter 013<br />
<span class="re2">CHAPTER14</span>=06:<span class="nu0">16</span>:<span class="nu0">14.143</span><br />
<span class="re2">CHAPTER14NAME</span>=Chapter 014<br />
<span class="re2">CHAPTER15</span>=06:<span class="nu0">46</span>:<span class="nu0">14.732</span><br />
<span class="re2">CHAPTER15NAME</span>=Chapter 015<br />
<span class="re2">CHAPTER16</span>=07:<span class="nu0">16</span>:<span class="nu0">15.249</span><br />
<span class="re2">CHAPTER16NAME</span>=Chapter 016<br />
<span class="re2">CHAPTER17</span>=07:<span class="nu0">46</span>:<span class="nu0">15.790</span><br />
<span class="re2">CHAPTER17NAME</span>=Chapter 017<br />
<span class="re2">CHAPTER18</span>=08:<span class="nu0">16</span>:<span class="nu0">16.331</span><br />
<span class="re2">CHAPTER18NAME</span>=Chapter 018<br />
<span class="re2">CHAPTER19</span>=08:<span class="nu0">46</span>:<span class="nu0">16.920</span><br />
<span class="re2">CHAPTER19NAME</span>=Chapter 019<br />
<span class="re2">CHAPTER20</span>=09:<span class="nu0">16</span>:<span class="nu0">17.460</span><br />
<span class="re2">CHAPTER20NAME</span>=Chapter 020<br />
<span class="re2">CHAPTER21</span>=09:<span class="nu0">46</span>:<span class="nu0">18.050</span><br />
<span class="re2">CHAPTER21NAME</span>=Chapter 021<br />
<span class="re2">CHAPTER22</span>=<span class="nu0">10</span>:<span class="nu0">16</span>:<span class="nu0">18.639</span><br />
<span class="re2">CHAPTER22NAME</span>=Chapter 022</div>
<h3>Step 3:</h3>
<p>Add the chapters to the audio file (creates Nero format chapter markers):</p>
<div class="bash dean_ch">MP4Box <span class="re5">-add</span> track1.aac <span class="re5">-chap</span> track1.chapters test.mp4</div>
<h3>Step 4:</h3>
<p>Convert the Nero chapter markers to Quicktime chapter markers using <a href="http://code.google.com/p/mp4v2/">mp4chaps from the mp4v2 project</a> (you will want v1.9.1 or higher):</p>
<div class="bash dean_ch">mp4chaps <span class="re5">&#8211;convert</span> <span class="re5">&#8211;chapter-qt</span> test.mp4<br />
converting chapters <span class="kw1">in</span> <span class="kw2">file</span> <span class="st0">&quot;test.mp4&quot;</span> from Nero to QuickTime</div>
<h3>Step 5:</h3>
<p>Rename the file from .mp4 to .m4b extension so iTunes will see it as an audiobook:</p>
<div class="bash dean_ch"><span class="kw2">mv</span> test.mp4 test.m4b</div>
<h3>Proof that it works:</h3>
<p><a href="http://froebe.net/blog/wp-content/uploads/2009/12/iTunes_showing_chapters.png"><img src="http://froebe.net/blog/wp-content/uploads/2009/12/iTunes_showing_chapters-300x253.png" alt="" title="iTunes with chapters shown" width="300" height="253" class="aligncenter size-medium wp-image-1164" /></a></p>
<p>and VLC showing the chapters:<br />
<a href="http://froebe.net/blog/wp-content/uploads/2009/12/VLC_showing_chapters.png"><img src="http://froebe.net/blog/wp-content/uploads/2009/12/VLC_showing_chapters.png" alt="" title="VLC showing chapters" width="427" height="138" class="aligncenter size-full wp-image-1165" /></a></p>
<p>Of course, we aren&#8217;t putting in any tags such as &#8220;author&#8221; or &#8220;genre&#8221; in this example.  Use your favorite tags editor to do so.</p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2009/12/24/how-to-create-an-itunesipod-compatible-audiobook-mpeg4-m4b-on-linux-using-mp4box-and-mp4v2-v1-9-1-it-can-be-done/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Podiobooks.com:  Earth Core review</title>
		<link>http://froebe.net/blog/2009/03/13/podiobookscom-earth-core-review/</link>
		<comments>http://froebe.net/blog/2009/03/13/podiobookscom-earth-core-review/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 21:19:48 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[Audio Book]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[audiobook]]></category>
		<category><![CDATA[earth core]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[podiobooks]]></category>
		<category><![CDATA[podiobooks.com]]></category>
		<category><![CDATA[scott sigler]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=436</guid>
		<description><![CDATA[I&#8217;ve been listening to the free audio book, Earth Core, by Scott Sigler on Podiobooks.com. The premise is when a mysterious double sided platinum blade is found in a cave,  the largest deposit of platinum (multi billion $$$) on the planet is discovered three miles under a mountain.  A mining company, called Earth Core, needs [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_903" class="wp-caption alignright" style="width: 212px"><a href="http://www.scottsigler.com/earthcore/"><img class="size-medium wp-image-903" title="Earth Core" src="http://froebe.net/blog/wp-content/uploads/2009/03/n164605-202x300.jpg" alt="Earth Core" width="202" height="300" /></a><p class="wp-caption-text">Earth Core</p></div>
<p>I&#8217;ve been listening to the free audio book, <a href="http://www.scottsigler.com/earthcore/">Earth Core</a>, by Scott Sigler on <a href="http://www.podiobooks.com">Podiobooks.com</a>.</p>
<p>The premise is when a mysterious double sided platinum blade is found in a cave,  the largest deposit of platinum (multi billion $$$) on the planet is discovered three miles under a mountain.  A mining company, called Earth Core, needs not only to stake a claim but find a way to extract the platinum.   The miners have their hands full when the platinum &#8216;deposit&#8217; fights back.</p>
<p>From the super ex-CIA agent to the spelunking uber-geologist, the story is a wild one.  I&#8217;m very impressed with Mr. Sigler&#8217;s ability to make the characters and the scenario seem very real.</p>
<p>If you are into adventure stories and a little gore won&#8217;t phase you, treat yourself to a good time by reading or listening to Earth Core.  You won&#8217;t forget it. <img src='http://froebe.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2009/03/13/podiobookscom-earth-core-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AudioBook Review:  AmerIndian 2192 by J. Scott Garibay</title>
		<link>http://froebe.net/blog/2008/06/27/audiobook-review-amerindian-2192-by-j-scott-garibay/</link>
		<comments>http://froebe.net/blog/2008/06/27/audiobook-review-amerindian-2192-by-j-scott-garibay/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 15:51:25 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[Audio Book]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[AmerIndian]]></category>
		<category><![CDATA[audiobook]]></category>
		<category><![CDATA[ghost dance]]></category>
		<category><![CDATA[J. Scott Garibay]]></category>
		<category><![CDATA[Keokuk]]></category>
		<category><![CDATA[LeighAnn Garibay]]></category>
		<category><![CDATA[Native American]]></category>
		<category><![CDATA[podiobooks.com]]></category>
		<category><![CDATA[pre-columbian]]></category>
		<category><![CDATA[Wovoka]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=532</guid>
		<description><![CDATA[I just finished the audio book AmerIndian 2192 by J. Scott Garibay while commuting to work.  Garibay is a new author and I have to say I&#8217;m very impressed. The story is easy to follow with the exception of the flashbacks to 20 years prior (during the White Earth massacre segments).  There wasn&#8217;t a clear [...]]]></description>
			<content:encoded><![CDATA[<p>I just finished the audio book <a href="http://www.podiobooks.com/title/amerindian-2192/">AmerIndian 2192</a> by <a href="http://www.myspace.com/garibaywrite">J. Scott Garibay</a> while commuting to work.  Garibay is a new author and I have to say I&#8217;m very impressed.<a href="http://froebe.net/blog/wp-content/uploads/2008/06/amerindian2192.jpg"><img class="alignright size-full wp-image-533" title="AmerIndian 2192" src="http://froebe.net/blog/wp-content/uploads/2008/06/amerindian2192.jpg" alt="" /></a></p>
<p>The story is easy to follow with the exception of the flashbacks to 20 years prior (during the <em>White Earth massacre</em> segments).  There wasn&#8217;t a clear transition between the present and the flashback.  I assume there was in the <a href="http://www.msplinks.com/MDFodHRwOi8vd3d3Lmx1bHUuY29tL2NvbnRlbnQvODQ4NTE1">printed book</a>.  Perhaps a 5 second delay in the audio or similar could be performed in future audiobooks.</p>
<p>I had trouble with dialog of the Admiral Lye character.  He appears to be a cross between Captain Ahab, General Custer and Darth Vader.  I believe that the point of view of such a butcher is alien to the author&#8230; making it difficult for the dialog to be largely believable.  Fortunately, the dialog of Admiral Lye is short.  I&#8217;m hoping Garibay is able to revisit Admiral Lye in future novels&#8230;  the character has a great deal of potential (how did Lye become what he did?).</p>
<p>The AmerIndian Confederacy (AC) was created by the AmerIndian tribals to regain their homeland.  The problem, albeit a minor problem, is that we&#8217;re not given any real incite on how they became a power in the universe &#8211; it was created twenty odd years prior and now is able to take on Earth?  The AC is a utopian society, a highly successful business, a mercenary group, and a terrorist group.</p>
<p>The premise:</p>
<blockquote><p><em>AmerIndian 2192 is a science-fiction novel that explores the intriguing possibilities of Native Americans in mankind&#8217;s star flung future. AmerIndian 2192 presents the story of two brothers, Wovoka and Keokuk, restoring the Native American people to a Homeland where their vibrant culture can thrive. Lodge ships, Cybershaman rituals and Tsimshian high technology are all elements in this action-oriented tale of interstellar politics and personal struggles.  &#8212; </em><a href="http://www.podiobooks.com/title/amerindian-2192/">Podiobooks.com</a></p></blockquote>
<p>I would put it differently:</p>
<blockquote><p>AmerIndian 2192 is the story of the rebirth of pre-Columbian Native American culture and a homeland in a far flung galaxy.  The price required by the Grand Fathers nearly destroys the homeland after the <a href="http://en.wikipedia.org/wiki/Ghost_dance">Ghost Dance</a> ritual is performed.</p></blockquote>
<p>The narrator, LeighAnn Garibay, performed quite well but it is obvious she isn&#8217;t a professional narrator.  She doesn&#8217;t have to be for this novel.  Kudos to her!</p>
<p>The <a href="http://www.podiobooks.com/title/amerindian-2192/">audiobook on Podiobooks.com</a> easily leaves room for a sequel (please let there be one!).  What happens to the UDA, the clones, and the Admiral Lye (sp)?  Does Wovoka ever find peace?  How many of the tribals fail transition to the new life even though they try?  The author has the opportunity to make a &#8220;Garibay&#8221; universe here.</p>
<p>I would love to see short stories related to AmerIndian 2192 by Garibay and other authors (fan fiction).</p>
<p>I definitely recommend this audiobook! <img src='http://froebe.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2008/06/27/audiobook-review-amerindian-2192-by-j-scott-garibay/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

