<?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=80.42.199.167</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=80.42.199.167"/>
	<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Special:Contributions/80.42.199.167"/>
	<updated>2026-04-29T14:39:13Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25774</id>
		<title>Free Lossless Audio Codec</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25774"/>
		<updated>2014-04-12T14:47:42Z</updated>

		<summary type="html">&lt;p&gt;80.42.199.167: /* Other tools */ re-edit other tools links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Codec Infobox&lt;br /&gt;
| name = FLAC&lt;br /&gt;
| logo = [[Image:FLAC logo.gif]]&lt;br /&gt;
| type = lossless&lt;br /&gt;
| purpose = Popular open source patent free lossless compression scheme.&lt;br /&gt;
| maintainer = Josh Coalson, Xiph Community &lt;br /&gt;
| recommended_encoder = FLAC encoder&lt;br /&gt;
| recommended_text = FLAC v1.3.0 (28-05-2013)&lt;br /&gt;
| website = http://xiph.org/flac/&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Free Lossless Audio Codec&#039;&#039;&#039; (&#039;&#039;&#039;FLAC&#039;&#039;&#039;) is a codec for lossless audio compression.&lt;br /&gt;
Grossly oversimplified, FLAC is similar to [[MP3]], but [[lossless]], meaning that audio is compressed in FLAC without any loss in quality. This is similar to how Zip works, except with FLAC you will get much better compression because it is designed specifically for audio, and you can play back compressed FLAC files in your favorite player (or your car or home stereo, if supported) just like you would an MP3 file.&lt;br /&gt;
&lt;br /&gt;
== General aspects of the format ==&lt;br /&gt;
FLAC is freely available and supported on most operating systems, including Windows, UNIX (Linux, *BSD, Solaris, OS X, IRIX), BeOS, OS/2, and Amiga. There are build systems for autotools, MSVC, Watcom C, and Project Builder.&lt;br /&gt;
&lt;br /&gt;
The FLAC project consists of:&lt;br /&gt;
* the stream format&lt;br /&gt;
* reference encoders and decoders in library form&lt;br /&gt;
* flac, a command-line program to encode and decode FLAC files&lt;br /&gt;
* metaflac, a command-line metadata editor for FLAC files&lt;br /&gt;
* input plugins for various music players&lt;br /&gt;
&lt;br /&gt;
When it&#039;s said that FLAC is &#039;&#039;free&#039;&#039;, it means more than just that it is available at no cost. It means that the specification of the format is fully open to the public to be used for any purpose, although the FLAC project reserves the right to set the FLAC specification and certify compliance. It also means that neither the FLAC format nor any of the implemented encoding/decoding methods are covered by any known patent. And it means that all the source code is available under open-source licenses. It is the first truly open and free lossless audio format.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* &#039;&#039;&#039;Lossless:&#039;&#039;&#039; The encoding of audio (PCM) data incurs no loss of information, and the decoded audio is bit-for-bit identical to what went into the encoder. Each frame contains a 16-bit CRC of the frame data for detecting transmission errors. The integrity of the audio data is further insured by storing an MD5 signature of the original unencoded audio data in the file header, which can be compared against later during decoding or testing.&lt;br /&gt;
* &#039;&#039;&#039;Fast:&#039;&#039;&#039; FLAC is asymmetric in favor of decode speed. Decoding requires only integer arithmetic, and is much less compute-intensive than for most perceptual codecs. Real-time decode performance is easily achievable on even modest hardware.&lt;br /&gt;
* &#039;&#039;&#039;Hardware support:&#039;&#039;&#039; Because of FLAC&#039;s free reference implementation, low decoding complexity and popularity, FLAC has relatively widespread hardware support compared to other lossless formats.&lt;br /&gt;
* &#039;&#039;&#039;Streamable:&#039;&#039;&#039; Each FLAC frame contains enough data to decode that frame. FLAC does not even rely on previous or following frames. FLAC uses sync codes and CRCs (similar to MPEG and other formats), which, along with framing, allow decoders to pick up in the middle of a stream with a minimum of delay.&lt;br /&gt;
* &#039;&#039;&#039;Seekable:&#039;&#039;&#039; FLAC supports fast sample-accurate seeking. Not only is this useful for playback, it makes FLAC files suitable for use in editing applications.&lt;br /&gt;
* &#039;&#039;&#039;Flexible metadata:&#039;&#039;&#039; New metadata blocks can be defined and implemented in future versions of FLAC without breaking older streams or decoders. Currently there are metadata types for tags, cue sheets, and seek tables. Applications can write their own APPLICATION metadata once they register an ID.&lt;br /&gt;
* &#039;&#039;&#039;Suitable for archiving:&#039;&#039;&#039; FLAC is an open format, and there is no generation loss if you need to convert your data to another format in the future. In addition to the frame CRCs and MD5 signature, flac has a verify option that decodes the encoded stream in parallel with the encoding process and compares the result to the original, aborting with an error if there is a mismatch.&lt;br /&gt;
* &#039;&#039;&#039;Convenient CD archiving:&#039;&#039;&#039; FLAC has a &#039;&#039;cue sheet&#039;&#039; metadata block for storing a CD table of contents and all track and index points. For instance, you can rip a CD to a single file, then import the CD&#039;s extracted cue sheet while encoding to yield a single file representation of the entire CD. If your original CD is damaged, the cue sheet can be exported later in order to burn an exact copy.&lt;br /&gt;
* &#039;&#039;&#039;Error resistant:&#039;&#039;&#039; Because of FLAC&#039;s framing, stream errors limit the damage to the frame in which the error occurred, typically a small fraction of a second worth of data. Contrast this with some other lossless codecs, in which a single error destroys the remainder of the stream.&lt;br /&gt;
&lt;br /&gt;
== Pros ==&lt;br /&gt;
* Portable to many systems&lt;br /&gt;
* Open source and freely licensed&lt;br /&gt;
* Hardware support (PhatBox, Kenwood MusicKeg, Rio Karma, etc.  See below)&lt;br /&gt;
* Streaming support&lt;br /&gt;
* Extremely fast decoding&lt;br /&gt;
* Supports multichannel and high resolution streams&lt;br /&gt;
* Supports [[ReplayGain]]&lt;br /&gt;
* Supports cue-sheet (with some limitations)&lt;br /&gt;
* Gaining wide use as successor to [[Shorten]]&lt;br /&gt;
&lt;br /&gt;
== Cons ==&lt;br /&gt;
* Compresses less efficiently than other popular modern compressors ([[Monkey&#039;s Audio]], [[OptimFROG]])&lt;br /&gt;
* Higher compression modes slow, for little gain over the default setting.&lt;br /&gt;
&lt;br /&gt;
== Hardware and software that support FLAC ==&lt;br /&gt;
For a more comprehensive list see the [http://xiph.org/flac/links.html FLAC links page].&lt;br /&gt;
&lt;br /&gt;
=== Hardware ===&lt;br /&gt;
==== Car stereo ====&lt;br /&gt;
* Kenwood [http://www.kenwoodusa.com/Car_Entertainment/In-Dash_CD_Receivers/1-DIN_CD_Receiver/KMM-100U KMM-100U] &amp;amp; KMM-357SD (euro)    &lt;br /&gt;
* Soundstream [http://soundstream.com/store/car-video/source-units.html Source Units]&lt;br /&gt;
&lt;br /&gt;
==== Home stereo ====&lt;br /&gt;
* Olive&#039;s [http://www.olive.us/ Symphony] wireless digital music center&lt;br /&gt;
* [http://www.numark.com/ Numark]&#039;s DJ equipment (HDX and CDX turntables, HDMIX mixer)&lt;br /&gt;
* [http://www.sonos.com/ Sonos Digital Music System]&lt;br /&gt;
* Slim Devices&#039; [http://www.slimdevices.com/pi_squeezebox.html Squeezebox] networked audio players&lt;br /&gt;
 &lt;br /&gt;
==== Portable ====&lt;br /&gt;
* [[Apple iPod]] with [[Rockbox]] firmware&lt;br /&gt;
* [[iAudio M3]], M5 and X5&lt;br /&gt;
* [[iRiver]] iHP-120/iHP-140 with [[Rockbox]] firmware&lt;br /&gt;
* [[Iwod G10]]&lt;br /&gt;
* [[Rio Karma]]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/SanDisk_Sansa SanDisk Sansa]&lt;br /&gt;
* TrekStor&#039;s [http://www.trekstor.de/en/products/detail_mp3.php?pid=66 Vibez]&lt;br /&gt;
* Devices running Android 3.1+&lt;br /&gt;
&lt;br /&gt;
=== Software ===&lt;br /&gt;
==== Players ====&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;Windows&#039;&#039;&#039;&lt;br /&gt;
* [[foobar2000]]&lt;br /&gt;
* [[MediaMonkey]]&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
*[http://mplayerwin.sourceforge.net/ Mplayer]  Console player&lt;br /&gt;
* [http://www.cyberlink.com/products/powerdvd-ultra/features_en_US.html?&amp;amp;r=1 PowerDVD]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [http://www.un4seen.com/ XMplay]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mac&#039;&#039;&#039;&lt;br /&gt;
* [http://cogx.org/ Cog]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linux&#039;&#039;&#039;&lt;br /&gt;
* [http://www.clementine-player.org/ Clementine]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer]&lt;br /&gt;
* [http://www.mythtv.org/ MythTV]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [[XMMS]]&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Windows) ====&lt;br /&gt;
* FLAC frontend - [http://sourceforge.net/projects/flacfrontend/ download] / [http://wiki.hydrogenaudio.org/index.php?title=Download_page discussion] (ktf)&lt;br /&gt;
* Custom [http://members.home.nl/w.speek/flac.htm Windows Frontend] (by Speek)&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Mac) ====&lt;br /&gt;
* [http://www.sbooth.org/Max/ Max]&lt;br /&gt;
 &lt;br /&gt;
==== Converters ====&lt;br /&gt;
* [http://www.dbpoweramp.com/ dBpowerAMP] Music Converter / Audio Player / CD Writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] Music Manager / Audio Player / CD Writer&lt;br /&gt;
&lt;br /&gt;
==== Editors ====&lt;br /&gt;
*[http://audacity.sourceforge.net/ Audacity]&lt;br /&gt;
* [[Adobe Audition]]&lt;br /&gt;
* [http://www.goldwave.com/ GoldWave]&lt;br /&gt;
&lt;br /&gt;
==== CD writers/rippers ====&lt;br /&gt;
* [http://www.nero.com/eng/ Nero]&lt;br /&gt;
* [http://arson.sourceforge.net/ Arson]&lt;br /&gt;
* [http://www.burrrn.net Burrrn] Audio CD burner&lt;br /&gt;
* [[Exact Audio Copy]] CD Ripper&lt;br /&gt;
* [http://cdexos.sourceforge.net CDex] CD ripper&lt;br /&gt;
* [http://www.cdwave.com/ CD Wave]&lt;br /&gt;
* [http://cdburnerxp.se/ CDburner XP] CD writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] - CD ripper/writer&lt;br /&gt;
&lt;br /&gt;
==== Taggers ====&lt;br /&gt;
* [http://www.mp3tag.de/en/index.html Mp3tag] - Universal Tag Editor&lt;br /&gt;
* [http://www.jtclipper.eu/thegodfather/ The GodFather] - Tagger / Music manager&lt;br /&gt;
* [http://sbooth.org/Tag/ Tag] - for Mac OS X 10.4 (Tiger)&lt;br /&gt;
&lt;br /&gt;
* [http://www.synthetic-soul.co.uk/tag/ Case&#039;s Tag]  - Command line tagger&lt;br /&gt;
* [https://xiph.org/flac/documentation_tools_metaflac.html metaflac] - for general metadata (including Vorbis comments) maintenance&lt;br /&gt;
* [[MediaMonkey]] - Tagger / Music manager (Including multiple and linked album art support)&lt;br /&gt;
&lt;br /&gt;
==== Other tools ====&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/ mkvtoolnix] - tool to multiplex FLAC streams inside the Matroska container&lt;br /&gt;
* [https://xiph.org/flac/documentation_tools_metaflac.html metaflac] - for general metadata (including Vorbis comments) maintenance, also to calculate [[ReplayGain]] values for FLAC files lacking such&lt;br /&gt;
&lt;br /&gt;
for a more comprehensive list use the &#039;&#039;&#039;External Links&#039;&#039;&#039; bottom of this page to visit flac&#039;s download and link page.&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; Does the compression level affect decompression speed?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: No.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: In truth, the compression level does affect the decompression speed, but the difference between the various compress levels can barely be measured and is too small to be noticed, even on low-end machines.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; What is the best compression level for encoding my music?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: The default setting, 5.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: Encoding at the default setting will give the best balance between compression and encoding speed. Encoding at 8 can more than quadruple the encoding time, while having an insignificant effect on compression.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Lossless]]&lt;br /&gt;
* [[Lossless comparison]]&lt;br /&gt;
* Flac 1.3.0 discussion [http://www.hydrogenaudio.org/forums/index.php?showtopic=101082 here]&lt;br /&gt;
&lt;br /&gt;
== Externals links ==&lt;br /&gt;
* [http://xiph.org/flac/ FLAC Homepage] | [http://xiph.org/flac/format.html format description] | [http://xiph.org/flac/documentation.html documentation] | [http://xiph.org/flac/faq.html FAQ] | [http://wiki.hydrogenaudio.org/index.php?title=Download_page#Encoders.2C_Decoders.2C_Etc. download]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Omion&#039;s FLAC &amp;quot;[http://web.archive.org/web/20091108104748/http://people.ucsc.edu/~rswilson/flactest File Size vs. Decoding Speed&amp;quot;] Test. - a very thorough test on the influence of the chosen encoding level on the decoding speed of FLAC, the only one so far to have covered FLAC&#039;s --super-secret-totally-impractical-compression-level to this extent as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Lossless]]&lt;br /&gt;
[[Category:Encoder/Decoder]]&lt;/div&gt;</summary>
		<author><name>80.42.199.167</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25773</id>
		<title>Free Lossless Audio Codec</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25773"/>
		<updated>2014-04-12T14:33:30Z</updated>

		<summary type="html">&lt;p&gt;80.42.199.167: /* Externals links */ re-edits on Externals links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Codec Infobox&lt;br /&gt;
| name = FLAC&lt;br /&gt;
| logo = [[Image:FLAC logo.gif]]&lt;br /&gt;
| type = lossless&lt;br /&gt;
| purpose = Popular open source patent free lossless compression scheme.&lt;br /&gt;
| maintainer = Josh Coalson, Xiph Community &lt;br /&gt;
| recommended_encoder = FLAC encoder&lt;br /&gt;
| recommended_text = FLAC v1.3.0 (28-05-2013)&lt;br /&gt;
| website = http://xiph.org/flac/&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Free Lossless Audio Codec&#039;&#039;&#039; (&#039;&#039;&#039;FLAC&#039;&#039;&#039;) is a codec for lossless audio compression.&lt;br /&gt;
Grossly oversimplified, FLAC is similar to [[MP3]], but [[lossless]], meaning that audio is compressed in FLAC without any loss in quality. This is similar to how Zip works, except with FLAC you will get much better compression because it is designed specifically for audio, and you can play back compressed FLAC files in your favorite player (or your car or home stereo, if supported) just like you would an MP3 file.&lt;br /&gt;
&lt;br /&gt;
== General aspects of the format ==&lt;br /&gt;
FLAC is freely available and supported on most operating systems, including Windows, UNIX (Linux, *BSD, Solaris, OS X, IRIX), BeOS, OS/2, and Amiga. There are build systems for autotools, MSVC, Watcom C, and Project Builder.&lt;br /&gt;
&lt;br /&gt;
The FLAC project consists of:&lt;br /&gt;
* the stream format&lt;br /&gt;
* reference encoders and decoders in library form&lt;br /&gt;
* flac, a command-line program to encode and decode FLAC files&lt;br /&gt;
* metaflac, a command-line metadata editor for FLAC files&lt;br /&gt;
* input plugins for various music players&lt;br /&gt;
&lt;br /&gt;
When it&#039;s said that FLAC is &#039;&#039;free&#039;&#039;, it means more than just that it is available at no cost. It means that the specification of the format is fully open to the public to be used for any purpose, although the FLAC project reserves the right to set the FLAC specification and certify compliance. It also means that neither the FLAC format nor any of the implemented encoding/decoding methods are covered by any known patent. And it means that all the source code is available under open-source licenses. It is the first truly open and free lossless audio format.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* &#039;&#039;&#039;Lossless:&#039;&#039;&#039; The encoding of audio (PCM) data incurs no loss of information, and the decoded audio is bit-for-bit identical to what went into the encoder. Each frame contains a 16-bit CRC of the frame data for detecting transmission errors. The integrity of the audio data is further insured by storing an MD5 signature of the original unencoded audio data in the file header, which can be compared against later during decoding or testing.&lt;br /&gt;
* &#039;&#039;&#039;Fast:&#039;&#039;&#039; FLAC is asymmetric in favor of decode speed. Decoding requires only integer arithmetic, and is much less compute-intensive than for most perceptual codecs. Real-time decode performance is easily achievable on even modest hardware.&lt;br /&gt;
* &#039;&#039;&#039;Hardware support:&#039;&#039;&#039; Because of FLAC&#039;s free reference implementation, low decoding complexity and popularity, FLAC has relatively widespread hardware support compared to other lossless formats.&lt;br /&gt;
* &#039;&#039;&#039;Streamable:&#039;&#039;&#039; Each FLAC frame contains enough data to decode that frame. FLAC does not even rely on previous or following frames. FLAC uses sync codes and CRCs (similar to MPEG and other formats), which, along with framing, allow decoders to pick up in the middle of a stream with a minimum of delay.&lt;br /&gt;
* &#039;&#039;&#039;Seekable:&#039;&#039;&#039; FLAC supports fast sample-accurate seeking. Not only is this useful for playback, it makes FLAC files suitable for use in editing applications.&lt;br /&gt;
* &#039;&#039;&#039;Flexible metadata:&#039;&#039;&#039; New metadata blocks can be defined and implemented in future versions of FLAC without breaking older streams or decoders. Currently there are metadata types for tags, cue sheets, and seek tables. Applications can write their own APPLICATION metadata once they register an ID.&lt;br /&gt;
* &#039;&#039;&#039;Suitable for archiving:&#039;&#039;&#039; FLAC is an open format, and there is no generation loss if you need to convert your data to another format in the future. In addition to the frame CRCs and MD5 signature, flac has a verify option that decodes the encoded stream in parallel with the encoding process and compares the result to the original, aborting with an error if there is a mismatch.&lt;br /&gt;
* &#039;&#039;&#039;Convenient CD archiving:&#039;&#039;&#039; FLAC has a &#039;&#039;cue sheet&#039;&#039; metadata block for storing a CD table of contents and all track and index points. For instance, you can rip a CD to a single file, then import the CD&#039;s extracted cue sheet while encoding to yield a single file representation of the entire CD. If your original CD is damaged, the cue sheet can be exported later in order to burn an exact copy.&lt;br /&gt;
* &#039;&#039;&#039;Error resistant:&#039;&#039;&#039; Because of FLAC&#039;s framing, stream errors limit the damage to the frame in which the error occurred, typically a small fraction of a second worth of data. Contrast this with some other lossless codecs, in which a single error destroys the remainder of the stream.&lt;br /&gt;
&lt;br /&gt;
== Pros ==&lt;br /&gt;
* Portable to many systems&lt;br /&gt;
* Open source and freely licensed&lt;br /&gt;
* Hardware support (PhatBox, Kenwood MusicKeg, Rio Karma, etc.  See below)&lt;br /&gt;
* Streaming support&lt;br /&gt;
* Extremely fast decoding&lt;br /&gt;
* Supports multichannel and high resolution streams&lt;br /&gt;
* Supports [[ReplayGain]]&lt;br /&gt;
* Supports cue-sheet (with some limitations)&lt;br /&gt;
* Gaining wide use as successor to [[Shorten]]&lt;br /&gt;
&lt;br /&gt;
== Cons ==&lt;br /&gt;
* Compresses less efficiently than other popular modern compressors ([[Monkey&#039;s Audio]], [[OptimFROG]])&lt;br /&gt;
* Higher compression modes slow, for little gain over the default setting.&lt;br /&gt;
&lt;br /&gt;
== Hardware and software that support FLAC ==&lt;br /&gt;
For a more comprehensive list see the [http://xiph.org/flac/links.html FLAC links page].&lt;br /&gt;
&lt;br /&gt;
=== Hardware ===&lt;br /&gt;
==== Car stereo ====&lt;br /&gt;
* Kenwood [http://www.kenwoodusa.com/Car_Entertainment/In-Dash_CD_Receivers/1-DIN_CD_Receiver/KMM-100U KMM-100U] &amp;amp; KMM-357SD (euro)    &lt;br /&gt;
* Soundstream [http://soundstream.com/store/car-video/source-units.html Source Units]&lt;br /&gt;
&lt;br /&gt;
==== Home stereo ====&lt;br /&gt;
* Olive&#039;s [http://www.olive.us/ Symphony] wireless digital music center&lt;br /&gt;
* [http://www.numark.com/ Numark]&#039;s DJ equipment (HDX and CDX turntables, HDMIX mixer)&lt;br /&gt;
* [http://www.sonos.com/ Sonos Digital Music System]&lt;br /&gt;
* Slim Devices&#039; [http://www.slimdevices.com/pi_squeezebox.html Squeezebox] networked audio players&lt;br /&gt;
 &lt;br /&gt;
==== Portable ====&lt;br /&gt;
* [[Apple iPod]] with [[Rockbox]] firmware&lt;br /&gt;
* [[iAudio M3]], M5 and X5&lt;br /&gt;
* [[iRiver]] iHP-120/iHP-140 with [[Rockbox]] firmware&lt;br /&gt;
* [[Iwod G10]]&lt;br /&gt;
* [[Rio Karma]]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/SanDisk_Sansa SanDisk Sansa]&lt;br /&gt;
* TrekStor&#039;s [http://www.trekstor.de/en/products/detail_mp3.php?pid=66 Vibez]&lt;br /&gt;
* Devices running Android 3.1+&lt;br /&gt;
&lt;br /&gt;
=== Software ===&lt;br /&gt;
==== Players ====&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;Windows&#039;&#039;&#039;&lt;br /&gt;
* [[foobar2000]]&lt;br /&gt;
* [[MediaMonkey]]&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
*[http://mplayerwin.sourceforge.net/ Mplayer]  Console player&lt;br /&gt;
* [http://www.cyberlink.com/products/powerdvd-ultra/features_en_US.html?&amp;amp;r=1 PowerDVD]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [http://www.un4seen.com/ XMplay]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mac&#039;&#039;&#039;&lt;br /&gt;
* [http://cogx.org/ Cog]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linux&#039;&#039;&#039;&lt;br /&gt;
* [http://www.clementine-player.org/ Clementine]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer]&lt;br /&gt;
* [http://www.mythtv.org/ MythTV]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [[XMMS]]&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Windows) ====&lt;br /&gt;
* FLAC frontend - [http://sourceforge.net/projects/flacfrontend/ download] / [http://wiki.hydrogenaudio.org/index.php?title=Download_page discussion] (ktf)&lt;br /&gt;
* Custom [http://members.home.nl/w.speek/flac.htm Windows Frontend] (by Speek)&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Mac) ====&lt;br /&gt;
* [http://www.sbooth.org/Max/ Max]&lt;br /&gt;
 &lt;br /&gt;
==== Converters ====&lt;br /&gt;
* [http://www.dbpoweramp.com/ dBpowerAMP] Music Converter / Audio Player / CD Writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] Music Manager / Audio Player / CD Writer&lt;br /&gt;
&lt;br /&gt;
==== Editors ====&lt;br /&gt;
*[http://audacity.sourceforge.net/ Audacity]&lt;br /&gt;
* [[Adobe Audition]]&lt;br /&gt;
* [http://www.goldwave.com/ GoldWave]&lt;br /&gt;
&lt;br /&gt;
==== CD writers/rippers ====&lt;br /&gt;
* [http://www.nero.com/eng/ Nero]&lt;br /&gt;
* [http://arson.sourceforge.net/ Arson]&lt;br /&gt;
* [http://www.burrrn.net Burrrn] Audio CD burner&lt;br /&gt;
* [[Exact Audio Copy]] CD Ripper&lt;br /&gt;
* [http://cdexos.sourceforge.net CDex] CD ripper&lt;br /&gt;
* [http://www.cdwave.com/ CD Wave]&lt;br /&gt;
* [http://cdburnerxp.se/ CDburner XP] CD writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] - CD ripper/writer&lt;br /&gt;
&lt;br /&gt;
==== Taggers ====&lt;br /&gt;
* [http://www.mp3tag.de/en/index.html Mp3tag] - Universal Tag Editor&lt;br /&gt;
* [http://www.jtclipper.eu/thegodfather/ The GodFather] - Tagger / Music manager&lt;br /&gt;
* [http://sbooth.org/Tag/ Tag] - for Mac OS X 10.4 (Tiger)&lt;br /&gt;
&lt;br /&gt;
* [http://www.synthetic-soul.co.uk/tag/ Case&#039;s Tag]  - Command line tagger&lt;br /&gt;
* [https://xiph.org/flac/documentation_tools_metaflac.html metaflac] - for general metadata (including Vorbis comments) maintenance&lt;br /&gt;
* [[MediaMonkey]] - Tagger / Music manager (Including multiple and linked album art support)&lt;br /&gt;
&lt;br /&gt;
==== Other tools ====&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/ mkvtoolnix] - tool to multiplex FLAC streams inside the Matroska container&lt;br /&gt;
* [https://xiph.org/flac/documentation_tools_metaflac.html metaflac] - for general metadata (including Vorbis comments) maintenance, also to calculate [[ReplayGain]] values for FLAC files lacking such&lt;br /&gt;
&lt;br /&gt;
...and many more; see the [http://flac.sourceforge.net/links.html#software FLAC software section] and [http://flac.sourceforge.net/download.html#extras download section] for a more comprehensive list.&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; Does the compression level affect decompression speed?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: No.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: In truth, the compression level does affect the decompression speed, but the difference between the various compress levels can barely be measured and is too small to be noticed, even on low-end machines.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; What is the best compression level for encoding my music?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: The default setting, 5.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: Encoding at the default setting will give the best balance between compression and encoding speed. Encoding at 8 can more than quadruple the encoding time, while having an insignificant effect on compression.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Lossless]]&lt;br /&gt;
* [[Lossless comparison]]&lt;br /&gt;
* Flac 1.3.0 discussion [http://www.hydrogenaudio.org/forums/index.php?showtopic=101082 here]&lt;br /&gt;
&lt;br /&gt;
== Externals links ==&lt;br /&gt;
* [http://xiph.org/flac/ FLAC Homepage] | [http://xiph.org/flac/format.html format description] | [http://xiph.org/flac/documentation.html documentation] | [http://xiph.org/flac/faq.html FAQ] | [http://wiki.hydrogenaudio.org/index.php?title=Download_page#Encoders.2C_Decoders.2C_Etc. download]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Omion&#039;s FLAC &amp;quot;[http://web.archive.org/web/20091108104748/http://people.ucsc.edu/~rswilson/flactest File Size vs. Decoding Speed&amp;quot;] Test. - a very thorough test on the influence of the chosen encoding level on the decoding speed of FLAC, the only one so far to have covered FLAC&#039;s --super-secret-totally-impractical-compression-level to this extent as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Lossless]]&lt;br /&gt;
[[Category:Encoder/Decoder]]&lt;/div&gt;</summary>
		<author><name>80.42.199.167</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=WavPack&amp;diff=25772</id>
		<title>WavPack</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=WavPack&amp;diff=25772"/>
		<updated>2014-04-11T21:22:09Z</updated>

		<summary type="html">&lt;p&gt;80.42.199.167: broken links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;WavPack&#039;&#039;&#039; is a free, open source [[lossless]] audio compression format developed by David Bryant.&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
WavPack (pronounced &amp;quot;wave-pack&amp;quot;) allows users to compress (and restore) all [[PCM]] audio formats including 8, 16, and 24-bit ints; 32-bit floats; [[mono]], [[stereo]], and [[multichannel]]; [[sampling rate]]s from 6 to 192 kHz. Like other lossless compression schemes the data reduction varies with the source, but it is generally between 25 % and 50 % for typical popular music and somewhat better than that for classical music and other sources with greater dynamic range.&lt;br /&gt;
&lt;br /&gt;
WavPack also incorporates a unique &amp;quot;hybrid&amp;quot; mode that provides all the advantages of lossless compression with an additional bonus. Instead of creating a single file, this mode creates both a relatively small, high-quality lossy file that can be used all by itself, and a &amp;quot;correction&amp;quot; file that (when combined with the lossy file) provides full lossless restoration. For some users this means never having to choose between lossless and lossy compression!&lt;br /&gt;
&lt;br /&gt;
== Feature Summary ==&lt;br /&gt;
* Fast and efficient encoding and decoding&lt;br /&gt;
* [[Open source]], released under a BSDish license&lt;br /&gt;
* Multiplatform&lt;br /&gt;
* Hardware support&lt;br /&gt;
* Error robustness&lt;br /&gt;
* Streaming support&lt;br /&gt;
* Supports multichannel audio and high resolutions&lt;br /&gt;
* Hybrid/lossy mode&lt;br /&gt;
* Tagging support ([[ID3v1]], [[APE]])&lt;br /&gt;
* Supports [[RIFF]] chunks&lt;br /&gt;
* Supports embedded CUE sheets&lt;br /&gt;
* Includes MD5 hashes for quick integrity checking&lt;br /&gt;
* Ability to create self extracting files for Win32 platform&lt;br /&gt;
* [[ReplayGain]] compatible&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
David Bryant started development on WavPack in mid-1998, with the release of version 1.0. This first version compressed and decompressed audio losslessly, nothing else, but by then it already featured one of the best efficiency versus speed ratio among lossless encoders.&lt;br /&gt;
&lt;br /&gt;
Very soon after the release of version 1.0, Bryant released v. 2.0, which featured lossy encoding (using only quantization for data reduction – no psychoacoustic process was applied to the stream).&lt;br /&gt;
&lt;br /&gt;
In 1999, the developer released version 3.0, which featured novelties such as a fast mode (with reduced compression ratio), compression of RAW files and error detection using CRC checksums.&lt;br /&gt;
&lt;br /&gt;
WavPack development is still going on, and a major feature added in late 3.x versions is the hybrid mode, where the encoder generates a lossy file + a correction file, so that both can be decompressed back to the original PCM stream.&lt;br /&gt;
&lt;br /&gt;
WavPack 4 has been recently released. It included important changes, such as fast seeking, multichannel support, high resolution audio support, etc. turning it into one of the most full featured and modern lossless audio compressors.&lt;br /&gt;
&lt;br /&gt;
== Software support ==&lt;br /&gt;
=== Players ===&lt;br /&gt;
* NullSoft [[Winamp]] (plugin with ReplayGain &amp;amp; Media Library support) and Winamp-compatible players&lt;br /&gt;
* [[foobar2000]] Advanced Audio Player (official encoding/decoding addon, with ReplayGain &amp;amp; Cuesheets support)&lt;br /&gt;
* [http://www.vuplayer.com/vuplayer.htm VUPlayer] (official plugin, supports encoding)&lt;br /&gt;
* [[Windows Media Player]] and other directshow-based players (MPC, TCMP, RadLight) (with [http://www.hydrogenaudio.org/forums/index.php?showtopic=103693 CoreWavPack] directshow filter)&lt;br /&gt;
* &amp;lt;s&amp;gt;[http://  Apollo]&amp;lt;/S&amp;gt; Audio Player (plugin with ReplayGain support)&lt;br /&gt;
* [http://www.un4seen.com/xmplay.html XMplay] (official plugin)&lt;br /&gt;
* [http://cogosx.sourceforge.net/ Cog] Audio player for MacOS X.&lt;br /&gt;
* [[XMMS]] (with Kuniklo&#039;s plugin)&lt;br /&gt;
* [http://fondriest.frederic.free.fr/realisations/lamip/ LAMIP] (official plugin)&lt;br /&gt;
* [http://mpxplay.sourceforge.net/ MPXplay] for DOS!&lt;br /&gt;
* [http://aqualung.sourceforge.net/ Aqualung] for GNU/Linux&lt;br /&gt;
* [http://www.videolan.org/vlc/download-windows.html VLC Player]&lt;br /&gt;
* Cowon [http://www.jetaudio.com/ JetAudio Player]&lt;br /&gt;
&lt;br /&gt;
=== Frontends ===&lt;br /&gt;
* Custom [http://members.home.nl/w.speek/wavpack.htm Windows Frontend] (by Speek)&lt;br /&gt;
&lt;br /&gt;
=== Converters ===&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; &#039;&#039;Several players, like Cowon JetAudio, foobar2000 and VUplayer, can also convert from other formats to WavPack)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [http://www.dbpoweramp.com/ dBpowerAMP] Music Converter / Audio Player / CD Writer (official addon)&lt;br /&gt;
* Cowon [http://www.jetaudio.com/ JetAudio Player]&lt;br /&gt;
&lt;br /&gt;
=== Editors ===&lt;br /&gt;
* [[Adobe Audition]] and Cool Edit (filter with 32-bit floats &amp;amp; extra info save support)&lt;br /&gt;
&lt;br /&gt;
=== CD writers/rippers ===&lt;br /&gt;
* [http://www.nero.com/eng/ Nero]&lt;br /&gt;
* [http://www.burrrn.net Burrrn] Audio CD burner&lt;br /&gt;
* [[Exact Audio Copy]] CD Ripper&lt;br /&gt;
* [http://cdexos.sourceforge.net CDex] CD ripper&lt;br /&gt;
* Cowon [http://www.jetaudio.com/ JetAudio Player]&lt;br /&gt;
&lt;br /&gt;
=== Taggers ===&lt;br /&gt;
* [http://www.mp3tag.de/en/index.html Mp3tag] Universal Tag Editor&lt;br /&gt;
* [http://www.jtclipper.eu/thegodfather/ The GodFather] Tagger / Music manager&lt;br /&gt;
* [[Tag.exe|Case&#039;s Tag]] command line tagger&lt;br /&gt;
&lt;br /&gt;
=== Other tools ===&lt;br /&gt;
* [http://www.burrrn.net/?page_id=5 Mr. QuestionMan]&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/ mkvtoolnix] – tool to multiplex WavPack streams inside the Matroska container&lt;br /&gt;
&#039;&#039;It&#039;s worth mentioning the [[Matroska]] guys decided to concentrate on WavPack as the lossless compressor of choice for their container. Quite an honor... :-)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Hardware Support ==&lt;br /&gt;
* iRiver iHP-120/iHP-140 with the open source [http://www.rockbox.org Rockbox firmware]&lt;br /&gt;
* [http://www.rokulabs.com/products/photobridge/features.php Roku PhotoBridge HD] (with [http://www.wavpack.com/downloads.html plugin])&lt;br /&gt;
&lt;br /&gt;
== Technology description ==&lt;br /&gt;
To ensure high-speed operation, WavPack uses a very simple predictor that is implemented entirely in integer math. In its &amp;quot;fast&amp;quot; mode the prediction is simply the arithmetic extrapolation of the previous two samples. For example, if the previous two samples were -10 and 20, then the prediction would be 50. For the default mode a simple adaptive factor is added to weigh the influence of the earlier sample on the prediction. In our example the resulting prediction could then vary between 20 for no influence to 50 for full influence. This weight factor is constantly updated based on the audio data&#039;s changing spectral characteristics, which is why it is called &amp;quot;adaptive&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The prediction generated is then subtracted from the actual sample to be encoded to generate the error value. In mono mode this value is sent directly to the coder. However, stereo signals tend to have some correlation between the two channels that can be further exploited. Therefore, two error values are calculated that represent the difference and average of the left and right error values. In the &amp;quot;fast&amp;quot; mode of operation these two new values are simply sent to the coder instead of the left and right values. In the default mode, the difference value is always sent to the coder along with one of the other three values (average, left, or right). An adaptive algorithm continuously determines the most efficient of the three to send based on the changing balance of the channels.&lt;br /&gt;
&lt;br /&gt;
The developer has developed a unique data encoder for WavPack that he believes is better than Rice coding in two different areas. It is impossible to encode more efficiently than Rice coding because it represents the optimal bit coding (sometimes known as the Huffman code) for this type of data. WavPack&#039;s encoder is slightly less efficient than this, but only by about 0.15 bits/sample (or less than 1% for 16-bit data). The first advantage of WavPack&#039;s coder is that it does not require the data to be buffered ahead of encoding, instead it converts each sample directly to bitcodes. This is more computationally efficient and it is better in some applications where coding delay is critical. The second advantage is that it is easily adaptable to lossy encoding because all significant bits (except the implied &amp;quot;one&amp;quot; MSB) are transmitted directly. In this way it is possible to only transmit, for example, the 3 most significant bits (with sign) of each sample. In fact, it is possible to transmit only the sign and implied MSB for each sample with an average of only 3.65 bits/sample.&lt;br /&gt;
&lt;br /&gt;
This coding scheme is used to implement the &amp;quot;lossy&amp;quot; mode of WavPack. In the &amp;quot;fast&amp;quot; mode the output of the non-adaptive decorrelator is simply rounded to the nearest codable value for the specified number of bits. In the default mode the adaptive decorrelator is used (which reduces the average noise about 1 dB) and also both the current and the next sample are considered in choosing the better of the two available codes (which reduces noise another 1 dB).&lt;br /&gt;
&lt;br /&gt;
The developer has decided to not use any floating-point arithmetic in WavPack&#039;s data path because he believes that integer operations are less susceptible to subtle chip to chip variations that could corrupt the lossless nature of the compression, the Pentium floating point bug being a blatant example of this. It is possible that a lossless compressor that used floating-point math could generate different output when running on that faulty Pentium. Even disregarding actual bugs, floating-point math is complicated enough that there could be subtle differences between &amp;quot;correct&amp;quot; implementations that could cause trouble for this type of application. To further ensure confidence in the integrity of WavPack&#039;s compression, the encoder includes a 32-bit error detection code to the generated streams.&lt;br /&gt;
&lt;br /&gt;
WavPack source code is very portable. It has been compiled on several Unices (Linux, Mac OS X, Solaris, FreeBSD, OpenBSD, NetBSD, Compaq Tru64, HP-UX...) as well as Windows, DOS and OpenVMS. It works on architectures such as x86, ARM, PowerPC, SPARC, DEC Alpha, PA-RISC, MIPS, Motorola 68k...&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.wavpack.com/ Official website]&lt;br /&gt;
* [http://www.rarewares.org/lossless.html Unofficial multiplatform versions] at RareWares&lt;br /&gt;
* [[Lossless_comparison|Lossless Codec Comparison]]&lt;br /&gt;
* [[EAC_and_WavPack | Configuring EAC and Wavpack]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Codecs]]&lt;br /&gt;
[[Category:Lossless]]&lt;/div&gt;</summary>
		<author><name>80.42.199.167</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25771</id>
		<title>Free Lossless Audio Codec</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25771"/>
		<updated>2014-04-11T21:01:25Z</updated>

		<summary type="html">&lt;p&gt;80.42.199.167: /* Externals links */ link (web Archive)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Codec Infobox&lt;br /&gt;
| name = FLAC&lt;br /&gt;
| logo = [[Image:FLAC logo.gif]]&lt;br /&gt;
| type = lossless&lt;br /&gt;
| purpose = Popular open source patent free lossless compression scheme.&lt;br /&gt;
| maintainer = Josh Coalson, Xiph Community &lt;br /&gt;
| recommended_encoder = FLAC encoder&lt;br /&gt;
| recommended_text = FLAC v1.3.0 (28-05-2013)&lt;br /&gt;
| website = http://xiph.org/flac/&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Free Lossless Audio Codec&#039;&#039;&#039; (&#039;&#039;&#039;FLAC&#039;&#039;&#039;) is a codec for lossless audio compression.&lt;br /&gt;
Grossly oversimplified, FLAC is similar to [[MP3]], but [[lossless]], meaning that audio is compressed in FLAC without any loss in quality. This is similar to how Zip works, except with FLAC you will get much better compression because it is designed specifically for audio, and you can play back compressed FLAC files in your favorite player (or your car or home stereo, if supported) just like you would an MP3 file.&lt;br /&gt;
&lt;br /&gt;
== General aspects of the format ==&lt;br /&gt;
FLAC is freely available and supported on most operating systems, including Windows, UNIX (Linux, *BSD, Solaris, OS X, IRIX), BeOS, OS/2, and Amiga. There are build systems for autotools, MSVC, Watcom C, and Project Builder.&lt;br /&gt;
&lt;br /&gt;
The FLAC project consists of:&lt;br /&gt;
* the stream format&lt;br /&gt;
* reference encoders and decoders in library form&lt;br /&gt;
* flac, a command-line program to encode and decode FLAC files&lt;br /&gt;
* metaflac, a command-line metadata editor for FLAC files&lt;br /&gt;
* input plugins for various music players&lt;br /&gt;
&lt;br /&gt;
When it&#039;s said that FLAC is &#039;&#039;free&#039;&#039;, it means more than just that it is available at no cost. It means that the specification of the format is fully open to the public to be used for any purpose, although the FLAC project reserves the right to set the FLAC specification and certify compliance. It also means that neither the FLAC format nor any of the implemented encoding/decoding methods are covered by any known patent. And it means that all the source code is available under open-source licenses. It is the first truly open and free lossless audio format.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* &#039;&#039;&#039;Lossless:&#039;&#039;&#039; The encoding of audio (PCM) data incurs no loss of information, and the decoded audio is bit-for-bit identical to what went into the encoder. Each frame contains a 16-bit CRC of the frame data for detecting transmission errors. The integrity of the audio data is further insured by storing an MD5 signature of the original unencoded audio data in the file header, which can be compared against later during decoding or testing.&lt;br /&gt;
* &#039;&#039;&#039;Fast:&#039;&#039;&#039; FLAC is asymmetric in favor of decode speed. Decoding requires only integer arithmetic, and is much less compute-intensive than for most perceptual codecs. Real-time decode performance is easily achievable on even modest hardware.&lt;br /&gt;
* &#039;&#039;&#039;Hardware support:&#039;&#039;&#039; Because of FLAC&#039;s free reference implementation, low decoding complexity and popularity, FLAC has relatively widespread hardware support compared to other lossless formats.&lt;br /&gt;
* &#039;&#039;&#039;Streamable:&#039;&#039;&#039; Each FLAC frame contains enough data to decode that frame. FLAC does not even rely on previous or following frames. FLAC uses sync codes and CRCs (similar to MPEG and other formats), which, along with framing, allow decoders to pick up in the middle of a stream with a minimum of delay.&lt;br /&gt;
* &#039;&#039;&#039;Seekable:&#039;&#039;&#039; FLAC supports fast sample-accurate seeking. Not only is this useful for playback, it makes FLAC files suitable for use in editing applications.&lt;br /&gt;
* &#039;&#039;&#039;Flexible metadata:&#039;&#039;&#039; New metadata blocks can be defined and implemented in future versions of FLAC without breaking older streams or decoders. Currently there are metadata types for tags, cue sheets, and seek tables. Applications can write their own APPLICATION metadata once they register an ID.&lt;br /&gt;
* &#039;&#039;&#039;Suitable for archiving:&#039;&#039;&#039; FLAC is an open format, and there is no generation loss if you need to convert your data to another format in the future. In addition to the frame CRCs and MD5 signature, flac has a verify option that decodes the encoded stream in parallel with the encoding process and compares the result to the original, aborting with an error if there is a mismatch.&lt;br /&gt;
* &#039;&#039;&#039;Convenient CD archiving:&#039;&#039;&#039; FLAC has a &#039;&#039;cue sheet&#039;&#039; metadata block for storing a CD table of contents and all track and index points. For instance, you can rip a CD to a single file, then import the CD&#039;s extracted cue sheet while encoding to yield a single file representation of the entire CD. If your original CD is damaged, the cue sheet can be exported later in order to burn an exact copy.&lt;br /&gt;
* &#039;&#039;&#039;Error resistant:&#039;&#039;&#039; Because of FLAC&#039;s framing, stream errors limit the damage to the frame in which the error occurred, typically a small fraction of a second worth of data. Contrast this with some other lossless codecs, in which a single error destroys the remainder of the stream.&lt;br /&gt;
&lt;br /&gt;
== Pros ==&lt;br /&gt;
* Portable to many systems&lt;br /&gt;
* Open source and freely licensed&lt;br /&gt;
* Hardware support (PhatBox, Kenwood MusicKeg, Rio Karma, etc.  See below)&lt;br /&gt;
* Streaming support&lt;br /&gt;
* Extremely fast decoding&lt;br /&gt;
* Supports multichannel and high resolution streams&lt;br /&gt;
* Supports [[ReplayGain]]&lt;br /&gt;
* Supports cue-sheet (with some limitations)&lt;br /&gt;
* Gaining wide use as successor to [[Shorten]]&lt;br /&gt;
&lt;br /&gt;
== Cons ==&lt;br /&gt;
* Compresses less efficiently than other popular modern compressors ([[Monkey&#039;s Audio]], [[OptimFROG]])&lt;br /&gt;
* Higher compression modes slow, for little gain over the default setting.&lt;br /&gt;
&lt;br /&gt;
== Hardware and software that support FLAC ==&lt;br /&gt;
For a more comprehensive list see the [http://xiph.org/flac/links.html FLAC links page].&lt;br /&gt;
&lt;br /&gt;
=== Hardware ===&lt;br /&gt;
==== Car stereo ====&lt;br /&gt;
* Kenwood [http://www.kenwoodusa.com/Car_Entertainment/In-Dash_CD_Receivers/1-DIN_CD_Receiver/KMM-100U KMM-100U] &amp;amp; KMM-357SD (euro)    &lt;br /&gt;
* Soundstream [http://soundstream.com/store/car-video/source-units.html Source Units]&lt;br /&gt;
&lt;br /&gt;
==== Home stereo ====&lt;br /&gt;
* Olive&#039;s [http://www.olive.us/ Symphony] wireless digital music center&lt;br /&gt;
* [http://www.numark.com/ Numark]&#039;s DJ equipment (HDX and CDX turntables, HDMIX mixer)&lt;br /&gt;
* [http://www.sonos.com/ Sonos Digital Music System]&lt;br /&gt;
* Slim Devices&#039; [http://www.slimdevices.com/pi_squeezebox.html Squeezebox] networked audio players&lt;br /&gt;
 &lt;br /&gt;
==== Portable ====&lt;br /&gt;
* [[Apple iPod]] with [[Rockbox]] firmware&lt;br /&gt;
* [[iAudio M3]], M5 and X5&lt;br /&gt;
* [[iRiver]] iHP-120/iHP-140 with [[Rockbox]] firmware&lt;br /&gt;
* [[Iwod G10]]&lt;br /&gt;
* [[Rio Karma]]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/SanDisk_Sansa SanDisk Sansa]&lt;br /&gt;
* TrekStor&#039;s [http://www.trekstor.de/en/products/detail_mp3.php?pid=66 Vibez]&lt;br /&gt;
* Devices running Android 3.1+&lt;br /&gt;
&lt;br /&gt;
=== Software ===&lt;br /&gt;
==== Players ====&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;Windows&#039;&#039;&#039;&lt;br /&gt;
* [[foobar2000]]&lt;br /&gt;
* [[MediaMonkey]]&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
*[http://mplayerwin.sourceforge.net/ Mplayer]  Console player&lt;br /&gt;
* [http://www.cyberlink.com/products/powerdvd-ultra/features_en_US.html?&amp;amp;r=1 PowerDVD]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [http://www.un4seen.com/ XMplay]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mac&#039;&#039;&#039;&lt;br /&gt;
* [http://cogx.org/ Cog]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linux&#039;&#039;&#039;&lt;br /&gt;
* [http://www.clementine-player.org/ Clementine]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer]&lt;br /&gt;
* [http://www.mythtv.org/ MythTV]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [[XMMS]]&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Windows) ====&lt;br /&gt;
* FLAC frontend - [http://sourceforge.net/projects/flacfrontend/ download] / [http://wiki.hydrogenaudio.org/index.php?title=Download_page discussion] (ktf)&lt;br /&gt;
* Custom [http://members.home.nl/w.speek/flac.htm Windows Frontend] (by Speek)&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Mac) ====&lt;br /&gt;
* [http://www.sbooth.org/Max/ Max]&lt;br /&gt;
 &lt;br /&gt;
==== Converters ====&lt;br /&gt;
* [http://www.dbpoweramp.com/ dBpowerAMP] Music Converter / Audio Player / CD Writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] Music Manager / Audio Player / CD Writer&lt;br /&gt;
&lt;br /&gt;
==== Editors ====&lt;br /&gt;
*[http://audacity.sourceforge.net/ Audacity]&lt;br /&gt;
* [[Adobe Audition]]&lt;br /&gt;
* [http://www.goldwave.com/ GoldWave]&lt;br /&gt;
&lt;br /&gt;
==== CD writers/rippers ====&lt;br /&gt;
* [http://www.nero.com/eng/ Nero]&lt;br /&gt;
* [http://arson.sourceforge.net/ Arson]&lt;br /&gt;
* [http://www.burrrn.net Burrrn] Audio CD burner&lt;br /&gt;
* [[Exact Audio Copy]] CD Ripper&lt;br /&gt;
* [http://cdexos.sourceforge.net CDex] CD ripper&lt;br /&gt;
* [http://www.cdwave.com/ CD Wave]&lt;br /&gt;
* [http://cdburnerxp.se/ CDburner XP] CD writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] - CD ripper/writer&lt;br /&gt;
&lt;br /&gt;
==== Taggers ====&lt;br /&gt;
* [http://www.mp3tag.de/en/index.html Mp3tag] - Universal Tag Editor&lt;br /&gt;
* [http://www.jtclipper.eu/thegodfather/ The GodFather] - Tagger / Music manager&lt;br /&gt;
* [http://sbooth.org/Tag/ Tag] - for Mac OS X 10.4 (Tiger)&lt;br /&gt;
&lt;br /&gt;
* [http://www.synthetic-soul.co.uk/tag/ Case&#039;s Tag]  - Command line tagger&lt;br /&gt;
* [https://xiph.org/flac/documentation_tools_metaflac.html metaflac] - for general metadata (including Vorbis comments) maintenance&lt;br /&gt;
* [[MediaMonkey]] - Tagger / Music manager (Including multiple and linked album art support)&lt;br /&gt;
&lt;br /&gt;
==== Other tools ====&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/ mkvtoolnix] - tool to multiplex FLAC streams inside the Matroska container&lt;br /&gt;
* [https://xiph.org/flac/documentation_tools_metaflac.html metaflac] - for general metadata (including Vorbis comments) maintenance, also to calculate [[ReplayGain]] values for FLAC files lacking such&lt;br /&gt;
&lt;br /&gt;
...and many more; see the [http://flac.sourceforge.net/links.html#software FLAC software section] and [http://flac.sourceforge.net/download.html#extras download section] for a more comprehensive list.&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; Does the compression level affect decompression speed?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: No.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: In truth, the compression level does affect the decompression speed, but the difference between the various compress levels can barely be measured and is too small to be noticed, even on low-end machines.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; What is the best compression level for encoding my music?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: The default setting, 5.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: Encoding at the default setting will give the best balance between compression and encoding speed. Encoding at 8 can more than quadruple the encoding time, while having an insignificant effect on compression.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Lossless]]&lt;br /&gt;
* [[Lossless comparison]]&lt;br /&gt;
* Flac 1.3.0 discussion [http://www.hydrogenaudio.org/forums/index.php?showtopic=101082 here]&lt;br /&gt;
&lt;br /&gt;
== Externals links ==&lt;br /&gt;
* [http://xiph.org/flac/ FLAC website]&lt;br /&gt;
* [http://wiki.hydrogenaudio.org/index.php?title=Download_page#Encoders.2C_Decoders.2C_Etc. FLAC download]&lt;br /&gt;
* [http://xiph.org/flac/format.html Detailed description of the FLAC format]&lt;br /&gt;
* [http://xiph.org/flac/documentation.html FLAC documentation]&lt;br /&gt;
* [http://xiph.org/flac/faq.html FLAC FAQ]&lt;br /&gt;
* [http://web.archive.org/web/20091108104748/http://people.ucsc.edu/~rswilson/flactest Omion&#039;s FLAC &amp;quot;File Size vs. Decoding Speed&amp;quot; test]- a very thorough test on [[Free Lossless Audio Codec#Frequently Asked Questions|the influence of the chosen encoding level on the decoding speed of FLAC]]; the only one so far to have covered FLAC&#039;s --super-secret-totally-impractical-compression-level to this extent as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Lossless]]&lt;br /&gt;
[[Category:Encoder/Decoder]]&lt;/div&gt;</summary>
		<author><name>80.42.199.167</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25770</id>
		<title>Free Lossless Audio Codec</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25770"/>
		<updated>2014-04-11T20:54:36Z</updated>

		<summary type="html">&lt;p&gt;80.42.199.167: /* Taggers */ Taggers edits&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Codec Infobox&lt;br /&gt;
| name = FLAC&lt;br /&gt;
| logo = [[Image:FLAC logo.gif]]&lt;br /&gt;
| type = lossless&lt;br /&gt;
| purpose = Popular open source patent free lossless compression scheme.&lt;br /&gt;
| maintainer = Josh Coalson, Xiph Community &lt;br /&gt;
| recommended_encoder = FLAC encoder&lt;br /&gt;
| recommended_text = FLAC v1.3.0 (28-05-2013)&lt;br /&gt;
| website = http://xiph.org/flac/&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Free Lossless Audio Codec&#039;&#039;&#039; (&#039;&#039;&#039;FLAC&#039;&#039;&#039;) is a codec for lossless audio compression.&lt;br /&gt;
Grossly oversimplified, FLAC is similar to [[MP3]], but [[lossless]], meaning that audio is compressed in FLAC without any loss in quality. This is similar to how Zip works, except with FLAC you will get much better compression because it is designed specifically for audio, and you can play back compressed FLAC files in your favorite player (or your car or home stereo, if supported) just like you would an MP3 file.&lt;br /&gt;
&lt;br /&gt;
== General aspects of the format ==&lt;br /&gt;
FLAC is freely available and supported on most operating systems, including Windows, UNIX (Linux, *BSD, Solaris, OS X, IRIX), BeOS, OS/2, and Amiga. There are build systems for autotools, MSVC, Watcom C, and Project Builder.&lt;br /&gt;
&lt;br /&gt;
The FLAC project consists of:&lt;br /&gt;
* the stream format&lt;br /&gt;
* reference encoders and decoders in library form&lt;br /&gt;
* flac, a command-line program to encode and decode FLAC files&lt;br /&gt;
* metaflac, a command-line metadata editor for FLAC files&lt;br /&gt;
* input plugins for various music players&lt;br /&gt;
&lt;br /&gt;
When it&#039;s said that FLAC is &#039;&#039;free&#039;&#039;, it means more than just that it is available at no cost. It means that the specification of the format is fully open to the public to be used for any purpose, although the FLAC project reserves the right to set the FLAC specification and certify compliance. It also means that neither the FLAC format nor any of the implemented encoding/decoding methods are covered by any known patent. And it means that all the source code is available under open-source licenses. It is the first truly open and free lossless audio format.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* &#039;&#039;&#039;Lossless:&#039;&#039;&#039; The encoding of audio (PCM) data incurs no loss of information, and the decoded audio is bit-for-bit identical to what went into the encoder. Each frame contains a 16-bit CRC of the frame data for detecting transmission errors. The integrity of the audio data is further insured by storing an MD5 signature of the original unencoded audio data in the file header, which can be compared against later during decoding or testing.&lt;br /&gt;
* &#039;&#039;&#039;Fast:&#039;&#039;&#039; FLAC is asymmetric in favor of decode speed. Decoding requires only integer arithmetic, and is much less compute-intensive than for most perceptual codecs. Real-time decode performance is easily achievable on even modest hardware.&lt;br /&gt;
* &#039;&#039;&#039;Hardware support:&#039;&#039;&#039; Because of FLAC&#039;s free reference implementation, low decoding complexity and popularity, FLAC has relatively widespread hardware support compared to other lossless formats.&lt;br /&gt;
* &#039;&#039;&#039;Streamable:&#039;&#039;&#039; Each FLAC frame contains enough data to decode that frame. FLAC does not even rely on previous or following frames. FLAC uses sync codes and CRCs (similar to MPEG and other formats), which, along with framing, allow decoders to pick up in the middle of a stream with a minimum of delay.&lt;br /&gt;
* &#039;&#039;&#039;Seekable:&#039;&#039;&#039; FLAC supports fast sample-accurate seeking. Not only is this useful for playback, it makes FLAC files suitable for use in editing applications.&lt;br /&gt;
* &#039;&#039;&#039;Flexible metadata:&#039;&#039;&#039; New metadata blocks can be defined and implemented in future versions of FLAC without breaking older streams or decoders. Currently there are metadata types for tags, cue sheets, and seek tables. Applications can write their own APPLICATION metadata once they register an ID.&lt;br /&gt;
* &#039;&#039;&#039;Suitable for archiving:&#039;&#039;&#039; FLAC is an open format, and there is no generation loss if you need to convert your data to another format in the future. In addition to the frame CRCs and MD5 signature, flac has a verify option that decodes the encoded stream in parallel with the encoding process and compares the result to the original, aborting with an error if there is a mismatch.&lt;br /&gt;
* &#039;&#039;&#039;Convenient CD archiving:&#039;&#039;&#039; FLAC has a &#039;&#039;cue sheet&#039;&#039; metadata block for storing a CD table of contents and all track and index points. For instance, you can rip a CD to a single file, then import the CD&#039;s extracted cue sheet while encoding to yield a single file representation of the entire CD. If your original CD is damaged, the cue sheet can be exported later in order to burn an exact copy.&lt;br /&gt;
* &#039;&#039;&#039;Error resistant:&#039;&#039;&#039; Because of FLAC&#039;s framing, stream errors limit the damage to the frame in which the error occurred, typically a small fraction of a second worth of data. Contrast this with some other lossless codecs, in which a single error destroys the remainder of the stream.&lt;br /&gt;
&lt;br /&gt;
== Pros ==&lt;br /&gt;
* Portable to many systems&lt;br /&gt;
* Open source and freely licensed&lt;br /&gt;
* Hardware support (PhatBox, Kenwood MusicKeg, Rio Karma, etc.  See below)&lt;br /&gt;
* Streaming support&lt;br /&gt;
* Extremely fast decoding&lt;br /&gt;
* Supports multichannel and high resolution streams&lt;br /&gt;
* Supports [[ReplayGain]]&lt;br /&gt;
* Supports cue-sheet (with some limitations)&lt;br /&gt;
* Gaining wide use as successor to [[Shorten]]&lt;br /&gt;
&lt;br /&gt;
== Cons ==&lt;br /&gt;
* Compresses less efficiently than other popular modern compressors ([[Monkey&#039;s Audio]], [[OptimFROG]])&lt;br /&gt;
* Higher compression modes slow, for little gain over the default setting.&lt;br /&gt;
&lt;br /&gt;
== Hardware and software that support FLAC ==&lt;br /&gt;
For a more comprehensive list see the [http://xiph.org/flac/links.html FLAC links page].&lt;br /&gt;
&lt;br /&gt;
=== Hardware ===&lt;br /&gt;
==== Car stereo ====&lt;br /&gt;
* Kenwood [http://www.kenwoodusa.com/Car_Entertainment/In-Dash_CD_Receivers/1-DIN_CD_Receiver/KMM-100U KMM-100U] &amp;amp; KMM-357SD (euro)    &lt;br /&gt;
* Soundstream [http://soundstream.com/store/car-video/source-units.html Source Units]&lt;br /&gt;
&lt;br /&gt;
==== Home stereo ====&lt;br /&gt;
* Olive&#039;s [http://www.olive.us/ Symphony] wireless digital music center&lt;br /&gt;
* [http://www.numark.com/ Numark]&#039;s DJ equipment (HDX and CDX turntables, HDMIX mixer)&lt;br /&gt;
* [http://www.sonos.com/ Sonos Digital Music System]&lt;br /&gt;
* Slim Devices&#039; [http://www.slimdevices.com/pi_squeezebox.html Squeezebox] networked audio players&lt;br /&gt;
 &lt;br /&gt;
==== Portable ====&lt;br /&gt;
* [[Apple iPod]] with [[Rockbox]] firmware&lt;br /&gt;
* [[iAudio M3]], M5 and X5&lt;br /&gt;
* [[iRiver]] iHP-120/iHP-140 with [[Rockbox]] firmware&lt;br /&gt;
* [[Iwod G10]]&lt;br /&gt;
* [[Rio Karma]]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/SanDisk_Sansa SanDisk Sansa]&lt;br /&gt;
* TrekStor&#039;s [http://www.trekstor.de/en/products/detail_mp3.php?pid=66 Vibez]&lt;br /&gt;
* Devices running Android 3.1+&lt;br /&gt;
&lt;br /&gt;
=== Software ===&lt;br /&gt;
==== Players ====&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;Windows&#039;&#039;&#039;&lt;br /&gt;
* [[foobar2000]]&lt;br /&gt;
* [[MediaMonkey]]&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
*[http://mplayerwin.sourceforge.net/ Mplayer]  Console player&lt;br /&gt;
* [http://www.cyberlink.com/products/powerdvd-ultra/features_en_US.html?&amp;amp;r=1 PowerDVD]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [http://www.un4seen.com/ XMplay]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mac&#039;&#039;&#039;&lt;br /&gt;
* [http://cogx.org/ Cog]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linux&#039;&#039;&#039;&lt;br /&gt;
* [http://www.clementine-player.org/ Clementine]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer]&lt;br /&gt;
* [http://www.mythtv.org/ MythTV]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [[XMMS]]&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Windows) ====&lt;br /&gt;
* FLAC frontend - [http://sourceforge.net/projects/flacfrontend/ download] / [http://wiki.hydrogenaudio.org/index.php?title=Download_page discussion] (ktf)&lt;br /&gt;
* Custom [http://members.home.nl/w.speek/flac.htm Windows Frontend] (by Speek)&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Mac) ====&lt;br /&gt;
* [http://www.sbooth.org/Max/ Max]&lt;br /&gt;
 &lt;br /&gt;
==== Converters ====&lt;br /&gt;
* [http://www.dbpoweramp.com/ dBpowerAMP] Music Converter / Audio Player / CD Writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] Music Manager / Audio Player / CD Writer&lt;br /&gt;
&lt;br /&gt;
==== Editors ====&lt;br /&gt;
*[http://audacity.sourceforge.net/ Audacity]&lt;br /&gt;
* [[Adobe Audition]]&lt;br /&gt;
* [http://www.goldwave.com/ GoldWave]&lt;br /&gt;
&lt;br /&gt;
==== CD writers/rippers ====&lt;br /&gt;
* [http://www.nero.com/eng/ Nero]&lt;br /&gt;
* [http://arson.sourceforge.net/ Arson]&lt;br /&gt;
* [http://www.burrrn.net Burrrn] Audio CD burner&lt;br /&gt;
* [[Exact Audio Copy]] CD Ripper&lt;br /&gt;
* [http://cdexos.sourceforge.net CDex] CD ripper&lt;br /&gt;
* [http://www.cdwave.com/ CD Wave]&lt;br /&gt;
* [http://cdburnerxp.se/ CDburner XP] CD writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] - CD ripper/writer&lt;br /&gt;
&lt;br /&gt;
==== Taggers ====&lt;br /&gt;
* [http://www.mp3tag.de/en/index.html Mp3tag] - Universal Tag Editor&lt;br /&gt;
* [http://www.jtclipper.eu/thegodfather/ The GodFather] - Tagger / Music manager&lt;br /&gt;
* [http://sbooth.org/Tag/ Tag] - for Mac OS X 10.4 (Tiger)&lt;br /&gt;
&lt;br /&gt;
* [http://www.synthetic-soul.co.uk/tag/ Case&#039;s Tag]  - Command line tagger&lt;br /&gt;
* [https://xiph.org/flac/documentation_tools_metaflac.html metaflac] - for general metadata (including Vorbis comments) maintenance&lt;br /&gt;
* [[MediaMonkey]] - Tagger / Music manager (Including multiple and linked album art support)&lt;br /&gt;
&lt;br /&gt;
==== Other tools ====&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/ mkvtoolnix] - tool to multiplex FLAC streams inside the Matroska container&lt;br /&gt;
* [https://xiph.org/flac/documentation_tools_metaflac.html metaflac] - for general metadata (including Vorbis comments) maintenance, also to calculate [[ReplayGain]] values for FLAC files lacking such&lt;br /&gt;
&lt;br /&gt;
...and many more; see the [http://flac.sourceforge.net/links.html#software FLAC software section] and [http://flac.sourceforge.net/download.html#extras download section] for a more comprehensive list.&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; Does the compression level affect decompression speed?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: No.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: In truth, the compression level does affect the decompression speed, but the difference between the various compress levels can barely be measured and is too small to be noticed, even on low-end machines.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; What is the best compression level for encoding my music?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: The default setting, 5.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: Encoding at the default setting will give the best balance between compression and encoding speed. Encoding at 8 can more than quadruple the encoding time, while having an insignificant effect on compression.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Lossless]]&lt;br /&gt;
* [[Lossless comparison]]&lt;br /&gt;
* Flac 1.3.0 discussion [http://www.hydrogenaudio.org/forums/index.php?showtopic=101082 here]&lt;br /&gt;
&lt;br /&gt;
== Externals links ==&lt;br /&gt;
* [http://xiph.org/flac/ FLAC website]&lt;br /&gt;
* [http://wiki.hydrogenaudio.org/index.php?title=Download_page#Encoders.2C_Decoders.2C_Etc. FLAC download]&lt;br /&gt;
* [http://xiph.org/flac/format.html Detailed description of the FLAC format]&lt;br /&gt;
* [http://xiph.org/flac/documentation.html FLAC documentation]&lt;br /&gt;
* [http://xiph.org/flac/faq.html FLAC FAQ]&lt;br /&gt;
* &amp;lt;s&amp;gt; Omion&#039;s FLAC &amp;quot;File Size vs. Decoding Speed&amp;quot; test&amp;lt;/s&amp;gt; - a very thorough test on [[Free Lossless Audio Codec#Frequently Asked Questions|the influence of the chosen encoding level on the decoding speed of FLAC]]; the only one so far to have covered FLAC&#039;s --super-secret-totally-impractical-compression-level to this extent as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Lossless]]&lt;br /&gt;
[[Category:Encoder/Decoder]]&lt;/div&gt;</summary>
		<author><name>80.42.199.167</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25769</id>
		<title>Free Lossless Audio Codec</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25769"/>
		<updated>2014-04-11T20:46:50Z</updated>

		<summary type="html">&lt;p&gt;80.42.199.167: correction on audio compression&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Codec Infobox&lt;br /&gt;
| name = FLAC&lt;br /&gt;
| logo = [[Image:FLAC logo.gif]]&lt;br /&gt;
| type = lossless&lt;br /&gt;
| purpose = Popular open source patent free lossless compression scheme.&lt;br /&gt;
| maintainer = Josh Coalson, Xiph Community &lt;br /&gt;
| recommended_encoder = FLAC encoder&lt;br /&gt;
| recommended_text = FLAC v1.3.0 (28-05-2013)&lt;br /&gt;
| website = http://xiph.org/flac/&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Free Lossless Audio Codec&#039;&#039;&#039; (&#039;&#039;&#039;FLAC&#039;&#039;&#039;) is a codec for lossless audio compression.&lt;br /&gt;
Grossly oversimplified, FLAC is similar to [[MP3]], but [[lossless]], meaning that audio is compressed in FLAC without any loss in quality. This is similar to how Zip works, except with FLAC you will get much better compression because it is designed specifically for audio, and you can play back compressed FLAC files in your favorite player (or your car or home stereo, if supported) just like you would an MP3 file.&lt;br /&gt;
&lt;br /&gt;
== General aspects of the format ==&lt;br /&gt;
FLAC is freely available and supported on most operating systems, including Windows, UNIX (Linux, *BSD, Solaris, OS X, IRIX), BeOS, OS/2, and Amiga. There are build systems for autotools, MSVC, Watcom C, and Project Builder.&lt;br /&gt;
&lt;br /&gt;
The FLAC project consists of:&lt;br /&gt;
* the stream format&lt;br /&gt;
* reference encoders and decoders in library form&lt;br /&gt;
* flac, a command-line program to encode and decode FLAC files&lt;br /&gt;
* metaflac, a command-line metadata editor for FLAC files&lt;br /&gt;
* input plugins for various music players&lt;br /&gt;
&lt;br /&gt;
When it&#039;s said that FLAC is &#039;&#039;free&#039;&#039;, it means more than just that it is available at no cost. It means that the specification of the format is fully open to the public to be used for any purpose, although the FLAC project reserves the right to set the FLAC specification and certify compliance. It also means that neither the FLAC format nor any of the implemented encoding/decoding methods are covered by any known patent. And it means that all the source code is available under open-source licenses. It is the first truly open and free lossless audio format.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* &#039;&#039;&#039;Lossless:&#039;&#039;&#039; The encoding of audio (PCM) data incurs no loss of information, and the decoded audio is bit-for-bit identical to what went into the encoder. Each frame contains a 16-bit CRC of the frame data for detecting transmission errors. The integrity of the audio data is further insured by storing an MD5 signature of the original unencoded audio data in the file header, which can be compared against later during decoding or testing.&lt;br /&gt;
* &#039;&#039;&#039;Fast:&#039;&#039;&#039; FLAC is asymmetric in favor of decode speed. Decoding requires only integer arithmetic, and is much less compute-intensive than for most perceptual codecs. Real-time decode performance is easily achievable on even modest hardware.&lt;br /&gt;
* &#039;&#039;&#039;Hardware support:&#039;&#039;&#039; Because of FLAC&#039;s free reference implementation, low decoding complexity and popularity, FLAC has relatively widespread hardware support compared to other lossless formats.&lt;br /&gt;
* &#039;&#039;&#039;Streamable:&#039;&#039;&#039; Each FLAC frame contains enough data to decode that frame. FLAC does not even rely on previous or following frames. FLAC uses sync codes and CRCs (similar to MPEG and other formats), which, along with framing, allow decoders to pick up in the middle of a stream with a minimum of delay.&lt;br /&gt;
* &#039;&#039;&#039;Seekable:&#039;&#039;&#039; FLAC supports fast sample-accurate seeking. Not only is this useful for playback, it makes FLAC files suitable for use in editing applications.&lt;br /&gt;
* &#039;&#039;&#039;Flexible metadata:&#039;&#039;&#039; New metadata blocks can be defined and implemented in future versions of FLAC without breaking older streams or decoders. Currently there are metadata types for tags, cue sheets, and seek tables. Applications can write their own APPLICATION metadata once they register an ID.&lt;br /&gt;
* &#039;&#039;&#039;Suitable for archiving:&#039;&#039;&#039; FLAC is an open format, and there is no generation loss if you need to convert your data to another format in the future. In addition to the frame CRCs and MD5 signature, flac has a verify option that decodes the encoded stream in parallel with the encoding process and compares the result to the original, aborting with an error if there is a mismatch.&lt;br /&gt;
* &#039;&#039;&#039;Convenient CD archiving:&#039;&#039;&#039; FLAC has a &#039;&#039;cue sheet&#039;&#039; metadata block for storing a CD table of contents and all track and index points. For instance, you can rip a CD to a single file, then import the CD&#039;s extracted cue sheet while encoding to yield a single file representation of the entire CD. If your original CD is damaged, the cue sheet can be exported later in order to burn an exact copy.&lt;br /&gt;
* &#039;&#039;&#039;Error resistant:&#039;&#039;&#039; Because of FLAC&#039;s framing, stream errors limit the damage to the frame in which the error occurred, typically a small fraction of a second worth of data. Contrast this with some other lossless codecs, in which a single error destroys the remainder of the stream.&lt;br /&gt;
&lt;br /&gt;
== Pros ==&lt;br /&gt;
* Portable to many systems&lt;br /&gt;
* Open source and freely licensed&lt;br /&gt;
* Hardware support (PhatBox, Kenwood MusicKeg, Rio Karma, etc.  See below)&lt;br /&gt;
* Streaming support&lt;br /&gt;
* Extremely fast decoding&lt;br /&gt;
* Supports multichannel and high resolution streams&lt;br /&gt;
* Supports [[ReplayGain]]&lt;br /&gt;
* Supports cue-sheet (with some limitations)&lt;br /&gt;
* Gaining wide use as successor to [[Shorten]]&lt;br /&gt;
&lt;br /&gt;
== Cons ==&lt;br /&gt;
* Compresses less efficiently than other popular modern compressors ([[Monkey&#039;s Audio]], [[OptimFROG]])&lt;br /&gt;
* Higher compression modes slow, for little gain over the default setting.&lt;br /&gt;
&lt;br /&gt;
== Hardware and software that support FLAC ==&lt;br /&gt;
For a more comprehensive list see the [http://xiph.org/flac/links.html FLAC links page].&lt;br /&gt;
&lt;br /&gt;
=== Hardware ===&lt;br /&gt;
==== Car stereo ====&lt;br /&gt;
* Kenwood [http://www.kenwoodusa.com/Car_Entertainment/In-Dash_CD_Receivers/1-DIN_CD_Receiver/KMM-100U KMM-100U] &amp;amp; KMM-357SD (euro)    &lt;br /&gt;
* Soundstream [http://soundstream.com/store/car-video/source-units.html Source Units]&lt;br /&gt;
&lt;br /&gt;
==== Home stereo ====&lt;br /&gt;
* Olive&#039;s [http://www.olive.us/ Symphony] wireless digital music center&lt;br /&gt;
* [http://www.numark.com/ Numark]&#039;s DJ equipment (HDX and CDX turntables, HDMIX mixer)&lt;br /&gt;
* [http://www.sonos.com/ Sonos Digital Music System]&lt;br /&gt;
* Slim Devices&#039; [http://www.slimdevices.com/pi_squeezebox.html Squeezebox] networked audio players&lt;br /&gt;
 &lt;br /&gt;
==== Portable ====&lt;br /&gt;
* [[Apple iPod]] with [[Rockbox]] firmware&lt;br /&gt;
* [[iAudio M3]], M5 and X5&lt;br /&gt;
* [[iRiver]] iHP-120/iHP-140 with [[Rockbox]] firmware&lt;br /&gt;
* [[Iwod G10]]&lt;br /&gt;
* [[Rio Karma]]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/SanDisk_Sansa SanDisk Sansa]&lt;br /&gt;
* TrekStor&#039;s [http://www.trekstor.de/en/products/detail_mp3.php?pid=66 Vibez]&lt;br /&gt;
* Devices running Android 3.1+&lt;br /&gt;
&lt;br /&gt;
=== Software ===&lt;br /&gt;
==== Players ====&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;Windows&#039;&#039;&#039;&lt;br /&gt;
* [[foobar2000]]&lt;br /&gt;
* [[MediaMonkey]]&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
*[http://mplayerwin.sourceforge.net/ Mplayer]  Console player&lt;br /&gt;
* [http://www.cyberlink.com/products/powerdvd-ultra/features_en_US.html?&amp;amp;r=1 PowerDVD]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [http://www.un4seen.com/ XMplay]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mac&#039;&#039;&#039;&lt;br /&gt;
* [http://cogx.org/ Cog]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linux&#039;&#039;&#039;&lt;br /&gt;
* [http://www.clementine-player.org/ Clementine]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer]&lt;br /&gt;
* [http://www.mythtv.org/ MythTV]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [[XMMS]]&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Windows) ====&lt;br /&gt;
* FLAC frontend - [http://sourceforge.net/projects/flacfrontend/ download] / [http://wiki.hydrogenaudio.org/index.php?title=Download_page discussion] (ktf)&lt;br /&gt;
* Custom [http://members.home.nl/w.speek/flac.htm Windows Frontend] (by Speek)&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Mac) ====&lt;br /&gt;
* [http://www.sbooth.org/Max/ Max]&lt;br /&gt;
 &lt;br /&gt;
==== Converters ====&lt;br /&gt;
* [http://www.dbpoweramp.com/ dBpowerAMP] Music Converter / Audio Player / CD Writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] Music Manager / Audio Player / CD Writer&lt;br /&gt;
&lt;br /&gt;
==== Editors ====&lt;br /&gt;
*[http://audacity.sourceforge.net/ Audacity]&lt;br /&gt;
* [[Adobe Audition]]&lt;br /&gt;
* [http://www.goldwave.com/ GoldWave]&lt;br /&gt;
&lt;br /&gt;
==== CD writers/rippers ====&lt;br /&gt;
* [http://www.nero.com/eng/ Nero]&lt;br /&gt;
* [http://arson.sourceforge.net/ Arson]&lt;br /&gt;
* [http://www.burrrn.net Burrrn] Audio CD burner&lt;br /&gt;
* [[Exact Audio Copy]] CD Ripper&lt;br /&gt;
* [http://cdexos.sourceforge.net CDex] CD ripper&lt;br /&gt;
* [http://www.cdwave.com/ CD Wave]&lt;br /&gt;
* [http://cdburnerxp.se/ CDburner XP] CD writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] - CD ripper/writer&lt;br /&gt;
&lt;br /&gt;
==== Taggers ====&lt;br /&gt;
* [http://www.synthetic-soul.co.uk/tag/ Case&#039;s Tag] command line tagger&lt;br /&gt;
* [http://www.jtclipper.eu/thegodfather/ The GodFather] Tagger / Music manager&lt;br /&gt;
* [http://www.mp3tag.de/en/index.html Mp3tag] Universal Tag Editor&lt;br /&gt;
* [http://sbooth.org/Tag/ Tag] — for Mac OS X 10.4 (Tiger)&lt;br /&gt;
* [https://xiph.org/flac/documentation_tools_metaflac.html metaflac] - for general metadata (including Vorbis comments) maintenance&lt;br /&gt;
* [http://www.mediamonkey.com MediaMonkey] - [[MediaMonkey]] Tagger / Music manager (Including Multiple and Linked Album Art support)&lt;br /&gt;
&lt;br /&gt;
==== Other tools ====&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/ mkvtoolnix] - tool to multiplex FLAC streams inside the Matroska container&lt;br /&gt;
* [https://xiph.org/flac/documentation_tools_metaflac.html metaflac] - for general metadata (including Vorbis comments) maintenance, also to calculate [[ReplayGain]] values for FLAC files lacking such&lt;br /&gt;
&lt;br /&gt;
...and many more; see the [http://flac.sourceforge.net/links.html#software FLAC software section] and [http://flac.sourceforge.net/download.html#extras download section] for a more comprehensive list.&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; Does the compression level affect decompression speed?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: No.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: In truth, the compression level does affect the decompression speed, but the difference between the various compress levels can barely be measured and is too small to be noticed, even on low-end machines.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; What is the best compression level for encoding my music?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: The default setting, 5.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: Encoding at the default setting will give the best balance between compression and encoding speed. Encoding at 8 can more than quadruple the encoding time, while having an insignificant effect on compression.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Lossless]]&lt;br /&gt;
* [[Lossless comparison]]&lt;br /&gt;
* Flac 1.3.0 discussion [http://www.hydrogenaudio.org/forums/index.php?showtopic=101082 here]&lt;br /&gt;
&lt;br /&gt;
== Externals links ==&lt;br /&gt;
* [http://xiph.org/flac/ FLAC website]&lt;br /&gt;
* [http://wiki.hydrogenaudio.org/index.php?title=Download_page#Encoders.2C_Decoders.2C_Etc. FLAC download]&lt;br /&gt;
* [http://xiph.org/flac/format.html Detailed description of the FLAC format]&lt;br /&gt;
* [http://xiph.org/flac/documentation.html FLAC documentation]&lt;br /&gt;
* [http://xiph.org/flac/faq.html FLAC FAQ]&lt;br /&gt;
* &amp;lt;s&amp;gt; Omion&#039;s FLAC &amp;quot;File Size vs. Decoding Speed&amp;quot; test&amp;lt;/s&amp;gt; - a very thorough test on [[Free Lossless Audio Codec#Frequently Asked Questions|the influence of the chosen encoding level on the decoding speed of FLAC]]; the only one so far to have covered FLAC&#039;s --super-secret-totally-impractical-compression-level to this extent as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Lossless]]&lt;br /&gt;
[[Category:Encoder/Decoder]]&lt;/div&gt;</summary>
		<author><name>80.42.199.167</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25768</id>
		<title>Free Lossless Audio Codec</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25768"/>
		<updated>2014-04-11T20:34:46Z</updated>

		<summary type="html">&lt;p&gt;80.42.199.167: metaflac link, &amp;amp; re-edit on Editors&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Codec Infobox&lt;br /&gt;
| name = FLAC&lt;br /&gt;
| logo = [[Image:FLAC logo.gif]]&lt;br /&gt;
| type = lossless&lt;br /&gt;
| purpose = Popular open source patent free lossless compression scheme.&lt;br /&gt;
| maintainer = Josh Coalson, Xiph Community &lt;br /&gt;
| recommended_encoder = FLAC encoder&lt;br /&gt;
| recommended_text = FLAC v1.3.0 (28-05-2013)&lt;br /&gt;
| website = http://xiph.org/flac/&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Free Lossless Audio Codec&#039;&#039;&#039; (&#039;&#039;&#039;FLAC&#039;&#039;&#039;) is a codec for lossless audiocompression.&lt;br /&gt;
Grossly oversimplified, FLAC is similar to [[MP3]], but [[lossless]], meaning that audio is compressed in FLAC without any loss in quality. This is similar to how Zip works, except with FLAC you will get much better compression because it is designed specifically for audio, and you can play back compressed FLAC files in your favorite player (or your car or home stereo, if supported) just like you would an MP3 file.&lt;br /&gt;
&lt;br /&gt;
== General aspects of the format ==&lt;br /&gt;
FLAC is freely available and supported on most operating systems, including Windows, UNIX (Linux, *BSD, Solaris, OS X, IRIX), BeOS, OS/2, and Amiga. There are build systems for autotools, MSVC, Watcom C, and Project Builder.&lt;br /&gt;
&lt;br /&gt;
The FLAC project consists of:&lt;br /&gt;
* the stream format&lt;br /&gt;
* reference encoders and decoders in library form&lt;br /&gt;
* flac, a command-line program to encode and decode FLAC files&lt;br /&gt;
* metaflac, a command-line metadata editor for FLAC files&lt;br /&gt;
* input plugins for various music players&lt;br /&gt;
&lt;br /&gt;
When it&#039;s said that FLAC is &#039;&#039;free&#039;&#039;, it means more than just that it is available at no cost. It means that the specification of the format is fully open to the public to be used for any purpose, although the FLAC project reserves the right to set the FLAC specification and certify compliance. It also means that neither the FLAC format nor any of the implemented encoding/decoding methods are covered by any known patent. And it means that all the source code is available under open-source licenses. It is the first truly open and free lossless audio format.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* &#039;&#039;&#039;Lossless:&#039;&#039;&#039; The encoding of audio (PCM) data incurs no loss of information, and the decoded audio is bit-for-bit identical to what went into the encoder. Each frame contains a 16-bit CRC of the frame data for detecting transmission errors. The integrity of the audio data is further insured by storing an MD5 signature of the original unencoded audio data in the file header, which can be compared against later during decoding or testing.&lt;br /&gt;
* &#039;&#039;&#039;Fast:&#039;&#039;&#039; FLAC is asymmetric in favor of decode speed. Decoding requires only integer arithmetic, and is much less compute-intensive than for most perceptual codecs. Real-time decode performance is easily achievable on even modest hardware.&lt;br /&gt;
* &#039;&#039;&#039;Hardware support:&#039;&#039;&#039; Because of FLAC&#039;s free reference implementation, low decoding complexity and popularity, FLAC has relatively widespread hardware support compared to other lossless formats.&lt;br /&gt;
* &#039;&#039;&#039;Streamable:&#039;&#039;&#039; Each FLAC frame contains enough data to decode that frame. FLAC does not even rely on previous or following frames. FLAC uses sync codes and CRCs (similar to MPEG and other formats), which, along with framing, allow decoders to pick up in the middle of a stream with a minimum of delay.&lt;br /&gt;
* &#039;&#039;&#039;Seekable:&#039;&#039;&#039; FLAC supports fast sample-accurate seeking. Not only is this useful for playback, it makes FLAC files suitable for use in editing applications.&lt;br /&gt;
* &#039;&#039;&#039;Flexible metadata:&#039;&#039;&#039; New metadata blocks can be defined and implemented in future versions of FLAC without breaking older streams or decoders. Currently there are metadata types for tags, cue sheets, and seek tables. Applications can write their own APPLICATION metadata once they register an ID.&lt;br /&gt;
* &#039;&#039;&#039;Suitable for archiving:&#039;&#039;&#039; FLAC is an open format, and there is no generation loss if you need to convert your data to another format in the future. In addition to the frame CRCs and MD5 signature, flac has a verify option that decodes the encoded stream in parallel with the encoding process and compares the result to the original, aborting with an error if there is a mismatch.&lt;br /&gt;
* &#039;&#039;&#039;Convenient CD archiving:&#039;&#039;&#039; FLAC has a &#039;&#039;cue sheet&#039;&#039; metadata block for storing a CD table of contents and all track and index points. For instance, you can rip a CD to a single file, then import the CD&#039;s extracted cue sheet while encoding to yield a single file representation of the entire CD. If your original CD is damaged, the cue sheet can be exported later in order to burn an exact copy.&lt;br /&gt;
* &#039;&#039;&#039;Error resistant:&#039;&#039;&#039; Because of FLAC&#039;s framing, stream errors limit the damage to the frame in which the error occurred, typically a small fraction of a second worth of data. Contrast this with some other lossless codecs, in which a single error destroys the remainder of the stream.&lt;br /&gt;
&lt;br /&gt;
== Pros ==&lt;br /&gt;
* Portable to many systems&lt;br /&gt;
* Open source and freely licensed&lt;br /&gt;
* Hardware support (PhatBox, Kenwood MusicKeg, Rio Karma, etc.  See below)&lt;br /&gt;
* Streaming support&lt;br /&gt;
* Extremely fast decoding&lt;br /&gt;
* Supports multichannel and high resolution streams&lt;br /&gt;
* Supports [[ReplayGain]]&lt;br /&gt;
* Supports cue-sheet (with some limitations)&lt;br /&gt;
* Gaining wide use as successor to [[Shorten]]&lt;br /&gt;
&lt;br /&gt;
== Cons ==&lt;br /&gt;
* Compresses less efficiently than other popular modern compressors ([[Monkey&#039;s Audio]], [[OptimFROG]])&lt;br /&gt;
* Higher compression modes slow, for little gain over the default setting.&lt;br /&gt;
&lt;br /&gt;
== Hardware and software that support FLAC ==&lt;br /&gt;
For a more comprehensive list see the [http://xiph.org/flac/links.html FLAC links page].&lt;br /&gt;
&lt;br /&gt;
=== Hardware ===&lt;br /&gt;
==== Car stereo ====&lt;br /&gt;
* Kenwood [http://www.kenwoodusa.com/Car_Entertainment/In-Dash_CD_Receivers/1-DIN_CD_Receiver/KMM-100U KMM-100U] &amp;amp; KMM-357SD (euro)    &lt;br /&gt;
* Soundstream [http://soundstream.com/store/car-video/source-units.html Source Units]&lt;br /&gt;
&lt;br /&gt;
==== Home stereo ====&lt;br /&gt;
* Olive&#039;s [http://www.olive.us/ Symphony] wireless digital music center&lt;br /&gt;
* [http://www.numark.com/ Numark]&#039;s DJ equipment (HDX and CDX turntables, HDMIX mixer)&lt;br /&gt;
* [http://www.sonos.com/ Sonos Digital Music System]&lt;br /&gt;
* Slim Devices&#039; [http://www.slimdevices.com/pi_squeezebox.html Squeezebox] networked audio players&lt;br /&gt;
 &lt;br /&gt;
==== Portable ====&lt;br /&gt;
* [[Apple iPod]] with [[Rockbox]] firmware&lt;br /&gt;
* [[iAudio M3]], M5 and X5&lt;br /&gt;
* [[iRiver]] iHP-120/iHP-140 with [[Rockbox]] firmware&lt;br /&gt;
* [[Iwod G10]]&lt;br /&gt;
* [[Rio Karma]]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/SanDisk_Sansa SanDisk Sansa]&lt;br /&gt;
* TrekStor&#039;s [http://www.trekstor.de/en/products/detail_mp3.php?pid=66 Vibez]&lt;br /&gt;
* Devices running Android 3.1+&lt;br /&gt;
&lt;br /&gt;
=== Software ===&lt;br /&gt;
==== Players ====&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;Windows&#039;&#039;&#039;&lt;br /&gt;
* [[foobar2000]]&lt;br /&gt;
* [[MediaMonkey]]&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
*[http://mplayerwin.sourceforge.net/ Mplayer]  Console player&lt;br /&gt;
* [http://www.cyberlink.com/products/powerdvd-ultra/features_en_US.html?&amp;amp;r=1 PowerDVD]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [http://www.un4seen.com/ XMplay]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mac&#039;&#039;&#039;&lt;br /&gt;
* [http://cogx.org/ Cog]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linux&#039;&#039;&#039;&lt;br /&gt;
* [http://www.clementine-player.org/ Clementine]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer]&lt;br /&gt;
* [http://www.mythtv.org/ MythTV]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [[XMMS]]&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Windows) ====&lt;br /&gt;
* FLAC frontend - [http://sourceforge.net/projects/flacfrontend/ download] / [http://wiki.hydrogenaudio.org/index.php?title=Download_page discussion] (ktf)&lt;br /&gt;
* Custom [http://members.home.nl/w.speek/flac.htm Windows Frontend] (by Speek)&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Mac) ====&lt;br /&gt;
* [http://www.sbooth.org/Max/ Max]&lt;br /&gt;
 &lt;br /&gt;
==== Converters ====&lt;br /&gt;
* [http://www.dbpoweramp.com/ dBpowerAMP] Music Converter / Audio Player / CD Writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] Music Manager / Audio Player / CD Writer&lt;br /&gt;
&lt;br /&gt;
==== Editors ====&lt;br /&gt;
*[http://audacity.sourceforge.net/ Audacity]&lt;br /&gt;
* [[Adobe Audition]]&lt;br /&gt;
* [http://www.goldwave.com/ GoldWave]&lt;br /&gt;
&lt;br /&gt;
==== CD writers/rippers ====&lt;br /&gt;
* [http://www.nero.com/eng/ Nero]&lt;br /&gt;
* [http://arson.sourceforge.net/ Arson]&lt;br /&gt;
* [http://www.burrrn.net Burrrn] Audio CD burner&lt;br /&gt;
* [[Exact Audio Copy]] CD Ripper&lt;br /&gt;
* [http://cdexos.sourceforge.net CDex] CD ripper&lt;br /&gt;
* [http://www.cdwave.com/ CD Wave]&lt;br /&gt;
* [http://cdburnerxp.se/ CDburner XP] CD writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] - CD ripper/writer&lt;br /&gt;
&lt;br /&gt;
==== Taggers ====&lt;br /&gt;
* [http://www.synthetic-soul.co.uk/tag/ Case&#039;s Tag] command line tagger&lt;br /&gt;
* [http://www.jtclipper.eu/thegodfather/ The GodFather] Tagger / Music manager&lt;br /&gt;
* [http://www.mp3tag.de/en/index.html Mp3tag] Universal Tag Editor&lt;br /&gt;
* [http://sbooth.org/Tag/ Tag] — for Mac OS X 10.4 (Tiger)&lt;br /&gt;
* [https://xiph.org/flac/documentation_tools_metaflac.html metaflac] - for general metadata (including Vorbis comments) maintenance&lt;br /&gt;
* [http://www.mediamonkey.com MediaMonkey] - [[MediaMonkey]] Tagger / Music manager (Including Multiple and Linked Album Art support)&lt;br /&gt;
&lt;br /&gt;
==== Other tools ====&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/ mkvtoolnix] - tool to multiplex FLAC streams inside the Matroska container&lt;br /&gt;
* [https://xiph.org/flac/documentation_tools_metaflac.html metaflac] - for general metadata (including Vorbis comments) maintenance, also to calculate [[ReplayGain]] values for FLAC files lacking such&lt;br /&gt;
&lt;br /&gt;
...and many more; see the [http://flac.sourceforge.net/links.html#software FLAC software section] and [http://flac.sourceforge.net/download.html#extras download section] for a more comprehensive list.&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; Does the compression level affect decompression speed?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: No.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: In truth, the compression level does affect the decompression speed, but the difference between the various compress levels can barely be measured and is too small to be noticed, even on low-end machines.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; What is the best compression level for encoding my music?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: The default setting, 5.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: Encoding at the default setting will give the best balance between compression and encoding speed. Encoding at 8 can more than quadruple the encoding time, while having an insignificant effect on compression.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Lossless]]&lt;br /&gt;
* [[Lossless comparison]]&lt;br /&gt;
* Flac 1.3.0 discussion [http://www.hydrogenaudio.org/forums/index.php?showtopic=101082 here]&lt;br /&gt;
&lt;br /&gt;
== Externals links ==&lt;br /&gt;
* [http://xiph.org/flac/ FLAC website]&lt;br /&gt;
* [http://wiki.hydrogenaudio.org/index.php?title=Download_page#Encoders.2C_Decoders.2C_Etc. FLAC download]&lt;br /&gt;
* [http://xiph.org/flac/format.html Detailed description of the FLAC format]&lt;br /&gt;
* [http://xiph.org/flac/documentation.html FLAC documentation]&lt;br /&gt;
* [http://xiph.org/flac/faq.html FLAC FAQ]&lt;br /&gt;
* &amp;lt;s&amp;gt; Omion&#039;s FLAC &amp;quot;File Size vs. Decoding Speed&amp;quot; test&amp;lt;/s&amp;gt; - a very thorough test on [[Free Lossless Audio Codec#Frequently Asked Questions|the influence of the chosen encoding level on the decoding speed of FLAC]]; the only one so far to have covered FLAC&#039;s --super-secret-totally-impractical-compression-level to this extent as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Lossless]]&lt;br /&gt;
[[Category:Encoder/Decoder]]&lt;/div&gt;</summary>
		<author><name>80.42.199.167</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25767</id>
		<title>Free Lossless Audio Codec</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Free_Lossless_Audio_Codec&amp;diff=25767"/>
		<updated>2014-04-11T20:28:14Z</updated>

		<summary type="html">&lt;p&gt;80.42.199.167: /* Players *) layout changes on player&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Codec Infobox&lt;br /&gt;
| name = FLAC&lt;br /&gt;
| logo = [[Image:FLAC logo.gif]]&lt;br /&gt;
| type = lossless&lt;br /&gt;
| purpose = Popular open source patent free lossless compression scheme.&lt;br /&gt;
| maintainer = Josh Coalson, Xiph Community &lt;br /&gt;
| recommended_encoder = FLAC encoder&lt;br /&gt;
| recommended_text = FLAC v1.3.0 (28-05-2013)&lt;br /&gt;
| website = http://xiph.org/flac/&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Free Lossless Audio Codec&#039;&#039;&#039; (&#039;&#039;&#039;FLAC&#039;&#039;&#039;) is a codec for lossless audiocompression.&lt;br /&gt;
Grossly oversimplified, FLAC is similar to [[MP3]], but [[lossless]], meaning that audio is compressed in FLAC without any loss in quality. This is similar to how Zip works, except with FLAC you will get much better compression because it is designed specifically for audio, and you can play back compressed FLAC files in your favorite player (or your car or home stereo, if supported) just like you would an MP3 file.&lt;br /&gt;
&lt;br /&gt;
== General aspects of the format ==&lt;br /&gt;
FLAC is freely available and supported on most operating systems, including Windows, UNIX (Linux, *BSD, Solaris, OS X, IRIX), BeOS, OS/2, and Amiga. There are build systems for autotools, MSVC, Watcom C, and Project Builder.&lt;br /&gt;
&lt;br /&gt;
The FLAC project consists of:&lt;br /&gt;
* the stream format&lt;br /&gt;
* reference encoders and decoders in library form&lt;br /&gt;
* flac, a command-line program to encode and decode FLAC files&lt;br /&gt;
* metaflac, a command-line metadata editor for FLAC files&lt;br /&gt;
* input plugins for various music players&lt;br /&gt;
&lt;br /&gt;
When it&#039;s said that FLAC is &#039;&#039;free&#039;&#039;, it means more than just that it is available at no cost. It means that the specification of the format is fully open to the public to be used for any purpose, although the FLAC project reserves the right to set the FLAC specification and certify compliance. It also means that neither the FLAC format nor any of the implemented encoding/decoding methods are covered by any known patent. And it means that all the source code is available under open-source licenses. It is the first truly open and free lossless audio format.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* &#039;&#039;&#039;Lossless:&#039;&#039;&#039; The encoding of audio (PCM) data incurs no loss of information, and the decoded audio is bit-for-bit identical to what went into the encoder. Each frame contains a 16-bit CRC of the frame data for detecting transmission errors. The integrity of the audio data is further insured by storing an MD5 signature of the original unencoded audio data in the file header, which can be compared against later during decoding or testing.&lt;br /&gt;
* &#039;&#039;&#039;Fast:&#039;&#039;&#039; FLAC is asymmetric in favor of decode speed. Decoding requires only integer arithmetic, and is much less compute-intensive than for most perceptual codecs. Real-time decode performance is easily achievable on even modest hardware.&lt;br /&gt;
* &#039;&#039;&#039;Hardware support:&#039;&#039;&#039; Because of FLAC&#039;s free reference implementation, low decoding complexity and popularity, FLAC has relatively widespread hardware support compared to other lossless formats.&lt;br /&gt;
* &#039;&#039;&#039;Streamable:&#039;&#039;&#039; Each FLAC frame contains enough data to decode that frame. FLAC does not even rely on previous or following frames. FLAC uses sync codes and CRCs (similar to MPEG and other formats), which, along with framing, allow decoders to pick up in the middle of a stream with a minimum of delay.&lt;br /&gt;
* &#039;&#039;&#039;Seekable:&#039;&#039;&#039; FLAC supports fast sample-accurate seeking. Not only is this useful for playback, it makes FLAC files suitable for use in editing applications.&lt;br /&gt;
* &#039;&#039;&#039;Flexible metadata:&#039;&#039;&#039; New metadata blocks can be defined and implemented in future versions of FLAC without breaking older streams or decoders. Currently there are metadata types for tags, cue sheets, and seek tables. Applications can write their own APPLICATION metadata once they register an ID.&lt;br /&gt;
* &#039;&#039;&#039;Suitable for archiving:&#039;&#039;&#039; FLAC is an open format, and there is no generation loss if you need to convert your data to another format in the future. In addition to the frame CRCs and MD5 signature, flac has a verify option that decodes the encoded stream in parallel with the encoding process and compares the result to the original, aborting with an error if there is a mismatch.&lt;br /&gt;
* &#039;&#039;&#039;Convenient CD archiving:&#039;&#039;&#039; FLAC has a &#039;&#039;cue sheet&#039;&#039; metadata block for storing a CD table of contents and all track and index points. For instance, you can rip a CD to a single file, then import the CD&#039;s extracted cue sheet while encoding to yield a single file representation of the entire CD. If your original CD is damaged, the cue sheet can be exported later in order to burn an exact copy.&lt;br /&gt;
* &#039;&#039;&#039;Error resistant:&#039;&#039;&#039; Because of FLAC&#039;s framing, stream errors limit the damage to the frame in which the error occurred, typically a small fraction of a second worth of data. Contrast this with some other lossless codecs, in which a single error destroys the remainder of the stream.&lt;br /&gt;
&lt;br /&gt;
== Pros ==&lt;br /&gt;
* Portable to many systems&lt;br /&gt;
* Open source and freely licensed&lt;br /&gt;
* Hardware support (PhatBox, Kenwood MusicKeg, Rio Karma, etc.  See below)&lt;br /&gt;
* Streaming support&lt;br /&gt;
* Extremely fast decoding&lt;br /&gt;
* Supports multichannel and high resolution streams&lt;br /&gt;
* Supports [[ReplayGain]]&lt;br /&gt;
* Supports cue-sheet (with some limitations)&lt;br /&gt;
* Gaining wide use as successor to [[Shorten]]&lt;br /&gt;
&lt;br /&gt;
== Cons ==&lt;br /&gt;
* Compresses less efficiently than other popular modern compressors ([[Monkey&#039;s Audio]], [[OptimFROG]])&lt;br /&gt;
* Higher compression modes slow, for little gain over the default setting.&lt;br /&gt;
&lt;br /&gt;
== Hardware and software that support FLAC ==&lt;br /&gt;
For a more comprehensive list see the [http://xiph.org/flac/links.html FLAC links page].&lt;br /&gt;
&lt;br /&gt;
=== Hardware ===&lt;br /&gt;
==== Car stereo ====&lt;br /&gt;
* Kenwood [http://www.kenwoodusa.com/Car_Entertainment/In-Dash_CD_Receivers/1-DIN_CD_Receiver/KMM-100U KMM-100U] &amp;amp; KMM-357SD (euro)    &lt;br /&gt;
* Soundstream [http://soundstream.com/store/car-video/source-units.html Source Units]&lt;br /&gt;
&lt;br /&gt;
==== Home stereo ====&lt;br /&gt;
* Olive&#039;s [http://www.olive.us/ Symphony] wireless digital music center&lt;br /&gt;
* [http://www.numark.com/ Numark]&#039;s DJ equipment (HDX and CDX turntables, HDMIX mixer)&lt;br /&gt;
* [http://www.sonos.com/ Sonos Digital Music System]&lt;br /&gt;
* Slim Devices&#039; [http://www.slimdevices.com/pi_squeezebox.html Squeezebox] networked audio players&lt;br /&gt;
 &lt;br /&gt;
==== Portable ====&lt;br /&gt;
* [[Apple iPod]] with [[Rockbox]] firmware&lt;br /&gt;
* [[iAudio M3]], M5 and X5&lt;br /&gt;
* [[iRiver]] iHP-120/iHP-140 with [[Rockbox]] firmware&lt;br /&gt;
* [[Iwod G10]]&lt;br /&gt;
* [[Rio Karma]]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/SanDisk_Sansa SanDisk Sansa]&lt;br /&gt;
* TrekStor&#039;s [http://www.trekstor.de/en/products/detail_mp3.php?pid=66 Vibez]&lt;br /&gt;
* Devices running Android 3.1+&lt;br /&gt;
&lt;br /&gt;
=== Software ===&lt;br /&gt;
==== Players ====&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;Windows&#039;&#039;&#039;&lt;br /&gt;
* [[foobar2000]]&lt;br /&gt;
* [[MediaMonkey]]&lt;br /&gt;
* [[Winamp]]&lt;br /&gt;
*[http://mplayerwin.sourceforge.net/ Mplayer]  Console player&lt;br /&gt;
* [http://www.cyberlink.com/products/powerdvd-ultra/features_en_US.html?&amp;amp;r=1 PowerDVD]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [http://www.un4seen.com/ XMplay]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mac&#039;&#039;&#039;&lt;br /&gt;
* [http://cogx.org/ Cog]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linux&#039;&#039;&#039;&lt;br /&gt;
* [http://www.clementine-player.org/ Clementine]&lt;br /&gt;
* [http://www.mplayerhq.hu/ MPlayer]&lt;br /&gt;
* [http://www.mythtv.org/ MythTV]&lt;br /&gt;
* [http://www.videolan.org/ VLC]&lt;br /&gt;
* [[XMMS]]&lt;br /&gt;
&lt;br /&gt;
==== Editor ====&lt;br /&gt;
*[http://audacity.sourceforge.net/ Audacity]&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Windows) ====&lt;br /&gt;
* FLAC frontend - [http://sourceforge.net/projects/flacfrontend/ download] / [http://wiki.hydrogenaudio.org/index.php?title=Download_page discussion] (ktf)&lt;br /&gt;
* Custom [http://members.home.nl/w.speek/flac.htm Windows Frontend] (by Speek)&lt;br /&gt;
&lt;br /&gt;
==== Frontends (Mac) ====&lt;br /&gt;
* [http://www.sbooth.org/Max/ Max]&lt;br /&gt;
 &lt;br /&gt;
==== Converters ====&lt;br /&gt;
* [http://www.dbpoweramp.com/ dBpowerAMP] Music Converter / Audio Player / CD Writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] Music Manager / Audio Player / CD Writer&lt;br /&gt;
&lt;br /&gt;
==== Editors ====&lt;br /&gt;
* [[Adobe Audition]]&lt;br /&gt;
* [http://www.goldwave.com/ GoldWave]&lt;br /&gt;
&lt;br /&gt;
==== CD writers/rippers ====&lt;br /&gt;
* [http://www.nero.com/eng/ Nero]&lt;br /&gt;
* [http://arson.sourceforge.net/ Arson]&lt;br /&gt;
* [http://www.burrrn.net Burrrn] Audio CD burner&lt;br /&gt;
* [[Exact Audio Copy]] CD Ripper&lt;br /&gt;
* [http://cdexos.sourceforge.net CDex] CD ripper&lt;br /&gt;
* [http://www.cdwave.com/ CD Wave]&lt;br /&gt;
* [http://cdburnerxp.se/ CDburner XP] CD writer&lt;br /&gt;
* [http://www.mediamonkey.com/ MediaMonkey] - CD ripper/writer&lt;br /&gt;
&lt;br /&gt;
==== Taggers ====&lt;br /&gt;
* [http://www.synthetic-soul.co.uk/tag/ Case&#039;s Tag] command line tagger&lt;br /&gt;
* [http://www.jtclipper.eu/thegodfather/ The GodFather] Tagger / Music manager&lt;br /&gt;
* [http://www.mp3tag.de/en/index.html Mp3tag] Universal Tag Editor&lt;br /&gt;
* [http://sbooth.org/Tag/ Tag] — for Mac OS X 10.4 (Tiger)&lt;br /&gt;
* [http://flac.sourceforge.net/documentation.html#metaflac metaflac] - for general metadata (including Vorbis comments) maintenance&lt;br /&gt;
* [http://www.mediamonkey.com MediaMonkey] - [[MediaMonkey]] Tagger / Music manager (Including Multiple and Linked Album Art support)&lt;br /&gt;
&lt;br /&gt;
==== Other tools ====&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/ mkvtoolnix] - tool to multiplex FLAC streams inside the Matroska container&lt;br /&gt;
* [http://flac.sourceforge.net/documentation.html#metaflac metaflac] - for general metadata (including Vorbis comments) maintenance, also to calculate [[ReplayGain]] values for FLAC files lacking such&lt;br /&gt;
&lt;br /&gt;
...and many more; see the [http://flac.sourceforge.net/links.html#software FLAC software section] and [http://flac.sourceforge.net/download.html#extras download section] for a more comprehensive list.&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; Does the compression level affect decompression speed?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: No.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: In truth, the compression level does affect the decompression speed, but the difference between the various compress levels can barely be measured and is too small to be noticed, even on low-end machines.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Question:&#039;&#039; What is the best compression level for encoding my music?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Short Answer&#039;&#039;: The default setting, 5.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Long Answer&#039;&#039;: Encoding at the default setting will give the best balance between compression and encoding speed. Encoding at 8 can more than quadruple the encoding time, while having an insignificant effect on compression.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Lossless]]&lt;br /&gt;
* [[Lossless comparison]]&lt;br /&gt;
* Flac 1.3.0 discussion [http://www.hydrogenaudio.org/forums/index.php?showtopic=101082 here]&lt;br /&gt;
&lt;br /&gt;
== Externals links ==&lt;br /&gt;
* [http://xiph.org/flac/ FLAC website]&lt;br /&gt;
* [http://wiki.hydrogenaudio.org/index.php?title=Download_page#Encoders.2C_Decoders.2C_Etc. FLAC download]&lt;br /&gt;
* [http://xiph.org/flac/format.html Detailed description of the FLAC format]&lt;br /&gt;
* [http://xiph.org/flac/documentation.html FLAC documentation]&lt;br /&gt;
* [http://xiph.org/flac/faq.html FLAC FAQ]&lt;br /&gt;
* &amp;lt;s&amp;gt; Omion&#039;s FLAC &amp;quot;File Size vs. Decoding Speed&amp;quot; test&amp;lt;/s&amp;gt; - a very thorough test on [[Free Lossless Audio Codec#Frequently Asked Questions|the influence of the chosen encoding level on the decoding speed of FLAC]]; the only one so far to have covered FLAC&#039;s --super-secret-totally-impractical-compression-level to this extent as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Lossless]]&lt;br /&gt;
[[Category:Encoder/Decoder]]&lt;/div&gt;</summary>
		<author><name>80.42.199.167</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Foobar2000&amp;diff=25766</id>
		<title>Foobar2000:Foobar2000</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Foobar2000&amp;diff=25766"/>
		<updated>2014-04-11T12:52:25Z</updated>

		<summary type="html">&lt;p&gt;80.42.199.167: stable version number updated&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{title|foobar2000}}&lt;br /&gt;
&lt;br /&gt;
{{Software Infobox|&lt;br /&gt;
|name = foobar2000&lt;br /&gt;
|logo = [[Image:foobar2000 Logo.png|48px]]&lt;br /&gt;
|screenshot = [[Image:Foobar2000-1.0-default-ui.png|250px]]&lt;br /&gt;
|caption = Screenshot of foobar2000 v1.0 using the default user interface&lt;br /&gt;
|maintainer = Peter Pawlowski&lt;br /&gt;
|stable_release = 1.3.2&lt;br /&gt;
|preview_release = 1.3.1 beta 1&lt;br /&gt;
|operating_system = Windows&lt;br /&gt;
|use = Media Player&lt;br /&gt;
|license = Proprietary, BSD&lt;br /&gt;
|website = [http://www.foobar2000.org/ www.foobar2000.org]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;foobar2000&#039;&#039;&#039; is an advanced freeware audio player for the Windows platform. Some of the basic features include full unicode support, ReplayGain support and native support for several popular audio formats.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The latest stable version is:&#039;&#039;&#039; [http://www.foobar2000.org/download 1.3.2] (2014-04-11)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The latest preview version is:&#039;&#039;&#039; [http://www.foobar2000.org/download 1.3.1 beta 1] (2013-12-27)&lt;br /&gt;
&lt;br /&gt;
== Platforms ==&lt;br /&gt;
&lt;br /&gt;
foobar2000 has been written specifically for the Windows platform, and there are no plans to port it to any others.  However, although not officially supported, it is known to run on [http://www.hydrogenaudio.org/forums/index.php?showtopic=54933 Linux] and [http://www.hydrogenaudio.org/forums/index.php?showtopic=77261 Mac OS X] through Wine and WineBottler, respectively.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* Powerful open component architecture allowing third-party developers to extend functionality of the player, including the ability to fully replace the user interface.&lt;br /&gt;
* Full Unicode support: File names, user interface, tagging, etc.&lt;br /&gt;
* [[ReplayGain]] support: Both playback and writing ReplayGain information to file tags.&lt;br /&gt;
* [[Gapless playback]].&lt;br /&gt;
* Advanced [[tagging]] capabilities - through built-in [[foobar2000:Properties|Properties dialog]] and various optional tagging-related components.&lt;br /&gt;
* Built-in [[foobar2000:Preferences:Media Library|Media Library]] functionality.&lt;br /&gt;
** Intuitive [[foobar2000:Query syntax|query syntax]] for searching the Media Library.&lt;br /&gt;
** [[foobar2000:Autoplaylist|Autoplaylist]] support: Generate dynamically updating playlists based on queries.&lt;br /&gt;
* [[foobar2000:Preferences:General:Keyboard Shortcuts|Customizable keyboard shortcuts]].&lt;br /&gt;
* Support for transcoding all supported audio formats using the [[Foobar2000:Converter|Converter component]] (requires external command-line encoder executables for different output formats).&lt;br /&gt;
* [[Secure_ripping|Secure]] [[foobar2000:Ripping CDs|CD ripping]].&lt;br /&gt;
* Streaming support.&lt;br /&gt;
* Efficient handling of large playlists.&lt;br /&gt;
* [[foobar2000:Components/Default_user_interface_%28foo_ui_std%29|User interface]] with simple configuration to create even complex layouts quickly and easily.&lt;br /&gt;
* Highly customizable display of track information using [[foobar2000:Titleformat_Introduction|title formatting scripts]].&lt;br /&gt;
&lt;br /&gt;
==Supported audio formats==&lt;br /&gt;
Natively supported (&amp;quot;out-of-the-box&amp;quot;):&lt;br /&gt;
* [[MP1]], [[MP2]], [[MP3]], [[MP4]], [[Musepack]], [[AAC]], [[Ogg Vorbis]], [[FLAC]] / Ogg FLAC, [[Speex]], [[WavPack]], [[WAV]], [[AIFF]], [[AU|AU/SND]], [[CDDA]], [[WMA]], [[Matroska]], [[ALAC]], [[MMS]], [[RSTP]], [[Opus]].&lt;br /&gt;
Supported through optional components:&lt;br /&gt;
* [[TTA]], [[Monkey&#039;s Audio]], [[MOD]], [[SPC]], [[Shorten]], [[OptimFROG]], [[AC3]], [[DTS]], [[PSF]], [[NSF]], [[XID]], [[XA]], [[TAK]], [[AMR]], &#039;&#039;etc.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In addition, foobar2000 can also play audio files within ZIP and RAR archives (typically compressed) directly, &#039;&#039;i.e.&#039;&#039; without requiring the user to extract the files first. More archive formats are supported &#039;&#039;via&#039;&#039; additional components: [http://www.foobar2000.org/components/view/foo_unpack_lha LHA/LZH], [http://www.foobar2000.org/components/view/foo_unpack_7z 7-Zip], [http://kode54.foobar2000.org/ JMA]&lt;br /&gt;
&lt;br /&gt;
== Using foobar2000 ==&lt;br /&gt;
&lt;br /&gt;
=== Important pages ===&lt;br /&gt;
* [http://www.foobar2000.org/FAQ foobar2000 FAQ]&lt;br /&gt;
* [[foobar2000:components|foobar2000 Components]]&lt;br /&gt;
* [[foobar2000:Encouraged Tag Standards|foobar2000 Encouraged Tag Standards]]&lt;br /&gt;
* [[foobar2000:FAQ|foobar2000 FAQ (unofficial)]]&lt;br /&gt;
* [http://wiki.hydrogenaudio.org/index.php?title=Category:Foobar2000_Guides foobar2000 Guides (category)]&lt;br /&gt;
* [http://wiki.hydrogenaudio.org/index.php?title=Category:Foobar2000_Preferences foobar2000 Preferences (category)]&lt;br /&gt;
&lt;br /&gt;
=== Specific guides ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Preferences&#039;&#039;&#039;&lt;br /&gt;
* [[foobar2000:Preferences|Preferences dialog]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Metadata&#039;&#039;&#039;&lt;br /&gt;
* [[foobar2000:Properties|Tag editing: the Properties dialog]]&lt;br /&gt;
* [[foobar2000:Query syntax|Query Syntax]]: details of Syntax for querying metadata.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title formatting&#039;&#039;&#039;&lt;br /&gt;
* [[foobar2000:Title Formatting Introduction|Introduction to titleformat scripts]]&lt;br /&gt;
* [[foobar2000:Title Formatting Reference|Titleformat Reference]]: reference guide to all fields and functions&lt;br /&gt;
* [[foobar2000:Titleformat Examples|Titleformat Examples]]: user-submitted code for various purposes; submit your own!&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Others&#039;&#039;&#039;&lt;br /&gt;
* [[foobar2000:File operations|File operations dialog]]: move, copy, rename, and delete files from within foobar2000&lt;br /&gt;
* [[foobar2000:Commandline Guide|Commandline usage]]&lt;br /&gt;
&lt;br /&gt;
=== External Guides ===&lt;br /&gt;
* [http://www.audiohq.de/viewforum.php?id=27 German-language guides]&lt;br /&gt;
* [http://foobar2000.xrea.jp/ fb2k Wiki Page] for Japanese users.&lt;br /&gt;
* [http://winamp2foobar.blogspot.com Winamp To Foobar Guide] with information relevant for general users also.&lt;br /&gt;
&lt;br /&gt;
=== Technical information ===&lt;br /&gt;
* [[foobar2000:ID3 Tag Mapping|ID3 Tag Mapping]]&lt;br /&gt;
* [[foobar2000:Metadata Compatibility|Metadata Compatibility]]: information about compatibility with metadata written by other applications&lt;br /&gt;
&lt;br /&gt;
== Important Links ==&lt;br /&gt;
=== Official Site ===&lt;br /&gt;
* [http://www.foobar2000.org foobar2000.org: Homepage]&lt;br /&gt;
* [http://www.foobar2000.org/download foobar2000.org: Download]&lt;br /&gt;
* [http://www.foobar2000.org/components foobar2000.org: Components]&lt;br /&gt;
&lt;br /&gt;
=== Community ===&lt;br /&gt;
* Official IRC Channel: #foobar2000 on [http://freenode.net/ freenode]&lt;br /&gt;
* [http://forums.foobar2000.org/ Official foobar2000 forum]&lt;br /&gt;
* [http://foobar-users.de/ German Support Forum]&lt;br /&gt;
* [http://foobar2000.pl/ Polish Support Forum]&lt;br /&gt;
* [http://www.fforum.ru/index.php?showforum=59 Russian-language forum]&lt;br /&gt;
* [http://www.foobar2000.ru/forum/ Another Russian-language forum]&lt;br /&gt;
&lt;br /&gt;
=== Appearance ===&lt;br /&gt;
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=61333 Default UI .fth Thread] Fast way to clone another&#039;s DUI Configuration.&lt;br /&gt;
* [[foobar2000:Preferences:Columns UI/Appearance|Columns UI appearance customization guides]]&lt;br /&gt;
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=31027 Columns UI configurations]&lt;br /&gt;
&lt;br /&gt;
[[Category:foobar2000]]&lt;br /&gt;
[[Category:Media Players|foobar2000]]&lt;br /&gt;
[[Category:CD Rippers]]&lt;br /&gt;
[[Category:Software]]&lt;br /&gt;
[[Category:Tag editors]]&lt;/div&gt;</summary>
		<author><name>80.42.199.167</name></author>
	</entry>
</feed>