<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>audio-player &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/audio-player/</link>
	<description>Feed of posts on WordPress.com tagged "audio-player"</description>
	<pubDate>Sun, 06 Dec 2009 01:43:53 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Alternative audio players]]></title>
<link>http://wpbtips.wordpress.com/2009/12/05/alternative-audio-players/</link>
<pubDate>Sat, 05 Dec 2009 10:07:22 +0000</pubDate>
<dc:creator>Panos</dc:creator>
<guid>http://wpbtips.wordpress.com/2009/12/05/alternative-audio-players/</guid>
<description><![CDATA[http://wpbtips.wordpress.com/ For a playlist and/or an alternative to the standard WP audio player, ]]></description>
<content:encoded><![CDATA[http://wpbtips.wordpress.com/ For a playlist and/or an alternative to the standard WP audio player, ]]></content:encoded>
</item>
<item>
<title><![CDATA[mpg321]]></title>
<link>http://bleuwinter.wordpress.com/2009/11/28/mpg321/</link>
<pubDate>Sat, 28 Nov 2009 02:10:42 +0000</pubDate>
<dc:creator>Bleuwinter</dc:creator>
<guid>http://bleuwinter.wordpress.com/2009/11/28/mpg321/</guid>
<description><![CDATA[mpg321 is a command-line mp3 player. Why &amp; when to use it? * On old computers * If your GUI stop]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="separator" style="clear:both;text-align:center;">
<a href="http://i633.photobucket.com/albums/uu53/bleuwinter/mpg321.png" target="_blank"><img src="http://i633.photobucket.com/albums/uu53/bleuwinter/th_mpg321.png" border="0" alt="mp3,cli,Ubuntu,Linux"></a>
</div>
<p><span style="font-size:large;"><a href="http://mpg321.sourceforge.net/">mpg321</a></span> is a command-line mp3 player.</p>
<p><em>Why &#38; when to use it?</em><br />
* On old computers<br />
* If your <a href="http://en.wikipedia.org/wiki/Graphical_user_interface">GUI</a> stops working and you need some music while you are solving the problem<br />
* Play music from your server<br />
* Learn command line and practice it<br />
* For fun</p>
<p><em>How to install it on Ubuntu?:</em><br />
Open the Terminal (Applications → Accessories → Terminal) and type the following command: </p>
<div style="border:1px dashed grey;height:20px;width:400px;">
 sudo apt-get install mpg321
</div>
<p>Key in <strong>Y</strong> and press <strong>Enter</strong> when you&#8217;re asked to install other required packages.</p>
<p><strong>How to use?</strong><br />
<em>Access the help menu: </em><br />
Open the Terminal (Applications → Accessories → Terminal) and type the following command:<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 --help</div>
<p></code></p>
<p>You will get a list of codes which you can use with mpg321.<br />
<code><br />
 --verbose or -v          Increase verbosity<br />
   --quiet or -q            Quiet mode (no title or boilerplate)<br />
   --gain N or -g N         Set gain (audio volume) to N (0-100)<br />
   --skip N or -k N         Skip N frames into the file<br />
   --verbose or -v          Be more verbose in playing files<br />
   -o dt                    Set output devicetype to dt<br />
                                [esd,alsa(09),arts,sun,oss]<br />
   --audiodevice N or -a N  Use N for audio-out<br />
   --stdout or -s           Use stdout for audio-out<br />
   --au N                   Use au file N for output<br />
   --cdr N                  Use wave file N for output<br />
   --wav N or -w N          Use wave file N for output<br />
   --test or -t             Test only; do no audio output<br />
   --list N or -@ N         Use playlist N as list of MP3 files<br />
   --random or -Z           Play files randomly until interrupted<br />
   --shuffle or -z          Shuffle list of files before playing<br />
   -R                       Use remote control interface<br />
   --aggressive             Try to get higher priority<br />
   --help or --longhelp     Print this help screen<br />
   --version or -V          Print version information<br />
</code></p>
<p>Example:</p>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 -q filename</div>
<p>This code allows you to play a song without any details.</p>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 -v filename</div>
<p>This code allows you to play a song with information of the file.</p>
<p>Of course it would be <em>ridiculous</em> to play music one by one file so we have to create <strong>playlists</strong>:</p>
<p>Open the Terminal (Applications → Accessories → Terminal) and type the following command:</p>
<p>(Find the location of your mp3 files by the command <strong>dir</strong>,<strong> cd</strong>, and <strong>cd..</strong>.)<br />
<em>dir</em> : Shows a list of all the files available in that directory<br />
<em>cd</em> <strong>folder</strong>: Goes to <strong>folder</strong> directory (Replace <strong>folder</strong> with the name of a folder that you want to access)<br />
<em>cd..</em> Goes to previous directory</p>
<p> Example: Your music is located in <em>/home/yourusername/Music</em> so you should type cd /home/yourusername/Music</p>
<p>Then, create a playlist of all songs in this folder:<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 ls *.mp3 &#62; playlist.txt</div>
<p></code></p>
<p>or create a playlist based on artist(Example <em>abz</em>)<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 ls &#124; grep abz &#62; abzplaylist.txt</div>
<p></code><br />
*Tips: Replace <em>abz</em> with the artist name</p>
<p><strong>To play the playlist:</strong><br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 --list playlist.txt</div>
<p></code><br />
<strong>Play it randomly:</strong><br />
*Little shuffle mode (Plays every file once in a random order)<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 -z --list playlist.txt</div>
<p></code><br />
*Big shuffle mode (Plays a random file and then plays another random file. mpg321 will go on until you stop it.)<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 -Z *</div>
<p></code></p>
<p>Resources:<br />
<a href="http://commandline.org.uk/command-line/command-line-audio-players-mpg321-and-mpg123/">Command Line Warriors</a><br />
<a href="http://linuxdevcenter.com/pub/a/linux/2001/11/15/learnunixos.html">Linux Dev Center</a></p>
<p><strong>Its alternatives:</strong><br />
1. <a href="http://amarok.kde.org">Amarok </a>(If you&#8217;re using KDE/Kubuntu as it suites the theme and environment)<br />
2. <a href="http://www.getsongbird.com/">Songbird</a> &#8211; My favourite, read the <a href="http://bleuwinter.wordpress.com/2009/05/16/songbird-music-player/">review.</a><br />
3. <a href="http://audacious-media-player.org/">Audacious</a> &#8211; Lightweight and Winamp like, read the <a href="http://bleuwinter.wordpress.com/2009/11/27/audacious/">review.</a><br />
4. <a href="http://projects.gnome.org/rhythmbox/">Rhythmbox</a> &#8211; It comes pre-installed on Ubuntu<br />
5. <a href="http://www.listen-project.org/">Listen Audio Player</a><br />
6. <a href="http://www.exaile.org/">Exaile</a> &#8211; Music Player for GTK+<br />
7. <a href="http://banshee-project.org/">Banshee</a> &#8211; Play music and videos. Sync your ipod and G1.<br />
8. <a href="http://thekonst.net/en/orpheus">orpheus</a> &#8211; another <a href="http://en.wikipedia.org/wiki/Command-line_interface">Command-Line Interface(CLI)</a> audio player</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Audacious]]></title>
<link>http://bleuwinter.wordpress.com/2009/11/27/audacious/</link>
<pubDate>Fri, 27 Nov 2009 01:57:36 +0000</pubDate>
<dc:creator>Bleuwinter</dc:creator>
<guid>http://bleuwinter.wordpress.com/2009/11/27/audacious/</guid>
<description><![CDATA[Audacious: * Lightweight &amp; Simple * Multiple audio support * Old Winamp alike * Shorcuts similar]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="separator" style="clear:both;text-align:center;">
<a href="http://i633.photobucket.com/albums/uu53/bleuwinter/Audacious.png" target="_blank"><img src="http://i633.photobucket.com/albums/uu53/bleuwinter/th_Audacious.png" border="0" alt="Linux,Audio,Multimedia"></a></div>
<p><span style="font-size:large;"><a href="http://audacious-media-player.org/">Audacious:</a></span><br />
* Lightweight &#38; Simple<br />
* Multiple audio support<br />
* Old <a href="http://www.winamp.com/">Winamp</a> alike<br />
* Shorcuts similar as <a href="http://www.winamp.com/">Winamp</a><br />
* Streaming support &#38; more<br />
* Last.fm Scrobbling</p>
<p><em>To install it on Ubuntu:</em><br />
open the Terminal (Applications → Accessories → Terminal) and type the following command: </p>
<div style="border:1px dashed grey;height:20px;width:400px;">
sudo apt-get install audacious
</div>
<p>Key in <strong>Y</strong> and press <strong>Enter</strong> when you&#8217;re asked to install other required packages.</p>
<p><strong>Its alternatives:</strong><br />
1. <a href="http://amarok.kde.org">Amarok </a>(If you&#8217;re using KDE/Kubuntu as it suites the theme and environment)<br />
2. <a href="http://www.getsongbird.com/">Songbird</a> &#8211; My favourite, read the <a href="http://bleuwinter.wordpress.com/2009/05/16/songbird-music-player/">review.</a><br />
3. <a href="http://projects.gnome.org/rhythmbox/">Rhythmbox</a> &#8211; It comes pre-installed on Ubuntu<br />
4. <a href="http://www.listen-project.org/">Listen Audio Player</a><br />
5. <a href="http://www.exaile.org/">Exaile</a> &#8211; Music Player for GTK+<br />
6. <a href="http://banshee-project.org/">Banshee</a> &#8211; Play music and videos. Sync your ipod and G1.<br />
7. <a href="http://mpg321.sourceforge.net/">mpg321</a> &#8211; a <a href="http://en.wikipedia.org/wiki/Command-line_interface">Command-Line Interface(CLI)</a> audio player. Read the <a href="http://bleuwinter.wordpress.com/2009/11/28/mpg321/">review</a>.<br />
8. <a href="http://thekonst.net/en/orpheus">orpheus</a> &#8211; another <a href="http://en.wikipedia.org/wiki/Command-line_interface">Command-Line Interface(CLI)</a> audio player</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[L'applicazione del Giorno: foobar2000]]></title>
<link>http://barlaccione.wordpress.com/2009/11/25/lapplicazione-del-giorno-foobar2000/</link>
<pubDate>Wed, 25 Nov 2009 15:39:41 +0000</pubDate>
<dc:creator>ingmarcobert</dc:creator>
<guid>http://barlaccione.wordpress.com/2009/11/25/lapplicazione-del-giorno-foobar2000/</guid>
<description><![CDATA[foobar2000 is an advanced freeware audio player for the Windows platform. Some of the basic features]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.foobar2000.org" target="_blank">foobar2000</a> is an advanced freeware audio player for the Windows platform. Some of the basic features include full unicode support, ReplayGain support and native support for several popular audio formats.<br />
<a href="http://www.foobar2000.org/screenshots"><img class="alignnone size-medium wp-image-55" title="tinyfoobar" src="http://barlaccione.wordpress.com/files/2009/11/tinyfoobar1.png?w=293" alt="" width="293" height="300" /></a></p>
<p>Link: <a href="http://www.foobar2000.org/" target="_blank">foobar2000</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[el mapa ex libris de la respiracion]]></title>
<link>http://altescape.wordpress.com/2009/11/24/el-mapa-ex-libris-de-la-respiracion/</link>
<pubDate>Tue, 24 Nov 2009 01:54:54 +0000</pubDate>
<dc:creator>jorge melancore</dc:creator>
<guid>http://altescape.wordpress.com/2009/11/24/el-mapa-ex-libris-de-la-respiracion/</guid>
<description><![CDATA[Ja genau. Neben all den Konzerten, Veranstaltungen, Clubs, Cafes, Sehenswürdigkeiten, Attraktionen u]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ja genau.</p>
<p>Neben all den Konzerten, Veranstaltungen, Clubs, Cafes, Sehenswürdigkeiten,<br />
Attraktionen und Cockfights versuche Ich mich auch noch auf das Studieren zu<br />
konzentrieren; recht intensiv sogar für einen <em>Erasmusstudenten </em>,<br />
sagt bzw. schimpft man mir nach. Neben dem obligatorischem Hauptprojekt,<br />
welches dem Basisinstitut der HBK ähnelt, habe Ich noch vier andere Kurse;<br />
Video, Animation, architektonisches Zeichnen und Illustration. Obwohl das<br />
Hauptprojekt um Einiges angenehmer als das Basisinstitut der HBK ist, geht<br />
man dort am Ungernsten hin; zwei Professoren auf knapp 20 Studenten aus<br />
allen Studienrichtungen verteilt mit Aufgaben, die nicht einmal die Professoren<br />
so richtig formulieren können. Nach der ersten Aufgabe &#8211; einen knapp DinA2<br />
großen Plan des zugeteilten Partners gestalten &#8211; befassen wir uns momentan<br />
damit, wie man in zwei <strong>3&#215;3x6m</strong> große, lebensechte Kontainer<br />
einen Lebensraum für vier Personen lebenswürdig gestaltet; selbst der<br />
langweiligste Architekturstudent würde wohl nicht mehr als ein Gähnen hervor-<br />
bringen. Aber so mühsam diese obligatorische Veranstaltung auch ist, so erfreu-<br />
licher sind die restlichen Kurse. Der Zeichenkurs findet jede Woche an einem<br />
meist interessanten Ort unter freiem Himmel statt, der Illustrationskurs wird von<br />
einem höchst dynamischen, unterhaltsamen, homosexuellen Katalanen geleitet,<br />
im Animationskurs pendeln wir zwischen eigener Projektarbeit und kontem-<br />
porären Animationsfilmvorführungen und im Videokurs fühle Ich mich wie zu<br />
Hause, da es jetzt der Vierte ist, den Ich in meinem Studium besuche.<br />
Da muss man dann halt hartnäckig sein.</p>
<p><a title="P1070469 by jrgmlncr, on Flickr" href="http://www.flickr.com/photos/41656259@N07/4141128529/"><img src="http://farm3.static.flickr.com/2656/4141128529_b0b1e1640d.jpg" alt="P1070469" width="375" height="500" /></a></p>
<p><a title="P1070489 by jrgmlncr, on Flickr" href="http://www.flickr.com/photos/41656259@N07/4141129489/"><img src="http://farm3.static.flickr.com/2682/4141129489_103701de48.jpg" alt="P1070489" width="375" height="500" /></a></p>
<p><a title="prj01 by jrgmlncr, on Flickr" href="http://www.flickr.com/photos/41656259@N07/4129102801/"><img src="http://farm3.static.flickr.com/2487/4129102801_13b1be36df.jpg" alt="prj01" width="375" height="500" /></a></p>
<p><a title="prj02 by jrgmlncr, on Flickr" href="http://www.flickr.com/photos/41656259@N07/4129101905/"><img src="http://farm3.static.flickr.com/2726/4129101905_a7cd81a976.jpg" alt="prj02" width="375" height="500" /></a></p>
<p><a title="prj03 by jrgmlncr, on Flickr" href="http://www.flickr.com/photos/41656259@N07/4129100913/"><img src="http://farm3.static.flickr.com/2774/4129100913_29e8444ee5.jpg" alt="prj03" width="375" height="500" /></a></p>
<p><a title="prj04 by jrgmlncr, on Flickr" href="http://www.flickr.com/photos/41656259@N07/4129104077/"><img src="http://farm3.static.flickr.com/2722/4129104077_12c3174574.jpg" alt="prj04" width="375" height="500" /></a></p>
<p><a title="prj05 by jrgmlncr, on Flickr" href="http://www.flickr.com/photos/41656259@N07/4129105761/"><img src="http://farm3.static.flickr.com/2577/4129105761_b66bb0b5ff.jpg" alt="prj05" width="375" height="500" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[MediaMonkey Gold v3.2.0.1294 Final]]></title>
<link>http://pamsceng.wordpress.com/2009/11/20/mediamonkey-gold-v3-2-0-1294-final/</link>
<pubDate>Fri, 20 Nov 2009 12:51:05 +0000</pubDate>
<dc:creator>pamsceng</dc:creator>
<guid>http://pamsceng.wordpress.com/2009/11/20/mediamonkey-gold-v3-2-0-1294-final/</guid>
<description><![CDATA[Media Monkey adalah sebuah software Music Manager dan Music Player yang memiliki lebih banyak fitur ]]></description>
<content:encoded><![CDATA[Media Monkey adalah sebuah software Music Manager dan Music Player yang memiliki lebih banyak fitur ]]></content:encoded>
</item>
<item>
<title><![CDATA[embed music in wordpress]]></title>
<link>http://always0nline.wordpress.com/2009/11/13/embed-music-in-wordpress/</link>
<pubDate>Fri, 13 Nov 2009 07:57:09 +0000</pubDate>
<dc:creator>always0nline</dc:creator>
<guid>http://always0nline.wordpress.com/2009/11/13/embed-music-in-wordpress/</guid>
<description><![CDATA[By now, you may have noticed the nifty mp3 player at the top of my blog&#8217;s homepage, and perhap]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>By now, you may have noticed the nifty mp3 player at the top of my blog&#8217;s homepage, and perhaps you&#8217;re wondering how I managed to embed that into WordPress.</p>
<p>Firstly, that mp3 player is already provided by WordPress! Simply use the following code to embed it into your WordPress posts:</p>
<p>[a<b></b>udio enter-file-url-here]</p>
<p>Replace &#8220;enter-file-url-here&#8221; with the URL of your MP3 file.</p>
<p>Perhaps now you might be asking, &#8220;But I don&#8217;t have a site to host my MP3 files!&#8221; Well, there are several sites out there that will let you host files and allow hot-linking, such as <a title="Hotlink Files" href="http://www.hotlinkfiles.com/" target="_blank">Hotlink Files</a>, <a title="FileDen" href="http://www.fileden.com/" target="_blank">FileDen</a> and many more. But I didn&#8217;t want to waste time maintaining another separate file hosting account. So I&#8217;ve turned to WordPress itself.</p>
<p>&#8220;Wait a minute, my free WordPress account doesn&#8217;t allow me to upload MP3 files!&#8221;</p>
<p>Here&#8217;s where my nifty little &#8220;hack&#8221; comes in. WordPress blocks file uploading by extension, so you won&#8217;t be able to upload any files that end in .mp3. However, the audio player doesn&#8217;t check for this! So we can trick WordPress into accepting our MP3 file, and still play it back using the built-in audio player.</p>
<p>Here&#8217;s how to do it:</p>
<ol>
<li>Change the extension of your MP3 file. For example, I have a file called &#8220;<strong>MyMusic.MP3</strong>&#8220;. I can rename this to &#8220;<strong>MyMusic.JPG</strong>&#8220;</li>
<li>Now we can upload this file onto WordPress! Since the extension is now .JPG, it passes the checks, and we&#8217;re allowed to upload this into our account.</li>
<li>Use the audio tag provided above, and replace the file URL with the one that you got after uploading your fake JPG file. It should look something like this: http://<em>yourusername</em>.wordpress.com/files/2009/11/<strong>MyMusic.JPG</strong></li>
<li>Save your post and test it out! Voila, we&#8217;ve managed to use the WordPress audio player to play our own MP3, and it&#8217;s stored in our WordPress account as well!</li>
</ol>
<p>Feel free to share this nifty hack with all your friends that have WordPress accounts!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Miracle Of Travelling Sound - The Walkman]]></title>
<link>http://virginiachall17.wordpress.com/2009/11/08/the-miracle-of-travelling-sound-the-walkman/</link>
<pubDate>Sun, 08 Nov 2009 08:46:37 +0000</pubDate>
<dc:creator>virginiachall17</dc:creator>
<guid>http://virginiachall17.wordpress.com/2009/11/08/the-miracle-of-travelling-sound-the-walkman/</guid>
<description><![CDATA[Author: Roberto Sedycias Source: articlemarketer.com One of the a lot of aboriginal articles in the ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Author: Roberto Sedycias<br />
Source: articlemarketer.com</p>
<p>One of the a lot of aboriginal articles in the agreeable apple is the Sony Walkman. Walkman fabricated its admission in 1979 in Japan. It aswell came to be termed as the Soundabout, Freestyle and Stowaway. The Walkman was the abstraction of Nobutoshi Kihara of Sony. </p>
<p>The co-chairman of Sony, Morita was actual addicted of operas and capital to apprehend these while on his common all-embracing trips, <a href="http://www.amtrakpromotioncode.net"><b>amtrak promotion code</b></a>, . Sony still uses the cast name of Walkman for carriageable audio gadgets.</p>
<p>The plural anatomy is not `walkmen` or `walkmans`, amtrak promotion code,  but Walkman claimed stereos. In March 2007 Sony launched the aboriginal agenda video Walkman &#8211; NW-A800. </p>
<p>The aboriginal blue-silver Walkman was up for auction in Japan on 1st July 1979. It allows two bodies accompanying to accept to, amtrak promotion code,  it. Anon models came in that could aswell do recording. In 1984 the best superior &#8211; Walkman Professional WM-D6C fabricated its actualization with superb audio quality.</p>
<p>It became, amtrak promotion code,  accepted with journalists and hi-fi fans. It is arresting that because the ever-changing attributes of cyberbanking goods, this archetypal has remained the aforementioned and continues to administration over others.</p>
<p>Stiff antagonism came from Toshiba with its Walky, CassetteBoy from Aiwa and Panasonic. But Sony kept up the clip and created the playback alone &#8211; the alone one of its affectionate in 1989. It became a angelic collector`s account for Walkman admirers.</p>
<p>The aggregation acclimated different methods to advance the addition of the device. Humans using the Walkman were apparent cycling or roller-skating in the accessible and this had an appulse on the accessory journalists. Upon accession they were anniversary handed a Walkman and had to accept to instructions over the stereo. A adolescent brace alert to it while on a bike aeon completed the show. All complex in the ablution programmed sported Walkman T shirts. </p>
<p>The journalists accomplished how one can accept to music of best wherever and whenever desired.</p>
<p>For accidental assemblage it was a abstruse accident after any accessible announcements. To added advance the artefact a part of the humans the associates of the publicity aggregation went about buses and trains during aiguille hours antic a Walkman. Sony fabricated a concerted accomplishment to abate the adverse impressions of headphones. </p>
<p>Celebrities were presented with sets and magazines glossed over it. Within a ages of the barrage, amtrak promotion code,  alone 3,000 units had been awash but thereafter sales best up and Sony had to attempt to accumulate clip with demand.</p>
<p>Initially it was those in mid 20`s that showed absorption but anon the fan abject widened to cover a cantankerous area of society. </p>
<p>During the 1970`s the home stereo bazaar had become accepted and the carriageable radio transistor had created a boom. Boom-boxes that were jumpsuit stereo systems powered by array were authoritative after-effects with the complete appearing from two or added speakers. Thus one could accept to music after getting bedfast to one place.</p>
<p>Micro and mini-cassette players that could fit into a abridged were acceptable hot favourites.</p>
<p>This was the accomplishments of the arena if the Sony Walkman appeared with a bang. The basal abstraction was to abode a radio central an audiocassette anatomy and dispense it to forward the audio into its cassette home player. Anon a accessory bazaar developed annular the Walkman &#8211; headphones and added accessories like the charge to install speakers on the board at home. Special biking accoutrements came into faddy with speakers central it. Trendy vests sported speakers on the shoulders. </p>
<p>The Walkman era drew to a abutting in 1986 with Sony introducing the Discman ushering in the agenda age.</p>
<p>Today there are disposable claimed stereo cassette players priced at $20 address little affinity to their ancestors.</p>
<p>This article can be accessed in portuguese from the Article section of page http://www.polomercantil.com.br/mp3-player.php </p>
<p>Roberto Sedycias works as IT consultant for http://www.polomercantil.com.br</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[VLC Media Player 1.0.3]]></title>
<link>http://avidsoft.wordpress.com/2009/11/02/vlc-media-player-1-0-3/</link>
<pubDate>Mon, 02 Nov 2009 12:49:14 +0000</pubDate>
<dc:creator>vivisria</dc:creator>
<guid>http://avidsoft.wordpress.com/2009/11/02/vlc-media-player-1-0-3/</guid>
<description><![CDATA[VLC media player is a highly portable multimedia player for various audio and video formats as well ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img style="float:left;margin:0 10px 10px 0;" title="VLC Media Player 1.0.3" src="http://i530.photobucket.com/albums/dd344/daily-soft/vlc-media-player.png" border="0" alt="VLC Media Player" /><strong>VLC media player</strong> is a highly portable <a title="Free Multimedia software download" href="http://avidsoft.wordpress.com/">multimedia player</a> for various <a href="http://daily-soft.blogspot.com/2009/06/audio-and-video.html">audio and video</a> formats as well as DVDs, VCDs, and various streaming protocols without external codec or program.<br />
<!--more--><br />
It can also be used as a server to stream in unicast or multicast in IPv4 or IPv6 on a high-bandwidth network.</p>
<p><strong>VLC can play:</strong></p>
<p>* MPEG-1, MPEG-2 and MPEG-4 / DivX files from a hard disk, a CD-ROM drive, and so on<br />
* DVDs, VCDs, and Audio CDs<br />
* From satellite cards (DVB-S)<br />
* Several types of network streams: UDP/RTP Unicast, UDP/RTP Multicast, HTTP, RTSP, MMS, etc.<br />
* From acquisition or encoding cards (on GNU/Linux and Windows only)</p>
<blockquote><p>Title:	<strong>VLC Media Player 1.0.3</strong><br />
Filename:	vlc-1.0.3-win32.exe<br />
File size:	17.19MB (18,030,130 bytes)<br />
Requirements:	Windows 2000 / XP / 2003 / Vista / Windows7 / XP64 / Vista64 / Windows7 64<br />
Languages:	en-US<br />
License:	Open Source<br />
Date added:	November 2, 2009<br />
Author:	VideoLAN.org<br />
<a href="http://www.videolan.org" target="blank">www.videolan.org</a></p>
<p><a href="http://www.videolan.org/mirror-geo.php?file=vlc/1.0.3/win32/vlc-1.0.3-win32.exe" target="blank"><img style="margin:0 10px 10px 0;" src="http://i530.photobucket.com/albums/dd344/daily-soft/download_button-3.jpg" border="0" alt="" /></a></p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[iTunes 9.0.2 (32-bit)]]></title>
<link>http://avidsoft.wordpress.com/2009/10/31/itunes-9-0-2-32-bit/</link>
<pubDate>Sat, 31 Oct 2009 13:18:56 +0000</pubDate>
<dc:creator>vivisria</dc:creator>
<guid>http://avidsoft.wordpress.com/2009/10/31/itunes-9-0-2-32-bit/</guid>
<description><![CDATA[iTunes is a free application for Mac and PC. It plays all your digital music and video. It syncs con]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img style="float:left;margin:0 10px 10px 0;" title="iTunes 9.0.2 (32-bit)" src="http://i530.photobucket.com/albums/dd344/daily-soft/itunes.png" border="0" alt="iTunes (32-bit)" /><strong>iTunes</strong> is a free application for Mac and PC. It plays all your digital <a href="http://avidsoft.wordpress.com/">music and video</a>. It syncs content to your iPod, iPhone, and Apple TV. And it&#8217;s an entertainment superstore that stays open 24/7.<br />
<!--more--><br />
* Organize your music into playlists<br />
* Edit file information<br />
* Record compact discs<br />
* Copy files to an iPod or other digital audio player<br />
* Purchase music and videos on the Internet through the built-in iTunes store<br />
* Run a visualizer to display graphical effects in time to the music<br />
* Encode music into a number of different audio formats.</p>
<p>This is the 32-bit version.</p>
<blockquote><p>Title:	<strong>iTunes 9.0.2 (32-bit)</strong><br />
Filename:	iTunesSetup.exe<br />
File size:	88.91MB (93,226,280 bytes)<br />
Requirements:	Windows XP / 2003 / Vista / Windows7<br />
Languages:	en-US<br />
License:	Freeware<br />
Date added:	October 30, 2009<br />
Author:	Apple Inc<br />
<a href="http://www.apple.com" target="blank">www.apple.com</a><br />
Homepage:	<a href="http://www.apple.com/itunes/download" target="blank">www.apple.com/itunes/download</a></p>
<p><a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iTunes7/Win/061-2881.20070305.tnZ4W/iTunesSetup.exe" target="blank"><img style="margin:0 10px 10px 0;" src="http://i530.photobucket.com/albums/dd344/daily-soft/download_button-3.jpg" border="0" alt="" /></a></p></blockquote>
<p>Change Log:</p>
<p>* iTunes 9.0.2 adds support for Apple TV software version 3.0, adds an option for a dark background for Grid View, and improves support for accessibility. iTunes Store accessibility requires Window-Eyes 7.1.1 or later.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Setting iZotope Ozone MP untuk QMP, Foobar2000, AIMP2 dan Winamp]]></title>
<link>http://jipiyanuar.wordpress.com/2009/10/30/setting-izotope-ozone-mp-untuk-qmp-foobar2000-aimp2-dan-winamp/</link>
<pubDate>Fri, 30 Oct 2009 04:04:37 +0000</pubDate>
<dc:creator>jipiyanuar</dc:creator>
<guid>http://jipiyanuar.wordpress.com/2009/10/30/setting-izotope-ozone-mp-untuk-qmp-foobar2000-aimp2-dan-winamp/</guid>
<description><![CDATA[Tulisan ke-2 dari 2 tulisan: Walaupun saya mengunggulkan XMPlay+iZotope Ozone MP, tetapi persoalan s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><em>Tulisan ke-2 dari 2 tulisan:</em></p>
<p>Walaupun saya mengunggulkan <a href="http://jipiyanuar.wordpress.com/2009/10/29/the-best-portable-audio-player-in-this-planet-xmplayerizotope-ozone-mp/" target="_blank">XMPlay+iZotope Ozone MP</a>, tetapi persoalan selera telinga dan pilihan pemakaian tiap user beda-beda.<br />
Maka saya share juga di sini, setting beberapa Audio Player+iZotope Ozone MP yang menurut penilaian dan telinga saya diurutkan dari yang paling enak dulu suaranya..</p>
<p><em>Syarat:</em><br />
1. Anda punya Winamp.<br />
2. Pastikan bahwa iZotope Ozone MP telah sukses terinstal di Winamp Anda.</p>
<p><strong>I. Quintessential Media Player:</strong><br />
Oleh developer iZotope Ozone MP, secara default memang sengaja DSP plugin ini diperuntukkan bagi Winamp dan Quintessential Media Player.<br />
Maka tentu saja program ini secara tepat pula kompatibel dengan QMP. Alih-alih perlu cara tertentu untuk wrapping-nya.</p>
<p>Cara setting plugin:<br />
<em>A. Cara Copy Paste (seperti XMPlay):</em><br />
1. Buka folder \Program Files\Winamp\Plugins, cari dan copy file: dsp_iZOzone.dll dan folder Ozone.<br />
2. Paste ke folder \Program Files\Quintessential Media Player\Plugins<br />
3. Hidupkan QMP Anda.<br />
4. Klik Preferences &#62;Plug-ins&#62;Plug-in Loading dan pastikan di kotak &#8220;Set folders to search for plug-ins:&#8221; tertulis alamat \Program Files\Quintessential Media Player\Plugins.<br />
5. Klik box: &#8220;Load New Plug-ins&#8221; maka akan muncul pop-up &#8220;New plugins found&#8221;, klik OK.<br />
6. Klik sidebar &#8220;DSPs&#8221; kalau benar akan tercontreng tulisan di box &#8220;iZotope Ozone [dsp_iZOzone.dll]&#8221; (lihat gambar). Lalu klik box &#8220;Save and Close&#8221;.<br />
7. Restart QMP Anda.</p>
<p><em>B. Cara Wrapping DSP Winamp Plugins:</em><br />
- Cara 1 s/d 3 seperti di atas tidak dijalankan (tanpa copas) tetapi langsung cara no. 4, Preferences &#62;Plug-ins&#62;Plug-in Loading&#62;Add. Browse ke folder: \Program Files\Winamp\Plugins. Cara seterusnya sama seperti atas.</p>
<p><em>Cara setting iZotope Ozone MP:</em><br />
1. Pastikan semua lagu yang diinginkan sudah masuk daftar playlist.<br />
2. Klik/tekan tombol PRESETS, pilih preset kesukaan Anda&#62;Update&#62;Assign&#8230;to&#62;All&#62;OK&#62;Close</p>
<p><a href="http://s184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/?action=view&#38;current=QMPiZotopeOzone.jpg" target="_blank"><img src="http://i184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/QMPiZotopeOzone.jpg" border="0" alt="QMP iZotope Ozone" /></a></p>
<p><strong>II. Foobar2000 Player:</strong><br />
Buka web: <a href="http://fb2k.org/show.php?id=149" target="_blank">INI</a></p>
<p>downloadlah: Winamp DSP Bridge plug-in (foo_dsp_winamp) di bawah tulisan Component links, code &#8220;Binary&#8221;.<br />
Ekstrakkan ke sub-folder Components dari folder program Foobar2000 Anda.</p>
<p><em>Cara setting plugin:</em><br />
1. Buka Foobar, masuk ke Preferences&#62;Playback&#62;DSP Manager<br />
2. Pindahkan &#8220;Winamp DSP bridge&#8221; dari kolom kanan ke kolom Active DSPs di sebelah kiri. Sorot kursor.<br />
3. Klik box &#8220;Configure selected&#8221;..maka muncul box Winamp plug-in path.. Browse path..\Winamp\Plugins.. lalu Rescan..<br />
4. Pilihlah Plug-in list: iZotope Ozone (dsp_izozone.dll). Sebelum Apply pilihlah Fixed point convertion parameters: 16, 24, atau 32-bit..sesuai kemampuan Audio processing di PC Anda..<br />
5. Lalu restart-lah Foobar Anda..</p>
<p><em>Cara setting iZotope Ozone MP:</em><br />
1. Pastikan semua lagu yang diinginkan sudah masuk daftar playlist.<br />
2. Klik/tekan tombol PRESETS, pilih preset kesukaan Anda&#62;Update&#62;Assign&#8230;to&#62;All&#62;OK&#62;Close</p>
<p><a href="http://s184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/?action=view&#38;current=FoobariZotopeOzone-1.jpg" target="_blank"><img src="http://i184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/FoobariZotopeOzone-1.jpg" border="0" alt="Foobar iZotope Ozone" /></a></p>
<p><strong>III. AIMP2 Player:</strong></p>
<p><a href="http://s184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/?action=view&#38;current=AIMP2iZotopeOzone.jpg" target="_blank"><img src="http://i184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/AIMP2iZotopeOzone.jpg" border="0" alt="AIMP2 iZotope Ozone" /></a></p>
<p>Downloadlah &#8220;Ozone for AIMP&#8221; di: <a href="http://www.4shared.com/file/83785082/8f8be332/Izotope_Ozone_1_for_AIMP.html" target="_blank">4shared</a></p>
<p><em>Setup:</em><br />
<a href="http://s184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/?action=view&#38;current=AIMP2iZotopeOzoneinstalasi.jpg" target="_blank"><img src="http://i184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/AIMP2iZotopeOzoneinstalasi.jpg" border="0" alt="AIMP2 iZotope Ozone instalasi" /></a></p>
<p><a href="http://s184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/?action=view&#38;current=AIMP2iZotopeOzoneinstalasi2.jpg" target="_blank"><img src="http://i184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/AIMP2iZotopeOzoneinstalasi2.jpg" border="0" alt="AIMP2 iZotope Ozone instalasi2" /></a></p>
<p><a href="http://s184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/?action=view&#38;current=AIMP2iZotopeOzoneinstalasi3.jpg" target="_blank"><img src="http://i184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/AIMP2iZotopeOzoneinstalasi3.jpg" border="0" alt="AIMP2 iZotope Ozone instalasi3" /></a></p>
<p><em>Cara setting plugin:</em><br />
1. Buka AIMP2: Options<br />
2. Klik Playing&#62;lalu klik tombol kotak DSP-Manager (lihat kanan bawah di atas kotak Close)<br />
3. Muncul pop-up box AIMP2: DSP-Manager&#62;Winamp DSP Plug-Ins pilih &#8220;iZotope Ozone&#8221; lalu klik Options.<br />
4. Tutup semua box lalu restart-lah AIMP2 Anda.</p>
<p><em>Cara setting iZotope Ozone MP:</em><br />
1. Pastikan semua lagu yang diinginkan sudah masuk daftar playlist.<br />
2. Klik/tekan tombol PRESETS, pilih preset kesukaan Anda&#62;Update&#62;Assign&#8230;to&#62;All&#62;OK&#62;Close</p>
<p><a href="http://s184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/?action=view&#38;current=AIMP2iZotopeOzoneinstalasi4.jpg" target="_blank"><img src="http://i184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/AIMP2iZotopeOzoneinstalasi4.jpg" border="0" alt="AIMP2 iZotope Ozone instalasi4" /></a></p>
<p><strong>IV. Winamp Media Player:</strong><br />
Winamp adalah &#8220;gudang&#8221; default untuk menyimpan iZotope Ozone MP. Plugin ini sebenarnya oleh pabrikannya memang sengaja dibuat untuk Winamp dan QMP.</p>
<p><em>Cara setting plugin:</em><br />
1. Buka Winamp: Options&#62;Preferences&#62;Plug-ins&#62;DSP Effect<br />
2. Pilih &#8220;iZotope Ozone [dsp_iZOzone.dll]&#8220;<br />
3. Klik tombol &#8220;Configure active plug-in&#8221; maka keluarlah iZotope Ozone MP.</p>
<p><em>Cara setting iZotope Ozone MP:</em><br />
1. Pastikan semua lagu yang diinginkan sudah masuk daftar playlist.<br />
2. Klik/tekan tombol PRESETS, pilih preset kesukaan Anda&#62;Update&#62;Assign&#8230;to&#62;All&#62;OK&#62;Close</p>
<p><a href="http://s184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/?action=view&#38;current=WinampiZotopeOzone.jpg" target="_blank"><img src="http://i184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/WinampiZotopeOzone.jpg" border="0" alt="Winamp iZotope Ozone" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Best Portable Audio Player in This Planet, XMPlayer+iZotope Ozone MP]]></title>
<link>http://jipiyanuar.wordpress.com/2009/10/29/the-best-portable-audio-player-in-this-planet-xmplayerizotope-ozone-mp/</link>
<pubDate>Thu, 29 Oct 2009 06:42:41 +0000</pubDate>
<dc:creator>jipiyanuar</dc:creator>
<guid>http://jipiyanuar.wordpress.com/2009/10/29/the-best-portable-audio-player-in-this-planet-xmplayerizotope-ozone-mp/</guid>
<description><![CDATA[Tulisan ke-1 dari 2 tulisan: Setelah berkutat sedemikian lama dengan berbagai macam Audio Player mau]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><em><span style="font-size:small;">Tulisan ke-1 dari 2 tulisan:</span></em></p>
<p>Setelah berkutat sedemikian lama dengan berbagai macam Audio Player maupun Media Player.</p>
<p>Disertai percobaan &#8220;padu padan&#8221; dan trik menggaet berbagai macam DSP Plugin. Maka sudah waktunya bagi saya memunculkan:</p>
<p><strong>The Best Portable Audio Player in This Planet, XMPlayer+iZotope Ozone MP</strong></p>
<p><a href="http://s184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/?action=view&#38;current=XMPlayiZotopeOzone.jpg" target="_blank"><img src="http://i184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/XMPlayiZotopeOzone.jpg" border="0" alt="XMPlay iZotope Ozone" /></a></p>
<p>&#160;</p>
<p><strong>1. XMPlayer</strong></p>
<p>XMPlayer dapat didownload di: <a href="http://support.xmplay.com/file_comment.php?id=555" target="_blank">XMPlay</a></p>
<p>Jangan kaget jika Audio Player ini bersifat PORTABLE. Tidak masuk ke sistem program di OS PC seperti software lainnya.</p>
<p>Beberapa tahun yang lalu, sejak versi awal XMPlay diluncurkan oleh developernya model begini ini sempat membikin bingung para penggemar Audio termasuk saya.</p>
<p>Tetapi untuk saat kiwari kini program portable malah semakin banyak  para user software yang favorit mempergunakannya.</p>
<p>Oleh karena itu folder player ekstraknya yang bernama &#8220;xmp342&#8243; bisa bebas ditempatkan di mana saja..</p>
<p>Dapat di-rename jadi &#8220;XMPlay Gue&#8221; or &#8220;XMPlay [Namamu]&#8221; atawa &#8220;Miyabi&#8217;s XMPlay&#8221; terserah selera kegilaan Anda hehehe..</p>
<p>Karena bersifat portable maka &#8220;XMPlay-mu&#8221; bisa di-clone; maksudnya dicopy ke komputer or lapie lain sesuka Anda.</p>
<p>Arsitektur basis XMPlay ringan banget. Ukurannya hanya 342 kb dalam format zip. Coba bandingkan dengan program lain yang bermega-mega byte..</p>
<p>Sudah ringan tapi fondasi bangunannya kuat, jenius dan multiguna maka hasilnya ya..powerful.</p>
<p><em>Saran:</em></p>
<p>- Buatlah pula subfolder kosong &#8220;Skins&#8221; dan &#8220;Plugins&#8221;</p>
<p>Karena <a href="http://support.xmplay.com/file.php?count_per_page=all&#38;cat_id=5&#38;submit=Set" target="_blank">Skins XMPlay</a> sangat menarik dan silakan dipilih untuk didownload dan lalu ekstrakkan ke folder Skins itu.</p>
<p>Sedang folder &#8220;Plugins&#8221; dipersiapkan hanya untuk diisi file-file Winamp DSP Plugins termasuk pula file <em><strong>dsp_iZOzone.dll</strong></em> beserta folder <em><strong>Ozone</strong></em> nantinya.</p>
<p>- Buatlah shortcut dari file aplikasi XMPlay dengan cara men-drag atau Send To Desktop atau Object Dock Anda.</p>
<p>- Downloadlah pula file-file penting dari:</p>
<p><a href="http://support.xmplay.com/file.php?count_per_page=all&#38;cat_id=11&#38;submit=Set" target="_blank">Native Input Plugins</a>, <a href="http://support.xmplay.com/file.php?cat_id=12&#38;count_per_page=all" target="_blank">Output Plugins</a>, <a href="http://support.xmplay.com/file.php?cat_id=3&#38;count_per_page=all" target="_blank">Winamp Input Plugins</a></p>
<p>Dan file-file plugin lain sesuai keinginan dan kebiasaan Anda. Lalu ekstrakkan ke folder umum &#8220;XMPlay&#8221; (jangan ke folder Plugins)</p>
<p>- Jika Anda mempunyai program <a href="http://www.crintsoft.com/dl.htm" target="_blank">Minilyrics</a>, lakukanlah reinstal dan sesuaikan nama folder XMPlay yang tepat buat program ini tertuju.</p>
<p>Kode Aktivasi MiniLyrics<br />
Name : Kaskus CCPB<br />
Registration Code : T65BM6DL2CA264DT4E</p>
<p><em>How to get MiniLyrics running with XMPlay:</em></p>
<p><em>- Install MiniLyrics and enable the checkbox &#8220;Support XMPlay&#8221;, then put your XMPlay directory in the text box.<br />
- After installing ML, start up XMPlay<br />
- Go to the Options &#38; Stuff dialog -&#62; DSP<br />
- Add &#8220;MiniLyrics for XMPlay&#8221; to the DSP list.<br />
- Done! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </em></p>
<p>&#160;</p>
<p><strong>2. iZotope Ozone MP</strong></p>
<p><a href="http://s184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/?action=view&#38;current=iZotopeOzoneMP.jpg" target="_blank"><img src="http://i184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/iZotopeOzoneMP.jpg" border="0" alt="iZotope Ozone MP" /></a></p>
<p>Syarat sebelum memakai iZotope Ozone MP adalah Anda harus mempunyai program Winamp dulu yang sudah berjalan baik di komputer Anda.</p>
<p>Kalau sudah punya Winamp yang terpasang maka silakan download iZotope Ozone MP di:</p>
<p><a href="http://uploading.com/files/S77TJUGO/iZotope OzoneMP for Winamp.rar.html" target="_blank">uploading</a>, atau <a href="http://depositfiles.com/en/files/zbw1m6zfj" target="_blank">depositfiles</a>, bisa juga dari <a href="http://hotfile.com/dl/9712510/bd9ae68/iZotope_OzoneMP_for_Winamp.rar.html" target="_blank">hotfile</a></p>
<p>iZotope Ozone MP sebenarnya oleh pabrikan developernya dibuat sebagai DSP Plugin untuk Winamp dan QMP.</p>
<p>Maka di saat setup jangan heran bila program ini tertuju ke Winamp Anda.</p>
<p>&#160;</p>
<p><strong>3. Setting XMPlayer+iZotope Ozone MP</strong></p>
<p><em>Langkah 1:</em></p>
<p>Dengan logika XMPlayer adalah Audio Player Portable maka untuk menggandengnya file plugin tersebut harus dicopy.</p>
<p>Buka folder :\Program Files&#8230;\Winamp\Plugins lalu copy file: <strong><span style="color:red;">dsp_iZOzone.dll</span></strong> dan folder <strong><span style="color:red;">Ozone</span></strong>, paste-kan ke folder Plugins XMPlay Anda.</p>
<p><em>Langkah 2:</em></p>
<p>Klik kanan skins player XMPlay pilih dan klik &#8220;Options and stuff&#8221; klik tree &#8220;DSP&#8221;</p>
<p>Di bawah tulisan Plugins cari box &#8220;Winamp DSP wrapper&#8221; klik box &#8220;Add&#8221; maka muncul &#8220;Winamp DSP wrapper &#8211; no plugin&#8221;</p>
<p>Klik box &#8220;Config&#8221; maka muncul pop up box Winamp DSP wrapper, cari nama &#8220;iZotope Ozone&#8221; terus bisa Anda &#8220;Config&#8221; seperti cara setting di bawah.</p>
<p>Sesuaikan Resolution 16, 24 atau 32 bit..apabila ketinggian bitnya, audio tidak akan keluar atau hanya bersuara beg-beg-beg..</p>
<p><em>Cara setting iZotope Ozone MP:</em></p>
<p>1. Pastikan semua lagu yang diinginkan sudah masuk daftar playlist.</p>
<p>2. Klik/tekan tombol PRESETS, pilih preset kesukaan Anda&#62;Update&#62;Assign&#8230;to&#62;All&#62;OK&#62;Close</p>
<p>Note: karena bersifat copy-an kadang lagu-lagu di playlist tidak masuk assignment list-nya tetapi hal itu sepertinya tidak mengganggu.</p>
<p>Kedua program ini tetap berjalan baik dan semua lagunya tetap terplugin dengan sempurna.</p>
<p><a href="http://s184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/?action=view&#38;current=XMPlaysetting.jpg" target="_blank"><img src="http://i184.photobucket.com/albums/x27/jipiyanuar/Ngeblog/XMPlaysetting.jpg" border="0" alt="XMPlay setting" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CSS/Widgets]]></title>
<link>http://kittti.wordpress.com/2009/10/02/csswidgets/</link>
<pubDate>Fri, 02 Oct 2009 17:00:07 +0000</pubDate>
<dc:creator>kittti</dc:creator>
<guid>http://kittti.wordpress.com/2009/10/02/csswidgets/</guid>
<description><![CDATA[Hello boys and girls. Ieri (1.10.2009) am avut o zi ,,infloritoare&#8221;. Am aflat cum se editeaza ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hello boys and girls. Ieri (1.10.2009) am avut o zi ,,infloritoare&#8221;. Am aflat cum se editeaza in CSS. Si ma bucur ca nu e asa de greu. Bineinteles ca invat..si o sa tot invat, pentru ca vor aparea multe alte noutati despre CSS, in viitor. Inca imi storc creierii sa le pricep pe astea vechi. Site-ul se numeste <a href="www.w3schools.com">www.w3schools.com</a> si te invata de la A la Z cum sa-ti customizezi singur pagina de web sau blogul personal. Incercati-l ca nu musca. Pentru bloggerii conectati la WordPress e bine de stiut ca interfata se poate schimba dupa ce ti-ai achizitionat cu 15$ CSS Custom Upgrade. Apoi te poti duce frumusel oriunde gasesti teme de blog moca, le dai jos de pe net. Copy /paste CSS in pagina ta la sectiunea edit CSS si poti sa incepi sa modifici coduri.</p>
<p>Pe partea de flash si animatie, am gasit o ,,jucarie&#8221; super interesanta intitulata ,,Widgets and Video Live Studio&#8221;. Cu acest software iti poti crea singur, playere pentru site-ul sau blogul tau. Iti poti crea widgeturi de tot felul: audio playere, video playere, animatii, galerii 3D si slide-show-uri. Trebuie doar sa intri pe <a href="http://www.kickapps.com">www.kickapps.com</a> si sa-ti creezi un user. Apoi daca iti convine sa dai 29$ pe acest soft, bun, daca nu, il ai moca pe 30 zile. Ceea ce mi se pare incantator. Incercati si va minunati. Iti faci widgetul mult visat, salvezi, copy embed code, paste la tine pe site si gata distractia:).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[VLC media player]]></title>
<link>http://eagle1squadron.wordpress.com/2009/09/23/vlc-media-player/</link>
<pubDate>Wed, 23 Sep 2009 07:36:34 +0000</pubDate>
<dc:creator>Eagle One</dc:creator>
<guid>http://eagle1squadron.wordpress.com/2009/09/23/vlc-media-player/</guid>
<description><![CDATA[VLC merupakan multimedia player yang dapat memutar video dan audio.. VLC dapat memutar dengan format]]></description>
<content:encoded><![CDATA[VLC merupakan multimedia player yang dapat memutar video dan audio.. VLC dapat memutar dengan format]]></content:encoded>
</item>
<item>
<title><![CDATA[Bbox 2.0.1.500 - Audio Player/ Manager]]></title>
<link>http://killaugustine.wordpress.com/2009/08/28/bbox-2-0-1-500-audio-player-manager/</link>
<pubDate>Fri, 28 Aug 2009 10:14:31 +0000</pubDate>
<dc:creator>adixczz</dc:creator>
<guid>http://killaugustine.wordpress.com/2009/08/28/bbox-2-0-1-500-audio-player-manager/</guid>
<description><![CDATA[Bbox 2.0.1.500 &#8211; Audio Player/ Manager License : Freeware Developer : CDD-Sofware (Visit Page)]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Bbox 2.0.1.500 &#8211; Audio Player/ Manager</p>
<p>License : Freeware<br />
Developer : CDD-Sofware (<a href="http://www.bboxplayer.com/">Visit Page</a>)<br />
Download : <a href="http://www.bboxplayer.com/downloads.php">http://www.bboxplayer.com/downloads.php</a></p>
<p>Program ini yang paling ringan dalam konsumsi memori jika dibandingkan dengan aplikasi sejenis semacam Media Monkey, I Tunes atau J River Media Jukebox. instalasinya hanya 4.87Mb. Aplikasi ini meload lagu2 di libary lebih cepat dari aplikasi2 yang tadi disebutkan. Jadi memainkan dan mengorganisir file2 audio anda jadi lebih cepat,<br />
Ripping dari Audio CD, internet radio, konversi, tagging-pun bisa dilakukan dengan cara yang mudah. Kualitas audio?  Cukup bagus,  Coba yuk</p>
<p>Step 1 (Interface)<br />
<img src="http://killaugustine.wordpress.com/files/2009/08/14.png" alt="1" title="1" width="459" height="312" class="alignnone size-full wp-image-454" /></p>
<p>Lihat interface’nya cukup bagus dengan music libary di tengah2, cover dan properties lagu di bawah, sementara di samping kanan ada control box dan equalizer.<br />
Di paling bawah ada 4 tab,  “music libary”, “CD Player” untuk memutar Audio CD, “Internet Radio” dengan lebih dari 70an channel yang bisa anda tambahkan sendiri dan “visualization”</p>
<p>Step 2 (Libary)<br />
klick “add folder”  atau “add files”untuk menambahkan file2 audio ke libary. Lihat proses addingnya berlangsung sangat cepat. Tp lah kug campur jadi satu? Mencarinya jadi sulit dunk kalau libary’nya lebih dari 1000?. Ahay tenang ada faslitas filter disitu, jadi cukup klick kata kunci di filter untuk menemukan lagu favorit anda. Ada pula fitur “quick filter” untuk memilah milah berdasarkan album dan artis.</p>
<p>Step 3 (Playing)<br />
Double klick file di libary untuk memainkan lagunya.<br />
Anda bisa menyeret (drag &#38; drop) lagu2 pilihan anda ke queue di samping kanan untuk memainkannya secara berurutan.  Atau klick kanan file di libary dan pilih “add to queue”<br />
Klick “equalizer” untuk mengatur equalizernya<br />
eh anda juga bisa mengatur crossfader juga disitu.</p>
<p>Step 4 (Encoder)<br />
<img src="http://killaugustine.wordpress.com/files/2009/08/encoder.png" alt="encoder" title="encoder" width="159" height="122" class="alignnone size-full wp-image-456" /></p>
<p>Klick “encoder”Untuk melakukan ripping a<!--more-->udio CD atau meng’konversi file2 audio anda  ke format mp3.  Anda bisa mengconvert wma ke mp3, ogg ke mp3 dst yaa outputnya hanya mp3 kug. Anda bisa mengatur preset mp3nya seperti bitrate, alogarithm quality dan channel mode disini.</p>
<p>Step 5 (Tagging)<br />
Proses tagging bisa dilakukan dengan mudah dengan cara mengklick “edit tag”<br />
<img src="http://killaugustine.wordpress.com/files/2009/08/tag-editor.png" alt="tag editor" title="tag editor" width="304" height="433" class="alignnone size-full wp-image-457" /></p>
<p>Perhatikan di sisi kanan akan muncul jendela seperti ini. Edit tag’nya, sesuai dengan kemauan anda<br />
Blok lagu2 tertentu unuk melakukan batch tagging <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Step 6 (CD Player &#38; Internet Radio)<br />
CD player bisa diakses di tab bawah atau klick “view” – “CD Player”<br />
Cara yang hampir sama untuk internet radio klick “view” &#8211; ”internet radio”, ada 70an lebih channel yang sudah ada disitu. Ada bisa tambahkan sendiri kog eh bisa anda rekam juga hlo lewat encoder <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>jika anda minimize, aplikasi ini aktif di tray, jadi jangan bingung untuk mencarinya <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Passion Audio Player]]></title>
<link>http://senatabitha14.wordpress.com/2009/08/25/passion-audio-player/</link>
<pubDate>Tue, 25 Aug 2009 01:52:53 +0000</pubDate>
<dc:creator>senatabitha14</dc:creator>
<guid>http://senatabitha14.wordpress.com/2009/08/25/passion-audio-player/</guid>
<description><![CDATA[The Audio Player for those who have passion with PCs and Music. It uses the BASS API by un4seen.com.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://senatabitha14.wordpress.com/files/2009/08/664030_1.jpg?w=300" alt="Audio Player" title="Audio Player" width="300" height="195" class="alignnone size-medium wp-image-19" />The Audio Player for those who have passion with PCs  and Music.<br />
It uses the BASS API by un4seen.com.<br />
It&#8217;s Main features Are:<br />
   1 . Excellent Playback Quality.<br />
   2 . Skin Support. It also supports Winamp Skins !!!<br />
   3 . Equalizer with visual effects.<br />
   4 . Playlist Editor.<br />
   5 . Freedb Support + Freedb Local Database Explorer !!!<br />
   6 . Sonique 1.x Visualization plugins support !!!<br />
   7 . Input and DSP plugins support.<br />
   8 . WinAmp 2.x DSP Plugins Support !!!<br />
   9 . ID3v1, ID3v2, OGG Tags, WAV Tags, WMA Tags Support.<br />
   10 . Zip Files Support !!!<br />
   11. Video formats Support !!!<br />
   12. It&#8217;s freeware !!!!</p>
<p>  Passion Audio Player supports the following formats:</p>
<p>  It supports the following audio formats BASS+ADDONS:</p>
<p>  OGG/MP3/MP2/MP1/WMA/WAV/MO3/IT/XM/S3M/MTM/MOD/UMX.<br />
  FLA/FLAC/OFR/OFS/WV/MPC/MP+/MPP/SPX/APE/MAC       </p>
<p>  It supports the following audio formats (DirectShow):<br />
  MID/MIDI/RMI/AIFF/AIF/AU/SND.</p>
<p>  It supports the following VIDEO formats (DirectShow):<br />
  AVI/MPG/MPEG/MOV/ASF/WMV.</p>
<p>  It also supports .zip files that contain the above Supported Files.</p>
<p>George Boudouris.<br />
Copyright (C) 2002-2008, George Boudouris</p>
<p>http://www.passionplayer.com</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Soundcloud Audio Player en Wordpress !!!]]></title>
<link>http://kikereigada.wordpress.com/2009/08/23/soundcloud-audio-player-en-wordpress/</link>
<pubDate>Sun, 23 Aug 2009 00:34:47 +0000</pubDate>
<dc:creator>Kike Reigada</dc:creator>
<guid>http://kikereigada.wordpress.com/2009/08/23/soundcloud-audio-player-en-wordpress/</guid>
<description><![CDATA[Si, habéis leído bien. Los usuarios de WordPress ya podemos mostrar el reproductor de Soundcloud en ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-362" title="soundcloud_logo" src="http://kikereigada.wordpress.com/files/2009/08/soundcloud_logo1.png" alt="soundcloud_logo" width="450" height="362" /></p>
<p>Si, habéis leído bien. Los usuarios de WordPress ya podemos mostrar el reproductor de Soundcloud en nuestros blogs, algo que hasta ahora no se podía hacer y que nos dejaba en desventaja frente a usuarios de Blogger, por poner un ejemplo.<br />
WordPress ha corregido por fin esta gran &#8220;injusticia&#8221; y ha llegado a un acuerdo con esa gran plataforma de alojamiento de audio que es Soundcloud.<br />
El proceso para que aparezca el reproductor en el blog es tan sencillo como ir a el track de audio de Souncloud que quieres mostrar y pinchar en la pestaña &#8220;share&#8221;. A continuación se abre una pequeña ventana en la que aparecerán las diversas platafomas en las que podemos mostrar el reproductor. Elegimos WordPress, y nos saldrá un código que deberemos copiar y luego pegar como texto en el post de nuestro blog. Al publicar dicho post, veremos por fin el tan esperado y deseado audio player de Soundcloud.<br />
Aquí os dejo un ejemplo, gentileza de WordPress, donde se ve perfectamente lo que acabo de explicar:</p>
<p><img class="aligncenter size-full wp-image-364" title="soundcloud_ejemplo01" src="http://kikereigada.wordpress.com/files/2009/08/soundcloud_ejemplo01.jpg" alt="soundcloud_ejemplo01" width="450" height="254" /></p>
<p><img class="aligncenter size-full wp-image-365" title="soundcloud_ejemplo02" src="http://kikereigada.wordpress.com/files/2009/08/soundcloud_ejemplo02.jpg" alt="soundcloud_ejemplo02" width="450" height="225" /></p>
<p>Una gran noticia que personalmente llevaba esperando mucho tiempo.<br />
Muchas gracias a <strong>Soundcloud</strong> y <strong>WordPress</strong>!!!</p>
<p>+info: <a href="http://blog.soundcloud.com/2009/08/13/soundcloud-gets-full-wordpress-com-integration/" target="_blank">Soundcloud</a> / <a href="http://en.blog.wordpress.com/2009/08/13/soundcloud/" target="_blank">WordPress</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Foobar2000 0.9.6.8 - Powerfull Audio Player]]></title>
<link>http://killaugustine.wordpress.com/2009/08/15/foobar2000-0-9-6-8-powerfull-audio-player/</link>
<pubDate>Sat, 15 Aug 2009 05:52:01 +0000</pubDate>
<dc:creator>adixczz</dc:creator>
<guid>http://killaugustine.wordpress.com/2009/08/15/foobar2000-0-9-6-8-powerfull-audio-player/</guid>
<description><![CDATA[Foobar2000 0.9.6.8 License : Freeware Developer : Peter Pawlowski (visit Page) Download : http://www]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Foobar2000 0.9.6.8</p>
<p>License   : Freeware<br />
Developer : Peter Pawlowski (<a href="http://www.foobar2000.org/">visit Page</a>)<br />
Download  : <a href="http://www.foobar2000.org/download">http://www.foobar2000.org/</a></p>
<p>Akhir akhir ini Foobar2000 menjadi aplikasi pemutar audio favorit saya, berukuran kecil, membutuhkan rescourse yang rendah, dan yang terpenting suaranya cukup bagus untuk kuping penggemar musik2 underground seperti saya <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , fitur fiturnya bisa jadi tidak akan ditemukan di aplikasi sejenis seperti scan gain, multitab playlist, converter dll. Aplikasi ini dibawah bendera GPL, jadi anda akan menemukan banyak plug ins dari programmer lain untuk membuat player ini semakin powerfull. penasaran? Check it out</p>
<p><img src="http://killaugustine.wordpress.com/files/2009/08/main-foobar.png?w=300" alt="Main Foobar" title="Main Foobar" width="300" height="213" class="alignnone size-medium wp-image-367" /></p>
<p>Audio player ini mungkin sedikit susah untuk dikostumisasi, tapi jika anda sudah terbiasa menggunakannya, anda akan mememukan bahwa Foobar2000 adalah salah satu yang terbaik di dunia.</p>
<p>Step By Step<br />
Step 1 (add libary)<br />
Untuk mempermudah mengorganisir dan menemukan file audio sebaiknya, membuat libary dulu caranya klick “libary” – “configure” – “add,” masukkan folder dimana file file audio anda diletakkan, jika suatu saat anda ingin memainkan lagu favorit anda dengan cepat maka klick “libary” – “search” – ketikkan kata kunci anda misalnya saya ingin memainkan Lostprophets – 4-Am Forever maka cukup ketikkan kata kuncinya “forever” atau “4-Am” atau “lostprophets” dan tekan enter untuk memainkannya, hemat waktu kan <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><img src="http://killaugustine.wordpress.com/files/2009/08/foobar-libary.png?w=300" alt="FOOBAR LIBARY" title="FOOBAR LIBARY" width="300" height="147" class="alignnone size-medium wp-image-368" /></p>
<p>Step 2 (Playing)<br />
Button control sangat mudah digunakan, anda bisa mengatur sendiri letak layoutnya di menu “view layout”. Pengaturan equalizer, visualisations-pun cukup mudah di mengerti <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  , ehm jangan lupa mengatur equalizernya <!--more-->untuk mendapatkan hasil yang maksimal.</p>
<p>Step 3 (MultiTab Playlist)<br />
Anda terbiasa menggunakan multitab saat browsing?, Foobar2000 bisa juga seperti itu. Jendela playlist bisa anda tambahkan sebanyak yang anda suka. </p>
<p><img src="http://killaugustine.wordpress.com/files/2009/08/multitab-playlist.png?w=300" alt="multitab playlist" title="multitab playlist" width="300" height="111" class="alignnone size-medium wp-image-369" /></p>
<p>Untuk menambahkan playlist baru, klick kanan space playlist yang kosong pilih “add new”, beri nama playlist anda dengan memilih “rename”, jika ingin cepat memainkan lagu tanpa harus memelototi daftar @_@ tekan “ctrl” +  “F” dan ketikkan kata kunci lagunya.</p>
<p>Step 4 (Converting Audio)<br />
Jangan salah, Foobar2000 bisa juga lo mengkonversi file audio, pilihan konversi-pun cukup banyak, mulai dari FLAC, MP3, OggVorbis, WAV dan masih banyak lagi, jika dirasa masih kurang bisa ditambahkan plug in tambahan kog ?, untuk melakukan konversi, klick kanan file yang diinginkan dan pilih “convert”, </p>
<p><img src="http://killaugustine.wordpress.com/files/2009/08/convertterrr.png?w=300" alt="convertterrr" title="convertterrr" width="300" height="140" class="alignnone size-medium wp-image-370" /></p>
<p>Ada tiga tab disini<br />
Tab “output”<br />
Pilih button (&#8230;) di samping kanan “output format” untuk pengaturan lebih lanjut seperti pengaturan kbps, vbr dan yang lainnya., tentukan tempat penyimpanan  di  Button (&#8230;) Specify Folder. Terakhir klick “ok” dan “save” saya kaget juga dengan kecepatan konversinya,, gile juga hahay.<br />
Anda bisa juga hlo menggabungkan track track yang ingin anda konversi menjadi satu file dengan memilih “merge all track into one file” .<br />
Tab “Processing”<br />
Ehm anda bisa menambahkan replay gain dsini, jadi atur volume-nya sesuai kemauan anda atau tambahkan efek dsp dengan pilihan yang lumayan banyak, ingin menambahkan crossfader atau limitter? Bisaa,,, :p<br />
Tab “other”<br />
Tab ini lumayan advance yaitu pengaturan dither, bit dll.<br />
Bingung? Jika anda bingung cukup klick tab output saja, yang processing sama other g usah lah <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Step 5 (Tagging)<br />
Foobar2000, tagging pun jadi lebih mudah,cukup klick kanan file di playlist atau block file2 yang diinginkan jika ingin melakukan multiple tagging dan klick &#8220;properties&#8221;, edit taggingnya terakhir klick OK.<br />
<img src="http://killaugustine.wordpress.com/files/2009/08/tagging1.png?w=300" alt="tagging" title="tagging" width="300" height="274" class="alignnone size-medium wp-image-372" /></p>
<p>Step 6 (Skinning)<br />
Bosen dengan skin seperti itu? Ganti saja layoutnya di menu “view” – “layout” – “quick setup”<br />
Atau download skin <a href="http://customize.org/foobar">disini</a> ehm sebelum menginstal skin sebaiknya anda membaca readme yang biasanya sudah diisertakan dalam bundel agar anda tidak bingung <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<img src="http://killaugustine.wordpress.com/files/2009/08/quick-apparance.png?w=300" alt="Quick APparance" title="Quick APparance" width="300" height="179" class="alignnone size-medium wp-image-373" /></p>
<p>Eh iya ada yang ketinggalan, Foobar2000 bisa digunakan secara portable hlo, pada awal instalasi anda bisa memilih  Portable Installation</p>
<p><img src="http://killaugustine.wordpress.com/files/2009/08/sshot-52.png?w=300" alt="sshot-5" title="sshot-5" width="300" height="235" class="alignnone size-medium wp-image-374" /></p>
<p>Untuk Download Plugs Ins Atawa komponen, downoad <a href="http://www.foobar2000.org/components">disini</a></p>
<p>So lets play it loud ^_^<br />
ROck ouTT</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Five free and better audio players]]></title>
<link>http://loveopensource.wordpress.com/2009/08/14/five-free-and-better-audio-players/</link>
<pubDate>Fri, 14 Aug 2009 10:05:46 +0000</pubDate>
<dc:creator>naatiq</dc:creator>
<guid>http://loveopensource.wordpress.com/2009/08/14/five-free-and-better-audio-players/</guid>
<description><![CDATA[Windows Media player(WMP) by far the most famous audio video player among common man, thanks to Micr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Windows Media player<strong>(WMP)</strong> by far the most famous audio video player among common man, thanks to Microsoft for bundling it along with Microsoft Windows. As most of you must already know that WMP is not the idea player for people who like watching wide range of video&#8217;s in various formats, also for people who have huge collections of Auido. Below you can find free alternatives to WMP, they are divided into two categories Audio and Video for convenience.</p>
<h3><strong>Audio Players:</strong></h3>
<p><strong>Media Monkey:</strong> The best media player cum organizer that one can get for free, although paid version exists, the free version is more than enough to manage huge libraries of Music. It also features a in built tag editor so edit the Mp3 tags and better organize the music. Sync feature with Ipod&#8217;s or in fact any other portable media player is a plus point. The only drawback is it is not open source hence not many customizing options apart from changing of skins and plugins that are available.For any one looking to manage a huge music collection look no further than this. Latest version of Media Monkey can be downloaded <a href="http://www.google.co.in/url?q=http://www.mediamonkey.com/download/&#38;ei=JC-FSvmnHZGo6APig6HjAw&#38;sa=X&#38;oi=smap&#38;resnum=1&#38;ct=result&#38;cd=1&#38;usg=AFQjCNE62EBY0K3G3-sJDCPomOkUkxN2HA" target="_blank">here</a>.</p>
<p><strong>J. River Media Jukebox: </strong> One more worthy alternative, and almost identical in features to Media Monkey, the only diffrerence is that the Mp3 Tag editor is not as fully featured as media monkey, it also has similar drawbacks as media monkey that is it is not open source. It syncs with most portable audio devices like ipod&#8217;s, mobile phones etc<strong>. </strong>Download J. River Media Jukebox <a href="http://files.jriver.com/mediajukebox/MediaJukebox12.exe" target="_blank">here</a>.</p>
<p><strong>Foobar2000 :</strong> By default one of the most dumb players to look at. But dont be fooled by its looks, its the most customizable media player available for free. It plays almost all the audio formats including FLAC. It has various advanced features like replaygain, gapless playback. The drawback is that this audio player is not for common users, its a geek&#8217;s favorite audio player. Give it a try, and get it <a href="http://www.foobar2000.org/download" target="_blank">here</a>.</p>
<p><strong>Winamp: </strong>Everyone&#8217;s favorite audio player after windows media player and probable the most widely known free audio player. Sync&#8217;s with alost all the portable devices, wide range of presets and format supports. Also there is very active community support for winamp so expect a galore of plugins. Get winamp<a href="http://www.winamp.com/" target="_blank"> here<strong>.</strong></a></p>
<p><strong>Amarok: </strong>Last but not the least, and also happens to be my favorite audio player among all the above, with excellent sound reproduction. Wide range of audio format support. The only drawback being its windwos version is still in alpha stage. But for those using linux amarok is the best. Have look at amarok <a href="http://amarok.kde.org/" target="_blank">here</a>.</p>
<p>Next post will be five better video players.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[WigiTel W3, a phone clock]]></title>
<link>http://t3chnology4you.wordpress.com/2009/08/01/wigitel-w3-a-phone-clock/</link>
<pubDate>Sat, 01 Aug 2009 05:53:32 +0000</pubDate>
<dc:creator>feel4alex</dc:creator>
<guid>http://t3chnology4you.wordpress.com/2009/08/01/wigitel-w3-a-phone-clock/</guid>
<description><![CDATA[If you are the kind that prefer  strange terminals and  with original design, then you take a look a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div style="text-align:left;" dir="ltr">If you are the kind that prefer  strange terminals and  with original design, then you take a look at the W3 Handset WigiTel, a clock  phone with 2 screens.</div>
<div style="text-align:left;" dir="ltr"><img class="aligncenter size-full wp-image-242" title="WigiTel-W3-1" src="http://t3chnology4you.wordpress.com/files/2009/08/wigitel-w3-1.jpg" alt="WigiTel-W3-1" width="490" height="411" /> </p>
<div style="text-align:left;" dir="ltr">
The terminal seems like a clam and is sold by the Czech WigiTel among its facilities counting  a touchscreen with internal resolution of 128 x 128 pixels and an external OLED screen. W3 supports dual band GSM connectivity (900/1800 MHz), GPRS and incorporates a USB port, an audio player and Bluetooth support.</div>
<div style="text-align:left;" dir="ltr"></div>
<div style="text-align:left;" dir="ltr">
Watch-phone measures 51 x 51 x 20 mm, weighs 55 grams, comes with a VGA camera and comes with the package of  a microSD memory card of 1 GB. Battery&#8217;s WigiTel W3 hold up to 200 minutes in talk time and 120 hours in standby.</div>
<div style="text-align:left;" dir="ltr">You can buy the handset at the price of 258 dollars, unlocked.</div>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Media Player Classic HomeCinema 1.2.1179 x86/x64]]></title>
<link>http://filemirrors.wordpress.com/2009/07/29/media-player-classic-homecinema-1-2-1179-x86x64/</link>
<pubDate>Wed, 29 Jul 2009 21:43:53 +0000</pubDate>
<dc:creator>filemirrors</dc:creator>
<guid>http://filemirrors.wordpress.com/2009/07/29/media-player-classic-homecinema-1-2-1179-x86x64/</guid>
<description><![CDATA[The Media Player Classic HomeCinema is an audio and video player with a lot of additional features. ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://filemirrors.wordpress.com/files/2009/07/media-player-classic-homecinema.jpg" alt="media-player-classic-homecinema" title="media-player-classic-homecinema" width="574" height="344" class="alignnone size-full wp-image-594" /></p>
<p>The Media Player Classic HomeCinema is an audio and video player with a lot of additional features. The project is based on the original &#8220;Media Player Classic&#8221; and was created after Gabest, the original author, stopped working on it. Several new features have been integrated in this player, such as:</p>
<p>- An option to remove Tearing<br />
- Translations available in several different languages<br />
- Additional video decoders and in particular H.264 and VC-1 with DXVA support<br />
- Better support for Windows Vista, including a separate release for 64 bits platform<br />
- Support for Vista&#8217;s new EVR renderer<br />
- A lot of bug and vulnerability fixes</p>
<p>Modern graphics card offer the possibility to decode partially or completely a video stream using DirectX Video Acceleration (DXVA), in order to reduce CPU usage dramatically. MPC-HC includes an embedded video decoder that uses this technology, to decode H.264 and VC-1 with hardly any CPU time required. Unfortunately the MPC-HC decoder only supports the &#8220;bitstream mode&#8221; at this stage, which means that only the most recent graphic cards are supported: nVidia series 8(9)xxx for H.264 only and ATI Radeon HD series for H.264 and VC-1 decoding. The latest version includes fixes for some DXVA issues in previous builds&#8230; </p>
<p>- <a href="http://uploading.com/files/UNFPYCEW/mpc-homecinema.1.2.1179.0.(x86-x64).zip.html" target="_blank"><b>Download Media Player Classic HomeCinema 1.2.1179 x86/x64</b></a><br />
- <a href="http://www.easy-share.com/1907065074/mpc-homecinema.1.2.1179.0.(x86-x64).zip" target="_blank"><b>Download Media Player Classic HomeCinema 1.2.1179 x86/x64 (mirror 1)</b></a><br />
- <a href="http://hotfile.com/dl/9374510/e130f1e/mpc-homecinema.1.2.1179.0.(x86-x64).zip.html" target="_blank"><b>Download Media Player Classic HomeCinema 1.2.1179 x86/x64 (mirror 2)</b></a><br />
- <a href="http://saveqube.com/getfile/03f4ab0fe724b326ae43dd5577bb821965676a927e72a3df53/mpc_homecinema.1.2.1179.0._x86_x64_.zip.html" target="_blank"><b>Download Media Player Classic HomeCinema 1.2.1179 x86/x64 (mirror 3)</b></a><br />
- <a href="http://sharingmatrix.com/file/216636/mpc-homecinema.1.2.1179.0.(x86-x64).zip" target="_blank"><b>Download Media Player Classic HomeCinema 1.2.1179 x86/x64 (mirror 4)</b></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Foobar2000, music player paling asyik]]></title>
<link>http://ariesre.wordpress.com/2009/07/26/foobar2000-music-player-paling-asyik/</link>
<pubDate>Sun, 26 Jul 2009 04:47:49 +0000</pubDate>
<dc:creator>ariesre</dc:creator>
<guid>http://ariesre.wordpress.com/2009/07/26/foobar2000-music-player-paling-asyik/</guid>
<description><![CDATA[Baru mencoba nih Foobar2000, langsung jatuh hati deh, soalnya suara yang dihasilkan oleh audio playe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter" title="Foobar2000" src="http://i410.photobucket.com/albums/pp186/ariesre/foobar2000.jpg" alt="" width="479" height="327" /></p>
<p>Baru mencoba nih Foobar2000, langsung jatuh hati deh, soalnya suara yang dihasilkan oleh audio player ini ternyata sangat bagus, jernih, dan murni (jadi kaya air ya <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ) daripada audio player lainnya yang pernah saya install. Sebelumnya saya pernah menggunakan <a href="http://ariesre.wordpress.com/2009/06/28/dengarkan-musikmu-dengan-jetaudio-7-5-3-minilyrics/" target="_blank">JetAudio</a>, eh setelah mencoba Foobar200, jadi pindah haluan, he he he.</p>
<p>Mungkin dari segi tampilan, memang masih sederhana, tidak seperti audio/music player lainnya, tapi yang lebih diutamakan dari audio/music player adalah kualitas suaranya kan <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> .</p>
<p><a href="http://ariesre.wordpress.com/2009/06/28/dengarkan-musikmu-dengan-jetaudio-7-5-3-minilyrics/" target="_blank">Minilyric</a> juga mendukung Foobar2000 lho. Kalau anda tertarik dan ingin mencoba/mengunduh Foobar2000, silahkan menuju situs aslinya di <a href="http://www.foobar2000.org/?page=Download" target="_blank">sini</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[B4 2009 Software Awards]]></title>
<link>http://bandew444.com/2009/07/24/b4-2009-software-awards/</link>
<pubDate>Sat, 25 Jul 2009 06:29:34 +0000</pubDate>
<dc:creator>Bandew444</dc:creator>
<guid>http://bandew444.com/2009/07/24/b4-2009-software-awards/</guid>
<description><![CDATA[So, since January when I got my Mac, I&#8217;ve been making a list of the best software, and here it]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>So, since January when I got my Mac, I&#8217;ve been making a list of the best software, and here it is with their awards!</p>
<h3>Best Web Browser &#38; Audio Player:</h3>
<p><a href="http://bandew444.wordpress.com/files/2009/07/apple-award.jpg"><img class="alignnone size-medium wp-image-829" title="Apple Award" src="http://bandew444.wordpress.com/files/2009/07/apple-award.jpg?w=300" alt="Apple Award" width="240" height="240" /></a></p>
<p><a href="http://bandew444.wordpress.com/files/2009/07/apple-award.jpg"></a><a href="http://bandew444.wordpress.com/files/2009/07/safari-logo.png"><img class="alignnone size-medium wp-image-831" title="safari logo" src="http://bandew444.wordpress.com/files/2009/07/safari-logo.png?w=265" alt="safari logo" width="66" height="74" /></a> Safari  4</p>
<p><a href="http://bandew444.wordpress.com/files/2009/07/itunes-logo.png"><img class="alignnone size-full wp-image-830" title="iTunes Logo" src="http://bandew444.wordpress.com/files/2009/07/itunes-logo.png" alt="iTunes Logo" width="75" height="75" /></a> iTunes 8</p>
<h3>Best Graphic Design App:</h3>
<p><a href="http://bandew444.wordpress.com/files/2009/07/adobe-award.jpg"><img class="alignnone size-medium wp-image-832" title="Adobe Award" src="http://bandew444.wordpress.com/files/2009/07/adobe-award.jpg?w=300" alt="Adobe Award" width="240" height="240" /></a><a href="http://bandew444.wordpress.com/files/2009/07/photoshopcs4icon.png"><img class="alignnone size-medium wp-image-833" title="PhotoshopCS4icon" src="http://bandew444.wordpress.com/files/2009/07/photoshopcs4icon.png?w=300" alt="PhotoshopCS4icon" width="115" height="115" /></a> Photoshop</p>
<p><a href="http://bandew444.wordpress.com/files/2009/07/maxon-award.jpg"><img class="alignnone size-medium wp-image-834" title="Maxon Award" src="http://bandew444.wordpress.com/files/2009/07/maxon-award.jpg?w=300" alt="Maxon Award" width="240" height="240" /></a><a href="http://bandew444.wordpress.com/files/2009/07/cinema4d-jpg.jpeg"><img class="alignnone size-medium wp-image-835" title="Cinema4d Logo" src="http://bandew444.wordpress.com/files/2009/07/cinema4d-jpg.jpeg?w=300" alt="Cinema4d Logo" width="155" height="134" /></a> C4D</p>
<h3>Best Social Networking App:</h3>
<p><a href="http://bandew444.wordpress.com/files/2009/07/skype-award.jpg"><img class="alignnone size-medium wp-image-846" title="Skype Award" src="http://bandew444.wordpress.com/files/2009/07/skype-award.jpg?w=300" alt="Skype Award" width="240" height="240" /></a>Skype</p>
<h3>Best Video Viewing App:</h3>
<p><a href="http://bandew444.wordpress.com/files/2009/07/hulu-award.jpg"><img class="alignnone size-medium wp-image-847" title="Hulu Award" src="http://bandew444.wordpress.com/files/2009/07/hulu-award.jpg?w=300" alt="Hulu Award" width="240" height="240" /></a>Hulu Desktop</p>
<h3>Best Blogging Software:</h3>
<p><a href="http://bandew444.wordpress.com/files/2009/07/wordpress-award.jpg"><img class="alignnone size-medium wp-image-848" title="WordPress Award" src="http://bandew444.wordpress.com/files/2009/07/wordpress-award.jpg?w=300" alt="WordPress Award" width="240" height="240" /></a>WordPress</p>
<h3>Best Video Editing App:</h3>
<p><a href="http://bandew444.wordpress.com/files/2009/07/adobe-award1.jpg"><img class="alignnone size-medium wp-image-849" title="Adobe Award" src="http://bandew444.wordpress.com/files/2009/07/adobe-award1.jpg?w=300" alt="Adobe Award" width="240" height="240" /></a> <a href="http://bandew444.wordpress.com/files/2009/07/aftereffects_cs31.png"><img class="alignnone size-full wp-image-855" title="After Effects" src="http://bandew444.wordpress.com/files/2009/07/aftereffects_cs31.png" alt="After Effects" width="98" height="98" /></a> After Effects</p>
<h3>Best Business Apps:</h3>
<h4><a href="http://bandew444.wordpress.com/files/2009/07/iheartvector-shield-pack.jpg"><img class="alignnone size-medium wp-image-851" title="Microsoft Award" src="http://bandew444.wordpress.com/files/2009/07/iheartvector-shield-pack.jpg?w=300" alt="Microsoft Award" width="240" height="240" /></a>Office (Mac)</h4>
<h3>Best Video Convertor:</h3>
<p><a href="http://bandew444.wordpress.com/files/2009/07/squared5-award.jpg"><img class="alignnone size-medium wp-image-852" title="Squared5 Award" src="http://bandew444.wordpress.com/files/2009/07/squared5-award.jpg?w=300" alt="Squared5 Award" width="240" height="240" /></a>MPEG Streamclip</p>
<h2>2nd annual Bandew444&#8217;s Software Awards coming in Summer 2010!</h2>
</div>]]></content:encoded>
</item>

</channel>
</rss>
