FFmpeg n'est pas compilé

Bonjour à tous,
Désirant suivre le tuto donné sur Kdenlive (http://userbase.kde.org/Kdenlive/Manual/Useful_Information/Surround_Sound ) pour créer un son surround 5.1 en utilisant Audacity pour créer les 6 pistes, ce qui bloque c’est pour sauvegarder au format “AC3 Files (FFmpeg)” . ce format n’est pas dans le liste des formats proposés.
Si je vais dans "Edition > Préférences > Bibliothèques pour vérifier FFmpeg, il est écrit : “Le support FFmpeg n’est pas compilé” Pourtant la librairie FFmepg est bien présente (version ffmpeg 6:0.8.9-0ubuntu0.13.10.1). J’ai desintallé et reinstallé Audacity, pioché les aides et forum… rien trouvé d’exploitable !
Toute aide sera la bienvenue…
Ubuntu 13.10
Audacity 2.0.5

Sorry I do not speak French.

Ask Ubuntu. They make their Audacity packages and decide what version of FFmpeg to link to, not us.

If you build Audacity from source code it links to system FFmpeg on Ubuntu 13.10.

Or uninstall Audacity that you obtained from the repository and install the PPA build of Audacity:
https://launchpad.net/~audacity-team/+archive/daily .

Or export as multi-channel WAV and convert to AC3 in mplayer, FFmpeg command-line or so on.

================================================================================

Désolé, je ne parle pas français.

Poser Ubuntu. Ils font leur Audacity pacquets et décident quelle version de FFmpeg pour reliez à, pas nous.

Si vous construisez Audacity à partir du code source, il relie à FFmpeg réseau sur Ubuntu 13.10.

Ou désinstaller Audacity à téléchargé du référentiel et installer PPA de Audacity:
https://launchpad.net/~audacity-team/+archive/daily .

Ou exporter comme multicanal WAV et convertir en AC3 dans mplayer, FFmpeg ligne-de-commande ou ainsi.


Gale

Thanks Gale. I will post a question to Ubuntu forum…
I will kip you inform

Il semble que ce soit un problème avec ma machine car, si je charge la version PPA, il chage une version 14.04 :astonished: alors que cette version n’existe pas encore (officiellement) et pas sur mon PC en tout cas qui est , en principe, au 13.10. Et j’ai toujours: FFmpeg n’est pas compilé.
J’ai testé la solution de sauver en WAV, qui marche, mais pour convertir en AC3, la ligne de commande FFmpeg est trop compliquée a trouver pour un débutant comme moi :blush: Si l’un de vous peux me donner la ligne de commande FFmpeg pour transformer mon51.wav en mon51.ac3 merci d’avance

Have you installed avconv or FFmpeg?

If you have ffmpeg and the file to be converted is in the folder the command prompt is at, then it’s simply:

ffmpeg -i filename.wav filename.ac3

If you have avconv then replace “ffmpeg” with “avconv” in the above code.

However FFmpeg seems to often need the input and output channels specified with the -ac option. Type

ffmpeg -h|more

to view the help.

I found aften much easier to use. Install it using Synaptic. If you don’t add options it’s just:

aften filename.wav filename.ac3

Gale

Thanks Gale, I try this ASAP