Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

Latest commit

 

History

History
33 lines (26 loc) · 1.11 KB

README.md

File metadata and controls

33 lines (26 loc) · 1.11 KB

WARNING: THIS PROJECT IS NO LONGER MAINTAINED. MOVED TO: https://github.com/jseproject/jse-spi

Java Free Lossless Audio Codec

This is a fork of JustFLAC and JavaFlacEncoder.

This library contains a port of the Free Lossless Audio Codec (FLAC) decoder to Java and a FLAC encoder implemented in Java. It is designed to enable easy addition of FLAC support in Java applications.

Add the library to your project (gradle)

  1. Add the Maven Central repository (if not exist) to your build file:
repositories {
    ...
    mavenCentral()
}
  1. Add the dependency:
dependencies {
    ...
    implementation 'com.tianscar.javasound:javasound-flac:1.4.1'
}

Usage

Tests and Examples
Command-line interfaces

Note you need to download test audios here and put them to /src/test/resources to run the test code properly!

License

LGPL-2.1
Apache-2.0