K3b and Nero AAC: Difference between revisions
(layout changes) |
m (removed "Wine" from External links) |
||
(6 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
'''K3b''' is a multi-purpose burning/ripping/transcoding tool for Linux under the KDE graphical environment (it can be run under GNOME as well so long as the correct libraries are installed). It is generally pretty stable and does a good job of keeping the meta-data (e.g. title, album, etc) for tracks. The | '''K3b''' is a multi-purpose burning/ripping/transcoding tool for Linux under the KDE graphical environment (it can be run under GNOME as well so long as the correct libraries are installed). It is generally pretty stable and does a good job of keeping the meta-data (e.g. title, album, etc) for tracks. The M4A file format is therefore well matched to be outputted from K3b. | ||
This guide | This guide is a modified version of a post on the Hydrogen Audio forum [http://www.hydrogenaudio.org/forums/index.php?showtopic=48228 here]. | ||
Note that this only allows you to '''create''' .MP4 files - it does not allow you to decode them so that they can be burnt to a CD. | Note that this only allows you to '''create''' .M4A files (that means MP4 audio files) - it does not allow you to decode them so that they can be burnt to a CD. I recommend to rather use the M4A file extension than MP4 because it is more precise. | ||
==Requirements== | ==Requirements== | ||
* '''Linux''' (I'm using Ubuntu | (In parentheses the versions used by the author) | ||
* ''' | |||
* '''Linux''' (I'm using Ubuntu Intrepid Ibex 8.10) | |||
* '''K3b''' (1.0 or higher. Previous versions do not support the correct byte order or write wave headers.) | |||
* '''Nero Digital Audio Reference MPEG-4 & 3GPP Audio Encoder''' (1. | * '''Nero Digital Audio Reference MPEG-4 & 3GPP Audio Encoder''' (1.3.3.0 or higher required, previous versions don't include a linux neroAacTag executable. It can be downloaded from http://www.nero.com/eng/downloads-nerodigital-nero-aac-codec.php ) | ||
==Instructions== | ==Instructions== | ||
These instructions assume you have installed all the required items above. | These instructions assume you have installed all the required items above. | ||
===Install Nero Digital Audio executables=== | ===Install Nero Digital Audio executables=== | ||
This | This part is pretty easy. You just unzip the files to a directory somewhere. In this instruction we only need the executables in the linux directory. You might want to test out that the executables can run by doing something like: | ||
$ | $ ./neroAacEnc | ||
in the ''' | in the '''linux''' directory of the extracted files. You should see some output like this: | ||
<code>*************************************************************</code><br> | |||
<code>* </code><br> | |||
<code>* Nero AAC Encoder </code><br> | |||
<code>* Copyright 2008 Nero AG </code><br> | |||
<code>* All Rights Reserved Worldwide </code><br> | |||
<code>* </code><br> | |||
<code>* Package build date: Sep 17 2008 </code><br> | |||
<code>* Package version: 1.3.3.0 </code><br> | |||
* | <code>* </code><br> | ||
<code>* See -help for a complete list of available parameters. </code><br> | |||
<code>* </code><br> | |||
<code>*************************************************************</code><br> | |||
<br> | |||
<code>ERROR: no input file specified</code> | |||
===Create 'neroaac' wrapper script=== | ===Create 'neroaac' wrapper script=== | ||
So I made a wrapper script around neroAacEnc | So I made a wrapper script around neroAacEnc and neroAacTag. The code for it is below. Copy the code into a file '''/usr/local/bin/neroaac'''. Make sure you ''chmod'' it to something like ''755''. | ||
#!/bin/bash | #!/bin/bash | ||
cd /home/chris/nero/linux | |||
cd /home/chris | ./neroAacEnc -if "$1" -of "$2" | ||
./neroAacTag "$2" -meta:title="$3" -meta:artist="$4" -meta:comment="$5" -meta:track="$6" -meta:album="$7" -meta:year="$8" | |||
'''IMPORTANT:''' Change the line that reads <code>cd /home/chris | '''IMPORTANT:''' Change the line that reads <code>cd /home/chris/nero/linux</code> to be the directory where you have neroAacEnc and neroAacTag located. You may want to test the wrapper script by just entering <code>neroaac</code> in a terminal window. If everything is correct, you should get an output similar to the one above. | ||
Just in case you are interested, this program will take in the following parameters: | Just in case you are interested, this program will take in the following parameters: | ||
# Source filename (or '-' for stdin).<br />The data this script takes in will be RAW 16 bit, 44.1kHz, | # Source filename (or '-' for stdin).<br />The data this script takes in will be RAW 16 bit, 44.1kHz, little endian, stereo and with a WAVE header. We will make sure k3b outputs the correct format later. | ||
# Output filename. e.g. "myfile. | # Output filename. e.g. "myfile.m4a" | ||
# Track Title | # Track Title | ||
# Track Artist | # Track Artist | ||
Line 67: | Line 58: | ||
# Album | # Album | ||
# Year | # Year | ||
===Configure K3b to use 'neroaac' as an External Plugin=== | ===Configure K3b to use 'neroaac' as an External Plugin=== | ||
Line 76: | Line 65: | ||
# Load up K3b and go to the 'Settings' menu and select 'Configure K3b'. Select 'Plugins' and then 'K3b External Audio Encoder'. Hit the 'Configure' button: <br/>[[Image:Settings-configure-k3b.png]]<br/> | # Load up K3b and go to the 'Settings' menu and select 'Configure K3b'. Select 'Plugins' and then 'K3b External Audio Encoder'. Hit the 'Configure' button: <br/>[[Image:Settings-configure-k3b.png]]<br/> | ||
# In the next dialog box add a new program to the list and enter the following values in the 'Configure Plugin' box:[[Image:k3b-add-external-plugin.png]]<br/>The command line here is:<br/><code>neroaac - %f %t %a %c %n %m %y</code> | # In the next dialog box add a new program to the list and enter the following values in the 'Configure Plugin' box:[[Image:k3b-add-external-plugin.png]]<br/>The command line here is:<br/><code>neroaac - %f %t %a %c %n %m %y</code> | ||
# Ensure you select 'Swap Byte Order' and 'Write Wave Header' so that the neroaac script gets the right format. (Note: I think k3b has this setting around the wrong way. If k3b was actually outputting little endian, neroaac-enc would work OK. Swapping the byte order seems to fix it.) | |||
# Close the 'Configure Plugin' and 'Options' boxes. | # Close the 'Configure Plugin' and 'Options' boxes. | ||
==Usage== | ==Usage== | ||
You can now use the 'Convert Audio Project' to convert any files that K3b can read into . | You can now use the 'Convert Audio Project' to convert any files that K3b can read into .M4A files. This is the 'arrow' button in the screenshot below: | ||
[[Image:K3b-audiocd-project.png]] | [[Image:K3b-audiocd-project.png]] | ||
Line 85: | Line 75: | ||
Note that if you want all the meta tags (e.g. "Album") set, you will have to open the 'Burn' dialog for the Audio project and enter the CD Text information and then hit the "Save" button. | Note that if you want all the meta tags (e.g. "Album") set, you will have to open the 'Burn' dialog for the Audio project and enter the CD Text information and then hit the "Save" button. | ||
You will also be able to rip to . | You will also be able to rip to .M4A by selecting your CD reader/recorder in the tree and using the following button: | ||
[[Image:K3b-ripping.png]] | [[Image:K3b-ripping.png]] | ||
Line 91: | Line 81: | ||
==Known flaws/limitations== | ==Known flaws/limitations== | ||
* The progress bar goes to 100% | * The progress bar goes to 100% before tagging (so it takes a little bit more to really complete the work). This is because K3b judges the completeness of the operation by how much of the file it has fed to the program. | ||
* Does not support decoding of | * Does not support decoding of M4A files. This would require the development of a proper Audio Decoding plugin for K3b. | ||
* Note the remark above to get complete meta tags. | |||
==See also== | ==See also== | ||
Line 100: | Line 91: | ||
* [[KDE]] | * [[KDE]] | ||
* [[Gnome]] | * [[Gnome]] | ||
==Notes and references== | ==Notes and references== | ||
Line 111: | Line 101: | ||
* [http://www.kde.org/ KDE] | * [http://www.kde.org/ KDE] | ||
* [http://www.gnome.org/ Gnome] | * [http://www.gnome.org/ Gnome] | ||
[[Category:Guides]] | [[Category:Guides]] |
Latest revision as of 11:12, 5 February 2009
K3b is a multi-purpose burning/ripping/transcoding tool for Linux under the KDE graphical environment (it can be run under GNOME as well so long as the correct libraries are installed). It is generally pretty stable and does a good job of keeping the meta-data (e.g. title, album, etc) for tracks. The M4A file format is therefore well matched to be outputted from K3b.
This guide is a modified version of a post on the Hydrogen Audio forum here.
Note that this only allows you to create .M4A files (that means MP4 audio files) - it does not allow you to decode them so that they can be burnt to a CD. I recommend to rather use the M4A file extension than MP4 because it is more precise.
Requirements
(In parentheses the versions used by the author)
- Linux (I'm using Ubuntu Intrepid Ibex 8.10)
- K3b (1.0 or higher. Previous versions do not support the correct byte order or write wave headers.)
- Nero Digital Audio Reference MPEG-4 & 3GPP Audio Encoder (1.3.3.0 or higher required, previous versions don't include a linux neroAacTag executable. It can be downloaded from http://www.nero.com/eng/downloads-nerodigital-nero-aac-codec.php )
Instructions
These instructions assume you have installed all the required items above.
Install Nero Digital Audio executables
This part is pretty easy. You just unzip the files to a directory somewhere. In this instruction we only need the executables in the linux directory. You might want to test out that the executables can run by doing something like:
$ ./neroAacEnc
in the linux directory of the extracted files. You should see some output like this:
*************************************************************
*
* Nero AAC Encoder
* Copyright 2008 Nero AG
* All Rights Reserved Worldwide
*
* Package build date: Sep 17 2008
* Package version: 1.3.3.0
*
* See -help for a complete list of available parameters.
*
*************************************************************
ERROR: no input file specified
Create 'neroaac' wrapper script
So I made a wrapper script around neroAacEnc and neroAacTag. The code for it is below. Copy the code into a file /usr/local/bin/neroaac. Make sure you chmod it to something like 755.
#!/bin/bash cd /home/chris/nero/linux ./neroAacEnc -if "$1" -of "$2" ./neroAacTag "$2" -meta:title="$3" -meta:artist="$4" -meta:comment="$5" -meta:track="$6" -meta:album="$7" -meta:year="$8"
IMPORTANT: Change the line that reads cd /home/chris/nero/linux
to be the directory where you have neroAacEnc and neroAacTag located. You may want to test the wrapper script by just entering neroaac
in a terminal window. If everything is correct, you should get an output similar to the one above.
Just in case you are interested, this program will take in the following parameters:
- Source filename (or '-' for stdin).
The data this script takes in will be RAW 16 bit, 44.1kHz, little endian, stereo and with a WAVE header. We will make sure k3b outputs the correct format later. - Output filename. e.g. "myfile.m4a"
- Track Title
- Track Artist
- Track Comment
- Track Number
- Album
- Year
Configure K3b to use 'neroaac' as an External Plugin
I'll do this with the aid of some screenshots.
- Load up K3b and go to the 'Settings' menu and select 'Configure K3b'. Select 'Plugins' and then 'K3b External Audio Encoder'. Hit the 'Configure' button:
- In the next dialog box add a new program to the list and enter the following values in the 'Configure Plugin' box:
The command line here is:neroaac - %f %t %a %c %n %m %y
- Ensure you select 'Swap Byte Order' and 'Write Wave Header' so that the neroaac script gets the right format. (Note: I think k3b has this setting around the wrong way. If k3b was actually outputting little endian, neroaac-enc would work OK. Swapping the byte order seems to fix it.)
- Close the 'Configure Plugin' and 'Options' boxes.
Usage
You can now use the 'Convert Audio Project' to convert any files that K3b can read into .M4A files. This is the 'arrow' button in the screenshot below:
Note that if you want all the meta tags (e.g. "Album") set, you will have to open the 'Burn' dialog for the Audio project and enter the CD Text information and then hit the "Save" button.
You will also be able to rip to .M4A by selecting your CD reader/recorder in the tree and using the following button:
Known flaws/limitations
- The progress bar goes to 100% before tagging (so it takes a little bit more to really complete the work). This is because K3b judges the completeness of the operation by how much of the file it has fed to the program.
- Does not support decoding of M4A files. This would require the development of a proper Audio Decoding plugin for K3b.
- Note the remark above to get complete meta tags.