Package flac provides access to FLAC streams. Fork of https://github.com/mewkiz/flac
Go to file
2018-05-27 15:37:20 +02:00
cmd cmd/go-metaflac: simplify control flow 2018-05-27 14:32:15 +02:00
frame frame: simplify parseHeader by refactoring 2018-05-27 15:10:15 +02:00
internal flac: Add preliminary encoding support. 2016-07-20 06:38:19 +02:00
meta meta: simplify parseCueSheet by refactoring 2018-05-27 15:23:03 +02:00
testdata Skip ID3v2 data prepended to flac files on parsing (#21) 2018-05-25 17:27:20 +02:00
.travis.yml travis: add note to describe that G501 refers to blacklist of md5 check 2018-05-27 15:37:20 +02:00
enc.go flac: fix issues reported by errcheck and unconvert 2018-05-27 14:28:25 +02:00
enc_test.go Added 8297-275156-0011.flac, which is a 16kHz sampled file, derived from the LibriSpeech ASR corpus by Vassil Panayotov and Daniel Povey. The file is CCBY-4.0 2017-10-01 09:09:15 +11:00
example_test.go flac: Drop use of gopkg.in in import paths. Rely on vendoring instead. 2016-03-07 00:06:54 +01:00
flac.go flac: minor update of comment 2018-05-25 18:15:07 +02:00
flac_test.go Skip ID3v2 data prepended to flac files on parsing (#21) 2018-05-25 17:27:20 +02:00
LICENSE Add LICENSE file to follow sensible standards 2017-06-02 09:17:02 +02:00
README.md Add LICENSE file to follow sensible standards 2017-06-02 09:17:02 +02:00

flac

Build Status Coverage Status GoDoc

This package provides access to FLAC (Free Lossless Audio Codec) streams.

Documentation

Documentation provided by GoDoc.

  • flac: provides access to FLAC (Free Lossless Audio Codec) streams.
    • frame: implements access to FLAC audio frames.
    • meta: implements access to FLAC metadata blocks.

Changes

  • Version 1.0.5 (2016-05-06)

    • Simplify import paths. Drop use of gopkg.in, and rely on vendoring instead (see azul3d/engine#1).
    • Add FLAC decoding benchmark (see d675e0a)
  • Version 1.0.4 (2016-02-11)

    • Add API examples to documentation (see #11).
    • Extend test cases (see aadf80a).
  • Version 1.0.3 (2016-02-02)

    • Implement decoding of FLAC files with wasted bits-per-sample (see #12).
    • Stress test the library using go-fuzz (see #10). Thanks to Patrick Mézard.
  • Version 1.0.2 (2015-06-05)

  • Version 1.0.1 (2015-02-25)

    • Fix two subframe decoding bugs (see #7). Thanks to Jonathan MacMillan.
    • Add frame decoding test cases.
  • Version 1.0.0 (2014-09-30)

    • Initial release.
    • Implement decoding of FLAC files.