Package flac provides access to FLAC streams. Fork of https://github.com/mewkiz/flac
Go to file
2017-06-02 09:17:02 +02:00
cmd remove metaflac function 2016-07-22 01:22:50 +02:00
frame denser error handling 2016-07-22 00:56:37 +02:00
internal flac: Add preliminary encoding support. 2016-07-20 06:38:19 +02:00
meta flac/meta: Fix build of test cases. 2016-12-16 00:03:05 +01:00
testdata flac: Fix typo in readme. 2016-07-20 15:45:08 +02:00
.travis.yml travis: Update to Go 1.6. 2016-04-22 14:31:50 +02:00
enc.go flac: Recalculate isLast for metadata blocks during encoding. 2016-07-22 03:05:53 +02:00
enc_test.go flac: Extend metadata encoding test cases. 2016-07-20 07:37:13 +02: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: lint comment 2016-10-17 17:59:41 +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.