sya

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

commit db33381e083fbba6dba7e237c55c37ffa1dd41f4
parent 5e49cf578c213d48ec2dfccc213eb4b466fef63d
Author: gearsix <gearsix@tuta.io>
Date:   Fri, 18 Nov 2022 15:00:43 +0000

minor amendment in README

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

diff --git a/README.md b/README.md @@ -112,14 +112,14 @@ To run *sya-pyqt*, you don't need to build a binary everytime, you can just run **POSIX (Linux, MacOS, BSD)** - pyinstaller ./sya-pyqt.py -F --windowed --add-data "./folder.png:." --add-data "./file.png:." --add-data "./sya.png:." --add-data "FFMPEG:." --add-data "YT-DLP:." + pyinstaller ./sya-pyqt.py -F --windowed --add-data "./folder.png:." --add-data "./file.png:." --add-data "./sya.png:." --add-data "$FFMPEG:." --add-data "$YT-DLP:." **Windows** - pyinstaller ./sya-pyqt.py -F --windowed --add-data ".\folder.png;." --add-data ".\file.png;." --add-data ".\sya.png;." --add-data "FFMPEG;." --add-data "YT-DLP;." + pyinstaller ./sya-pyqt.py -F --windowed --add-data ".\folder.png;." --add-data ".\file.png;." --add-data ".\sya.png;." --add-data "$FFMPEG;." --add-data "$YT-DLP;." -- Make sure you have a *yt-dlp* binary available, the filepath of this is referred to as *YT-DLP*. -- Make sure you have a *ffmpeg* binary available, the filepath of this is referred to as *FFMPEG*. +- Make sure you have a *yt-dlp* binary available, the filepath of this is referred to as *$YT-DLP*. +- Make sure you have a *ffmpeg* binary available, the filepath of this is referred to as *$FFMPEG*. - In some cases, I've found the path of PyQt5 has had to be explicitly given to *pyinstaller*: `--path <site-packages filepath>\PyQt5`