Jelajahi Sumber

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

Willy-JL 2 tahun lalu
induk
melakukan
094fcc182b
6 mengubah file dengan 6 tambahan dan 1 penghapusan
  1. 2 0
      wav_player/README.md
  2. 3 0
      wav_player/application.fam
  3. TEMPAT SAMPAH
      wav_player/img/1.png
  4. TEMPAT SAMPAH
      wav_player/img/2.png
  5. TEMPAT SAMPAH
      wav_player/img/3.png
  6. 1 1
      wav_player/wav_player.c

+ 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",
 )

TEMPAT SAMPAH
wav_player/img/1.png


TEMPAT SAMPAH
wav_player/img/2.png


TEMPAT SAMPAH
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;
-}
+}