From b96317c834e8e2cc2bbf1d84f6455a1fa529f10f Mon Sep 17 00:00:00 2001
From: UberGuidoZ <57457139+UberGuidoZ@users.noreply.github.com>
Date: Thu, 19 May 2022 00:01:11 -0700
Subject: [PATCH] Update ReadMe.md
---
Wave_Player/ReadMe.md | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/Wave_Player/ReadMe.md b/Wave_Player/ReadMe.md
index 9b86d695..f02ecf17 100644
--- a/Wave_Player/ReadMe.md
+++ b/Wave_Player/ReadMe.md
@@ -1 +1,14 @@
-WAVE Player
+Needs the [WAV Player application](https://github.com/flipperdevices/flipperzero-firmware/tree/zlo/wav-player/applications/wav_player) compiled into firmware.
+
+Original code from [Zlo](https://github.com/flipperdevices/flipperzero-firmware/tree/zlo/wav-player) and most files provided by [RogueMaster](https://github.com/RogueMaster).
+
+Create a wav_player folder in the root of your SD card. You'll need 8-bit unsigned WAV files (try [Audacity](https://www.audacityteam.org/) for conversion.)
+
+WAV Player is apparently very particular about the format. WavPlayer wants BitExact, NO headers, 48k PCM unsigned 8-bit stereo. Example:
+
+`Input #0, wav, from '.\canyon.wav':`
+` Duration: 00:02:03.38, bitrate: 768 kb/s`
+` Stream #0:0: Audio: pcm_u8 ([1][0][0][0] / 0x0001), 48000 Hz, stereo, u8, 768 kb/s`
+
+To produce a compatible file, you can also use [FFmpeg](https://ffmpeg.org/):
+`ffmpeg -i .\input.mp3 -c:a pcm_u8 -fflags +bitexact -flags:a +bitexact -ac 2 -ar 48k output.wav`