An open API service indexing awesome lists of open source software.

https://github.com/rouhim/jaudiotagger

Jaudiotagger is a Java library for reading and writing audio metadata.
https://github.com/rouhim/jaudiotagger

aiff audio-library audiometadata cover-image id3 metadata mp3 mp4 ogg opus vorbis wav wma

Last synced: 4 months ago
JSON representation

Jaudiotagger is a Java library for reading and writing audio metadata.

Awesome Lists containing this project

README

          

This is a maintained fork of [Kaned1as/jaudiotagger](https://github.com/Kaned1as/jaudiotagger).

# Jaudiotagger

Jaudiotagger is a Java library for reading and writing audio metadata. It supports a wide range of audio formats,
including MP3, Ogg Vorbis, FLAC, WMA, MP4, MPC, Monkey's Audio, OptimFROG, True Audio, WavPack, Musepack, Speex, WAV,
AIFF, AU, RealAudio, Opus, and MP2. It also supports ID3v1, ID3v2, Vorbis Comments, APEv2, WMA, MP4, and ASF metadata.

## Differences to the original

* Bumped dependency versions
* Compile target java 25
* Removed android compatibility
* Migrated to junit 5
* Added: github actions, renovate, semantic releases

## Motivation

Mainly I forked the repository because I want to use a maintained version of jaudiotaggger in
my [own software](https://github.com/RouHim/disCoverJ).

## maven usage

Add this repository to your pom.xml:

```xml

jitpack.io
https://jitpack.io

```

And then this dependency:

```xml

com.github.RouHim
jaudiotagger
$version

```

## gradle usage

Add this repository to your build.gradle:

```groovy
repositories {
maven { url 'https://jitpack.io' }
}
```

And then this dependency:

```groovy
dependencies {
implementation 'com.github.RouHim:jaudiotagger:$version'
}
```