diff --git a/DOCS.md b/DOCS.md new file mode 100644 index 0000000..0146ade --- /dev/null +++ b/DOCS.md @@ -0,0 +1,18 @@ +# KittehPlayer +A YouTube-like video player based on Qt, QML and libmpv. +## Configuration +### Config Location +- On linux the config file will be located at `~/.config/KittehPlayer/KittehPlayer.conf` +### Supported Languages +- `english` +- `french` +- `spanish` +- `german` +- `italian` +- `russian` +- `norweigan` +- If your language isn't listed above then please either contact me (details at bottom of readme) or make a PR with the translations which are located in the file `src/qml/translations.js`. +### MPV Config +- Since KittehPlayer's default backend is based on libmpv, you can use the mpv.conf from `~/.config/mpv/mpv.conf`. +### SVP Support +- KittehPlayer works with SVP, you just need to follow the same guides as for MPV. \ No newline at end of file diff --git a/README.md b/README.md index a7493c3..7cfc3b2 100644 --- a/README.md +++ b/README.md @@ -41,18 +41,4 @@ sudo apt-get build-dep mpv libmpv* ffmpeg - The finished player will then be installed and you can launch it using `KittehPlayer` ## Configuration -### Config Location -- On linux the config file will be located at `~/.config/KittehPlayer/KittehPlayer.conf` -### Supported Languages -- `english` -- `french` -- `spanish` -- `german` -- `italian` -- `russian` -- `norweigan` -- If your language isn't listed above then please either contact me (details at bottom of readme) or make a PR with the translations which are located in the file `src/qml/translations.js`. -### MPV Config -- Since KittehPlayer's default backend is based on libmpv, you can use the mpv.conf from `~/.config/mpv/mpv.conf`. -### SmoothVideo Project Support -- KittehPlayer works with SVP, you just need to follow the same guides as for MPV. \ No newline at end of file +- For docs on KittehPlayer please view DOCS.md or `man KittehPlayer` \ No newline at end of file diff --git a/scripts/makeappimage.sh b/scripts/makeappimage.sh index de36299..25e067d 100755 --- a/scripts/makeappimage.sh +++ b/scripts/makeappimage.sh @@ -18,7 +18,7 @@ mkdir -p appdir/usr/lib if [ "$ARCH" == "" ]; then ARCH="x86_64" fi -wget $(curl -s https://api.github.com/repos/AppImage/AppImageUpdate/releases | grep browser_download_url | grep x86_64.AppImage | grep appimageupdatetool | grep -v zsync | cut -d'"' -f4) -O appdir/usr/bin/appimageupdatetool +wget `curl -s https://api.github.com/repos/AppImage/AppImageUpdate/releases | grep browser_download_url | grep x86_64.AppImage | grep appimageupdatetool | grep -v zsync | cut -d'"' -f4` -O appdir/usr/bin/appimageupdatetool chmod +x appdir/usr/bin/appimageupdatetool wget https://yt-dl.org/downloads/latest/youtube-dl -O appdir/usr/bin/youtube-dl