sya

split youtube audio tracks, with an optional pyqt gui
git clone git://src.gearsix.net/sya
Log | Files | Refs | Atom | README

commit 5c3c1ac00a4a2e426dcbbfc1f30f600f65dff408
parent 63f7e6e1ab24a8d3246cd97cfe826eecb1016405
Author: gearsix <gearsix@tuta.io>
Date:   Mon, 24 Jul 2023 21:48:47 +0100

fix to Building example commands

Diffstat:
MREADME.md | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -114,11 +114,15 @@ To run *sya-pyqt*, you don't need to build a binary everytime, you can just run **POSIX (Linux, MacOS, BSD)** - pyinstaller ./src/sya-pyqt.py -F --windowed --add-data "./doc/HELP.md:." --add-data "./res/folder.png:." --add-data "./res/file.png:." --add-data "./sya.png:." --add-data "$FFMPEG:." --add-data "$YT-DLP:." + FFMPEG="<filepath to ffmpeg>" \ + YTDLP="<filepath to yt-dlp>" \ + pyinstaller ./src/sya-pyqt.py -F --windowed --add-data "./doc/HELP.md:." --add-data "./res/folder.png:." --add-data "./res/file.png:." --add-data "./res/sya.png:." --add-data "$FFMPEG:." --add-data "$YTDLP:." **Windows** - pyinstaller ./sya-pyqt.py -F --windowed --add-data ".\doc\HELP.md;." --add-data ".\res\folder.png;." --add-data ".\res\file.png;." --add-data ".\res\sya.png;." --add-data "$FFMPEG;." --add-data "$YT-DLP;." + $FFMPEG="<filepath to ffmpeg.exe>" + $YT_DLP="<filepath to yt-dlp.exe>" + pyinstaller .\src\sya-pyqt.py -F --windowed --add-data ".\doc\HELP.md;." --add-data ".\res\folder.png;." --add-data ".\res\file.png;." --add-data ".\res\sya.png;." --add-data "$FFMPEG;." --add-data "$YT_DLP;." **IMPORTANT NOTES**