<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
>

<channel>
	<title>Nerd Culture &#187; Technology</title>
	<atom:link href="http://nerdculture.org/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://nerdculture.org</link>
	<description>Cutting through the hype.</description>
	<lastBuildDate>Fri, 03 Aug 2012 17:26:25 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=3.9.40</generator>
<!-- podcast_generator="Blubrry PowerPress/5.0.2" mode="advanced" -->
	<itunes:summary>Cutting through the hype.</itunes:summary>
	<itunes:author>Nerd Culture</itunes:author>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://nerdculture.org/wp-content/plugins/powerpress/itunes_default.jpg" />
	<itunes:subtitle>Cutting through the hype.</itunes:subtitle>
	<image>
		<title>Nerd Culture &#187; Technology</title>
		<url>http://nerdculture.org/wp-content/plugins/powerpress/rss_default.jpg</url>
		<link>http://nerdculture.org/category/technology/</link>
	</image>
	<item>
		<title>How To: Install Current FFmpeg and FFmpeg-PHP in CentOS/RHEL with x264, Xvid, MP3, AAC and more!</title>
		<link>http://nerdculture.org/2009/09/28/how-to-install-ffmpeg-and-ffmpeg-php-in-centosrhel-with-x264-xvid-and-mp3-support/</link>
		<comments>http://nerdculture.org/2009/09/28/how-to-install-ffmpeg-and-ffmpeg-php-in-centosrhel-with-x264-xvid-and-mp3-support/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 04:11:44 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[aac]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[ffmpeg-php]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[red hat]]></category>
		<category><![CDATA[rhel]]></category>
		<category><![CDATA[x264]]></category>
		<category><![CDATA[XviD]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/?p=1392</guid>
		<description><![CDATA[First of all, I'm going to assume you already have httpd and php installed. If you don't have them already you should install them now. I recommend <a href="http://www.jasonlitka.com/yum-repository/">Jason Litka's Yum Repository</a>.

This guide is written with bash comments, so the whole text block below can be copied and pasted into an install.sh file if you'd rather not go through step by step. I wouldn't recommend it though, as something could always go wrong, and it would be rather challenging hunting down the problem in that massive wall of output lines!]]></description>
				<content:encoded><![CDATA[<p>First of all, I&#8217;m going to assume you already have httpd and php installed. If you don&#8217;t have them already you should install them now. I recommend <a href="http://www.jasonlitka.com/yum-repository/">Jason Litka&#8217;s Yum Repository</a>.</p>
<p>This guide is written with bash comments, so the whole text block below can be copied and pasted into an install.sh file if you&#8217;d rather not go through step by step. I wouldn&#8217;t recommend it though, as something could always go wrong, and it could be challenging hunting down the problem in that massive wall of output lines!</p>
<pre class="prettyprint">#!/bin/bash
# Mplayer Codecs
# Switch to working directory
cd /usr/local/src

# Download the codec files needed 
wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-amd64-20071007.tar.bz2

# Extract the codec files 
bunzip2 essential-amd64-20071007.tar.bz2; tar xvf essential-amd64-20071007.tar

# Create a directory for the codecs &#038; import them 
mkdir /usr/local/lib/codecs/ 
mv essential-amd64-20071007/* /usr/local/lib/codecs/ 
chmod -R 755 /usr/local/lib/codecs

# FLVTool2
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://rubyforge.org/frs/download.php/17497/flvtool2-1.0.6.tgz

# Extract the Source files 
tar zxvf flvtool2-1.0.6.tgz 

# Compile
cd /usr/local/src/flvtool2-1.0.6
ruby setup.rb config 
ruby setup.rb setup 
ruby setup.rb install

# LAME MP3 Encoder
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.sourceforge.net/lame/lame-398-2.tar.gz

# Extract the Source files 
tar zxvf lame-398-2.tar.gz 

# Compile
cd /usr/local/src/lame-398-2
./configure 
make &#038;&#038; make install

# libOGG
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.xiph.org/releases/ogg/libogg-1.1.4rc1.tar.gz

# Extract the Source files 
tar zxvf libogg-1.1.4rc1.tar.gz 

# Compile
cd /usr/local/src/libogg-1.1.4rc1
./configure 
make &#038;&#038; make install

# libVorbis
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.3.tar.gz

# Extract the Source files 
tar zxvf libvorbis-1.2.3.tar.gz

# Compile
cd /usr/local/src/libvorbis-1.2.3
./configure 
make &#038;&#038; make install

# liba52
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz

# Extract the Source files 
tar zxvf a52dec-0.7.4.tar.gz

# Compile
cd /usr/local/src/a52dec-0.7.4
./configure --enable-shared=PKGS
make &#038;&#038; make install

# libFAAD2
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.sourceforge.net/faac/faad2-2.7.tar.gz

# Extract the Source files 
tar zxvf faad2-2.7.tar.gz

# Compile
cd /usr/local/src/faad2-2.7
autoreconf -vif
./configure --disable-drm --disable-mpeg4ip
make &#038;&#038; make install

# libFAAC
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.sourceforge.net/faac/faac-1.28.tar.gz

# Extract the Source files 
tar zxvf faac-1.28.tar.gz

# Compile
cd /usr/local/src/faac-1.28
./bootstrap
./configure --disable-mp4v2
make &#038;&#038; make install

# YASM (required by x264)
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://www.tortall.net/projects/yasm/releases/yasm-0.7.0.tar.gz

# Extract the Source files 
tar zxvf yasm-0.7.0.tar.gz

# Compile
cd /usr/local/src/yasm-0.7.0
./configure
make &#038;&#038; make install

# x264 daily snapshot
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20090901-2245.tar.bz2

# Extract the Source files 
bzip2 -d x264-snapshot-20090901-2245.tar.bz2; tar xvf x264-snapshot-20090901-2245.tar

# Compile
cd /usr/local/src/x264-snapshot-20090901-2245
./configure --enable-mp4-output --enable-shared --enable-pthread
make &#038;&#038; make install

# XVID
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.xvid.org/downloads/xvidcore-1.2.2.tar.gz

# Extract the Source files 
tar zxvf xvidcore-1.2.2.tar.gz

# Compile
cd /usr/local/src/xvidcore/build/generic
./configure
make &#038;&#038; make install

# Install SVN/Ruby 
yum install -y subversion ruby ncurses-devel

# Fix few Lib issues for next steps 
echo "/usr/local/lib" >> /etc/ld.so.conf 
ldconfig -v

# MPlayer Core
# Switch to working directory
cd /usr/local/src

# Get the latest version from the subversion 
svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer

# Compile
cd /usr/local/src/mplayer 
./configure 
make &#038;&#038; make install

# FFMPEG 
# Switch to working directory
cd /usr/local/src

# Get the latest version from the subversion 
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg 

# Compile
cd /usr/local/src/ffmpeg 
./configure --enable-gpl  --enable-postproc --enable-nonfree --enable-postproc --enable-libfaad --enable-avfilter --enable-pthreads --enable-libxvid --enable-libx264 --enable-libmp3lame --enable-libfaac --disable-ffserver --disable-ffplay --enable-shared
echo '#define HAVE_LRINTF 1' >> config.h 
make &#038;&#038; make install

# Finalize the codec setups 
ln -s /usr/local/lib/libavformat.so.50 /usr/lib/libavformat.so.50 
ln -s /usr/local/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51 
ln -s /usr/local/lib/libavutil.so.49 /usr/lib/libavutil.so.49 
ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0 
ln -s /usr/local/lib/libavformat.so.51 /usr/lib/libavformat.so.51

# Few tasks before compiling FFMPEG-PHP 
yum install -y automake autoconf libtool

# FFmpeg-php
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.sourceforge.net/ffmpeg-php/ffmpeg-php-0.6.0.tbz2

# Extract the Source files 
bunzip2 ffmpeg-php-0.6.0.tbz2; tar xvf ffmpeg-php-0.6.0.tar 

# Compile
cd /usr/local/src/ffmpeg-php-0.6.0 
phpize 
./configure 
make 
make install

# Add FFMPEG-PHP as an extension of PHP 
# Add this line to your php.ini file (Check the correct path of php.ini) 
echo "extension=ffmpeg.so" >> /etc/php.ini

# Restart Apache to load FFMPEG-PHP 
service httpd restart

# Cleanup
cd ..
rm -f -r ./ffmpeg-php</pre>
<p>Wow! That was long&#8230;glad that&#8217;s over. Anyway, you should check and make sure it worked by running phpinfo() in php and searching for a block called &#8216;ffmpeg&#8217;. If anyone has any suggestions for improvements to the script or other encoders I should add let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2009/09/28/how-to-install-ffmpeg-and-ffmpeg-php-in-centosrhel-with-x264-xvid-and-mp3-support/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Sauce Plz! &#8211; Wikipedia for files.</title>
		<link>http://nerdculture.org/2009/02/14/sauce-plz-wikipedia-for-files/</link>
		<comments>http://nerdculture.org/2009/02/14/sauce-plz-wikipedia-for-files/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 08:38:40 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[meta data]]></category>
		<category><![CDATA[meta tags]]></category>
		<category><![CDATA[sauce plz]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/2009/02/14/sauce-plz-wikipedia-for-files/</guid>
		<description><![CDATA[Have you been wondering what the small bit of inactivity lately was about? Well, here's my answer--or part of it anyway--my new website project; sauceplz.org.

It is basically wikipedia for files. You load a file and will be presented with a page unique to that file where information about the file can be listed. You could, for example, load a page from a manga and add tags for the artist, manga name and page number.

That's part of the inactivity, I'll try and have some more posts up soon, but there's a few other, as yet, unannounced projects I'm working. Hopefully I'll have more to say about that soon.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/02/1.jpg" rel="lightbox[918]"><img class="alignnone size-medium wp-image-917" title="1" src="http://www.nerdculture.org/wp-content/uploads/2009/02/1-600x329.jpg" alt="1" width="600" height="329" /></a></p>
<p>Have you been wondering what the small bit of inactivity lately was about? Well, here&#8217;s my answer&#8211;or part of it anyway&#8211;my new website project; <a href="http://sauceplz.org">sauceplz.org</a>.</p>
<p>It is basically wikipedia for files. You load a file and will be presented with a page unique to that file where information about the file can be listed. You could, for example, load a page from a manga and add tags for the artist, manga name and page number.</p>
<p>That&#8217;s part of the inactivity, I&#8217;ll try and have some more posts up soon, but there&#8217;s a few other, as yet, unannounced projects I&#8217;m working. Hopefully I&#8217;ll have more to say about that soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2009/02/14/sauce-plz-wikipedia-for-files/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox &#8211; Two brackets and a number from being perfect.</title>
		<link>http://nerdculture.org/2008/03/13/firefox-two-brackets-and-a-number-from-being-perfect/</link>
		<comments>http://nerdculture.org/2008/03/13/firefox-two-brackets-and-a-number-from-being-perfect/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 04:25:29 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Acid2]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Firefox beta]]></category>
		<category><![CDATA[Gecko]]></category>
		<category><![CDATA[Gecko 1.9]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[RSS Counter]]></category>
		<category><![CDATA[RSS Update Counter]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/2008/03/13/firefox-two-brackets-and-a-number-from-being-perfect/</guid>
		<description><![CDATA[I've always been an avid supporter of web standards, so I was glad to here that Gecko 1.9, the layout engine used in the Firefox 3 beta, passes the Acid2 test, but I found the future version of Firefox is still lacking one single thing that I feel holds it back rather significantly from being what it could be. That features is the RSS Updates counter that Safari has had for pretty much ever. How long will it take before Mozilla catches on that Firefox's lack of this simple feature is a deal-breaker for many people? I guess I'll have to continue using two browsers until Mozilla catches up.]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.nerdculture.org/wp-content/uploads/2008/03/firefox-could-be-better.jpg" width="480" height="250" alt="firefox-could-be-better.jpg" class="imageframe" />I&#8217;ve always been an avid supporter of web standards, so I was glad to here that Gecko 1.9, the layout engine used in the Firefox 3 beta, passes theÂ <a href="http://www.webstandards.org/files/acid2/test.html">Acid2</a>Â test, but I found the future version of Firefox is still lacking one single thing that I feel holds it back rather significantly from being what it could be. That features is the RSS Updates counter that Safari has had for pretty much ever. How long will it take before Mozilla catches on that Firefox&#8217;s lack of this simple feature is a deal-breaker for many people? I guess I&#8217;ll have to continue using two browsers until Mozilla catches up.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2008/03/13/firefox-two-brackets-and-a-number-from-being-perfect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cowon A3 &#8211; Every Nerd wants one, they just don&#8217;t know it yet.</title>
		<link>http://nerdculture.org/2008/03/06/cowon-a3-every-nerd-wants-one-they-just-dont-know-it-yet/</link>
		<comments>http://nerdculture.org/2008/03/06/cowon-a3-every-nerd-wants-one-they-just-dont-know-it-yet/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 18:10:08 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Anime]]></category>
		<category><![CDATA[Manga/Comics]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[1SEG]]></category>
		<category><![CDATA[3D Surround]]></category>
		<category><![CDATA[720p]]></category>
		<category><![CDATA[800x480]]></category>
		<category><![CDATA[A3]]></category>
		<category><![CDATA[ASS]]></category>
		<category><![CDATA[Audio Recording]]></category>
		<category><![CDATA[BBE]]></category>
		<category><![CDATA[Cowon]]></category>
		<category><![CDATA[Cowon A3]]></category>
		<category><![CDATA[DMB]]></category>
		<category><![CDATA[DVB]]></category>
		<category><![CDATA[DVD]]></category>
		<category><![CDATA[DVD Resolution]]></category>
		<category><![CDATA[FLAC]]></category>
		<category><![CDATA[H264]]></category>
		<category><![CDATA[HD]]></category>
		<category><![CDATA[High Definition]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Line Out]]></category>
		<category><![CDATA[M3U]]></category>
		<category><![CDATA[Mach3Bass]]></category>
		<category><![CDATA[Matroska]]></category>
		<category><![CDATA[MKV]]></category>
		<category><![CDATA[MKVExtract]]></category>
		<category><![CDATA[MobileTV]]></category>
		<category><![CDATA[MP Enhance]]></category>
		<category><![CDATA[OGM]]></category>
		<category><![CDATA[PMP]]></category>
		<category><![CDATA[Portable Media Player]]></category>
		<category><![CDATA[PSP]]></category>
		<category><![CDATA[PSP Screen]]></category>
		<category><![CDATA[SSA]]></category>
		<category><![CDATA[SubResync]]></category>
		<category><![CDATA[SubStation Alpha]]></category>
		<category><![CDATA[Subtitles]]></category>
		<category><![CDATA[Video Out]]></category>
		<category><![CDATA[Video Recording]]></category>
		<category><![CDATA[VobSub]]></category>
		<category><![CDATA[XviD]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/2008/03/06/cowon-a3-every-nerd-wants-one-they-just-dont-know-it-yet/</guid>
		<description><![CDATA[For the longest time my MP3 Player was an iPod which, in all appreciation for how it changed the portable media market, is vastly inferior to some of the lesser known Portable Media Players to come out in recent years. The most significant, in my opinion, being the Cowon A3--the perfect portable media player for an anime lover such as myself. Why you ask? Format support--this thing can play just about -anything-. It can play H264 (unforunately it doesn't yet support Main Profile) and XviD and most importantly; supports all sorts of container formats like OGM and MKV (Matroska Video). What does that all mean? Well, I'll let you put two and two together; more than half of fansubbed anime is released in H264 format in an MKV container. Until now those have been unplayable on any form of portable media! That's just the beginning of the A3's awesomeness!]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.nerdculture.org/wp-content/uploads/2008/03/100_20761.JPG" rel="lightbox[pics504]"><img src="http://www.nerdculture.org/wp-content/uploads/2008/03/100_20761.thumbnail.JPG" class="imageframe" alt="100_20761.JPG" /></a></p>
<p>For the longest time my MP3 Player was an iPod which, in all appreciation for how it changed the portable media market, is vastly inferior to some of the lesser known Portable Media Players to come out in recent years. The most significant, in my opinion, being the Cowon A3&#8211;the perfect portable media player for an anime lover such as myself. Why you ask? Format support&#8211;this thing can play just about -anything-. It can play H264 (unforunately it doesn&#8217;t yet support Main Profile) and XviD and most importantly; supports all sorts of container formats like OGM and MKV (Matroska Video). What does that all mean? Well, I&#8217;ll let you put two and two together; more than half of fansubbed anime is released in H264 format in an MKV container. Until now those have been unplayable on any form of portable media! That&#8217;s just the beginning of the A3&#8242;s awesomeness!</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2008/03/100_2110.JPG" rel="lightbox[pics504]"><img src="http://www.nerdculture.org/wp-content/uploads/2008/03/100_2110.thumbnail.JPG" class="imageframe" alt="100_2110.JPG" /></a></p>
<p>What makes this thing so great for an anime fan such as myself is that it has subtitle support! For now it&#8217;s not quite as comprehensive as I&#8217;d like, but Cowon appears to be working hard to make support better. As of now it doesn&#8217;t support internal subs, so they have to be extracted from MKVs with MKVExtract and it doesn&#8217;t support SubStation Alpha subtitles yet. Sadly SSA subs are the most popular among fansubbers, but fortunately many fansubbers are nice enough embed srt subs as well and for the ones that don&#8217;t there is always VobSub&#8217;s SubResync.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2008/03/100_2106.JPG" rel="lightbox[pics504]"><img src="http://www.nerdculture.org/wp-content/uploads/2008/03/100_2106.thumbnail.JPG" class="imageframe" alt="100_2106.JPG" /></a></p>
<p>The A3 was designed to be an all-in-one multimedia device so it can do anything&#8211;even things you thought you&#8217;d never need. Audio and Video Recording for example; you can record lossless quality audio with the FLAC audio codec and record DVD resolution video up to 3Mbps! Expect to see lots of video captures of video games and such from this thing in the future. The recording system is quite good too; you can record audio and video from the line in, but you can also record it from the FM radio, the built-in microphone or even Wireless Television via DMB, 1SEG or DVB if you get a MobileTV tuner! It supports recurring schedules, so you can record daily or every weekday, or you could just schedule so specific date and time for a single recording.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2008/03/100_2114.JPG" rel="lightbox[pics504]"><img src="http://www.nerdculture.org/wp-content/uploads/2008/03/100_2114.thumbnail.JPG" class="imageframe" alt="100_2114.JPG" /></a></p>
<p>It&#8217;s great to be able to just copy any media file over and not have to worry about converting it to something else first. The Cowon A3 doesn&#8217;t use any proprietary and confusing sorting system like most media players do; you can just copy any kind of media file anywhere on the hard drive by simply dragging and dropping files to a window on your computer. There is several default folders to sort things in, but it doesn&#8217;t actually restrict you to use of these folders. A good example of why this is good is music videos. Do you place them in the Movie folder or the Music folder? If you place them in the Music folder they will show up in the directory listing for the Movie Player, so you can place anything anywhere! What&#8217;s even greater is that it keeps track of what types of files are in each folder; if you go into the Music folder when browsing in the Movie Player you will only see folders listed that contain video files in them. It makes browsing for music videos much faster if you have a handful of music videos but have thousands of different albums from all sorts of different artists.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2008/03/100_2104.JPG" rel="lightbox[pics504]"><img src="http://www.nerdculture.org/wp-content/uploads/2008/03/100_2104.thumbnail.JPG" class="imageframe" alt="100_2104.JPG" /></a></p>
<p>You&#8217;ll probably also love the Recent Files system it uses. The A3 keeps a list of the last 50 files you played without finishing them. Imagine you are on a trip somewhere and you decide to watch a movie; what if the movie is longer than the ride? You want to see how it ended don&#8217;t you? Well then, when you find the time to watch the rest, just turn on the A3 and go to Recent Files then select whatever it was you were watching and it will start back up right where you stopped it!</p>
<p>For audio there is full 10-band Equalization, BBE, Mach3Bass, MP Enhance and 3D Surround. As you might assume; you can get some rather fantastic audio quality out of this thing&#8211;that&#8217;s what Cowon is known for; audiophile-pleasing quality.</p>
<p>I also really like the Boundary setting for playback; you can set playback to restrict to all files, one folder in from Music, two folders in from Music or Playlist. If you organize your music by Album folders in Artist folders it makes this system work great; you can listen to a specific album, everything from a certain artist or everything. My only complaint is the playlist support; it uses some built-in playlist that you only have one of and it doesn&#8217;t allow saving or loading of common playlist formats used on the PC such as M3U Playlists.</p>
<p>The greatest thing about this device though? The screen. It sports a very high resolution 800&#215;480 resolution in the same size as a PSP screen&#8211;that&#8217;s almost twice the resolution of the PSP&#8217;s screen! You know what else it has twice the PSP in? Brightness. The screen on this thing can be turned up so bright you can see the vibrant colors perfectly even in direct sunlight! *_*</p>
<p>The Cowon A3 also has a line-out for viewing on a bigger screen&#8211;and component, s-video and composite even! You can watch gorgeous 720p High Definition video on your big LCD TV from such a tiny portable unit!</p>
<p>Overall this is a truly amazing device that&#8217;s a simple firmware update away from being perfect. If you like having some sort of portable entertainment then go buy this device RIGHT NOW. No seriously, do it; you won&#8217;t regret it.</p>
<p><object data="http://www.vimeo.com/moogaloop.swf?clip_id=756791&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF" type="application/x-shockwave-flash" height="270" width="480"><param value="best" name="quality"></param><param value="true" name="allowfullscreen"></param><param value="showAll" name="scale"></param><param value="http://www.vimeo.com/moogaloop.swf?clip_id=756791&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF" name="movie"></param></object></p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2008/03/06/cowon-a3-every-nerd-wants-one-they-just-dont-know-it-yet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forget YouTube&#8211;Let&#8217;s Vimeo!</title>
		<link>http://nerdculture.org/2008/03/05/forget-youtube-lets-vimeo/</link>
		<comments>http://nerdculture.org/2008/03/05/forget-youtube-lets-vimeo/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 22:55:56 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[HD]]></category>
		<category><![CDATA[Stage6]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[Video Upload]]></category>
		<category><![CDATA[Vimeo]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/2008/03/05/forget-youtube-lets-vimeo/</guid>
		<description><![CDATA[<object width="600" height="340"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=2203727&#38;server=vimeo.com&#38;show_title=1&#38;show_byline=1&#38;show_portrait=0&#38;color=&#38;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=2203727&#38;server=vimeo.com&#38;show_title=1&#38;show_byline=1&#38;show_portrait=0&#38;color=&#38;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="600" height="340"></embed></object>
<p>For awhile I've been using a video service called Stage6 which was similar to YouTube except they offered High Definition video uploading...it wasn't very ideal though as it needed a proprietary DivX Player to play the videos. Not long ago they closed up shop, so I decided to look around and see if I could find a better video service than YouTube. Well, in my travels I discovered this wonderous creation known as Vimeo! You can upload HD videos up to 720p and they are way, way faster than YouTube! Check the shiny HD video below to see just how awesome Vimeo is.</p>]]></description>
				<content:encoded><![CDATA[<p><object width="600" height="340"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=2203727&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=2203727&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="600" height="340"></embed></object></p>
<p>For awhile I&#8217;ve been using a video service called Stage6 which was similar to YouTube except they offered High Definition video uploading&#8230;it wasn&#8217;t very ideal though as it needed a proprietary DivX Player to play the videos. Not long ago they closed up shop, so I decided to look around and see if I could find a better video service than YouTube. Well, in my travels I discovered this wonderous creation known as <a href="http://www.vimeo.com">Vimeo</a>! You can upload HD videos up to 720p and they are way, way faster than YouTube! Check the shiny HD video above to see just how awesome Vimeo is.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2008/03/05/forget-youtube-lets-vimeo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monkey Majik &#8211; Canadian JPop?</title>
		<link>http://nerdculture.org/2007/09/12/monkey-majik-canadian-jpop/</link>
		<comments>http://nerdculture.org/2007/09/12/monkey-majik-canadian-jpop/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 16:05:59 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/2007/09/12/monkey-majik-canadian-jpop/</guid>
		<description><![CDATA[Some may have already heard of them, some may not have. Monkey Majik consists of Takuya "tax" Kikuchi (èŠæ± æ‹“å“‰, Kikuchi Takuya) on drums, DICK on bass and rather oddly Maynard Plant and Blaise Plant; two Canadian brothers who sing in both Japanese and English and play guitar. It is very unusual for a band with foreign members and foreign languages to attain such a level of popularity in Japan as they have.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.nerdculture.org/wp-content/uploads/2007/09/pic20060301104157.jpg" rel="lightbox[11]"><img class="alignnone size-medium wp-image-882" title="pic20060301104157" src="http://www.nerdculture.org/wp-content/uploads/2007/09/pic20060301104157-600x398.jpg" alt="pic20060301104157" width="600" height="398" /></a></p>
<p>Some may have already heard of them, some may not have. Monkey Majik consists of Takuya &#8220;tax&#8221; Kikuchi <span style="font-weight: normal">(<span class="t_nihongo_kanji" lang="ja" xml:lang="ja">èŠæ± æ‹“å“‰</span><span class="t_nihongo_comma" style="display: none">,</span> <em><span class="t_nihongo_romaji">Kikuchi Takuya</span></em>)</span> on drums, DICK on bass and rather oddly Maynard Plant and Blaise Plant; two Canadian brothers who sing in both Japanese and English and play guitar. It is very unusual for a band with foreign members and foreign languages to attain such a level of popularity in Japan as they have.</p>
<p>Blaise had moved from Ottawa to Aomori in 1998 to work as an English teacher on the JET program and formed a band there to play a one-time gig at an international festival. Two of the members left Japan, so Blaise decided to contact his brother Maynard who had a moderate solo career already in Canada. He decided to move from Ottawa to Sendai where Blaise soon followed. Their first EP called <em>TIRED</em>, only had 1,000 copies available at Tower Records in Sendai. But their first single, &#8220;fly&#8221;, in 2006 was a great success and was quickly followed by their next single, &#8220;Around the World&#8221;, which reached number 4 in the Japanese Oricon top 200 singles chart. Pretty impressive for Gaijins, eh?</p>
<p>Anyway, the whole reason I&#8217;m making this post is so you can all watch this really awesome video&#8211;a collaboration of Monkey Majik and the ever-so-amazing Yoshida Brothers; Change.</p>
<p>Their music can be purchased at <a href="http://www.play-asia.com/SOap-23-83-82qy-49-en-15-Monkey+Majik-84-p-40-artist.html">Play-Asia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2007/09/12/monkey-majik-canadian-jpop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.nerdculture.org/wp-content/uploads/2007/09/MonkeyMajikft.YoshidaBrothers-Change.flv" length="1" type="video/x-flv" />
		<itunes:subtitle>Some may have already heard of them, some may not have. Monkey Majik consists of Takuya &quot;tax&quot; Kikuchi (èŠæ± æ‹“å“‰, Kikuchi Takuya) on drums, DICK on bass and rather oddly Maynard Plant and Blaise Plant; two Canadian brothers who sing in both Japanese...</itunes:subtitle>
		<itunes:summary>(http://www.nerdculture.org/wp-content/uploads/2007/09/pic20060301104157-600x398.jpg)

Some may have already heard of them, some may not have. Monkey Majik consists of Takuya &quot;tax&quot; Kikuchi (èŠæ± æ‹“å“‰, Kikuchi Takuya) on drums, DICK on bass and rather oddly Maynard Plant and Blaise Plant; two Canadian brothers who sing in both Japanese and English and play guitar. It is very unusual for a band with foreign members and foreign languages to attain such a level of popularity in Japan as they have.

Blaise had moved from Ottawa to Aomori in 1998 to work as an English teacher on the JET program and formed a band there to play a one-time gig at an international festival. Two of the members left Japan, so Blaise decided to contact his brother Maynard who had a moderate solo career already in Canada. He decided to move from Ottawa to Sendai where Blaise soon followed. Their first EP called TIRED, only had 1,000 copies available at Tower Records in Sendai. But their first single, &quot;fly&quot;, in 2006 was a great success and was quickly followed by their next single, &quot;Around the World&quot;, which reached number 4 in the Japanese Oricon top 200 singles chart. Pretty impressive for Gaijins, eh?

Anyway, the whole reason I&#039;m making this post is so you can all watch this really awesome video--a collaboration of Monkey Majik and the ever-so-amazing Yoshida Brothers; Change.

Their music can be purchased at Play-Asia (http://www.play-asia.com/SOap-23-83-82qy-49-en-15-Monkey+Majik-84-p-40-artist.html).</itunes:summary>
		<itunes:author>Nerd Culture</itunes:author>
		<itunes:explicit>no</itunes:explicit>
	</item>
		<item>
		<title>Spirits Within deserves a second chance.</title>
		<link>http://nerdculture.org/2007/09/11/spirits-within-deserves-a-second-chance/</link>
		<comments>http://nerdculture.org/2007/09/11/spirits-within-deserves-a-second-chance/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 04:19:59 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Manga/Comics]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Video Games]]></category>
		<category><![CDATA[Final Fantasy]]></category>
		<category><![CDATA[Spirits Within]]></category>
		<category><![CDATA[Square Enix]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/2007/09/12/spirits-within-deserves-a-second-chance/</guid>
		<description><![CDATA[Final Fantasy: Spirits Within bombed pretty bad at the box office and I understand why, but it deserved better. Yes, I know that it wasn't anything like the video games or anything from Square Enix really. However, in it's own it is a very good movie. I think that if they had not included the Final Fantasy title at all and just called it The Spirits Within it would have been much more successful. It would have been viewed as it's own stand-alone entity in the Square Enix lineup rather than constantly being compared with all the Final Fantasy video games.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.nerdculture.org/wp-content/uploads/2007/09/14.jpg" rel="lightbox[9]"></a><a href="http://www.nerdculture.org/wp-content/uploads/2007/09/14.jpg" rel="lightbox[9]"><img class="alignnone size-medium wp-image-865" title="14" src="http://www.nerdculture.org/wp-content/uploads/2007/09/14-600x450.jpg" alt="14" width="600" height="450" /></a></p>
<p>Final Fantasy: Spirits Within bombed pretty bad at the box office and I understand why, but it deserved better. Yes, I know that it wasn&#8217;t anything like the video games or <em>anything</em> from Square Enix really. However, in it&#8217;s own it is a very good movie. I think that if they had not included the Final Fantasy title at all and just called it The Spirits Within it would have been much more successful. It would have been viewed as it&#8217;s own stand-alone entity in the Square Enix lineup rather than constantly being compared with all the Final Fantasy video games.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2007/09/23.jpg" rel="lightbox[9]"><img class="alignnone size-medium wp-image-866" title="23" src="http://www.nerdculture.org/wp-content/uploads/2007/09/23-600x305.jpg" alt="23" width="600" height="305" /></a></p>
<p>Oh, why is Cid a bad guy? Why is there no Chocobos? Why is there no swords? It&#8217;s nothing like Final Fantasy at all. The only similarities are a few passing references in names and such. I&#8217;d say it more so resembles Halo; the story has a rather dystopian warzone atmosphere to it but it is very engaging and truly epic.</p>
<p>I found that the dream sequences were a clever way of creating suspense while at the same time building an attachment to the Phantoms. I also liked how the characters spirits were visible and still &#8216;alive&#8217; in a sense after they were pulled from their bodies. It gave me the impression that they weren&#8217;t <em>killed</em> by the spirits, but rather; they <em>joined </em>with the spirits to create a stronger energy. Hironobu Sakaguchi&#8217;s flare for bringing out characters&#8217; strengths and weaknesses certainly shined through in this movie; Aki was the hot-headed hero&#8211;always getting in trouble but never giving up, while General Hein was the coward&#8211;hiding behind his big gun out in space where the &#8220;invaders&#8221; couldn&#8217;t reach him and Gray is the level-headed knight&#8211;protecting his princess from the many perils of the world.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2007/09/312.jpg" rel="lightbox[9]"><img class="alignnone size-medium wp-image-872" title="312" src="http://www.nerdculture.org/wp-content/uploads/2007/09/312-600x314.jpg" alt="312" width="600" height="314" /></a></p>
<p>If you have avoided seeing this movie because of all the bad press and fanboys whining &#8220;ZOMG WHARZ TEH CHOCOBOS?!?!?!&#8221; I would very much sugegst you see it for yourself. Atleast give it a rent; if you don&#8217;t like it you don&#8217;t have to ever watch it again, but atleast you will have formed your <em>own</em> opinion on it. Everyone has different tastes, don&#8217;t let someone else tell you what to like and what not to.</p>
<p>Spirits Within likely isn&#8217;t available at <a href="http://www.play-asia.com/SOap-23-83-82qy-71-a7-77-1-49-en-15-spirits+within-84-j-70-7wi.html">Play-Asia</a>, as it is somewhat old now&#8211;it might be out of print&#8211;but you can check if you like.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2007/09/11/spirits-within-deserves-a-second-chance/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
