From 32ab74cbef95bd4a8921092cdc70528256130baf Mon Sep 17 00:00:00 2001 From: stan44 Date: Sun, 6 Apr 2025 20:08:07 -0500 Subject: [PATCH 1/6] updated git command in readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 0f1c198..65e09ee 100644 --- a/readme.md +++ b/readme.md @@ -26,7 +26,7 @@ A powerful file browser application with special focus on audio file handling, M ### 1. Clone the repository ```bash -git clone https://github.com/yourusername/fbroswer-master.git +git clone https://gitea.innovativedevsolutions.org/stan44/Fbrowser.git cd fbroswer-master ``` From 232503e0a83b8f6d33ed764d617956051d43734d Mon Sep 17 00:00:00 2001 From: stan44 Date: Sun, 6 Apr 2025 20:14:16 -0500 Subject: [PATCH 2/6] cd command updated under git cloning. --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 65e09ee..4a5122c 100644 --- a/readme.md +++ b/readme.md @@ -27,7 +27,7 @@ A powerful file browser application with special focus on audio file handling, M ### 1. Clone the repository ```bash git clone https://gitea.innovativedevsolutions.org/stan44/Fbrowser.git -cd fbroswer-master +cd fbroswer ``` ### 2. Install dependencies From e322a0dcc68739291b0328eb52c635ed0f6f2bec Mon Sep 17 00:00:00 2001 From: stan44 Date: Sun, 6 Apr 2025 20:33:09 -0500 Subject: [PATCH 3/6] updated a top comment to clarify run --- Fbrowser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Fbrowser.py b/Fbrowser.py index 91645ba..1dbd41c 100644 --- a/Fbrowser.py +++ b/Fbrowser.py @@ -1,7 +1,7 @@ -# flake8: noqa: E501 - """File browser implementation with tools and audio playback. this includes a midi player""" +# flake8: noqa: E501 +# This is the main file this file is the one to run. import sys import os From bfc4ad9f9923f07745789af6ca8beb3125aa2bd9 Mon Sep 17 00:00:00 2001 From: stan44 Date: Tue, 8 Apr 2025 00:17:19 -0500 Subject: [PATCH 4/6] Update readme.md --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 4a5122c..b745e85 100644 --- a/readme.md +++ b/readme.md @@ -5,10 +5,10 @@ A powerful file browser application with special focus on audio file handling, M ## Features - **Advanced File Browser**: Browse directories with tree view and file list -- **Audio Playback**: Built-in player for various audio formats -- **MIDI Player**: Full-featured MIDI player with playlist management +- **Audio Playback**: Built-in player for various audio formats (Via Qt Media powered by ffmpeg) +- **MIDI Player**: Full-featured MIDI player with playlist management (synthesis of midi's powered by fluidsynth) - **Metadata Extraction**: View and explore audio file metadata -- **Archive Management**: Extract ZIP, RAR, and 7z archives +- **Archive Management**: Extract ZIP, RAR, and 7z archives # Not fully implemented no way to use this outside of a custom debugger tool. (not included) - **Timer Utility**: Built-in countdown timer with audio alerts - **Hover Tooltips**: Quick metadata preview by hovering over audio files From 7e2550b2b246592d8c2d51ed9349de126894a57b Mon Sep 17 00:00:00 2001 From: stan44 Date: Tue, 8 Apr 2025 00:23:24 -0500 Subject: [PATCH 5/6] just updating readme to clarify a couple of things. --- readme.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index b745e85..9efd9b0 100644 --- a/readme.md +++ b/readme.md @@ -14,7 +14,7 @@ A powerful file browser application with special focus on audio file handling, M ## Requirements -- Python 3.6+ +- Python 3.6+ (maybe 3.8 or newer) - PyQt6 - FluidSynth (for MIDI playback) - Mido (MIDI handling library) @@ -37,7 +37,11 @@ pip install pyqt6 fluidsynth-midi mido mutagen py7zr rarfile numpy sounddevice ### 3. Install FluidSynth -- **Windows**: Download from [FluidSynth website](https://www.fluidsynth.org/) +- **Windows**: Download from [FluidSynth website](https://www.fluidsynth.org/) (you can also use choco [chocolatey website](https://chocolatey.org/)) +- **Windows Choco**: +```bash +choco install fluidsynth +``` - **macOS**: `brew install fluid-synth` - **Linux**: `sudo apt-get install fluidsynth` From 5349846eb4494d39500c7452518f85cad7f3d7c8 Mon Sep 17 00:00:00 2001 From: stan44 Date: Tue, 8 Apr 2025 00:24:26 -0500 Subject: [PATCH 6/6] Update readme.md --- readme.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/readme.md b/readme.md index 9efd9b0..9d25ab1 100644 --- a/readme.md +++ b/readme.md @@ -38,10 +38,7 @@ pip install pyqt6 fluidsynth-midi mido mutagen py7zr rarfile numpy sounddevice ### 3. Install FluidSynth - **Windows**: Download from [FluidSynth website](https://www.fluidsynth.org/) (you can also use choco [chocolatey website](https://chocolatey.org/)) -- **Windows Choco**: -```bash -choco install fluidsynth -``` +- **Windows Choco**: `choco install fluidsynth` - **macOS**: `brew install fluid-synth` - **Linux**: `sudo apt-get install fluidsynth`