<?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>realaudio &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/realaudio/</link>
	<description>Feed of posts on WordPress.com tagged "realaudio"</description>
	<pubDate>Fri, 27 Nov 2009 21:09:38 +0000</pubDate>

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

<item>
<title><![CDATA[Salvare gli stream RealAudio in MP3]]></title>
<link>http://gpz500.wordpress.com/2009/06/15/salvare-gli-stream-realaudio-in-mp3/</link>
<pubDate>Mon, 15 Jun 2009 14:49:39 +0000</pubDate>
<dc:creator>gpz500</dc:creator>
<guid>http://gpz500.wordpress.com/2009/06/15/salvare-gli-stream-realaudio-in-mp3/</guid>
<description><![CDATA[Un amico mi ha fatto conoscere la possibilità di scaricare e salvare gli audiolibri che si possono a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone size-full wp-image-308" title="audiobook" src="http://gpz500.wordpress.com/files/2009/06/audiobook.jpg" alt="audiobook" width="480" height="373" /></p>
<p>Un amico mi ha fatto conoscere la possibilità di <a href="http://www.meiaweb.com/2009/02/05/audiolibri">scaricare e salvare</a> gli audiolibri che si possono ascoltare (in diretta) su Rai Radio Tre durante la trasmissione <em>Ad alta voce</em>, e (poi) in streaming sul sito web della Rai. Si tratta di grandi classici della letteratura internazionale letti da &#8220;voci capaci&#8221;, ognuno costituito da 15/20 puntate.</p>
<p>Visto che scaricare e convertire in MP3 una puntata alla volta era veramente noioso ho scritto uno script bash che, dato l&#8217;indirizzo di una pagina web che contiene più link a degli stream RealAudio (come le pagine della trasmissione <em>Ad alta voce</em>), scarica e converte automaticamente e in parallelo tutti gli stream citati. <!--more--></p>
<p>Lo script in questione l&#8217;ho battezzato, con ben poca fantasia, <em>savera</em> (SAVE RealAudio). Per poterlo utilizzare è necessario avere installati, e disponibili nel PATH di sistema, i comandi <em>curl</em>, <em>mplayer</em>, <em>lame </em>(per output MP3) e/o <em>ffmpeg </em>(per il formato AAC), oltre che, naturalmente, la shell <em>Bash</em>. Io l&#8217;ho testato su Linux e Mac OS X ma non è escluso che, una volta installati i programmi richiesti, funzioni anche su Windows con <a href="http://www.cygwin.com/">Cygwin</a>.</p>
<h1>Installazione su Ubuntu Linux</h1>
<p>Vista la grande diffusione, le istruzioni riportate sono per Ubuntu/Debian ma non sarà difficile adattarle anche a distribuzioni diverse.</p>
<ol>
<li>Installare i programmi necessari con il seguente comando dato da terminale:<br />
<code>$ sudo apt-get install curl mplayer lame ffmpeg</code></li>
<li>scaricare lo script da qui:
<ul>
<li><a href="http://dl.getdropbox.com/u/187424/savera">savera</a> (6 KB)</li>
</ul>
</li>
<li>spostarlo in una delle cartelle che fanno parte della variabile di ambiente <em>PATH</em>. Ottime scelte sono <em>/usr/local/bin</em> (per un&#8217;installazione di sistema) e <em>/home/&#60;nomeutente&#62;/bin</em> (solo per l&#8217;utente &#60;nomeutente&#62;) perché non vengono gestite dal sistema di pacchettizzazione della distribuzione e quindi non si genera alcun conflitto;</li>
<li>attivare i permessi di esecuzione con il comando<br />
<code>$ sudo chmod +x /path/to/savera</code></li>
</ol>
<h1>Installazione su Mac OS X</h1>
<p>Procurarsi tutti i programmi necessari su Mac OS X è decisamente più laborioso che su Linux in quanto i vari software hanno origini diverse e si installano in modo diverso l&#8217;uno dall&#8217;altro: <em>curl</em> fa eccezione perché è preinstallato (almeno su Leopard), <em>mplayer</em> si trova come <a href="http://www.keiths-place.com/download/2008/mplayer-command-line">binario precompilato</a>, <em>lame</em> si <a href="http://pdb.finkproject.org/pdb/package.php/lame">trova su Fink</a> (ma non in forma binaria) e di<em> ffmpeg</em> si trovano solo i <a href="http://stephenjungels.com/jungels.net/articles/ffmpeg-howto.html">sorgenti</a>. Per chi ha capito al volo questo paragrafo non resta che installare il software e provare lo script. Per tutti gli altri, non è escluso che, prima o poi, realizzi un pacchetto complessivo con tutto il software necessario (magari con un&#8217;interfaccia in AppleScript).</p>
<h1>Uso</h1>
<p>Lo script crea i file MP3/AAC nella cartella corrente, quindi va lanciato in una cartella creata appositamente allo scopo. Ad esempio</p>
<p><code>$ mkdir -p ~/Musica/Audiolibri/Lolita<br />
$ cd ~/Musica/Audiolibri/Lolita</code></p>
<p>A questo punto è sufficiente lanciare <em>savera</em> con argomento il <a href="http://www.radio.rai.it/radio3/terzo_anello/alta_voce/archivio_2004/eventi/2004_06_01_lolita/index.cfm">link alla pagina</a> dell&#8217;audiolibro che si vuol salvare (il formato di default è Mp3):</p>
<p><code>$ savera http://www.radio.rai.it/radio3/terzo_anello/alta_voce/archivio_2004/eventi/2004_06_01_lolita/index.cfm</code></p>
<p>I tipi di URL accettati da <em>savera</em> sono:</p>
<ul>
<li>l&#8217;URL http://&#8230; di una pagina html che contiene i link a uno o più stream (come nel caso degli audiolibri RAI);</li>
<li>l&#8217;URL http://&#8230; di un file .ram (playlist di RealPlayer)</li>
<li>l&#8217;URL rtsp://&#8230; di uno stream RealAudio.</li>
</ul>
<p>Una volta lanciato, <em>savera</em> scaricherà e convertirà &#8211; in parallelo &#8211; tutte le sorgenti indicate e tornerà al prompt dei comandi solo dopo aver terminato. Il tempo impiegato dipende dal numero di stream, dalla velocità del vostro collegamento ad Internet, dalla potenza di calcolo del vostro computer; se si ha una connessione ADSL sufficientemente veloce e un computer abbastanza potente, il tempo di conversione dipenderà unicamente dalla durata della puntata più lunga, in quanto l&#8217;audio viene comunque trasferito in tempo reale.</p>
<p>Ci sono alcune opzioni che si possono scegliere la cui documentazione viene visualizzata con l&#8217;opzione <em>-h</em>:</p>
<p><code>$ savera -h</code></p>
<h1>Appendice: lo script</h1>
<p>Segue il contenuto dello script:</p>
<pre>#!/bin/bash
#
# Save to MP3 or AAC files RealAudio streams extracted from web pages or directly
# supplied. An example are the audiobook streams from the Italian state
# Broadcasting Service (RAI) radio programme "Il terzo anello" at
# http://www.radio.rai.it/radio3/terzo_anello/alta_voce/archivio_2009/eventi/2009_01_12_diceriadelluntore/index.cfm
#
# Thanks to Alessandro Meiattini (http://www.meiaweb.com/).
#
# Copyright (C) - 2009
# Alessandro Morgantini - gpz500 at technologist dot com
#
# Released under the terms of GPL2 (http://www.gnu.org/licenses/gpl-2.0.html).
# Modified on $Date: 2009-07-03 19:48:36 +0200 (Ven, 03 Lug 2009) $
# SVN $Revision: 61 $
#set -x

# Defaults
DEFAULT_CODEC="MP3"
DEFAULT_MAX_NPROC=30

CODEC=""
COMMAND_NAME=$(basename $0)
ARG_URLS=""
MAX_NPROC=0
NPROC=0
POOL=""
URLS=""
USAGE="Usage: ${COMMAND_NAME} [options] URL [URL ...]
Save to MP3 or AAC files the RealAudio streams (.ram files) from web pages

Accepted options:
  -h, --help          Print this help
  -m, --mp3           Select MP3 as output format (default)
  -a, --aac           Select AAC as output format
  -n, --nocodec       Save the streams with no conversion
  -j, --jobs=N        Set the parallelism degree to N ($DEFAULT_MAX_NPROC by default)

Valid URLs are:
  an http://... web page wich contains links to .ram playlists;
  an http://...ram playlist;
  an rtsp://...ra RealAudio stream.

E.g.:
$COMMAND_NAME http://www.radio.rai.it/radio3/terzo_anello/alta_voce/archivio_2009/eventi/2009_01_12_diceriadelluntore/index.cfm"
TEMP_FILES=""

# Return on the standard output the extension part (the part after the last
# period) of the argument
get_extension ()
{
	NAME=$(basename $1)
	if echo "$NAME" &#124; grep "\." &#62;/dev/null; then
		echo -n "$NAME" &#124; sed 's/^.*\.\([^\.]*\)$/\1/'
	else
		echo -n ""
	fi
}

# Add a process to the pool
add_to_pool ()
{
	POOL="$POOL $1"
	NPROC=$(($NPROC + 1))
}

# Remove from the pool the terminated processes
update_pool ()
{
	local OLDPOOL="$POOL"
	local PID
	POOL=""
	NPROC=0
	for PID in $OLDPOOL; do
		ps $PID &#124; grep $PID &#62;/dev/null
		if [[ $? -eq 0 ]]; then
			add_to_pool $PID
		fi
	done
}

# Check for terminated processes in the pool
check_pool ()
{
	local OLDPOOL="$POOL"
	local PID
	for PID in $OLDPOOL; do
		ps $PID &#124; grep $PID &#62;/dev/null
		if [[ $? -ne 0 ]]; then
			update_pool
			break
		fi
	done
}

# Command line parsing
while [ -n "$1" ]; do
	case "$1" in
		--help&#124;-h)
			echo "$USAGE"
			exit 0
			;;
		--mp3&#124;-m)
			if [ -z "$CODEC" ]; then
				CODEC="MP3"
			else
				echo "$COMMAND_NAME error: you can't specify more than one output format" &#62;&#38;2
				echo "$USAGE" &#62;&#38;2
				exit 1
			fi
			shift
			;;
		--aac&#124;-a)
			if [ -z "$CODEC" ]; then
				CODEC="AAC"
			else
				echo "$COMMAND_NAME error: you can't specify more than one output format" &#62;&#38;2
				echo "$USAGE" &#62;&#38;2
				exit 1
			fi
			shift
			;;
		--nocodec&#124;-n)
			if [ -z "$CODEC" ]; then
				CODEC="NONE"
			else
				echo "$COMMAND_NAME error: you can't specify more than one output format" &#62;&#38;2
				echo "$USAGE" &#62;&#38;2
				exit 1
			fi
			shift
			;;
		-j)
			if [ $MAX_NPROC -eq 0 ]; then
				shift
				MAX_NPROC=$1
			else
				echo "$COMMAND_NAME error: you can't specify more than one -j or --jobs option" &#62;&#38;2
				echo "$USAGE" &#62;&#38;2
				exit 1
			fi
			shift
			;;
		--jobs*)
			if [ $MAX_NPROC -eq 0 ]; then
				MAX_NPROC=$(echo "$1" &#124; cut -d = -f 2)
			else
				echo "$COMMAND_NAME error: you can't specify more than one -j or --jobs option" &#62;&#38;2
				echo "$USAGE" &#62;&#38;2
				exit 1
			fi
			shift
			;;
		-*)
			echo "$COMMAND_NAME error: option \"$1\" unkown" &#62;&#38;2
			echo "$USAGE" &#62;&#38;2
			exit 2
			;;
		*)
			ARG_URLS="$ARG_URLS $1"
			shift
			;;
	esac
done

# Preliminary checks
if [ -z "$(which mplayer)" ]; then
	echo "Sorry: you must have mplayer installed." &#62;&#38;2
	exit 1
fi
if [ -z "$(which curl)" ]; then
	echo "Sorry: you must have curl installed." &#62;&#38;2
	exit 1
fi
if [ -z "$CODEC" ]; then
	CODEC="$DEFAULT_CODEC"
fi
echo "$COMMAND_NAME: the output format is $CODEC"
if [ "$CODEC" = "MP3" -a -z "$(which lame)" ]; then
	echo "Sorry: you must have lame installed." &#62;&#38;2
	exit 1
elif [ "$CODEC" = "AAC" -a -z "$(which ffmpeg)" ]; then
	echo "Sorry: you must have ffmpeg installed." &#62;&#38;2
	exit 1
fi
if [ $MAX_NPROC -eq 0 ]; then
	MAX_NPROC=$DEFAULT_MAX_NPROC
fi
echo "$COMMAND_NAME: the parallelism degree is $MAX_NPROC"
if [ -z "$ARG_URLS" ]; then
	echo "$COMMAND_NAME error: you must specify at least a valid URL" &#62;&#38;2
	echo "$USAGE" &#62;&#38;2
	exit 4
fi

# Retrieving URLs
for URL in $ARG_URLS; do
	if echo "$URL" &#124; grep "^rtsp://.*"; then
		URLS="$URLS $URL"
	elif echo "$URL" &#124; grep "^http://.*\.ram$"; then
		URLS="$URLS $(curl -s $URL &#124; cat -v &#124; sed 's/\^M$//')"
	elif echo "$URL" &#124; grep "^http://.*"; then
		INPUTFILE=$(mktemp)
		curl -s "$URL" &#124; grep "http://.*\.ram" &#124; sed "s/^.*\(http:\/\/.*\.ram\).*$/\1/" &#62;"$INPUTFILE"
		while read RAM; do
			URLS="$URLS $(curl -s $RAM &#124; cat -v &#124; sed 's/\^M$//')"
		done &#38;2
		exit 1
	fi
done

# Check if we are behind a proxy
if [ -n "$http_proxy" ]; then
	echo "$COMMAND_NAME: sorry. Because of mplayer, $COMMAND_NAME can't work behind an http proxy."
	echo "In case you know out to use them, the URLs are saved in the file ra_urls.txt"
	[ -e ra_urls.txt ] &#38;&#38; rm ra_urls.txt
	for URL in $URLS; do
		echo $URL &#62;&#62;ra_urls.txt
	done
	exit 0
fi

# Set the SIGINT handler
clean_on_exit ()
{
	for file in $TEMP_FILES; do
		rm -f "$file"
	done
}
trap clean_on_exit SIGINT

# Download the streams
for URL in $URLS; do
	EXT=$(get_extension "$URL")
	FILENAME=$(basename "$URL" &#124; sed 's/\.'$EXT'$//')
	if [ "$CODEC" = "NONE" ]; then
		mplayer -quiet -noframedrop -dumpfile "$FILENAME.$EXT" -dumpstream "$URL" &#38;
	else
		mkfifo "$FILENAME.wav" &#38;&#38; TEMP_FILES="$TEMP_FILES $FILENAME.wav"
		mplayer -quiet -noframedrop -ao pcm:file="$FILENAME.wav" "$URL" &#38;
		if [ "$CODEC" = "MP3" ]; then
			lame --quiet "$FILENAME.wav" "$FILENAME.mp3" &#38;
		else
			ffmpeg -i "$FILENAME.wav" -acodec libfaac -ab 128k -f aac "$FILENAME.m4a" &#38;
		fi
	fi
	add_to_pool $!
	while [ $NPROC -ge $MAX_NPROC ]; do
		check_pool
		sleep 0.5
	done
done
wait

# Delete all intermediate files
clean_on_exit
echo "All done!"</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Artisticas para Radio en DJSALVAPRODUCCIONES]]></title>
<link>http://jumanitransmisores.wordpress.com/2008/10/11/artisticas-para-radio-en-djsalvaproducciones/</link>
<pubDate>Sat, 11 Oct 2008 16:05:46 +0000</pubDate>
<dc:creator>jumanitransmisores</dc:creator>
<guid>http://jumanitransmisores.wordpress.com/2008/10/11/artisticas-para-radio-en-djsalvaproducciones/</guid>
<description><![CDATA[Como las estaciones del año tienen diferentes características, su emisora también debe sonar distint]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p align="center"><span style="font-family:Arial, Helvetica, sans-serif;color:#000000;font-size:x-small;"><a class="alignleft" title="Dj Salva" href="http://www.djsalvaproducciones.com.ar" target="_self">Como las estaciones del año tienen diferentes características, su emisora también debe sonar distinto. Le ofrecemos Separadores, Identificaciones de señal, Avances, Promos de venta. Creamos y armamos artísticas ágiles y dinámicas o institucionales y delicadas, con las mejores librerías de música y efectos de sonido.</a></span></p>
<p align="center"><span style="font-family:Arial, Helvetica, sans-serif;color:#000000;font-size:x-small;"><a class="alignleft" title="Dj Salva" href="http://www.djsalvaproducciones.com.ar" target="_self">Ahora puede tener voces sobresalientes, distintas a las que suenan habitualmente en su programación identificando su emisora.</a></span></p>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"><a class="alignleft" title="Dj Salva" href="http://www.djsalvaproducciones.com.ar" target="_self"><br />
</a></p>
<p align="center"><a class="alignleft" title="Dj Salva" href="http://www.djsalvaproducciones.com.ar" target="_self"><br />
</a></p>
<p align="center">
<table border="0">
<tbody>
<tr>
<td><a class="alignleft" title="Dj Salva" href="http://www.djsalvaproducciones.com.ar" target="_self">las estaciones del año tienen diferentes características, su emisora también </a></td>
</tr>
<tr>
<td> </td>
<td><a class="alignleft" title="Dj Salva" href="http://www.djsalvaproducciones.com.ar" target="_self"> debe sonar distinto. Le ofrecemos Separadores, Identificaciones de señal, </a></td>
</tr>
<tr>
<td> </td>
<td><a class="alignleft" title="Dj Salva" href="http://www.djsalvaproducciones.com.ar" target="_self"> Avances, Promos de venta. Creamos y armamos artísticas ágiles y dinámicas </a></td>
</tr>
<tr>
<td> </td>
<td><a class="alignleft" title="Dj Salva" href="http://www.djsalvaproducciones.com.ar" target="_self"> o institucionales y delicadas, con las mejores librerías de música y efectos </a></td>
</tr>
<tr>
<td> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </td>
<td><a class="alignleft" title="Dj Salva" href="http://www.djsalvaproducciones.com.ar" target="_self"> de sonido</a></p>
<p><a class="alignleft" title="Dj Salva" href="http://www.djsalvaproducciones.com.ar" target="_self"><br />
</a></p>
<p> </p>
<p> </p>
<p>Por eso es ideal que las <strong>artísticas para radio</strong> que posea, no sean &#8220;estándar&#8221; sino diseñadas específicamente con lo que usted necesita. Se pueden realizar aperturas, cierres, separadores, pisadores, identificadores, pequeños spots horarios, segmentos&#8230;</p>
<p> </p>
<p>ENVIA TU TEXTO A fabian.djsalva@gmail.com y te enviaremos el presupuesto, si sos locutor envianos tu demo a fabian@djsalvaproducciones.com.ar</td>
</tr>
</tbody>
</table>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Bir mizah dergisi nasıl hazırlanır? Gırgır ve Leman]]></title>
<link>http://cizer.wordpress.com/2008/09/22/bir-mizah-dergisi-nasil-hazirlanir-girgir-ve-leman/</link>
<pubDate>Mon, 22 Sep 2008 14:08:40 +0000</pubDate>
<dc:creator>cizer</dc:creator>
<guid>http://cizer.wordpress.com/2008/09/22/bir-mizah-dergisi-nasil-hazirlanir-girgir-ve-leman/</guid>
<description><![CDATA[Leman mizah dergisi nasıl hazırlanıyor? Gecelemek nasıl bir gelenek, karikatüristler ne yer ne içerl]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.ngmtv.com/webisode.aspx?web=112">                                    <img src="http://www.ngmtv.com/webisodeimages/290708bizgeldik1_160x58.jpg" border="0" width="160" />                             </a>                                                                                              <br />Leman mizah dergisi nasıl hazırlanıyor? Gecelemek nasıl bir gelenek, karikatüristler ne yer ne içerler?</p>
<p><a href="http://www.ngmtv.com/webisode.aspx?web=211"><img src="http://www.ngmtv.com/webisodeimages/270808bizgeldik_160x58.jpg" border="0" width="160" />                             </a>                                                                                                                                                                                                               <br />Gırgır raflardaki yerini alana kadar ne aşamalardan geçiyor acaba?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Convert audio and video files online]]></title>
<link>http://grafikdesign.wordpress.com/2008/09/22/convert-audio-and-video-files-online/</link>
<pubDate>Mon, 22 Sep 2008 12:31:41 +0000</pubDate>
<dc:creator>grafikdesign</dc:creator>
<guid>http://grafikdesign.wordpress.com/2008/09/22/convert-audio-and-video-files-online/</guid>
<description><![CDATA[http://media-convert.com/ F A Q &nbsp; Media-Convert is 100% free. No software is needed, and you do]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a target="_blank" href="http://media-convert.com/">http://media-convert.com/</a><!--more-->
<div id="mc-doc-border">
<div id="mc-doc-wrapper">
<div id="mc-doc">
<div id="mc-doc-title">F A Q</div>
<p> <a name="haut">&#160;</a> </p>
<h2>Media-Convert is 100% free. No software is needed, and you don&#8217;t have to register. You only need your favorite Internet browser. Your files are ready 7/7 days 24/24 hours.</h2>
</p>
<table cellpadding="2" cellspacing="0">
<tbody>
<tr valign="middle">
<td><img src="http://media-convert.com/images/pint.gif" border="0" height="20" width="20" /></td>
<td> <span class="texteTitre">How to convert a file ?<br /></span></td>
</tr>
</tbody>
</table>
<p>To convert a file located on your computer : Check <i>File</i> mode, click <i>Browse</i> and choose the file, select input format (if autodetection fails) and output format, submit the form.<br />&#160;<br />To convert a file located on a webserver : Check <i>URL</i> mode, enter the file URL, select input and output format.</p>
<table cellpadding="2" cellspacing="0">
<tbody>
<tr valign="middle">
<td><img src="http://media-convert.com/images/pint.gif" border="0" height="20" width="20" /></td>
<td> <span class="texteTitre">Why use Media-Convert ?<br /></span> </td>
</tr>
</tbody>
</table>
<p> <br />
<h2>Simply because Media-Convert is the best manner of converting audio files, video, presentation, document, spreadsheet, etc.</p>
<p>Media-Convert advantages :</p>
<li>More secure because you do not have to install software on your computer, which can contain viruses, spywares, etc.
</li>
<li>Access from everywhere in the world through Internet. You can use Media-Convert at the office, in a cybercafé, or with the PC of a friend, and then download the result quietly to your cell phone, mp3 reader or any other hardware.</li>
</h2>
<table cellpadding="2" cellspacing="0">
<tbody>
<tr valign="middle">
<td><img src="http://media-convert.com/images/pint.gif" border="0" height="20" width="20" /></td>
<td><span class="texteTitre">Supported file formats<br /></span></td>
</tr>
</tbody>
</table>
<div class="mc-doc-rub">Documents, text</div>
<p>A lot of formats are supported. Main formats are :<br />&#160;
<li>Raw text, HTML, XHTML, Microsoft Word, RTF, PDF, PS, Open Office, Star Writer, Pocket Word, Word Perfect</li>
<li>CSV, dBase, Microsoft Excel, Pocket Excel, Lotus 123, Quattro Pro, Star Calc, Open Office spreadsheet</li>
<li>MathML, Star Math, Open Office math</li>
<li>Microsoft Powerpoint, Star Impress, Open Office presentation</li>
<p>  &#160;</p>
<p><b>Why use Media-Convert ?</b></p>
<li>No software installation, Media-Convert let you read all kind of documents.</li>
<li>Convert files, for example<br /><font color="#f00000">to read all Open Office files with Microsoft Office</font><br />&#160;<br />or convert files into universal formats like Adobe PDF, PS (PostScript) or CSV to<br /><font color="#f00000">print, fax ou simply read them on any computer, without special software.<br /></font></li>
<li>Insert a PDF into your web page by converting it into an SWF Flash file.</li>
<li>Export easily Microsoft Access database to an Excel table.</li>
<li>Capture a website as an image.</li>
<li>Encode a text with UTF-8 codes or with one of 900 other charsets.</li>
<li>Learn morse code with the text to morse converter <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </li>
<div class="mc-doc-linktop"><a href="http://media-convert.com/#haut">Back to top</a></div>
<div class="mc-doc-rub">Archives</div>
<p>
<h1>
<li><a target="_blank" href="http://en.wikipedia.org/wiki/7Z">7Z</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/Bzip2">BZ2</a>&#160;BZA&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/Cabinet_%28file_format%29">CAB</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/gzip">GZ</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/lzh">LHA</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/lzh">LZH</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/rar">RAR</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/Tar_%28file_format%29">TAR</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/Tar_%28file_format%29">TGZ</a>&#160;YZ1&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/ZIP_%28file_format%29">ZIP</a>&#160;</li>
</h1>
<p>
<div class="mc-doc-linktop"><a href="http://media-convert.com/#haut">Back to top</a></div>
<div class="mc-doc-rub">Movie</div>
<p>
<h1>
<li>3G2&#160;3GP&#160;AMV&#160;ASF&#160;AVI&#160;DPG&#160;DV&#160;FLI&#160;FLV&#160;GIF&#160;GVI&#160;MKV&#160;MOV&#160;MP4&#160;MPG&#160;NSV&#160;OGG&#160;OGM&#160;RM&#160;RPL<br />SWF&#160;VOB&#160;WMV&#160;</li>
</h1>
<p>+ video presets for Windows, Linux, Mac, SVCD, DVD, Pocket PC, Mobile phone, Nokia 770, Nokia N800, iPOD, iPHONE, Sony PSP, Nintendo DS, Wii, Zune, S1MP3 MP4 player.</p>
<p>&#160;<br /><b>NEW!</b> Join up to 10 movies into a single movie file !
<div class="mc-doc-linktop"><a href="http://media-convert.com/#haut">Back to top</a></div>
<div class="mc-doc-rub">Image</div>
<p> <a href="http://media-convert.com/index.php?pg=homet">Try our new cool thumbnail maker !</a><br />&#160;<br />
<h1>
<li>AVS&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/Windows_bitmap">BMP</a>&#160;CIN&#160;DCX&#160;DIB&#160;DPX&#160;FITS&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/GIF">GIF</a>&#160;ICO&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/JPEG">JFIF</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/JPEG">JIF</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/JPEG">JPE</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/JPEG">JPEG</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/JPEG">JPG</a>&#160;MIFF&#160;OTB&#160;P7&#160;PALM&#160;PAM&#160;PBM<br />PCD&#160;PCDS&#160;PCL&#160;PCX&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/PGM">PGM</a>&#160;PICT&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/PNG">PNG</a>&#160;PNM&#160;PPM&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/Photoshop">PSD</a>&#160;RAS&#160;SGI&#160;SUN&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/TGA">TGA</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/Tagged_Image_File_Format">TIF</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/Tagged_Image_File_Format">TIFF</a>&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/Windows_Metafile">WMF</a>&#160;XBM&#160;XPM&#160;YUV</p>
</li>
</h1>
<h1>
<li>CGM&#160;DXF&#160;EMF&#160;EPS&#160;MET&#160;MVG&#160;ODG&#160;OTG&#160;STD&#160;SVG&#160;SXD&#160;<a target="_blank" href="http://en.wikipedia.org/wiki/Windows_Metafile">WMF</a>&#160;</li>
</h1>
<p><u>Options</u> : resize image, compression level.<br />&#160;
<div class="mc-doc-linktop"><a href="http://media-convert.com/#haut">Back to top</a></div>
<div class="mc-doc-rub">Sound</div>
<p>
<h2>With Media-Convert it&#8217;s very easy to split audio files : choose split points, listen immediatly and retry until it&#8217;s ok.<br /><u>Options</u> : split, encoding method, quality, &#8230;<br /></h2>
<p>
<h1>
<li><a target="_blank" href="http://en.wikipedia.org/wiki/WAV">WAV</a>&#160;to MP3, OGG, AAC, AMR, FLAC, MPC, MMF, AU, AIFF, QCP.</li>
</h1>
<h1>
<li><a target="_blank" href="http://en.wikipedia.org/wiki/MP3">MP3</a>&#160;to WAV, OGG, AAC, AMR, FLAC, MPC, MMF, AU, AIFF, QCP.</li>
</h1>
<h1>
<li><a target="_blank" href="http://en.wikipedia.org/wiki/WMA">WMA</a>&#160;to WAV, OGG, AAC, AMR, FLAC, MP3, MPC, MMF, AU, AIFF, QCP.</li>
</h1>
<h1>
<li><a target="_blank" href="http://en.wikipedia.org/wiki/OGG">OGG</a>&#160;to WAV, MP3, AAC, AMR, FLAC, MPC, MMF, AU, AIFF, QCP.</li>
</h1>
<h1>
<li><a target="_blank" href="http://en.wikipedia.org/wiki/AAC">AAC</a>&#160;to WAV, MP3, OGG, AMR, FLAC, MPC, MMF, AU, AIFF, QCP.</li>
</h1>
<h1>
<li><a target="_blank" href="http://en.wikipedia.org/wiki/AAC">MP4</a>&#160;(AAC) to WAV, MP3, OGG, AMR, FLAC, MPC, MMF, AU, AIFF, QCP.</li>
</h1>
<h1>
<li><a target="_blank" href="http://en.wikipedia.org/wiki/FLAC">FLAC</a>&#160;to WAV, MP3, OGG, AMR, AAC, MPC, MMF, AU, AIFF, QCP.</li>
</h1>
<h1>
<li>VQF (Yamaha TwinVQ)&#160;to WAV, MP3, OGG, AMR, AAC, FLAC, MMF, AU, AIFF, QCP.</li>
</h1>
<h1>
<li>MPC (Musepack)&#160;to WAV, MP3, OGG, AMR, AAC, FLAC, MMF, AU, AIFF, QCP.</li>
</h1>
<h1>
<li>REAL AUDIO&#160;to WAV, MP3, OGG, AMR, AAC, FLAC, MPC, MMF, AU, AIFF, QCP.</li>
</h1>
<h1>
<li>AMR&#160;to WAV, MP3, OGG, AAC, FLAC, MPC, MMF, AU, AIFF, QCP.</li>
</h1>
<h1>
<li>MMF (pcm)&#160;to WAV, MP3, OGG, AAC, FLAC, MPC, AMR, AU, AIFF, QCP.</li>
</h1>
<h1>
<li>AU&#160;to WAV, MP3, OGG, AAC, FLAC, MPC, AMR, MMF, AIFF, QCP.</li>
</h1>
<h1>
<li>AIFF&#160;to WAV, MP3, OGG, AAC, FLAC, MPC, AMR, AU, MMF, QCP.</li>
</h1>
<h1>
<li>QCP&#160;to WAV, MP3, OGG, AAC, FLAC, MPC, AMR, AU, AIFF, MMF.</li>
</h1>
<h1>
<li>3GP&#160;to WAV, MP3, OGG, AAC, FLAC, MPC, AMR, AU, AIFF, MMF.</li>
</h1>
<h1>+ Amiga files (8SVF, MAUD), Psion files (PRC, WVE), SNDT, SF, SoundBlaster VOC, AVR, TXW, Soundtracker files (MOD, XM FastTracker, IT ImpulseTracker, S3M ScreamTracker), &#8230;<br />&#160;<br /></h1>
<h2>ID3 (v1 and v2) Tag preservation for MP3, OGG, AAC, WMA and MPC files.</p>
<p>AMR, MMF and AAC are supported by many <a href="http://media-convert.com/convert/ringtones.html">mobile phones</a>. Here is a quick list : <br />&#160;<br />
<table align="center" border="0" cellpadding="1" cellspacing="1" width="80%">
<tbody>
<tr>
<td style="border:1px solid rgb(128,128,128);" class="texteNormal" align="left" bgcolor="#fafafa" width="100%">Which file formats are accepted by my cell phone ? Take it and browse to http://media-convert.com/wf </td>
</tr>
</tbody>
</table>
<p>&#160;
<div id="telfmt">
<table>
<tbody>
<tr>
<td>ALCATEL One touch 565</td>
<td>MMF</td>
</tr>
<tr>
<td>ALCATEL One touch 765</td>
<td>AMR, MP3</td>
</tr>
<tr>
<td>MOTOROLA E398</td>
<td>AMR, MP3</td>
</tr>
<tr>
<td>MOTOROLA E550</td>
<td>AMR, MP3, WAV</td>
</tr>
<tr>
<td>MOTOROLA PEBL U6</td>
<td>AAC, MP3</td>
</tr>
<tr>
<td>MOTOROLA RAZR V3</td>
<td>MP3, AAC</td>
</tr>
<tr>
<td>MOTOROLA ROKR E1</td>
<td>MP3, AAC</td>
</tr>
<tr>
<td>MOTOROLA SLVR L7</td>
<td>MP3</td>
</tr>
<tr>
<td>MOTOROLA V300</td>
<td>AMR, MP3, WAV</td>
</tr>
<tr>
<td>MOTOROLA V525</td>
<td>MP3</td>
</tr>
<tr>
<td>MOTOROLA V550</td>
<td>MP3</td>
</tr>
<tr>
<td>MOTOROLA V600</td>
<td>MP3</td>
</tr>
<tr>
<td>MOTOROLA V80</td>
<td>MP3, AMR</td>
</tr>
<tr>
<td>MOTOROLA V980</td>
<td>MP3, AMR, WAV</td>
</tr>
<tr>
<td>NEC N500i</td>
<td>MP3</td>
</tr>
<tr>
<td>NOKIA 1600</td>
<td>MP3</td>
</tr>
<tr>
<td>NOKIA 3230</td>
<td>MP3, AMR, WAV</td>
</tr>
<tr>
<td>NOKIA 3650</td>
<td>AMR, WAV</td>
</tr>
<tr>
<td>NOKIA 3660</td>
<td>AMR, WAV</td>
</tr>
<tr>
<td>NOKIA 6020</td>
<td>AMR, MIDI</td>
</tr>
<tr>
<td>NOKIA 6101</td>
<td>MP3</td>
</tr>
<tr>
<td>NOKIA 6170</td>
<td>AMR, MP3</td>
</tr>
<tr>
<td>NOKIA 6230 6230i</td>
<td>AMR, MP3</td>
</tr>
<tr>
<td>NOKIA 6600</td>
<td>AMR, WAV</td>
</tr>
<tr>
<td>NOKIA 6630</td>
<td>MP3, AMR, WAV</td>
</tr>
<tr>
<td>NOKIA 6820</td>
<td>AMR</td>
</tr>
<tr>
<td>NOKIA 7260</td>
<td>AMR</td>
</tr>
<tr>
<td>NOKIA 7610</td>
<td>AMR, MP3</td>
</tr>
<tr>
<td>NOKIA 8800</td>
<td>MP3</td>
</tr>
<tr>
<td>NOKIA 9300</td>
<td>MP3, AMR, WAV</td>
</tr>
<tr>
<td>NOKIA 9500</td>
<td>MP3, AMR, WAV</td>
</tr>
<tr>
<td>NOKIA N90</td>
<td>MP3</td>
</tr>
<tr>
<td>NOKIA N-Gage</td>
<td>AMR, WAV</td>
</tr>
<tr>
<td>NOKIA N-Gage QD</td>
<td>WAV</td>
</tr>
<tr>
<td>PANASONIC X200</td>
<td>MMF</td>
</tr>
<tr>
<td>PANASONIC X300</td>
<td>MMF</td>
</tr>
<tr>
<td>PANASONIC X500</td>
<td>MMF</td>
</tr>
<tr>
<td>PANASONIC X70</td>
<td>AMR</td>
</tr>
<tr>
<td>PANASONIC X701</td>
<td>AMR, WAV</td>
</tr>
<tr>
<td>QTEK 8300</td>
<td>AMR, MP3</td>
</tr>
<tr>
<td>SAGEM MY-302X</td>
<td>AMR</td>
</tr>
<tr>
<td>SAGEM MY-X52</td>
<td>AMR, WAV</td>
</tr>
<tr>
<td>SAGEM MY-V55</td>
<td>AMR, AAC, WAV</td>
</tr>
<tr>
<td>SAGEM MY-V56</td>
<td>AMR, AAC, WAV</td>
</tr>
<tr>
<td>SAMSUNG SGH-D410</td>
<td>MMF</td>
</tr>
<tr>
<td>SAMSUNG SGH-D500</td>
<td>MP3, MMF</td>
</tr>
<tr>
<td>SAMSUNG SGH-D500E / E860V</td>
<td>AAC, MP3</td>
</tr>
<tr>
<td>SAMSUNG SGH-D600</td>
<td>MP3</td>
</tr>
<tr>
<td>SAMSUNG SGH-E700</td>
<td>MMF</td>
</tr>
<tr>
<td>SAMSUNG SGH-E720</td>
<td>MP3</td>
</tr>
<tr>
<td>SAMSUNG SGH-E730</td>
<td>MP3</td>
</tr>
<tr>
<td>SAMSUNG SGH-V200</td>
<td>MMF</td>
</tr>
<tr>
<td>SAMSUNG SGH-X640</td>
<td>AMR, MMF, IMELODY, MIDI</td>
</tr>
<tr>
<td>SAMSUNG SGH-Z105</td>
<td>MP3</td>
</tr>
<tr>
<td>SAMSUNG SGH-Z107V</td>
<td>MMF</td>
</tr>
<tr>
<td>SAMSUNG SGH-Z140V</td>
<td>MP3</td>
</tr>
<tr>
<td>SHARP GX 15</td>
<td>MMF</td>
</tr>
<tr>
<td>SHARP GX 25</td>
<td>MMF</td>
</tr>
<tr>
<td>SHARP V902</td>
<td>MMF</td>
</tr>
<tr>
<td>SIEMENS CX65</td>
<td>AMR, WAV</td>
</tr>
<tr>
<td>SIEMENS M55</td>
<td>WAV</td>
</tr>
<tr>
<td>SIEMENS M65</td>
<td>AMR, WAV</td>
</tr>
<tr>
<td>SIEMENS MC60</td>
<td>WAV</td>
</tr>
<tr>
<td>SIEMENS S55</td>
<td>MMF</td>
</tr>
<tr>
<td>SIEMENS S65</td>
<td>AMR, WAV</td>
</tr>
<tr>
<td>SIEMENS SL55</td>
<td>MMF</td>
</tr>
<tr>
<td>SIEMENS SL65</td>
<td>AMR, WAV</td>
</tr>
<tr>
<td>SIEMENS SX1</td>
<td>AMR, WAV</td>
</tr>
<tr>
<td>SONY-ERICSSON F500i</td>
<td>AMR, MP3</td>
</tr>
<tr>
<td>SONY-ERICSSON K500i</td>
<td>AMR, MP3</td>
</tr>
<tr>
<td>SONY-ERICSSON K600 / V600i</td>
<td>MP3</td>
</tr>
<tr>
<td>SONY-ERICSSON K700i</td>
<td>AMR, MP3</td>
</tr>
<tr>
<td>SONY-ERICSSON K750i</td>
<td>AMR, MP3, AAC, WAV</td>
</tr>
<tr>
<td>SONY-ERICSSON P800</td>
<td>AMR, WAV</td>
</tr>
<tr>
<td>SONY-ERICSSON P900</td>
<td>AMR, WAV, MP3</td>
</tr>
<tr>
<td>SONY-ERICSSON P910</td>
<td>MP3, WAV</td>
</tr>
<tr>
<td>SONY-ERICSSON S700i</td>
<td>AMR, MP3</td>
</tr>
<tr>
<td>SONY-ERICSSON V800</td>
<td>AMR, MMF</td>
</tr>
<tr>
<td>SONY-ERICSSON W550i</td>
<td>AMR, WAV, MP3, AAC</td>
</tr>
<tr>
<td>SONY-ERICSSON W800i</td>
<td>AMR, WAV, MP3, AAC</td>
</tr>
<tr>
<td>SONY-ERICSSON Z1010</td>
<td>AMR, WAV, MP3</td>
</tr>
<tr>
<td>SONY-ERICSSON Z520i</td>
<td>AMR, MP3, AAC</td>
</tr>
<tr>
<td>SPV C600</td>
<td>MP3</td>
</tr>
<tr>
<td>T-MOBILE MDA</td>
<td>WAV</td>
</tr>
</tbody>
</table></div>
</h2>
<p>&#160;
<div class="mc-doc-linktop"><a href="http://media-convert.com/#haut">Back to top</a></div>
<div class="mc-doc-rub">Music, monophonic &#38; polyphonic ringtones</div>
<p> &#160;<br />
<h1>
<li>MIDI, MIDI-0, SP-MIDI, CMX, MMF, MOTOROLA, SAGEM, EMELODY, IMELODY, EMS, RTTTL/RTX, NOKIA, NOKIA-TXT.</li>
</h1>
<p> &#160;<br />Formats used on most common cellular phones like Alcatel, Mitsubishi, Samsung, Nokia, Siemens, Nec, Panasonic, Sagem, Sharp, Sony, Trium, Sony-Ericsson, LG, Motorola.<br />&#160;
<div class="mc-doc-linktop"><a href="http://media-convert.com/#haut">Back to top</a></div>
<div class="mc-doc-rub">&#160;</div>
<p>&#160;<br /> <br />
<table cellpadding="2" cellspacing="0">
<tbody>
<tr valign="middle">
<td><img src="http://media-convert.com/images/pint.gif" border="0" height="20" width="20" /></td>
<td> <span class="texteTitre">Why displaying so much advertisement on Media-Convert ? <br /></span> </td>
</tr>
</tbody>
</table>
<p>Our service is 100% free. Our goal is to continue to offer a free service, with fast processing and high bandwidth for comfortable use. Servers, hosting and bandwidth are expensive, that&#8217;s why we have to display advertisement on Media-Convert.</p>
</p>
<table cellpadding="2" cellspacing="0">
<tbody>
<tr valign="middle">
<td><img src="http://media-convert.com/images/pint.gif" border="0" height="20" width="20" /></td>
<td> <span class="texteTitre">What is the max file size ?<br /></span> </td>
</tr>
</tbody>
</table>
<p>We convert your files <b>up to 150 Mb !</b></p>
</p>
<table cellpadding="2" cellspacing="0">
<tbody>
<tr valign="middle">
<td><img src="http://media-convert.com/images/pint.gif" border="0" height="20" width="20" /></td>
<td> <span class="texteTitre">Is this service free ?<br /></span> </td>
</tr>
</tbody>
</table>
<p>Yes, it&#8217;s 100% free and you don&#8217;t need to install additional software.</p>
</p>
<table cellpadding="2" cellspacing="0">
<tbody>
<tr valign="middle">
<td><img src="http://media-convert.com/images/pint.gif" border="0" height="20" width="20" /></td>
<td> <span class="texteTitre">Terms of service<br /></span> </td>
</tr>
</tbody>
</table>
<p><span class="textecgu">This Media-Convert Service Agreement (the &#8220;Agreement&#8221;) describes the terms and conditions on which Media-Convert (&#8220;we&#8221; or &#8220;our company&#8221;) offer services to you (&#8220;Customer&#8221; or &#8220;You&#8221;). By using Media-Convert services, Customer agrees to be bound by the following terms and conditions :</p>
<p>Your are the only responsible for the data which it sends to Media-Convert servers. One is reminded that the illicit exchanges of recordings and protected works as well as the hacking harm artistic creation. One is reminded that also nonthe respect of the laws in force, in particular those concerning the respect of the intellectual and artistic property, can give place to continuations and judgments. Any failure or complaint of having rights will irremediably involve the removal of the files in question.<br />You agree to not use Media-Convert services to upload any content that spreads messages of terror or depicts torture or death-gui; harm minors in any way, this includes any form of child pornography; if serious enough, the content will be reported to the appropriate legal authority and/or the member&#8217;s ISP will be contacted.<br />You agree to not use Media-Convert services to upload any content that infringes any patent, trademark, trade secret, copyright or other proprietary rights of any party.</p>
<p>Media-Convert is a free service, which does not offer any guarantee of any kind as for its use. You can use Media-Convert for any activity, personal or profesionnal. </p>
<p>Media-Convert Online reserves the right to change or discontinue any of the Services at any time. <br /><a name="conditions">&#160;</a><a href="http://media-convert.com/convert/index.php?pg=abuse">Report illegal files</a></span> </p>
<div class="mc-doc-linktop"><a href="http://media-convert.com/#haut">Back to top</a></div>
</p></div>
</div>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Converta seus Arquivos com o MediaCoder]]></title>
<link>http://blackcow.wordpress.com/2008/03/06/converta-seus-arquivos-com-o-mediacoder/</link>
<pubDate>Thu, 06 Mar 2008 18:30:33 +0000</pubDate>
<dc:creator>alexsander2</dc:creator>
<guid>http://blackcow.wordpress.com/2008/03/06/converta-seus-arquivos-com-o-mediacoder/</guid>
<description><![CDATA[O MediaCoder é um conversor de arquivos de áudio e video, que une em um mesmo software vários codecs]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;margin:0 5px 0 0;" height="61" alt="MediaCoderLogo" src="http://blackcow.files.wordpress.com/2008/03/mediacoderlogo.png?w=222&#038;h=61" width="222" align="left" border="0"> O MediaCoder é um conversor de arquivos de áudio e video, que une em um mesmo software vários codecs gratuitos. Podemos comprimir os arquivos, converter videos, extrair pedaços dos arquivos, ripar cd´s e dvd´s.</p>
<p>&#160;</p>
<p><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="331" alt="mediacoder" src="http://blackcow.files.wordpress.com/2008/03/mediacoder.png?w=382&#038;h=331" width="382" border="0"> </p>
<p>&#160;</p>
<p><strong>Formatos Suportados</strong></p>
<p>MP3, Vorbis, AAC, AAC+, AAC+v2, MusePack, Speex, AMR, WMA, RealAudio, mp3PRO*<br />FLAC, WavPack, Monkey&#8217;s Audio, OptimFrog, AAC Lossless, TTA, WAV/PCM, Waveform<br />H.264, XviD, DivX, MPEG 1/2/4, Theora, Flash Video, Dirac, 3ivx*, RealVideo*, Windows Media Video<br />AVI, MPEG/VOB, Matroska, MP4, PMP, RealMedia*, ASF, Quicktime*, OGM*<br />CD, DVD, VCD, SVCD, CUESheet</p>
<p>&#160;</p>
<p><img height="48" alt="Download" src="http://blackcow.files.wordpress.com/2008/03/download2.jpg?w=48&#038;h=48" width="48" border="0"></p>
<p><a href="http://mediacoder.sourceforge.net/download.htm">Download</a> </p>
<p>Fonte pplware.com<a href="http://mediacoder.sourceforge.net/wiki/index.php/Cue_sheet"></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Motorola ROKR E8]]></title>
<link>http://digidynamic.wordpress.com/2008/03/05/motorola-rokr-e8/</link>
<pubDate>Wed, 05 Mar 2008 04:01:23 +0000</pubDate>
<dc:creator>digidynamic</dc:creator>
<guid>http://digidynamic.wordpress.com/2008/03/05/motorola-rokr-e8/</guid>
<description><![CDATA[  Beberapa vendor ponsel berusaha mencari untuk menawarkan sesuatu yang unik dalam produk mereka, se]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p ALIGN="center"> <a TITLE="digidynamic.wordpress.com ROKR E8" HREF="http://digidynamic.wordpress.com/files/2008/03/digidynamicwordpresscom-rokr-e8.jpg"><img ALT="digidynamic.wordpress.com ROKR E8" SRC="http://digidynamic.wordpress.com/files/2008/03/digidynamicwordpresscom-rokr-e8.jpg" /></a></p>
<p>Beberapa vendor ponsel berusaha mencari untuk menawarkan sesuatu yang unik dalam produk mereka, sesuatu yang lain daripada yang beredar di pasaran. Seperti halnya Motorola ROKR E8 yang menghadirkan keypad yang disesuaikan dengan penggunaan fitur ponsel.</p>
<p>Jika kita tengah menggunakannya untuk telepon, maka ROKR E8 akan menampilkan keypad numerik. Jika kita tengah menggunakan fitur kameranya, maka keypad akan menunjukkan kontrol-kontrol kamera dan untuk pemakaian multimedia, maka ROKR E8 akan menampilkan tombol-tombol musik.</p>
<p>Motorola menyebut teknologi ini sebagai mode shift dan karena ROKR E8 dikombinasikan dengan tombol navigasi &#8216;FastScroll&#8217; yang sensitif dan berkecepatan tinggi, membuatnya mudah digunakan oleh para pemakainya untuk mengontrol media library atau opsi menu.</p>
<div ALIGN="center"><a TITLE="digidynamic.wordpress.com - ROKR E8" HREF="http://digidynamic.wordpress.com/files/2008/03/motorola_rokr_e8_2.jpg"><img ALT="digidynamic.wordpress.com - ROKR E8" SRC="http://digidynamic.wordpress.com/files/2008/03/motorola_rokr_e8_2.jpg" /></a></div>
<p>Tombol &#8216;virtual&#8217; ini dipadukan dengan teknologi kontrol yang bisa menimbulkan sensasi sentuhan oleh Motorola. Karena dengan menekan tombol juga akan menimbulkan reaksi fisik, walaupun tombol tersebut sangat rata dan tak membutuhkan pergerakan jari yang signifikan. Saat ponsel dimatikan, keypad ROKR E8 tak akan terlihat.</p>
<p>Motorola ROKR E8 juga mendukung aplikasi multimedia. Untuk audio, ponsel ini mendukung format MP3, MIDI, AAC, WMA, WAV, AMR dan RealAudio. Hadir dengan memori internal 2GB, memori tambahan berjenis microSD bisa ditambah hingga 4GB dan ROKR E8 memiliki tampilan layar landscape untuk pemutaran video. Fitur FM radio juga dimiliki oleh ROKR E8.</p>
<p>Namun, ROKR E8 tak mendukung SDHC untuk memori tambahan yang lebih besar kapasitasnya. Kameranya berkekuatan 2 megapixel tanpa autofocus maupun flash.</p>
<p>Spesifikasi:</p>
<p>Jaringan: GSM 850/900/1800/1900<br />
Data: GPRS + EDGE<br />
Layar: 320&#215;240 pixels, 262k warna<br />
Kamera: 2 megapixels<br />
Ukuran: Large monoblock<br />
115 x 53 x 11mm / 100 gram<br />
Bluetooth: Ya<br />
Memory card: microSD<br />
Infra-red : Tidak<br />
Polyphonic: Ya<br />
Java: Ya<br />
Baterai: Tidak diketahui</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[I like this Pizzicato [video YouTube]]]></title>
<link>http://deeplounge.wordpress.com/2008/01/16/i-like-this-pizzicato-video-youtube/</link>
<pubDate>Wed, 16 Jan 2008 17:03:43 +0000</pubDate>
<dc:creator>MrCool</dc:creator>
<guid>http://deeplounge.wordpress.com/2008/01/16/i-like-this-pizzicato-video-youtube/</guid>
<description><![CDATA[A vida tem destas coisas, estava eu a preparar e a pesquisar o próximo post aqui do DL quando encont]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A vida tem destas coisas, estava eu a preparar e a pesquisar o próximo post aqui do DL quando encontrei um vídeo de uma das melhores musicas de todos os tempos publicada em uma netlabel. Foi sem duvida um dos temas que me fez acreditar e entrar de cabeça neste mundo do netaudio.</p>
<p>Estou a falar de <a href="http://www.archive.org/details/rabr002" target="_blank">Pizzicato Suite</a> (I like this Pizzicato) de Rasterfahndung editado pela netlabel Realaudio.ch que infelizmente não está mais entre nós, o que é uma pena, pois do <a href="http://www.archive.org/search.php?query=collection%3Arealaudio&#38;sort=-date" target="_blank">seu catalogo</a> fazem parte alguns dos melhores álbuns distribuidos de forma gratuita e em mp3.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/ClRwWdw4zZ0&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/ClRwWdw4zZ0&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>Ora ai está uma bela ideia, fazer pequenos especiais sobre netlabels que ajudaram a fazer este mundo do netaudio mas que, como tudo no mundo, acabaram. Voltar a trás e relembrar alguns temas e netlabels. Que vos parece?</p>
<p>Acho que fiquei um pouco nostálgico. Encontrei <a href="http://deeplounge.blogspot.com/2006/10/edio-especial-2-anos-dl.html" target="_blank">este artigo no antigo DL</a> pesquisando no Google  por Rasterfahndung.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ticker: thinner relaunch / realaudio.ch macht dicht]]></title>
<link>http://onesongperday.wordpress.com/2007/11/06/ticker-thinner-relaunch-realaudioch-macht-dicht/</link>
<pubDate>Tue, 06 Nov 2007 21:27:00 +0000</pubDate>
<dc:creator>marc</dc:creator>
<guid>http://onesongperday.wordpress.com/2007/11/06/ticker-thinner-relaunch-realaudioch-macht-dicht/</guid>
<description><![CDATA[aus der welt der netlabels gibt zwei erwaehnenswerte neuigkeiten. zuerst die gut, dann schlechte nac]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>aus der welt der netlabels gibt zwei erwaehnenswerte neuigkeiten. zuerst die gut, dann schlechte nachricht:</p>
<p>*<a href="http://www.kraftfuttermischwerk.de/blogg/?p=1461">thinner plant einen relaunch</a>. am 15. november 2007 ist es soweit und es wird auch schon <a href="http://www.kraftfuttermischwerk.de/blogg/?p=1461#comments">gemutmasst</a>, dass mit dem relaunch auch die thinner #100 und neue t-shirts am start sein werden. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>*<a href="http://murdelta.blogspot.com/2007/11/realaudioch-schliesst-seine-pforten.html">es wurde drueben schon mal erwaehnt</a>, aber ich bringe es an dieser stelle trotzdem nochmal. leider hat das netlabel <a href="http://www.realaudio.ch/">realaudio.ch</a> (website offline) dicht gemacht. den backcatalogue kann man sich aber noch im <a href="http://www.archive.org/details/realaudio">archive</a> runterladen. neue releases soll es aber definitiv nicht mehr geben. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[LG Electronics Prada: KE850 Mobile Phone]]></title>
<link>http://displayblog.wordpress.com/2007/01/29/lg-electronics-prada-ke850-mobile-phone/</link>
<pubDate>Mon, 29 Jan 2007 08:16:20 +0000</pubDate>
<dc:creator>Jin</dc:creator>
<guid>http://displayblog.wordpress.com/2007/01/29/lg-electronics-prada-ke850-mobile-phone/</guid>
<description><![CDATA[On January 18, LG Electronics (LGE) announced the Prada phone, also known as the KE850. As the name ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>On January 18, LG Electronics (LGE) announced the Prada phone, also known as the KE850. As the name suggests, the Prada phone was codesigned with Prada. According to LGE, the Prada phone is the first to ship with a control system completely based on touch. From the looks of it, there are three buttons on the bottom. The Prada phone will most likely be the subject of comparison to Apple&#8217;s iPhone, but there are many differences according to an article by <a href="http://www.electronista.com/articles/07/01/18/lg.prada.phone.unveiled/">Electronista</a>. LGE&#8217;s Prada phone has a 3.0&#8243; LCD with a 240 x 400 pixel format versus the iPhone&#8217;s slightly larger 3.5&#8243; LCD with a bit more pixels at 320 x 480. I do like the Prada phone&#8217;s simple icon design and the black and white colors.</p>
<p><img src="http://farm1.static.flickr.com/184/373088125_c1ecc0e32f.jpg?v=0" height="500" width="423" /></p>
<p>There is no built-in storage like the iPhone but rather gives you the option to expand via microSD. MPEG4, H.263 and H.264 video formats are supported and on the audio front AAC, MP3, WMA and RealAudio formats are good to go. For capturing photos and videos, the Prada phone lets you play with 2 megapixels, the same as the iPhone. Launch date is February for the lucky folks in France, Germany, Italy and the UK. No luck for the US.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
