Package flac provides access to FLAC streams. Fork of https://github.com/mewkiz/flac
Go to file
mewmew 4309906bb8 frame: remove debug print of contiunation bytes
This has been tested with FLAC files containing
a lot of samples and a small block size, thus
having frame.Num make use of up to four
continuation bytes.
2018-08-19 04:21:43 +09:00
cmd cmd/flac2wav: update flac2wav to use go-audio instead of Azul3D 2018-08-18 01:09:46 +09:00
frame frame: remove debug print of contiunation bytes 2018-08-19 04:21:43 +09:00
internal flac: fix golangci metalint issues 2018-08-18 01:20:48 +09:00
meta flac: fix golangci metalint issues 2018-08-18 01:20:48 +09:00
testdata Skip ID3v2 data prepended to flac files on parsing (#21) 2018-05-25 17:27:20 +02:00
.travis.yml flac: fix golangci metalint issues 2018-08-18 01:20:48 +09: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 remove unnecessary conversion 2018-06-06 22:14:00 -04:00
flac_test.go Skip ID3v2 data prepended to flac files on parsing (#21) 2018-05-25 17:27:20 +02:00
go.mod Vendor our dependencies with vgo (#27) 2018-08-17 03:16:13 +09: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.