<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://forum.ubuntu-fr.org/extern.php?action=feed&amp;tid=647971&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Forum Ubuntu-fr.org / Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
		<link>http://forum.ubuntu-fr.org/viewtopic.php?id=647971</link>
		<description><![CDATA[Les sujets les plus récents dans Convertir audio .m4a en .mp3 avec le terminal [Résolue].]]></description>
		<lastBuildDate>Sat, 06 Oct 2012 08:23:40 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=11020591#p11020591</link>
			<description><![CDATA[<p>J&#039;ai enfin trouver il faut installer le paquet ubuntu-restricted-extras ! Bref merci de votre aide.</p>]]></description>
			<author><![CDATA[dummy@example.com (loumagie)]]></author>
			<pubDate>Sat, 06 Oct 2012 08:23:40 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=11020591#p11020591</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=8101941#p8101941</link>
			<description><![CDATA[<p>salut,</p><div class="codebox"><pre><code>ffmpeg -i chanson.m4a -f mp3 chanson.mp3</code></pre></div><p>@+</p>]]></description>
			<author><![CDATA[dummy@example.com (maman)]]></author>
			<pubDate>Thu, 09 Feb 2012 20:13:20 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=8101941#p8101941</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=8094531#p8094531</link>
			<description><![CDATA[<div class="codebox"><pre><code>#!/bin/sh

for i in *.m4a; do \
ffmpeg -i &quot;$i&quot; -acodec libmp3lame -ac 2 -ab 256000 &quot;${i%m4a}mp3&quot;; \
done</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (lox)]]></author>
			<pubDate>Thu, 09 Feb 2012 07:03:02 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=8094531#p8094531</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=6378421#p6378421</link>
			<description><![CDATA[<p>Je l&#039;ai fait mais ça ne marche toujours pas...</p>]]></description>
			<author><![CDATA[dummy@example.com (loumagie)]]></author>
			<pubDate>Sat, 01 Oct 2011 11:16:46 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=6378421#p6378421</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=6368141#p6368141</link>
			<description><![CDATA[<p>Il semblerait donc qu&#039;il vous manque qq codecs. Vous pouvez donc essayer d&#039;installer des codecs propriétaires (si ce n&#039;est déjà fait) avec les dépôts &quot;Medibuntu&quot; comme indiqué ici dans la documentation d&#039;ubuntu-fr.org :<br /><a href="http://doc.ubuntu-fr.org/medibuntu">http://doc.ubuntu-fr.org/medibuntu</a></p>]]></description>
			<author><![CDATA[dummy@example.com (VinyMusic)]]></author>
			<pubDate>Fri, 30 Sep 2011 11:57:46 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=6368141#p6368141</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=6355311#p6355311</link>
			<description><![CDATA[<p>J&#039;ai fait ce que vous m&#039;avez dit mais je n&#039;y arrive toujours pas et à chaque fois le terminal me répond ceci &quot;Unsupported codec for output stream #0.0&quot;.</p>]]></description>
			<author><![CDATA[dummy@example.com (loumagie)]]></author>
			<pubDate>Thu, 29 Sep 2011 14:07:49 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=6355311#p6355311</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=6342131#p6342131</link>
			<description><![CDATA[<p>Salut,<br />Pas besoin de sudo, puis ça va créer des fichiers appartenant à root.<br />@loumagie : helly t&#039;as donné un exemple, il faut l&#039;adapter à ton cas.<br />Et surtout, helly t&#039;as conseillé de faire :</p><div class="codebox"><pre><code>man ffmpeg</code></pre></div><p>ça te donnera toutes les explications sur la commande <strong>ffmpeg</strong>.</p>]]></description>
			<author><![CDATA[dummy@example.com (Postmortem)]]></author>
			<pubDate>Wed, 28 Sep 2011 12:30:21 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=6342131#p6342131</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=6341561#p6341561</link>
			<description><![CDATA[<p>Et en rajoutant sudo comme ceci :<br />sudo ffmpeg -i fic.m4a fic.mp3&#160; (en n&#039;oubliant pas de remplacer &quot;fic&quot; par le nom de ton fichier)</p>]]></description>
			<author><![CDATA[dummy@example.com (VinyMusic)]]></author>
			<pubDate>Wed, 28 Sep 2011 11:45:53 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=6341561#p6341561</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=6331761#p6331761</link>
			<description><![CDATA[<p>La commande ne marche pas !!!! <img src="http://forum.ubuntu-fr.org/img/smilies/sad.png" width="15" height="15" alt="sad" /> Aurais tu oublier quelque chose dans la commande ????</p>]]></description>
			<author><![CDATA[dummy@example.com (loumagie)]]></author>
			<pubDate>Tue, 27 Sep 2011 16:19:21 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=6331761#p6331761</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=6308771#p6308771</link>
			<description><![CDATA[<p>Merci pour ta réponse je vais&#160; l&#039;essayer...</p>]]></description>
			<author><![CDATA[dummy@example.com (loumagie)]]></author>
			<pubDate>Sun, 25 Sep 2011 16:50:20 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=6308771#p6308771</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=6308691#p6308691</link>
			<description><![CDATA[<p>De base, pour faire une conversion de fic.m4a à fic.mp3 :</p><div class="codebox"><pre><code>ffmpeg -i fic.m4a fic.mp3</code></pre></div><p>Et pour d’autre détails :</p><div class="codebox"><pre><code>man ffmpeg</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (helly)]]></author>
			<pubDate>Sun, 25 Sep 2011 16:41:54 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=6308691#p6308691</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=6308611#p6308611</link>
			<description><![CDATA[<p>Merci je vais me renseigner. Aurais-tu un lien vers une page qui explique les options de ffmpeg ?</p>]]></description>
			<author><![CDATA[dummy@example.com (loumagie)]]></author>
			<pubDate>Sun, 25 Sep 2011 16:31:17 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=6308611#p6308611</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=6308501#p6308501</link>
			<description><![CDATA[<p>Oui,<br />tu peux regarder ffmpeg et lame par exemple.</p>]]></description>
			<author><![CDATA[dummy@example.com (helly)]]></author>
			<pubDate>Sun, 25 Sep 2011 16:27:15 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=6308501#p6308501</guid>
		</item>
		<item>
			<title><![CDATA[Convertir audio .m4a en .mp3 avec le terminal [Résolue]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=6308191#p6308191</link>
			<description><![CDATA[<p>Bonjour,</p><p>J’écris ce message car je souhaiterais savoir si il existe une commande pour convertir les fichiers audio<br />avec le terminal linux, si oui comment</p><br /><br /><p>Merci d&#039;avance</p>]]></description>
			<author><![CDATA[dummy@example.com (loumagie)]]></author>
			<pubDate>Sun, 25 Sep 2011 15:52:12 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=6308191#p6308191</guid>
		</item>
	</channel>
</rss>
