Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

FLAC

From Wikipedia, the free encyclopedia
Lossless digital audio coding format
For other uses, seeFLAC (disambiguation).
"Flac" redirects here. For flak anti-aircraft fire, seeAnti-aircraft warfare.

Free Lossless Audio Codec
DevelopersXiph.Org Foundation, Josh Coalson, Erik de Castro Lopo
Initial release20 July 2001; 24 years ago (2001-07-20)
Stable release
1.5.0[1] / 11 February 2025; 9 months ago (11 February 2025)
Repository
Written inC,C++
Operating systemCross-platform
TypeCodec
LicenseCommand-line tools:GNU GPL
Libraries:BSD
Websitexiph.org/flac
Free Lossless Audio Codec
Filename extension
.flac
Internet media type
audio/flac
Uniform Type Identifier (UTI)org.xiph.flac
Magic numberfLaC[2]
Type of formatLosslessaudio
StandardRFC 9639
Open format?Yes[3]
Free format?Yes

FLAC (/flæk/;Free Lossless Audio Codec) is anaudio coding format forlossless compression ofdigital audio, developed by theXiph.Org Foundation, and is also the name of thefree software project producing the FLAC tools, the reference software package that includes acodec implementation. Digital audio compressed by FLAC'salgorithm can typically be reduced to between 50 and 70 percent of its original size[4] and decompresses to an identical copy of the original audio data.

FLAC is anopen format withroyalty-free licensing and areference implementation which isfree software. FLAC supportsmetadata tagging,album cover art, and fast seeking.

History

[edit]

Development was started in 2000 by Josh Coalson. Thebitstream format was frozen with the release of version 0.9 of the reference implementation on 31 March 2001. Version 1.0 was released on 20 July 2001.[5]

On 29 January 2003, theXiph.Org Foundation and the FLAC project announced the incorporation of FLAC under the Xiph.org banner. Xiph.org is home to other free compression formats such asVorbis,Theora,Speex andOpus.[5][6][7]

Version 1.3.0 was released on 26 May 2013, at which point development was moved to the Xiph.org git repository.[8]

In 2019, FLAC was proposed as an IETF standard.[9]

In December 2024, FLAC was formally specified in and published asRFC 9639.[10]

Design

[edit]

FLAC is a lossless encoding oflinear pulse-code modulation data.[11]

File structure

[edit]

A FLAC file consists of themagic numberfLaC,metadata, and encoded audio.[11]

The encoded audio is divided into frames, each of which consists of a header, a data block, and aCRC16 checksum. Each frame is encoded independent of each other. A frame header begins with async word, used to identify the beginning of a valid frame. The rest of the header contains the number of samples, position of the frame, channel assignment, and optionally thesample rate andbit depth. The data block contains the audio information.[11]

Metadata in FLAC precedes the audio. Properties like thesample rate and the number of channels are always contained in the metadata. It may also contain other information, thealbum cover for example.[11] FLAC usesVorbis comments for textual metadata like track title and artist name.

Encoding and decoding

[edit]
Screenshot offlac command-line software

The FLAC encoding algorithm consists of multiple stages. In the first stage, the input audio is split into blocks. If the audiocontains multiple channels, each channel is encoded separately as a subblock. The encoder then tries to find a good mathematical approximation of the block, either by fitting a simplepolynomial, or through generallinear predictive coding. A description of the approximation, which is only a few bytes in length, is then written. Finally, the difference between the approximation and the input, called residual, is encoded usingRice coding. In many cases, a description of the approximation and the encoded residual takes up less space than usingpulse-code modulation.[11]

The decoding process is the reverse of encoding. The compressed residual is first decoded.[12][13] The description of the mathematical approximation is then used to calculate a waveform. The result is formed by adding the residual and the calculated waveform.[14][15] As FLACcompresses losslessly, the decoded waveform is identical to the waveform before encoding.

For two-channel stereo, the encoder may choose tojoint-encode the audio. The channels are transformed into a side channel, which is the difference between the two input channels, and a mid channel, the sum of the two input channels. In place of a mid channel, the left channel or the right channel may be encoded instead, which is sometimes more space-efficient.[16]

Even though thereference encoder uses a single block size for the whole stream,[11] FLAC allows the block size in samples to vary per block.

Compression

[edit]

The amount of compression is determined by various parameters, including the order of the linear prediction model and the block size. Regardless of the amount of compression, the original data can always be reconstructed perfectly.

For the user's convenience, the reference implementation defines 9 compression levels, which arepresets of the more technical parameters to the encoding algorithm. The levels are labeled from 0 to 8, with higher numbers resulting in a higher compression ratio, at the cost of compression speed. The meaning of each compression level varies by implementation.[17][18]

FLAC is optimized for decoding speed at the expense of encoding speed. A benchmark has shown that, while there is little variation in decoding speed as compression level increases, beyond the default compression level 5, the encoding process takes up considerably more time with little space saved compared to level 5.[19]

Implementation

[edit]

Alongside the format, the FLAC project also contains afree and open-source reference implementation of FLAC called libFLAC. libFLAC contains facilities to encode and decode FLAC data and to manipulate the metadata of FLAC files. libFLAC++, anobject-oriented wrapper around libFLAC forC++, and thecommand-line programsflac andmetaflac, are also part of the reference implementation.

The FLAC format, along with libFLAC, are not known to be covered by anypatents, and anyone is free to write their own implementations of FLAC.

Comparison to other formats

[edit]

FLAC is specifically designed for efficient packing of audio data, unlike general-purpose lossless algorithms such asDEFLATE, which are used inZIP andgzip. While ZIP may reduce the size of a CD-quality audio file by 10–20%, FLAC is able to reduce the size of audio data by 40–50% by taking advantage of the characteristics of audio.[citation needed]

The technical strengths of FLAC compared to other lossless formats lie in its ability to be streamed and decoded quickly, independent of compression level.[citation needed]

Since FLAC is a lossless scheme, it is suitable as an archive format for owners of CDs and other media who wish to preserve their audio collections. If the original media are lost, damaged, or worn out, a FLAC copy of the audio tracks ensures that an exact duplicate of the original data can be recovered at any time. An exact restoration from a lossy copy (e.g.,MP3) of the same data is impossible. FLAC's being lossless means it is highly suitable fortranscoding e.g. to MP3, without the normally associatedtranscoding quality loss between one lossy format and another. ACUE file can optionally be created whenripping a CD. If a CD is read and ripped perfectly to FLAC files, the CUE file allows later burning of an audio CD that is identical in audio data to the original CD, including track order andpregap, but excluding additional data such as lyrics andCD+G graphics.[20] But depending on the burning program used,CD-Text may be recovered from the metadata stored in the CUE sheet and burned back to a new copy on blank CD-R media.

Adoption and implementations

[edit]
See also:Comparison of video container formats § Audio coding formats support

Reference implementation

[edit]

The reference implementation of FLAC is implemented as thelibFLAC core encoder & decoder library, with the main distributable programflac being the reference implementation of the libFLAC API. Thiscodec API is also available in C++ as libFLAC++. The reference implementation of FLAC compiles on many platforms, including mostUnix (such asSolaris,BSD) andUnix-like (includingLinux),Windows,BeOS, andOS/2 operating systems. There are build-systems forautoconf/automake,MSVC,Watcom C, andXcode. There is currently nomulticore support in libFLAC, but utilities such asGNU parallel and various graphical frontends can be used to spin up multiple instances of the encoder.

Hardware and software

[edit]

FLAC playback support in portable audio devices and dedicated audio systems is limited compared to formats such as MP3[21] or uncompressedPCM. FLAC support is included by default inWindows 10,[22]Android,[23]macOS andiOS.[24]

FLAC support by different operating systems
Microsoft WindowsmacOSAndroidiOS
Codec supportYesYesYesYes
Container supportFLAC (.flac)
Matroska (.mka, .mkv)
Ogg (.oga)[25]
FLAC (.flac)
Core Audio Format (.caf)
FLAC (.flac)FLAC (.flac)
Core Audio Format (.caf)
Notes

Support introduced inWindows 10.

Windows Media Player (2022) also supports FLAC in an Ogg container for live streams (e.g.Icecastinternet radio).[26]

Support introduced in macOS 10.13High Sierra.

Support introduced in Android 3.1.

Android natively supports regular FLAC (.flac), but not Ogg FLAC (.oga).[27] However, support for both regular FLAC and Ogg FLAC were later added to theFiles (Google) file manager.

Support introduced in iOS 11 (but depends on hardware).

Various other containers are supported, independently from used operating system, depending on used playback software.

Use in archives

[edit]

The standardization process of the FLAC format intoRFC 9639 was driven by the specific use case of archival and preservation in mind.[28] TheNational Archives and Records Administration of the United States has FLAC listed as a preferred format for digital audio.[29]

See also

[edit]

References

[edit]
  1. ^"FLAC 1.5 Finally Delivers Multi-Threaded Encoding". 11 February 2025. Retrieved11 February 2025.
  2. ^Coalson, Josh."FLAC – format".Xiph.Org Foundation. Retrieved4 April 2013."fLaC", the FLAC stream marker in ASCII, meaning byte 0 of the stream is 0x66, followed by 0x4C 0x61 0x43
  3. ^"PlayOgg!".Free Software Foundation. 17 March 2010. Retrieved1 October 2013.
  4. ^"Looking at Flac Compression Ratios". Steven Pigeon. 7 February 2012. Retrieved10 May 2018.
  5. ^ab"Features".Xiph.Org Foundation. Retrieved23 November 2023.
  6. ^"FLAC Joins Xiph.org".Xiph.org Foundation. 29 January 2003. Retrieved31 August 2009.
  7. ^Plant, Emmett."FLAC Joins Xiph!".Xiph.org Foundation. Archived fromthe original on 29 May 2008. Retrieved31 August 2009.
  8. ^"FLAC – changelog".Xiph.org Foundation. Retrieved15 October 2013.
  9. ^van Beurden, Martijn; Weaver, Andrew.Free Lossless Audio Codec. I-D draft-ietf-cellar-flac. Retrieved14 May 2023.
  10. ^Coalson, Josh."FLAC - FLAC is now formally specified in RFC 9639".xiph.org. Retrieved12 February 2025.
  11. ^abcdefCoalson, Josh."About the FLAC Format". Retrieved13 February 2022.
  12. ^"stream_decoder.c".libFLAC. Retrieved19 February 2022.
  13. ^libFLAC/stream_decoder.c, line 2734.
  14. ^"lpc.c".libFLAC. Retrieved19 February 2022.
  15. ^libFLAC/lpc.c, lines 813–820.
  16. ^"FLAC Format Specification".FLAC. Retrieved19 February 2022.
  17. ^"CUETools FLAC encoders comparison".CUETools Wiki. Retrieved27 May 2013.
  18. ^"Encoding Settings".JRiver Media Centre. Retrieved27 May 2013.
  19. ^"Lossless Codec Comparison".Synthetic-soul.co.uk. Archived fromthe original on 2 February 2009. Retrieved26 November 2016.
  20. ^"FAQ".FLAC. Retrieved23 September 2014.
  21. ^"Links".FLAC. Retrieved24 March 2009.
  22. ^"Audio snobs rejoice: Windows 10 will have system-wide FLAC support".PC World. Retrieved10 July 2015.
  23. ^"Android Supported Media Formats".Android.com. 27 September 2024. Retrieved20 December 2024.
  24. ^"iOS 11 brings lossless FLAC audio playback to iPhone and iPad".idownloadblog.com. 9 June 2017. Retrieved26 September 2017.
  25. ^"MIME Types and File Extensions - XiphWiki".
  26. ^"FLAC vs Ogg FLAC".
  27. ^"The Android Platform Doesn't Fully Support OGG Container Formats (OGA) [36906426] - Visible to Public - Issue Tracker".
  28. ^"Codec Encoding for LossLess Archiving and Realtime transmission".
  29. ^"Appendix A: Tables of File Formats | National Archives".

External links

[edit]
Wikimedia Commons has media related toFree Lossless Audio Codec.
Video
compression
ISO,IEC,
MPEG
ITU-T,VCEG
SMPTE
TrueMotion and AOMedia
Chinese Standard
  • AVS1 P2/AVS+(GB/T 20090.2/16)
  • AVS2 P2(GB/T 33475.2,GY/T 299.1)
    • HDR Vivid(GY/T 358)
  • AVS3 P2(GY/T 368)
Others
Audio
compression
ISO,IEC,
MPEG
ITU-T
IETF
3GPP
ETSI
Bluetooth SIG
Chinese Standard
Others
Image
compression
IEC,ISO,IETF,
W3C,ITU-T,JPEG
Others
Containers
ISO,IEC
ITU-T
IETF
SMPTE
Others
Collaborations
Methods
Lists
SeeCompression methods for techniques andCompression software for codecs
Archivers with
compression
(comparison)
Free and
open-source
Freeware
Commercial
Non-archiving
compressors
Generic
For code
Audio
compression

(comparison)
Lossy
Lossless
Video
compression

(comparison)
Lossy
MPEG-4 ASP
H.264
HEVC
Others
Lossless
Ogg Project codecs
Media tools
Related articles
Retrieved from "https://en.wikipedia.org/w/index.php?title=FLAC&oldid=1303147491"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp