diff --git a/apps/Chiaki/credits b/apps/Chiaki/credits new file mode 100644 index 0000000..82a4536 --- /dev/null +++ b/apps/Chiaki/credits @@ -0,0 +1,3 @@ +Chiaki software implementation by Florian Märkl: https://github.com/thestr4ng3r +Raspberry Pi fork implementation by Blueroom VR: https://github.com/Fredrum +Added to Pi-Apps by Markieautarkie: https://github.com/Markieautarkie diff --git a/apps/Chiaki/description b/apps/Chiaki/description new file mode 100644 index 0000000..b266b56 --- /dev/null +++ b/apps/Chiaki/description @@ -0,0 +1,19 @@ +Chiaki is a free and open source software client which enables PlayStation 4/5 remote play on the Raspberry Pi. + +Chiaki wiki: https://git.sr.ht/~thestr4ng3r/chiaki +Pi fork wiki: https://github.com/Fredrum/chiaki/wiki/Chiaki-for-the-Raspberry-Pi + +To run: Menu -> Games -> Chiaki +To run in a terminal: Chiaki/build/gui/chiaki + +----- Usage ----- +Once Chiaki is running, you can enter the settings menu (top right) to configure general/stream settings to your liking. Note that stream quality options are limited depending on your console. To connect and use a controller with Chiaki, please refer to the Pi fork wiki. +In most cases, Chiaki will automatically detect your console if it's turned on. Otherwise, you can add it manually by pressing the "+" icon (top right) and entering your console's IP address. + +To finalize the registration, two more parameters need to be set. +PSN AccountID: In a terminal, enter "python3 Chiaki/psn-account-id.py" and follow the instructions. +Registration PIN: +On a PS4, go to: Settings -> Remote Play -> Add Device; +On a PS5, go to: Settings -> System -> Remote Play -> Link Device. + +You can now double-click your console in Chiaki's main window to start remote play! diff --git a/apps/Chiaki/icon-24.png b/apps/Chiaki/icon-24.png new file mode 100644 index 0000000..374b880 Binary files /dev/null and b/apps/Chiaki/icon-24.png differ diff --git a/apps/Chiaki/icon-64.png b/apps/Chiaki/icon-64.png new file mode 100644 index 0000000..497098d Binary files /dev/null and b/apps/Chiaki/icon-64.png differ diff --git a/apps/Chiaki/install b/apps/Chiaki/install new file mode 100755 index 0000000..b013320 --- /dev/null +++ b/apps/Chiaki/install @@ -0,0 +1,40 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +# install dependencies +"${DIRECTORY}/pkg-install" "cmake python3-protobuf protobuf-compiler libavcodec-dev libopus-dev libsdl2-dev libssl-dev qt5-default qtmultimedia5-dev libqt5svg5-dev libqt5multimedia5-plugins libqt5opengl5-dev" "$(dirname "$0")" || exit 1 + +# install Chiaki +git clone --single-branch --branch rpi01 https://github.com/Fredrum/chiaki.git Chiaki || error "failed to clone the Chiaki repository!" +cd Chiaki || error "failed to enter the Chiaki folder!" +git submodule update --init || error "failed to update the Chiaki submodule!" + +# build the application +mkdir build || error "failed to create build folder!" +cd build || error "failed to enter the build folder!" +cmake .. -DCMAKE_BUILD_TYPE=Release || error "failed to initialize cmake configurations!" +make || error "failed to build the Chiaki application!" + +# create desktop entry +echo "[Desktop Entry] +Type=Application +Name=Chiaki +GenericName=PlayStation Streaming Software +Comment=Chiaki is a free and open source software client for PlayStation 4/5 remote play functionality +Icon=$(dirname $0)/icon-64.png +Exec=$HOME/Chiaki/build/gui/chiaki +Terminal=false +Categories=Game;RemoteAccess;Amusement; +Keywords=Remote;Streaming;PS4;PS5;Games; +StartupNotify=true" > $HOME/.local/share/applications/chiaki.desktop + +# download PSN AccountID script +wget https://git.sr.ht/~thestr4ng3r/chiaki/blob/master/scripts/psn-account-id.py -P $HOME/Chiaki || error "failed to download PSN AccountID script!" + +exit 0 diff --git a/apps/Chiaki/uninstall b/apps/Chiaki/uninstall new file mode 100755 index 0000000..827761f --- /dev/null +++ b/apps/Chiaki/uninstall @@ -0,0 +1,17 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +# remove dependencies +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 + +# remove Chiaki folder and desktop entry +rm -rf $HOME/Chiaki || error "failed to delete Chiaki folder!" +rm -f $HOME/.local/share/applications/chiaki.desktop || error "failed to delete Chiaki desktop entry!" + +exit 0 diff --git a/apps/Chiaki/website b/apps/Chiaki/website new file mode 100644 index 0000000..8e7d9b9 --- /dev/null +++ b/apps/Chiaki/website @@ -0,0 +1 @@ +https://github.com/Fredrum/chiaki/wiki/Chiaki-for-the-Raspberry-Pi