<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.hydrogenaudio.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Pohli</id>
	<title>Hydrogenaudio Knowledgebase - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.hydrogenaudio.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Pohli"/>
	<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Special:Contributions/Pohli"/>
	<updated>2026-04-28T18:17:57Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Rubyripper&amp;diff=35378</id>
		<title>Rubyripper</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Rubyripper&amp;diff=35378"/>
		<updated>2021-11-13T18:46:36Z</updated>

		<summary type="html">&lt;p&gt;Pohli: /* External links */ Category Software added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Software&lt;br /&gt;
| name = Rubyripper&lt;br /&gt;
| logo =&lt;br /&gt;
| screenshot = [[File:Rubyripper-screenshot.png|100px]]&lt;br /&gt;
| caption = Screenshot of legacy version 0.2&lt;br /&gt;
| maintainer = Bouke Woudstra&lt;br /&gt;
| stable_release = 0.6.0&lt;br /&gt;
| preview_release = 0.6.2&lt;br /&gt;
| operating_system = GNU/Linux, Mac OS/X (CLI)&lt;br /&gt;
| use = Digital Audio Extraction&lt;br /&gt;
| license = GPL&lt;br /&gt;
| website = [https://github.com/bleskodev/rubyripper github.com/bleskodev/rubyripper]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Rubyripper&#039;&#039;&#039; is a secure digital audio extraction application (&amp;quot;cd ripper&amp;quot;) for Unix-like operating systems.&lt;br /&gt;
It uses [[cdparanoia]] error correcting power and its own secure ripping algorithm to make sure that a CD rip is done successfully and accurately. It is very similar to and inspired by [[EAC]]. Rubyripper is written in the ruby programming language.&lt;br /&gt;
&lt;br /&gt;
It&#039;s currently available for GNU/Linux, BSD should work but is untested. Mac OS/X is supported for the CLI version. For GNU/Linux systems it may be the most mature native secure ripping application available.&lt;br /&gt;
The source (same as executable) is published as Free Software under the terms of the GPL version 3.&lt;br /&gt;
 &lt;br /&gt;
== Features ==&lt;br /&gt;
* Sophisticated error correction mechanism&lt;br /&gt;
* Direct read offset support&lt;br /&gt;
* Detection of pregaps&lt;br /&gt;
* Detection of pre-emphasis&lt;br /&gt;
* Create disc images with [[cue sheet]]s&lt;br /&gt;
* Create m3u playlists&lt;br /&gt;
* A GTK2 user interface&lt;br /&gt;
* A command line interface (CLI)&lt;br /&gt;
* Metadata (CDDB-info) is fetched via the &#039;&#039;cd-discid&#039;&#039; module. Data can be edited after fetching&lt;br /&gt;
* The codecs supported are FLAC, Vorbis, MP3, WAV, and arbitrary command line encoders&lt;br /&gt;
* Multiple codecs can be used in one run&lt;br /&gt;
* Detailed logfile creation&lt;br /&gt;
* A detailed overview of hard-to-correct positions&lt;br /&gt;
&lt;br /&gt;
=== Error correction mechanism ===&lt;br /&gt;
Rubyripper correction mechanism goes beyond that of [[cdparanoia]]. Every track gets ripped at least twice and is byte compared with the &amp;lt;code&amp;gt;Ruby cmp&amp;lt;/code&amp;gt; feature. If any differences are found, each of the 1,000 bytes of the two files is compared. The next trial run looks to see if differing positions or a match can be found. &#039;&#039;(1,000 bytes is about 0.006 seconds)&#039;&#039;. The main underlying Philosophy is that an erroneous read of an underlying ripper will produce random results. This seems so far to be correct. A possibility still exists that with random results the same result will be wrong.&lt;br /&gt;
&lt;br /&gt;
In theory if the full 1,000 bytes are erroneous, then a false repair seems to be highly unlikely since there are &amp;lt;math&amp;gt;256^{1000} = 1.73 * 10^{2408}&amp;lt;/math&amp;gt; combinations. (As a byte consists of 8 bits, &amp;lt;math&amp;gt;2^8 = 256&amp;lt;/math&amp;gt;). The main principle however is, the more trials that are needed, the higher the chance of a false repair. Suppose only 3 bytes in a sample of 1,000 bytes give random information. This would still mean &amp;lt;math&amp;gt;256^3 = 16.7M&amp;lt;/math&amp;gt; possibilities for these bytes; really 2 bits in each byte could be a problem. This reduces the possibilities to &amp;lt;math&amp;gt;2^{3*2} = 64&amp;lt;/math&amp;gt;. A correct repair at this point may be possible. One has to wonder though: can 3 bytes actually be heard in a wav file that produces 180.000 bytes per second? &lt;br /&gt;
&lt;br /&gt;
In conclusion: Rubyripper won&#039;t guarantee a consequent &#039;&#039;MD5 checksum hash&#039;&#039; on tracks that needed correction. However it will repair any files so that it&#039;s impossible to successfully blind-test with the original via an [[ABX]] test for example. The log file will optionally report any position that needed more than 3 trials, so you can check the position yourself.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
=== General Installation from Source === &lt;br /&gt;
Make sure to have &amp;lt;code&amp;gt;cd-discid, ruby-libglade2, libglade2-ruby&amp;lt;/code&amp;gt; and [[cdparanoia]] installed as a minimum. You can optionally choose for Lame, Vorbis or FLAC, and others via command-line configurations depending upon which codecs you want to encode with i.e Wavpack or Nero AAC (See the official Ubuntu forums for more information).   &lt;br /&gt;
&lt;br /&gt;
Then download Rubyripper:&lt;br /&gt;
http://code.google.com/p/rubyripper/downloads/list&lt;br /&gt;
&lt;br /&gt;
See the README file for installation instructions or just type: &amp;lt;code&amp;gt;$sudo make install&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If Rubyripper doesn&#039;t start make sure the dependencies are ok. When launched from the terminal window Rubyripper should tell you which dependency it&#039;s missing.&lt;br /&gt;
&lt;br /&gt;
=== Automatic Installation on Ubuntu/Debian ===&lt;br /&gt;
[http://www.getdeb.net/ GetDeb] has recent versions of Rubyripper packaged for Ubuntu systems. After teaching your system to use the GetDeb software repositories you can conveniently install using your favourite package manager frontend. Read their [http://www.getdeb.net/updates#how_to_install instructions] on how to easily install their package repositories.&lt;br /&gt;
&lt;br /&gt;
You can alternatively use the Debian &amp;quot;Sid Marrilat&amp;quot; repositories.&lt;br /&gt;
&lt;br /&gt;
* [http://linuxappfinder.com/package/rubyripper Rubyripper 32-bit and 64-bit] The latest releases for i386 and x86_64 architecturess.&lt;br /&gt;
&lt;br /&gt;
=== Automatic Installation on Fedora/Red Hat === &lt;br /&gt;
Starting with Fedora 20 Rubyripper, is no longer packaged with Fedora/Red Hat repositories due it no longer being updated. The easiest way to install it is to build it from the source above. This requires downloading the source code from the Rubyripper code archive on the Google Code website or the GitHub repository fork listed at the end of the wiki.&lt;br /&gt;
&lt;br /&gt;
=== Older Manual Installation on Ubuntu/Debian === &lt;br /&gt;
&#039;&#039;&#039;It is strongly recommended you use Ubuntu 10.04 (Lucid Lynx) or greater when compiling from the source! &#039;&#039;&#039; &amp;lt;br /&amp;gt; &lt;br /&gt;
&#039;&#039;&#039;These instructions were tested with Ubuntu 9.04 (&amp;quot;Jaunty Jackalope“), Gnome 2.26.1, and Rubyripper 0.5.7.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#Make sure Rubyripper has these dependencies as a bare mininum. They can be installed by typing in the terminal window:&amp;lt;br /&amp;gt;&amp;lt;code&amp;gt;&amp;amp;nbsp;$ sudo apt-get install cd-discid cdparanoia&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;as a bare mininum or&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;&amp;amp;nbsp;$ sudo apt-get install cd-discid cdparanoia flac lame mp3gain normalize-audio ruby-gnome2 ruby vorbisgain&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;to get the most out of the currently available distros.&amp;lt;br&amp;gt;For internationalization: instead of the mentioned &amp;lt;code&amp;gt;ruby-gettext&amp;lt;/code&amp;gt; install &amp;lt;code&amp;gt;gettext&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;libgettext-ruby1.8&amp;lt;/code&amp;gt;.&lt;br /&gt;
#Download the Rubyripper archive (see above) from the official website. &lt;br /&gt;
#Extract the files in the Rubyripper archive (bzipped tarball) into a temporary directory.&lt;br /&gt;
#Navigate to the directory in which you extracted the Rubyripper archive (Most likely which will be your desktop) or the directory in which you extracted the archive in, e.&amp;amp;nbsp;g. by typing in terminal window:&amp;lt;br /&amp;gt;&amp;lt;code&amp;gt;&amp;amp;nbsp;$ cd /home/USERNAME/Desktop/rubyripper-0.x.x/&amp;lt;/code&amp;gt;&lt;br /&gt;
#Rubyripper needs to know what features need to be installed. Install both the GUI and command-line version for to get the most out of the application by typing in the terminal window:&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;&amp;amp;nbsp;$ ./configure --enable-lang-all --enable-gtk2 --enable-cli&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Note: This only prepares/&amp;amp;#8203;configures installation.&lt;br /&gt;
#In order to install the application, type in the terminal window:&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;&amp;amp;nbsp;$ sudo make install&amp;lt;/code&amp;gt;&lt;br /&gt;
#Rubyripper should now be installed with your applications under &amp;lt;code&amp;gt;Applications -&amp;gt; Sound &amp;amp; Video&amp;lt;/code&amp;gt;&lt;br /&gt;
#If it runs according to your needs you may remove the temporary directory.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Notes:&#039;&#039;&#039; &lt;br /&gt;
* If you have CD-ROM drive problems it is recommended you read [http://ubuntuforums.org/showpost.php?p=5529611&amp;amp;postcount=16 this] thread&lt;br /&gt;
* You can add or drop dependencies as you see fit depending upon what packages you need or already have &#039;&#039;&#039;&lt;br /&gt;
* Substitute &#039;x&#039; above with the latest version of Rubyripper&#039;&#039;&#039;&lt;br /&gt;
* You can run the command-line version of Rubyripper be navigating to the source directory and typing in &amp;lt;code&amp;gt;./rubyripper_cli.rb&amp;lt;/code&amp;gt; into the terminal (This is useful if you want to use it conjunction with shell scripts like BASH and KSH to automate the ripping process for instance)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Setup ===&lt;br /&gt;
To point to the correct cdrom drive, you will need to specify both the Cdrom device &amp;amp; Cdrom offset.&lt;br /&gt;
* Cd rom device&lt;br /&gt;
** To print a list of installed drives:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;$ cd-drive | grep Drive&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Cd rom offset&lt;br /&gt;
** Click the [http://accuraterip.com/driveoffsets.htm List with offsets] link to lookup the required Correction Offset&lt;br /&gt;
** To print a list of installed drives:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;$ cd-drive | grep Model&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Terminal:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;[user@name ~]$ cd-drive | grep Drive&lt;br /&gt;
Drivers available...&lt;br /&gt;
                       Drive: /dev/cdrom&lt;br /&gt;
                       Drive: /dev/sr1&lt;br /&gt;
[user@name ~]$ cd-drive | grep Model&lt;br /&gt;
Model                       : DVDRW LH-20A1L  &lt;br /&gt;
Model                       : iHAS324   W &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&#039;&#039;Retrieved from the website 3/31/2014:&#039;&#039;&lt;br /&gt;
{| style=&amp;quot;text-align:left&amp;quot;&lt;br /&gt;
! CD Drive                       &lt;br /&gt;
! Correction Offset !! Submitted By !! Percentage Agree&lt;br /&gt;
|- &lt;br /&gt;
| LITE-ON - DVDRW LH-20A1L&lt;br /&gt;
| +6&lt;br /&gt;
| 706&lt;br /&gt;
| 100%&lt;br /&gt;
|-&lt;br /&gt;
| ATAPI - iHAS324 W&lt;br /&gt;
| +48&lt;br /&gt;
| 19&lt;br /&gt;
| 100%&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Option 1:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Cdrom device: /dev/cdrom&lt;br /&gt;
&lt;br /&gt;
Cdrom offset: 6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Option 2:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Cdrom device: /dev/sr1&lt;br /&gt;
&lt;br /&gt;
Cdrom offset: 48&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Known bugs &amp;amp; new features ==&lt;br /&gt;
Add an issue in the bugtracker to discuss any new feature requests: &lt;br /&gt;
* [http://code.google.com/p/rubyripper/issues/list Known bugs and new features]&lt;br /&gt;
&lt;br /&gt;
== Development API ==&lt;br /&gt;
This section will give some technical information, which should be useful for interested developers. It will outline how the code is structured and what the API of Rubyripper codebase is for adding new user interfaces. Since version 0.2 it is quite simple to add new frontends to the current codebase. Currently there are CLI and GTK2 frontends. A Qt frontend or a Cocoa Mac OS frontend, should not be terribly difficult to implement. The developer won&#039;t implement this himself though, due to the fact that he is more interested in fine tuning the Rubyripper logic codebase.&lt;br /&gt;
&lt;br /&gt;
== Becoming a Rubyripper developer ==&lt;br /&gt;
To become a developer you should have:&lt;br /&gt;
* Some basic knowledge of the Ruby programming language. Read for instance the [http://www.ruby-doc.org/docs/ProgrammingRuby/ free online book], at least until the chapter &amp;quot;Until Trouble Strikes&amp;quot;. This is a somewhat dated version, but still perfectly usable. The lead developer doesn&#039;t use any new features, therefore it should be fine.&lt;br /&gt;
* Some basic knowledge of a GUI-toolkit in case you want to add a new frontend.&lt;br /&gt;
&lt;br /&gt;
SVN Checkout now possible.&amp;lt;br/&amp;gt;&lt;br /&gt;
Use: &amp;lt;code&amp;gt;$svn checkout http://rubyripper.googlecode.com/svn/trunk/ rubyripper &amp;lt;/code&amp;gt; to get the latest source code.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re interested in becoming a developer, please contact him at &#039;&#039;rubyripperdev@nospam@gmail.com&#039;&#039;. You can leave out the @nospam part.&lt;br /&gt;
&lt;br /&gt;
== Data files and class structures ==&lt;br /&gt;
The 0.5 release has three ruby files and one glade file included:&lt;br /&gt;
* &amp;lt;code&amp;gt;rr_lib.rb.&amp;lt;/code&amp;gt; This contains the Rubyripper codebase. It consists of five classes:&lt;br /&gt;
** &amp;lt;code&amp;gt;Gui_Support.&amp;lt;/code&amp;gt; This class handles all feedback communication with the user interface and is used a lot by the other classes (except Cddb). This is were log file is generated and the error analysis takes place.&lt;br /&gt;
** &amp;lt;code&amp;gt;Cddb.&amp;lt;/code&amp;gt; This class handles the freedb fetching. It uses the Freedb class (dependent on ruby-freedb) to get info about the disc. The server contact is handled in the Cddb class itself. Some problems of the Freedb class made it impossible to rely on it. The biggest problem with using Freedb class is that, it&#039;s using an old contact protocol and never gives away any information on the current year. This is the main reason why the Cddb class handles all server contact.&lt;br /&gt;
** &amp;lt;code&amp;gt;Secure_rip.&amp;lt;/code&amp;gt; As might be expected, all error correction logic is put in here.&lt;br /&gt;
** &amp;lt;code&amp;gt;Encode. &amp;lt;/code&amp;gt; As might be expected, this handles the encoding of the different formats supported.&lt;br /&gt;
** &amp;lt;code&amp;gt;Rubyripper.&amp;lt;/code&amp;gt; Handles the usage of the different classes. It also performs some logical checks before starting at all.&lt;br /&gt;
* &amp;lt;code&amp;gt;rubyripper_cli.rb.&amp;lt;/code&amp;gt; It has one class that contains the code for the command line interface frontend.&lt;br /&gt;
* &amp;lt;code&amp;gt;rubyripper_gtk.rb.M&amp;lt;/code&amp;gt; It has one class that contains the code for the GTK2 user interface frontend.&lt;br /&gt;
* &amp;lt;code&amp;gt;rubyripper.glade.&amp;lt;/code&amp;gt; This is a help file for the GTK interface. It&#039;s made with Glade, a program for designing user interfaces for GTK2.&lt;br /&gt;
&lt;br /&gt;
== Adding a new frontend ==&lt;br /&gt;
New frontends are encouraged and aren&#039;t difficult to make, once you know your GUI toolkit. Take for instance, the current GTK2 frontend, which consists of only 350 lines of code &#039;&#039;(+ the glade file, but this code is automatically created)&#039;&#039;&#039;. From a starting point it would be best to use the current GTK2 or CLI code and just plainly rewrite it for the other toolkit. The basic ideas should be more or less the same.&lt;br /&gt;
&lt;br /&gt;
The basic idea is that the GUI first presents the info of a Cddb instance. When the user wants to start, a new Rubyripper instance is started with all the settings in a Hash as a parameter. You can copy most of the code from the other user interfaces. The user interface should also have an update function. The update function is used as a communication channel for the Rubyripper instance.&lt;br /&gt;
&lt;br /&gt;
# Using a new thread for launching instances is an effective way of getting a responsive GUI.&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [https://github.com/bleskodev/rubyripper Rubyripper] The next best repository since Google Code closed down. &lt;br /&gt;
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=38418 Hydrogenaudio forum thread] the first public release of Rubyripper. &lt;br /&gt;
* [https://plus.google.com/communities/103961841006414793555 Google Plus] Google Plus community group for questions related to older releases of Rubyripper. &lt;br /&gt;
* [http://ubuntuforums.org/showthread.php?t=799621 Ubuntu Forums] a thread that&#039;s consistently updated for installing Rubyripper in Ubuntu including troubleshooting.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:CD Rippers]]&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Pohli</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=EAC_and_Lame&amp;diff=15894</id>
		<title>EAC and Lame</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=EAC_and_Lame&amp;diff=15894"/>
		<updated>2006-12-17T12:24:32Z</updated>

		<summary type="html">&lt;p&gt;Pohli: /* Configuration */ Config added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Software Needed===&lt;br /&gt;
* [http://exactaudiocopy.org/eac6.html Exact Audio Copy]&lt;br /&gt;
* [http://wiki.hydrogenaudio.org/index.php?title=Recommended_LAME Recommended LAME version]&lt;br /&gt;
&lt;br /&gt;
===Installation===&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; This guide assumes that EAC has been configured for secure ripping, if not please follow [[EAC_Drive_Configuration | this]] guide.&lt;br /&gt;
* Unzip the chosen LAME version into the same directory as EAC.&lt;br /&gt;
* If you would like to tag with APEv2 tags please download [http://www.saunalahti.fi/cse/files/wapet.zip wapet.zip] and unzip it into the &#039;&#039;&#039;same folder&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Configuration===&lt;br /&gt;
&lt;br /&gt;
* Open EAC and insert a CD into the drive.&lt;br /&gt;
* Click the &#039;&#039;&#039;EAC&#039;&#039;&#039; menu and select &#039;&#039;&#039;Compression Options&#039;&#039;&#039;.&lt;br /&gt;
* Click the &#039;&#039;&#039;External Compression&#039;&#039;&#039; Tab, and put a check box in &#039;&#039;&#039;Use external program for compression&#039;&#039;&#039;.&lt;br /&gt;
* Change &#039;&#039;&#039;Parameter passing scheme&#039;&#039;&#039; to &#039;&#039;&#039;User Defined Encoder&#039;&#039;&#039;.&lt;br /&gt;
* Change &#039;&#039;&#039;Use file extension&#039;&#039;&#039; to &#039;&#039;&#039;.mp3&#039;&#039;&#039;.&lt;br /&gt;
* Click the &#039;&#039;&#039;Browse&#039;&#039;&#039; button and locate the &#039;&#039;&#039;lame.exe&#039;&#039;&#039; that you unzipped into the EAC directory earlier.&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you want to tag with APEv2 tags using Wapet  please locate &#039;&#039;&#039;wapet.exe&#039;&#039;&#039;, not lame.exe.&lt;br /&gt;
* Remove the ticks from &#039;&#039;&#039;Use CRC check&#039;&#039;&#039;, &#039;&#039;&#039;Add ID3 tag&#039;&#039;&#039; and &#039;&#039;&#039;Check for external programs return code&#039;&#039;&#039;.&lt;br /&gt;
* Don&#039;t worry which bit rate is shown in the &#039;&#039;&#039;Bit rate&#039;&#039;&#039; drop down box, as this will not have any effect on the resultant MP3 file (See Note 4 at the bottom of this page).&lt;br /&gt;
&lt;br /&gt;
* In the &#039;&#039;&#039;Addtional command line options&#039;&#039;&#039; box, copy and paste one of the strings below, based on the tag format you prefer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;No Tags:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;&#039;&#039;&#039;-V 2 --vbr-new&#039;&#039;&#039;&amp;lt;/font&amp;gt; &#039;&#039;&#039;%s %d&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID3v1:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;&#039;&#039;&#039;-V 2 --vbr-new&#039;&#039;&#039;&amp;lt;/font&amp;gt; --id3v1-only --ta &amp;quot;%a&amp;quot; --tt &amp;quot;%t&amp;quot; --tg &amp;quot;%m&amp;quot; --tl &amp;quot;%g&amp;quot; --ty &amp;quot;%y&amp;quot; --tn &amp;quot;%n&amp;quot; &#039;&#039;&#039;%s %d&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID3v2:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;&#039;&#039;&#039;-V 2 --vbr-new&#039;&#039;&#039;&amp;lt;/font&amp;gt; --id3v2-only --pad-id3v2 --ta &amp;quot;%a&amp;quot; --tt &amp;quot;%t&amp;quot; --tg &amp;quot;%m&amp;quot; --tl &amp;quot;%g&amp;quot; --ty &amp;quot;%y&amp;quot; --tn &amp;quot;%n&amp;quot; &#039;&#039;&#039;%s %d&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID3v1 and ID3v2:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;&#039;&#039;&#039;-V 2 --vbr-new&#039;&#039;&#039;&amp;lt;/font&amp;gt; --add-id3v2 --pad-id3v2 --ta &amp;quot;%a&amp;quot; --tt &amp;quot;%t&amp;quot; --tg &amp;quot;%m&amp;quot; --tl &amp;quot;%g&amp;quot; --ty &amp;quot;%y&amp;quot; --tn &amp;quot;%n&amp;quot; &#039;&#039;&#039;%s %d&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Automatic:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;&#039;&#039;&#039;-V 2 --vbr-new&#039;&#039;&#039;&amp;lt;/font&amp;gt; --ta &amp;quot;%a&amp;quot; --tt &amp;quot;%t&amp;quot; --tg &amp;quot;%m&amp;quot; --tl &amp;quot;%g&amp;quot; --ty &amp;quot;%y&amp;quot; --tn &amp;quot;%n&amp;quot; &#039;&#039;&#039;%s %d&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;Automatic&#039;&#039; means that by default only ID3v1 will be created. In case the length of at least one of the entries exceeds the permitted length of ID3v1, ID3v2 will be created in addition.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;APEv2: (This requires [http://www.saunalahti.fi/cse/files/wapet.zip wapet.exe]. Remember to browse for wapet.exe instead of lame.exe as the external encoding program.)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;%d&#039;&#039;&#039; -t &amp;quot;Artist=%a&amp;quot; -t &amp;quot;Title=%t&amp;quot; -t &amp;quot;Album=%g&amp;quot; -t &amp;quot;Year=%y&amp;quot; -t &amp;quot;Track=%n&amp;quot; -t &amp;quot;Genre=%m&amp;quot; &amp;lt;font style=&amp;quot;font style=&amp;quot;color:blue&amp;quot;&amp;gt;LAME.exe&amp;lt;/font&amp;gt; &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;&#039;&#039;&#039;-V 2 --vbr-new&#039;&#039;&#039;&amp;lt;/font&amp;gt; &#039;&#039;&#039;%s %d&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font style=&amp;quot;color:blue&amp;quot;&amp;gt;&#039;&#039;&#039;Note 1:&#039;&#039;&#039; lame.exe needs to be in the same directory as wapet.exe.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;&#039;&#039;&#039;Note 2:&#039;&#039;&#039; If you wanted to change the [[LAME#Encoder_Presets| LAME preset]], the green text denotes the part that needs to be altered.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note 3:&#039;&#039;&#039; The &#039;&#039;&#039;%s&#039;&#039;&#039; and &#039;&#039;&#039;%d&#039;&#039;&#039; at the end of each string are placeholders for EAC. &#039;&#039;&#039;%s&#039;&#039;&#039; means &#039;&#039;&#039;source&#039;&#039;&#039; filename and &#039;&#039;&#039;%d&#039;&#039;&#039; means &#039;&#039;&#039;destination&#039;&#039;&#039; filename.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font style=&amp;quot;color:Red&amp;quot;&amp;gt;&#039;&#039;&#039;Note 4:&#039;&#039;&#039; The &#039;&#039;&#039;%l...%l&#039;&#039;&#039; and &#039;&#039;&#039;%h...%h&#039;&#039;&#039; placeholders are used to add text according to whether the High quality or Low quality radio button is selected, as shown below:&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;&amp;lt;font style=&amp;quot;color:red&amp;quot;&amp;gt;%l&amp;lt;/font&amp;gt;&amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;--preset 128&amp;lt;/font&amp;gt;&amp;lt;font style=&amp;quot;color:red&amp;quot;&amp;gt;%l%h&amp;lt;/font&amp;gt;&amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;--preset standard&amp;lt;/font&amp;gt;&amp;lt;font style=&amp;quot;color:red&amp;quot;&amp;gt;%h&#039;&#039;&#039;&amp;lt;/font&amp;gt; &#039;&#039;&#039;%s %d&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Therefore, if you select &#039;&#039;&#039;Low quality&#039;&#039;&#039;, EAC will invoke the LAME encoder with the following command line parameters:&lt;br /&gt;
&lt;br /&gt;
 LAME.exe --preset 128 &#039;&#039;&#039;%s %d&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
..and if you select &#039;&#039;&#039;High quality&#039;&#039;&#039; EAC will invoke LAME with these command line parameters:&lt;br /&gt;
&lt;br /&gt;
 LAME.exe --preset standard &#039;&#039;&#039;%s %d&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You can access the bitrate value in the dropdown list using the &#039;&#039;&#039;%r&#039;&#039;&#039; placeholder, For Example:&lt;br /&gt;
&lt;br /&gt;
 --preset %r &#039;&#039;&#039;%s %d&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
So, if you selected &#039;&#039;&#039;192 kBit/s&#039;&#039;&#039; in the &#039;&#039;&#039;Bit Rate&#039;&#039;&#039; drop-down list, the command line would be:&lt;br /&gt;
&lt;br /&gt;
 LAME.exe --preset 192 &#039;&#039;&#039;%s %d&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
It is a generally accepted fact that the bitrate selected in the drop-down list doesn&#039;t affect the command line. In essence this is true, as it will not affect the command line &#039;&#039;unless you use the %r placeholder&#039;&#039;. However, using ABR or CBR over VBR is not recommended, and therefore you should never have to use the &#039;&#039;&#039;%r&#039;&#039;&#039; option.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;[[Image:EAC_LAME02.png|frame|center|LAME configured with ID3v1 tagging]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Guides]]&lt;br /&gt;
[[Category:EAC Guides|LAME &amp;amp; EAC]]&lt;/div&gt;</summary>
		<author><name>Pohli</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Talk:LAME&amp;diff=14585</id>
		<title>Talk:LAME</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Talk:LAME&amp;diff=14585"/>
		<updated>2006-09-27T18:22:41Z</updated>

		<summary type="html">&lt;p&gt;Pohli: /* LAME compiles Win32 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{talkheader}}&lt;br /&gt;
&lt;br /&gt;
==Page discussion==&lt;br /&gt;
I propose a major merging with this page. I don&#039;t think information about lame should be scattered all over the wiki. I&#039;ll think about it this evening and after the merge I&#039;ll add a redirect from all Lame related pages to this one.--[[User:Beto|Beto]] 15:51, 13 September 2006 (CDT)&lt;br /&gt;
&lt;br /&gt;
Finally I ended the revision :)--[[User:Beto|Beto]] 19:14, 14 September 2006 (CDT)&lt;br /&gt;
&lt;br /&gt;
== LAME compiles Win32 ==&lt;br /&gt;
&lt;br /&gt;
http://rarewares.org/dancer/dancer.php?f=1 is linked at this Wiki page. But at http://rarewares.org/mp3.html I can only find http://rarewares.org/dancer/dancer.php?f=107 The two archives contain different lame.exe and lame_enc.dll. Why is that? Here&#039;s another compile: http://mitiok.maresweb.org/ This is confusing! --[[User:Pohli|Pohli]] 13:16, 27 September 2006 (CDT)&lt;/div&gt;</summary>
		<author><name>Pohli</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Talk:LAME&amp;diff=14584</id>
		<title>Talk:LAME</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Talk:LAME&amp;diff=14584"/>
		<updated>2006-09-27T18:16:07Z</updated>

		<summary type="html">&lt;p&gt;Pohli: LAME compiles Win32&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{talkheader}}&lt;br /&gt;
&lt;br /&gt;
==Page discussion==&lt;br /&gt;
I propose a major merging with this page. I don&#039;t think information about lame should be scattered all over the wiki. I&#039;ll think about it this evening and after the merge I&#039;ll add a redirect from all Lame related pages to this one.--[[User:Beto|Beto]] 15:51, 13 September 2006 (CDT)&lt;br /&gt;
&lt;br /&gt;
Finally I ended the revision :)--[[User:Beto|Beto]] 19:14, 14 September 2006 (CDT)&lt;br /&gt;
&lt;br /&gt;
== LAME compiles Win32 ==&lt;br /&gt;
&lt;br /&gt;
http://rarewares.org/dancer/dancer.php?f=1 is linked at this Wiki page. But at http://rarewares.org/mp3.html I can only find http://rarewares.org/dancer/dancer.php?f=107 The two archives contain different lame.exe and lame_enc.dll. Why is that? --[[User:Pohli|Pohli]] 13:16, 27 September 2006 (CDT)&lt;/div&gt;</summary>
		<author><name>Pohli</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Talk:Recommended_LAME&amp;diff=12172</id>
		<title>Talk:Recommended LAME</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Talk:Recommended_LAME&amp;diff=12172"/>
		<updated>2006-07-30T08:42:24Z</updated>

		<summary type="html">&lt;p&gt;Pohli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article is redundant information. It seems to be only a copy of [[LAME#Recommended Encoder Settings|LAME]]. Why is that? --Pohli 11:54, 29 July 2006 (CDT)&lt;br /&gt;
:Thank the fools that don&#039;t bother to search the wiki before writing guides ;-D. I made an attempt to fix it on the main page so that it just pointed to LAME page. I know it would make sense though to have a recommended lame page and keep everything on there? I usually don&#039;t use LAME to much so I leave it up to them. --[[HotshotGG]] 1:33, 29 July 2006 (CDT)&lt;br /&gt;
::I don&#039;t think we need a whole extra &amp;quot;Recommended LAME&amp;quot; page if there&#039;s no new information. An advice on the ordinary LAME page should be enough and we have the [[Lame Compiles]] page, too. --Pohli 03:42, 30 July 2006 (CDT)&lt;/div&gt;</summary>
		<author><name>Pohli</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Recommended_LAME&amp;diff=12169</id>
		<title>Recommended LAME</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Recommended_LAME&amp;diff=12169"/>
		<updated>2006-07-29T17:13:06Z</updated>

		<summary type="html">&lt;p&gt;Pohli: /* Introduction */ link &amp;quot;Lame Compiles&amp;quot; adapted&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
This article describes the [[Hydrogenaudio]] recommended settings to be used with [[LAME]] for highest quality [[MP3]] encoding.&lt;br /&gt;
&lt;br /&gt;
These settings require LAME 3.94 or later. LAME 3.97beta2 is the recommended version ([[Lame Compiles|click here to download]]).&lt;br /&gt;
&lt;br /&gt;
Avoid using alpha (a) versions of LAME. More often than not those are exclusively for testing purposes. Use them only if you want to help developers with feedback.&lt;br /&gt;
&lt;br /&gt;
Note: The rule of thumb when considering encoding options: at a given bitrate, VBR is higher quality than ABR, which is higher quality than CBR (VBR &amp;gt; ABR &amp;gt; CBR in terms of quality). The exception to this is when you choose the highest possible CBR bitrate, which is 320 kbps (-b 320 = --alt-preset insane), but this produces very large filesizes for very little audible benefit.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: all modes and settings mentioned in this topic belong to the specifications of the MP3 standard, and the resulting MP3s should be playable by every MP3 decoder that conforms with the standard. If your decoder or device does not play MP3s produced by LAME, blame the manufacturer or developer, and not LAME.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==VBR (Variable bitrate) settings==&lt;br /&gt;
&#039;&#039;&#039;[[VBR]]:&#039;&#039;&#039; &#039;&#039;variable bitrate mode. Use variable bitrate modes when the goal is to achieve a fixed level of quality using the lowest possible bitrate.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[VBR]] is best used to target a specific quality level, instead of a specific bitrate. The final file size of a VBR encode is less predictable than with [[ABR]], but the quality is usually better.&lt;br /&gt;
&lt;br /&gt;
-V(number) where number is 0-9, 0 being highest quality, 9 being the lowest.&lt;br /&gt;
&lt;br /&gt;
{| align=center border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|+&#039;&#039;&#039;List of recommended settings&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;Switch&#039;&#039;&#039; || &#039;&#039;&#039;Preset&#039;&#039;&#039; || &#039;&#039;&#039;Target Kbit/s&#039;&#039;&#039; || &#039;&#039;&#039;Bitrate range kbit/s&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| -b 320 || --preset insane || 320 || 320 CBR&lt;br /&gt;
|-&lt;br /&gt;
| -V 0 --vbr-new || --preset fast extreme ||  245 || 220...260&lt;br /&gt;
|-&lt;br /&gt;
| -V 0 || --preset extreme || 245 || 220...260&lt;br /&gt;
|-&lt;br /&gt;
| -V 1 --vbr-new ||&amp;amp;nbsp;|| 225 || 200...250&lt;br /&gt;
|-&lt;br /&gt;
| -V 1 ||&amp;amp;nbsp;|| 225 || 200...250&lt;br /&gt;
|-&lt;br /&gt;
| -V 2 --vbr-new || --preset fast standard || 190 || 170...210&lt;br /&gt;
|-&lt;br /&gt;
| -V 2 || --preset standard || 190 || 170...210&lt;br /&gt;
|-&lt;br /&gt;
| -V 3 --vbr-new ||&amp;amp;nbsp;|| 175 || 155...195&lt;br /&gt;
|-&lt;br /&gt;
| -V 3 ||&amp;amp;nbsp;|| 175 || 155...195&lt;br /&gt;
|-&lt;br /&gt;
| -V 4 --vbr-new || --preset fast medium || 165 || 145...185&lt;br /&gt;
|-&lt;br /&gt;
| -V 4 || --preset medium  || 165 || 145...185&lt;br /&gt;
|-&lt;br /&gt;
| -V 5 --vbr-new ||&amp;amp;nbsp;|| 130 || 110...150&lt;br /&gt;
|-&lt;br /&gt;
| -V 5 ||&amp;amp;nbsp;|| 130 || 110...150&lt;br /&gt;
|-&lt;br /&gt;
| -V 6 --vbr-new ||&amp;amp;nbsp;|| 115 || 95...135&lt;br /&gt;
|-&lt;br /&gt;
| -V 6 ||&amp;amp;nbsp;|| 115 || 95...135&lt;br /&gt;
|-&lt;br /&gt;
| -V 7 --vbr-new ||&amp;amp;nbsp;|| 100 || 80...120&lt;br /&gt;
|-&lt;br /&gt;
| -V 7 ||&amp;amp;nbsp;|| 100 || 80...120&lt;br /&gt;
|-&lt;br /&gt;
| -V 8 --vbr-new ||&amp;amp;nbsp;|| 85 || 65...105&lt;br /&gt;
|-&lt;br /&gt;
| -V 8 ||&amp;amp;nbsp;|| 85 || 65...105&lt;br /&gt;
|-&lt;br /&gt;
| -V 9 --vbr-new ||&amp;amp;nbsp;|| 65 || 45...85&lt;br /&gt;
|-&lt;br /&gt;
| -V 9 ||&amp;amp;nbsp;|| 65 || 45...85&lt;br /&gt;
|}&lt;br /&gt;
See also [[Technical data for recommended LAME settings]]&lt;br /&gt;
&lt;br /&gt;
If you need a predictable bitrate (in a streaming application, for example), use ABR or CBR modes, described below.&lt;br /&gt;
&lt;br /&gt;
==ABR (average bitrate) settings==&lt;br /&gt;
&#039;&#039;&#039;[[ABR]]:&#039;&#039;&#039; &#039;&#039;average bitrate mode. A compromise between VBR and CBR modes, ABR encoding varies bits around a specified target bitrate. Use ABR when you need to know the final size of the file but still want to allow the encoder some flexibility to decide which passages need more bits.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;(128 kbit/s ABR: roughly the same filesize as 128 kbit/s CBR)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[[ABR]] Setting tuned from 320 kbit/s down to 80 kbit/s&#039;&#039;&#039;&lt;br /&gt;
** --preset &amp;lt;bitrate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;bitrate&amp;gt; (desired averaged bitrate in kbit/s) can be any value between 8 - 320 , like eg. 9, 17, 80, 128, 133, 200 etc.&lt;br /&gt;
&lt;br /&gt;
::  Example: --preset 200&lt;br /&gt;
&lt;br /&gt;
==CBR (constant bitrate) settings==&lt;br /&gt;
&#039;&#039;&#039;[[CBR]]:&#039;&#039;&#039; &#039;&#039;constant bitrate mode. CBR encoding is not efficient. Whereas VBR and ABR modes can supply more bits to complex music passages and save bits on simpler ones, CBR encodes every frame at the same bitrate. CBR is only recommended for usage in streaming situations where the upper bitrate must be strictly enforced.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;[[CBR]] Setting tuned from 320 kbit/s down to 80 kbit/s&#039;&#039;&#039;&lt;br /&gt;
** -b &amp;lt;bitrate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;bitrate&amp;gt; (bitrate in kbit/s) must be chosen from the following values: 8, 16, 24, 32, 40, 48, 64, 80, 96, 112, 128, 160, 192, 224, 256, or 320.&lt;br /&gt;
&lt;br /&gt;
==Remarks==&lt;br /&gt;
The &amp;quot;&amp;quot;--vbr-new&amp;quot;&amp;quot; switch enables the new VBR mode.  Lame will encode much faster than the old/default VBR mode.  In terms of quality, --vbr-new appears to be better than the old model, but reports of artifacts when using the new model do exist.  Despite these possible issues, --vbr-new is currently recommended over the default VBR mode due to both the speed and quality increases afforded by the new algorithm.&lt;br /&gt;
&lt;br /&gt;
===Quick Start===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Best Quality : &#039;archiving&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font style=&amp;quot;color:red&amp;quot;&amp;gt;-b 320&amp;lt;/font&amp;gt;. This is the strongest setting for MP3, with the lowest risk of [[artifact]]s.&lt;br /&gt;
With the exception of a few situations, quality is rarely better than the highest [[VBR]] profiles described below. However, &#039;archiving&#039; music using a lossy format like MP3 is never recommended &amp;amp;ndash; no matter how transparent the resulting files might be.&lt;br /&gt;
Alternative: [[Lossless]] formats like [[WavPack]], [[FLAC]] etc. allow true archiving bit for bit like on original CD.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;High Quality : HiFi, home or quiet listening&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;-V3 --vbr-new&amp;lt;/font&amp;gt; (~175 kbps), &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;-V2 --vbr-new&amp;lt;/font&amp;gt; (~190 kbps), &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;-V1 --vbr-new&amp;lt;/font&amp;gt; (~210 kbps) or &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;-V0 --vbr-new&amp;lt;/font&amp;gt; (~230 kbps) are recommended.&lt;br /&gt;
These settings will produce [[transparent]] encoding (transparent = most people cannot distinguish the mp3 from the original in an ABX blind test).&lt;br /&gt;
Audible differences between these presets exist, but are extremely marginal.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Portable : background noise and low bitrate requirement, small sizes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font style=&amp;quot;color:purple&amp;quot;&amp;gt;-V6 --vbr-new&amp;lt;/font&amp;gt; (~115 kbps), &amp;lt;font style=&amp;quot;color:purple&amp;quot;&amp;gt;-V5 --vbr-new&amp;lt;/font&amp;gt; (~130 kbps) or &amp;lt;font style=&amp;quot;color:purple&amp;quot;&amp;gt;-V4 --vbr-new&amp;lt;/font&amp;gt; (~160 kbps) are recommended for this use.&lt;br /&gt;
-V6 --vbr-new produces an acceptable quality, while -V4--vbr-new should be close to perceptual [[transparency]].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Very low bitrate, small sizes:&#039;&#039;&#039; eg. for voice, radio, [[mono]] encoding etc.&lt;br /&gt;
&lt;br /&gt;
For very low bitrates, up to 100kbps, [[ABR]] is most often the best solution.&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;&#039;--abr xx&#039;&#039;&#039; (e.g. --abr 80).&lt;br /&gt;
&lt;br /&gt;
[[Image:lame-chart-2.png|frame|center|Here a trial to get a view, how the &amp;lt;font style=&amp;quot;color:red&amp;quot;&amp;gt;perceived listening quality&amp;lt;/font&amp;gt; improves with settings/&amp;lt;font style=&amp;quot;color:blue&amp;quot;&amp;gt;averaged filesize&amp;lt;/font&amp;gt;]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hey! What happened to &amp;quot;--alt-preset&amp;quot;?&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The revolutionary --alt-preset system was introduced in LAME 3.90; it was replaced by the --preset flags in later versions. Starting with version 3.94, the -V x quality system was introduced, which allows finer control over the desired bitrate; the --preset switches were made into aliases to the corresponding -V flags for the sake of backwards compatibility. &#039;&#039;&#039;There is no difference between the output you get if you use &amp;quot;-V2&amp;quot; or &amp;quot;--alt-preset standard&amp;quot;.&#039;&#039;&#039; (Although adding &amp;quot;--vbr-new&amp;quot; is recommended for now, see above for details.)&lt;br /&gt;
&lt;br /&gt;
More encoding options are available under the new system, such as -V1, which provides a level of quality between the old &amp;quot;standard&amp;quot; and &amp;quot;extreme&amp;quot; presets, or -V3, which is between the old &amp;quot;medium&amp;quot; and &amp;quot;standard&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
LAME 3.97 features more streamlined command line options, and it&#039;s recommended to stick to one of the values described in the text or shown in the tables above. &amp;lt;font style=&amp;quot;color:blue&amp;quot;&amp;gt;You don&#039;t need to worry&amp;lt;/font&amp;gt; anymore about quality, settings, arcane combinations of switches, or presets. &lt;br /&gt;
&lt;br /&gt;
For example, the following command lines will all produce the same output:&lt;br /&gt;
&lt;br /&gt;
--alt-preset insane = --preset insane = -b 320 = --preset 320 = --preset cbr 320&lt;br /&gt;
&lt;br /&gt;
(--preset cbr 320 is the exact same thing as --alt-preset insane, etc.)&lt;br /&gt;
&lt;br /&gt;
==Setting up EAC for LAME.exe with tagging==&lt;br /&gt;
&lt;br /&gt;
{{:EAC and Lame}}&lt;br /&gt;
&lt;br /&gt;
==Additional reading==&lt;br /&gt;
&lt;br /&gt;
* [[LAME|More information on LAME]]&lt;br /&gt;
* [http://www.hydrogenaudio.org/forums/index.php?act=ST&amp;amp;f=16&amp;amp;t=32288 Forum discussion of the recommended settings]&lt;br /&gt;
* [http://www.hydrogenaudio.org/forums/index.php?act=ST&amp;amp;f=15&amp;amp;t=203 Forum discussion of the recommended settings (older)]&lt;br /&gt;
* [[Recommended LAME credits|Credits for the recommended settings]]&lt;br /&gt;
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=32288&amp;amp;view=findpost&amp;amp;p=327262 Previous recommendations (outdated)]&lt;br /&gt;
* [[MP3]]&lt;br /&gt;
* [[Exact_Audio_Copy|Exact Audio Copy]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Recommended LAME credits|Credits]]&lt;/div&gt;</summary>
		<author><name>Pohli</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Talk:Recommended_LAME&amp;diff=12164</id>
		<title>Talk:Recommended LAME</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Talk:Recommended_LAME&amp;diff=12164"/>
		<updated>2006-07-29T16:54:07Z</updated>

		<summary type="html">&lt;p&gt;Pohli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article is redundant information. It seems to be only a copy of [[LAME#Recommended Encoder Settings|LAME]]. Why is that? --Pohli 11:54, 29 July 2006 (CDT)&lt;/div&gt;</summary>
		<author><name>Pohli</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Recommended_LAME&amp;diff=12162</id>
		<title>Recommended LAME</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Recommended_LAME&amp;diff=12162"/>
		<updated>2006-07-29T16:50:07Z</updated>

		<summary type="html">&lt;p&gt;Pohli: /* Additional reading */ repeated link removed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
This article describes the [[Hydrogenaudio]] recommended settings to be used with [[LAME]] for highest quality [[MP3]] encoding.&lt;br /&gt;
&lt;br /&gt;
These settings require LAME 3.94 or later. LAME 3.97beta2 is the recommended version ([[LAME Compiles|click here to download]]).&lt;br /&gt;
&lt;br /&gt;
Avoid using alpha (a) versions of LAME. More often than not those are exclusively for testing purposes. Use them only if you want to help developers with feedback.&lt;br /&gt;
&lt;br /&gt;
Note: The rule of thumb when considering encoding options: at a given bitrate, VBR is higher quality than ABR, which is higher quality than CBR (VBR &amp;gt; ABR &amp;gt; CBR in terms of quality). The exception to this is when you choose the highest possible CBR bitrate, which is 320 kbps (-b 320 = --alt-preset insane), but this produces very large filesizes for very little audible benefit.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: all modes and settings mentioned in this topic belong to the specifications of the MP3 standard, and the resulting MP3s should be playable by every MP3 decoder that conforms with the standard. If your decoder or device does not play MP3s produced by LAME, blame the manufacturer or developer, and not LAME.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==VBR (Variable bitrate) settings==&lt;br /&gt;
&#039;&#039;&#039;[[VBR]]:&#039;&#039;&#039; &#039;&#039;variable bitrate mode. Use variable bitrate modes when the goal is to achieve a fixed level of quality using the lowest possible bitrate.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[VBR]] is best used to target a specific quality level, instead of a specific bitrate. The final file size of a VBR encode is less predictable than with [[ABR]], but the quality is usually better.&lt;br /&gt;
&lt;br /&gt;
-V(number) where number is 0-9, 0 being highest quality, 9 being the lowest.&lt;br /&gt;
&lt;br /&gt;
{| align=center border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|+&#039;&#039;&#039;List of recommended settings&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;Switch&#039;&#039;&#039; || &#039;&#039;&#039;Preset&#039;&#039;&#039; || &#039;&#039;&#039;Target Kbit/s&#039;&#039;&#039; || &#039;&#039;&#039;Bitrate range kbit/s&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| -b 320 || --preset insane || 320 || 320 CBR&lt;br /&gt;
|-&lt;br /&gt;
| -V 0 --vbr-new || --preset fast extreme ||  245 || 220...260&lt;br /&gt;
|-&lt;br /&gt;
| -V 0 || --preset extreme || 245 || 220...260&lt;br /&gt;
|-&lt;br /&gt;
| -V 1 --vbr-new ||&amp;amp;nbsp;|| 225 || 200...250&lt;br /&gt;
|-&lt;br /&gt;
| -V 1 ||&amp;amp;nbsp;|| 225 || 200...250&lt;br /&gt;
|-&lt;br /&gt;
| -V 2 --vbr-new || --preset fast standard || 190 || 170...210&lt;br /&gt;
|-&lt;br /&gt;
| -V 2 || --preset standard || 190 || 170...210&lt;br /&gt;
|-&lt;br /&gt;
| -V 3 --vbr-new ||&amp;amp;nbsp;|| 175 || 155...195&lt;br /&gt;
|-&lt;br /&gt;
| -V 3 ||&amp;amp;nbsp;|| 175 || 155...195&lt;br /&gt;
|-&lt;br /&gt;
| -V 4 --vbr-new || --preset fast medium || 165 || 145...185&lt;br /&gt;
|-&lt;br /&gt;
| -V 4 || --preset medium  || 165 || 145...185&lt;br /&gt;
|-&lt;br /&gt;
| -V 5 --vbr-new ||&amp;amp;nbsp;|| 130 || 110...150&lt;br /&gt;
|-&lt;br /&gt;
| -V 5 ||&amp;amp;nbsp;|| 130 || 110...150&lt;br /&gt;
|-&lt;br /&gt;
| -V 6 --vbr-new ||&amp;amp;nbsp;|| 115 || 95...135&lt;br /&gt;
|-&lt;br /&gt;
| -V 6 ||&amp;amp;nbsp;|| 115 || 95...135&lt;br /&gt;
|-&lt;br /&gt;
| -V 7 --vbr-new ||&amp;amp;nbsp;|| 100 || 80...120&lt;br /&gt;
|-&lt;br /&gt;
| -V 7 ||&amp;amp;nbsp;|| 100 || 80...120&lt;br /&gt;
|-&lt;br /&gt;
| -V 8 --vbr-new ||&amp;amp;nbsp;|| 85 || 65...105&lt;br /&gt;
|-&lt;br /&gt;
| -V 8 ||&amp;amp;nbsp;|| 85 || 65...105&lt;br /&gt;
|-&lt;br /&gt;
| -V 9 --vbr-new ||&amp;amp;nbsp;|| 65 || 45...85&lt;br /&gt;
|-&lt;br /&gt;
| -V 9 ||&amp;amp;nbsp;|| 65 || 45...85&lt;br /&gt;
|}&lt;br /&gt;
See also [[Technical data for recommended LAME settings]]&lt;br /&gt;
&lt;br /&gt;
If you need a predictable bitrate (in a streaming application, for example), use ABR or CBR modes, described below.&lt;br /&gt;
&lt;br /&gt;
==ABR (average bitrate) settings==&lt;br /&gt;
&#039;&#039;&#039;[[ABR]]:&#039;&#039;&#039; &#039;&#039;average bitrate mode. A compromise between VBR and CBR modes, ABR encoding varies bits around a specified target bitrate. Use ABR when you need to know the final size of the file but still want to allow the encoder some flexibility to decide which passages need more bits.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;(128 kbit/s ABR: roughly the same filesize as 128 kbit/s CBR)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[[ABR]] Setting tuned from 320 kbit/s down to 80 kbit/s&#039;&#039;&#039;&lt;br /&gt;
** --preset &amp;lt;bitrate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;bitrate&amp;gt; (desired averaged bitrate in kbit/s) can be any value between 8 - 320 , like eg. 9, 17, 80, 128, 133, 200 etc.&lt;br /&gt;
&lt;br /&gt;
::  Example: --preset 200&lt;br /&gt;
&lt;br /&gt;
==CBR (constant bitrate) settings==&lt;br /&gt;
&#039;&#039;&#039;[[CBR]]:&#039;&#039;&#039; &#039;&#039;constant bitrate mode. CBR encoding is not efficient. Whereas VBR and ABR modes can supply more bits to complex music passages and save bits on simpler ones, CBR encodes every frame at the same bitrate. CBR is only recommended for usage in streaming situations where the upper bitrate must be strictly enforced.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;[[CBR]] Setting tuned from 320 kbit/s down to 80 kbit/s&#039;&#039;&#039;&lt;br /&gt;
** -b &amp;lt;bitrate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;bitrate&amp;gt; (bitrate in kbit/s) must be chosen from the following values: 8, 16, 24, 32, 40, 48, 64, 80, 96, 112, 128, 160, 192, 224, 256, or 320.&lt;br /&gt;
&lt;br /&gt;
==Remarks==&lt;br /&gt;
The &amp;quot;&amp;quot;--vbr-new&amp;quot;&amp;quot; switch enables the new VBR mode.  Lame will encode much faster than the old/default VBR mode.  In terms of quality, --vbr-new appears to be better than the old model, but reports of artifacts when using the new model do exist.  Despite these possible issues, --vbr-new is currently recommended over the default VBR mode due to both the speed and quality increases afforded by the new algorithm.&lt;br /&gt;
&lt;br /&gt;
===Quick Start===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Best Quality : &#039;archiving&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font style=&amp;quot;color:red&amp;quot;&amp;gt;-b 320&amp;lt;/font&amp;gt;. This is the strongest setting for MP3, with the lowest risk of [[artifact]]s.&lt;br /&gt;
With the exception of a few situations, quality is rarely better than the highest [[VBR]] profiles described below. However, &#039;archiving&#039; music using a lossy format like MP3 is never recommended &amp;amp;ndash; no matter how transparent the resulting files might be.&lt;br /&gt;
Alternative: [[Lossless]] formats like [[WavPack]], [[FLAC]] etc. allow true archiving bit for bit like on original CD.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;High Quality : HiFi, home or quiet listening&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;-V3 --vbr-new&amp;lt;/font&amp;gt; (~175 kbps), &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;-V2 --vbr-new&amp;lt;/font&amp;gt; (~190 kbps), &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;-V1 --vbr-new&amp;lt;/font&amp;gt; (~210 kbps) or &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;-V0 --vbr-new&amp;lt;/font&amp;gt; (~230 kbps) are recommended.&lt;br /&gt;
These settings will produce [[transparent]] encoding (transparent = most people cannot distinguish the mp3 from the original in an ABX blind test).&lt;br /&gt;
Audible differences between these presets exist, but are extremely marginal.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Portable : background noise and low bitrate requirement, small sizes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font style=&amp;quot;color:purple&amp;quot;&amp;gt;-V6 --vbr-new&amp;lt;/font&amp;gt; (~115 kbps), &amp;lt;font style=&amp;quot;color:purple&amp;quot;&amp;gt;-V5 --vbr-new&amp;lt;/font&amp;gt; (~130 kbps) or &amp;lt;font style=&amp;quot;color:purple&amp;quot;&amp;gt;-V4 --vbr-new&amp;lt;/font&amp;gt; (~160 kbps) are recommended for this use.&lt;br /&gt;
-V6 --vbr-new produces an acceptable quality, while -V4--vbr-new should be close to perceptual [[transparency]].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Very low bitrate, small sizes:&#039;&#039;&#039; eg. for voice, radio, [[mono]] encoding etc.&lt;br /&gt;
&lt;br /&gt;
For very low bitrates, up to 100kbps, [[ABR]] is most often the best solution.&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;&#039;--abr xx&#039;&#039;&#039; (e.g. --abr 80).&lt;br /&gt;
&lt;br /&gt;
[[Image:lame-chart-2.png|frame|center|Here a trial to get a view, how the &amp;lt;font style=&amp;quot;color:red&amp;quot;&amp;gt;perceived listening quality&amp;lt;/font&amp;gt; improves with settings/&amp;lt;font style=&amp;quot;color:blue&amp;quot;&amp;gt;averaged filesize&amp;lt;/font&amp;gt;]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hey! What happened to &amp;quot;--alt-preset&amp;quot;?&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The revolutionary --alt-preset system was introduced in LAME 3.90; it was replaced by the --preset flags in later versions. Starting with version 3.94, the -V x quality system was introduced, which allows finer control over the desired bitrate; the --preset switches were made into aliases to the corresponding -V flags for the sake of backwards compatibility. &#039;&#039;&#039;There is no difference between the output you get if you use &amp;quot;-V2&amp;quot; or &amp;quot;--alt-preset standard&amp;quot;.&#039;&#039;&#039; (Although adding &amp;quot;--vbr-new&amp;quot; is recommended for now, see above for details.)&lt;br /&gt;
&lt;br /&gt;
More encoding options are available under the new system, such as -V1, which provides a level of quality between the old &amp;quot;standard&amp;quot; and &amp;quot;extreme&amp;quot; presets, or -V3, which is between the old &amp;quot;medium&amp;quot; and &amp;quot;standard&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
LAME 3.97 features more streamlined command line options, and it&#039;s recommended to stick to one of the values described in the text or shown in the tables above. &amp;lt;font style=&amp;quot;color:blue&amp;quot;&amp;gt;You don&#039;t need to worry&amp;lt;/font&amp;gt; anymore about quality, settings, arcane combinations of switches, or presets. &lt;br /&gt;
&lt;br /&gt;
For example, the following command lines will all produce the same output:&lt;br /&gt;
&lt;br /&gt;
--alt-preset insane = --preset insane = -b 320 = --preset 320 = --preset cbr 320&lt;br /&gt;
&lt;br /&gt;
(--preset cbr 320 is the exact same thing as --alt-preset insane, etc.)&lt;br /&gt;
&lt;br /&gt;
==Setting up EAC for LAME.exe with tagging==&lt;br /&gt;
&lt;br /&gt;
{{:EAC and Lame}}&lt;br /&gt;
&lt;br /&gt;
==Additional reading==&lt;br /&gt;
&lt;br /&gt;
* [[LAME|More information on LAME]]&lt;br /&gt;
* [http://www.hydrogenaudio.org/forums/index.php?act=ST&amp;amp;f=16&amp;amp;t=32288 Forum discussion of the recommended settings]&lt;br /&gt;
* [http://www.hydrogenaudio.org/forums/index.php?act=ST&amp;amp;f=15&amp;amp;t=203 Forum discussion of the recommended settings (older)]&lt;br /&gt;
* [[Recommended LAME credits|Credits for the recommended settings]]&lt;br /&gt;
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=32288&amp;amp;view=findpost&amp;amp;p=327262 Previous recommendations (outdated)]&lt;br /&gt;
* [[MP3]]&lt;br /&gt;
* [[Exact_Audio_Copy|Exact Audio Copy]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Recommended LAME credits|Credits]]&lt;/div&gt;</summary>
		<author><name>Pohli</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=EAC_and_Ogg_Vorbis&amp;diff=9570</id>
		<title>EAC and Ogg Vorbis</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=EAC_and_Ogg_Vorbis&amp;diff=9570"/>
		<updated>2005-12-26T15:52:52Z</updated>

		<summary type="html">&lt;p&gt;Pohli: /* Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Software Needed==&lt;br /&gt;
* [http://exactaudiocopy.org/eac6.html Exact Audio Copy]&lt;br /&gt;
* [http://www.rarewares.org/files/ogg/oggenc2.5-SVNP3MOD.zip Oggenc2.5 (P3/AMD Build)]&lt;br /&gt;
&#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
* [http://www.rarewares.org/files/ogg/oggenc2.5-SVNP4MOD.zip Oggenc2.5 (P4 Build)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; This guide assumes that EAC is has been configured for secure ripping, if not please follow [[EAC_Drive_Configuration | this guide]].&lt;br /&gt;
* Unzip the chosen Oggenc 2.5 build into the same directory that EAC is in.&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
* Open EAC and insert a CD into the drive.&lt;br /&gt;
* Click the &#039;&#039;&#039;EAC&#039;&#039;&#039; menu and select &#039;&#039;&#039;Compression Options&#039;&#039;&#039;.&lt;br /&gt;
* Click the &#039;&#039;&#039;External Compression&#039;&#039;&#039; Tab, and put a check box in &#039;&#039;&#039;use external program for compression&#039;&#039;&#039;.&lt;br /&gt;
* Change &#039;&#039;&#039;Parameter Passing Scheme&#039;&#039;&#039; to &#039;&#039;&#039;User Defined Encoder&#039;&#039;&#039;.&lt;br /&gt;
* Change &#039;&#039;&#039;Use file extension&#039;&#039;&#039; to &#039;&#039;&#039;.ogg&#039;&#039;&#039;.&lt;br /&gt;
* Click the &#039;&#039;&#039;Browse&#039;&#039;&#039; button and locate the &#039;&#039;&#039;OGGENC2.EXE&#039;&#039;&#039; that you unzipped earlier.&lt;br /&gt;
* Remove the ticks from &#039;&#039;&#039;Use CRC check&#039;&#039;&#039;, &#039;&#039;&#039;Add ID3 tag&#039;&#039;&#039; and &#039;&#039;&#039;check for external programs return code&#039;&#039;&#039;.&lt;br /&gt;
* In the &#039;&#039;&#039;Addtional command line options&#039;&#039;&#039; box, copy and paste one of the below strings based on the Tag you would prefer.&lt;br /&gt;
&#039;&#039;&#039;No Tags:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;&#039;&#039;&#039;-q 6&#039;&#039;&#039;&amp;lt;/font&amp;gt; %s %d&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Vorbis Comment:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;&#039;&#039;&#039;-q 6&#039;&#039;&#039;&amp;lt;/font&amp;gt; -a &amp;quot;%a&amp;quot; -t &amp;quot;%t&amp;quot; -l &amp;quot;%g&amp;quot; -d &amp;quot;%y&amp;quot; -N &amp;quot;%n&amp;quot; -G &amp;quot;%m&amp;quot; %s -o %d&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font style=&amp;quot;color:green&amp;quot;&amp;gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; If you wanted to change the quality setting the green portion is what you would substitute with the new setting e.g. -q 10 or -q 2.&amp;lt;/font&amp;gt;&lt;br /&gt;
* Do not worry what bit rate is shown in the bit rate drop down box, this will be ignored.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;[[Image:EAC_OGG.png|frame|center|Ogg configured with Vorbis Comment tagging]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Addtional Reading==&lt;br /&gt;
* [[Exact_Audio_Copy|Exact Audio Copy]]&lt;br /&gt;
* [[Ogg_Vorbis|Ogg Vorbis]]&lt;/div&gt;</summary>
		<author><name>Pohli</name></author>
	</entry>
</feed>