Skip to content

RichardlL/flac

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

740 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FLAC

Build Status

An implementation of FLAC, free lossless audio codec, written in Rust.

Documentation

Install

flac is on crates.io and can be included in your Cargo file like so:

[dependencies]

flac = "^0.1.0"

Followed by including it in you code:

extern crate flac;

Implementation Status

The status of this FLAC implementation:

  • Parser
    • metadata
      • header
      • data
        • stream info
        • padding
        • application
        • seek table
        • vorbis comment
        • cuesheet
        • picture
        • unknown
    • frame
      • header
      • footer
      • sub-frame
        • header
        • constant
        • fixed
        • LPC
        • verbatim
  • decoder
    • frame
      • left side
      • right side
      • middle side
    • sub-frame
      • fixed restoration
      • LPC restoration
  • encoder

About

A FLAC implementation written in Rust

Resources

License

Stars

0 stars

Watchers

1 watching

Forks

Packages

 
 
 

Contributors

Languages

  • Rust 100.0%