Package flac provides access to FLAC streams. Fork of https://github.com/mewkiz/flac
Go to file
Robin Eklind 50441e5efb
Fix Travis build (#23)
bump Go version to latest stable
2018-05-25 00:00:01 +02:00
cmd cmd/flac2wav: fix build 2017-06-03 16:16:49 +02:00
frame Merge branch 'master' of github.com:mewkiz/flac 2017-12-26 15:14:36 +01: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 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
.travis.yml Fix Travis build (#23) 2018-05-25 00:00:01 +02:00
enc.go flac: Recalculate isLast for metadata blocks during encoding. 2016-07-22 03:05:53 +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: fix Close method to close underlying file descriptor 2018-04-08 17:47:05 +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.