Przeglądaj źródła

Merge wav_player from https://github.com/xMasterX/all-the-plugins

Willy-JL 2 lat temu
rodzic
commit
094fcc182b

+ 2 - 0
wav_player/README.md

@@ -2,3 +2,5 @@
  A Flipper Zero application for playing wav files. My fork adds support for correct playback speed (for files with different sample rates) and for mono files (original wav player only plays stereo). ~~You still need to convert your file to unsigned 8-bit PCM format for it to played correctly on flipper~~. Now supports 16-bit (ordinary) wav files too, both mono and stereo!
 
 Original app by https://github.com/DrZlo13.
+
+Also outputs audio on `PA6` - `3(A6)` pin

+ 3 - 0
wav_player/application.fam

@@ -8,4 +8,7 @@ App(
     fap_icon="wav_10px.png",
     fap_category="Media",
     fap_icon_assets="images",
+    fap_author="@DrZlo13 & (ported, fixed by @xMasterX), (improved by @LTVA1)",
+    fap_version="1.1",
+    fap_description="Audio player for WAV files, recommended to convert files to unsigned 8-bit PCM stereo, but it may work with others too",
 )

BIN
wav_player/img/1.png


BIN
wav_player/img/2.png


BIN
wav_player/img/3.png


+ 1 - 1
wav_player/wav_player.c

@@ -461,4 +461,4 @@ int32_t wav_player_app(void* p) {
     app_run(app);
     app_free(app);
     return 0;
-}
+}