Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@

# Decode Audio files using Arduino
Documentation is available at [Instructables](https://www.instructables.com/id/Arduino-Library-for-MP3-Decoding/)

This library is a modified fork of https://github.com/tierneytim/microDecoder for current (2026) Arduino

Some information and documentation is available at:

[My Blog](https://tmrh20.blogspot.com/2026/02/more-with-mp3-decoding-playback-on.html)
[Instructables](https://www.instructables.com/id/Arduino-Library-for-MP3-Decoding/)

[Full MP3 Playback Example](https://github.com/TMRh20/FeatherAudio/blob/main/Examples/mp3Player/mp3Player.ino)
21 changes: 21 additions & 0 deletions library.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "microDecoder",
"keywords": "MP3, decode, decoding",
"description": "This library provides an easy to use and modular interface to decode mp3 files",
"repository":
{
"type": "git",
"url": "https://github.com/TMRh20/microDecoder.git"
},
"authors":
{
"name": "Tim Tierney, TMRh20",
"email": "tmrh20@gmail.com",
"url": "https://github.com/TMRh20/microDecoder",
"maintainer": true
},
"version": "1.0.1",
"frameworks": "arduino",
"platforms": "*"

}
12 changes: 6 additions & 6 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name=microDecoder
version=1.0
version=1.0.1
author=Tim Tierney
maintainer=Tim Tierney <fiachmri@gmail.com>
sentence= High level interface for audio file decoding
paragraph= This library provides an easy to use and modular interface to popular adudio codecs
category=Audio
url=https://github.com/tierneytim/microDecoder
maintainer=tmrh20 <tmrh20@gmail.com>
sentence= Modified Arduino library for mp3 decoding
paragraph= This library provides an easy to use and modular interface to decode mp3 files
category=Signal Input/Output
url=https://github.com/TMRh20/microDecoder
architectures=*
Loading