Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: Installing Nero Aac Encoder on Linux  (Read 3811 times)

0 Members and 1 Guest are viewing this topic.

jominj

  • Guest
Installing Nero Aac Encoder on Linux
« on: March 26, 2014, 10:44:59 pm »
Nero Aac Encoder is tool developed by Nero for converting the WAV files to MP4 files. The the Installation is very simpler, just look at the following steps.
Code: [Select]
# cd /usr/local/src
# wget ftp://ftp6.nero.com/tools/NeroDigitalAudio.zip
# unzip NeroDigitalAudio.zip -d nero
# cd nero/linux
# sudo install -D -m755 neroAacEnc /usr/local/bin

We can test the Installation from the command line
Code: [Select]
# neroAacEnc
We will get an output like this
*************************************************************
*                                                           *
*  Nero AAC Encoder                                         *
*  Copyright 2009 Nero AG                                   *
*  All Rights Reserved Worldwide                            *
*                                                           *
*  Package build date: Feb 18 2010                          *
*  Package version:    1.5.4.0                              *
*                                                           *
*  See -help for a complete list of available parameters.   *
*                                                           *
*************************************************************

While running this on 64bit System we may get Bad ELF Interpreter Error. This is because the Nero Aac Encoder needs the 32 bit library files for running. To Install the necessary 32bit library files use the commands.
Code: [Select]
# yum install glibc.i686
# yum install libstdc++.i686

That's all now we have Installed Nero Aac Encoder