Qili 中文|English
Qili is a subtitle spearker for live broadcasting at bilibili.com.
This software is licensed under GPL v3
Qili using Qt
's TextToSpeech
engine to speak subtitles out, targeting on Linux platform.
So, you may need to install some extra components provided by your Linux vendor.
- [] Adopt to Dark Mode
- [] Subtitle Storage
- [] Subtitle Analysis
- Windows 10 x86_64/amd64
- Ubuntu/Kylin 22.04
- openSUSE Tumbleweed
Please replace
/path/to/...
with the real path to the file
- Download the Installer
- Double click
Qili-1.0.0-Windows-AMD64.exe
and follow the instructions. - Launch Qili, login by scanning QRCode or just as anonymous, test voices using
Qili Settings
, andApply
if some one is ok.
Please replace
/path/to/...
with the real path to the file
- Install required components
sudo zypper in --recommends speech-dispatcher speech-dispatcher-configure speech-dispatcher-module-espeak espeak-ng
- Download Tumbleweed RPM
- Click on the rpm and following the instruction, or run the command with a terminal:
sudo zypper in ./me.sauntor.qili-1.0.0-opensuse-tumbleweed.20240109_x86_64.rpm
- Optional: compile and install
mbrola
from source code, you may search Google for help - Optional: run
spd-conf -u
and following the instruction to generate aspeech-dispatcher
config file for you - Launch Qili, login by scanning QRCode or just as anonymous, test voices using
Qili Settings
, andApply
if some one is ok.
- Download Ubuntu DEB
- Open
Terminal
, and run:
sudo apt install --fix-broken --install-recommends ./me.sauntor.qili-1.0.0-ubuntu.22.04_x86_64.deb
- Optional:
sudo apt install python3-speechd
- Optional: run
spd-conf -u
and following the instruction to generate aspeech-dispatcher
config file for you - Launch Qili, login by scanning QRCode or just as anonymous, test voices using
Qili Settings
, andApply
if some one is ok.
ROOM
number is not limited to your own- Qili may not receive subtitles from bilibili.com or receive subtitles without user names, if you login as an anonymous, biblibili controls this on it's privacy. But Qili can still speak it out when someone enter the room.
- Qili will hide to System Tray after it connected to bilibili.com.
- Click the tray icon to show the last 100 subtitles.
- Double click or Middle click to
Pause
/Resume
(if it supported by your system) - Qili does not collection any user's data, and no server side on its own
- Following KDE Code Style
- Fix bug, migrate, test and/or package Qili for other Linux distributions
- Working on
Schedules
and make aPull Request
Please add the following parameter to cmake arguments when Releasing/Packaging:
-DCMAKE_BUILD_TYPE=Release
or-DCMAKE_BUILD_TYPE=RelWithDebInfo
- openSUSE Tumbleweed
# Install required components sudo zypper in -t pattern devel_C_C++ devel_qt6 # The following line may not needed sudo zypper in --recommends cmake qt6-texttospeech-devel qt6-websockets-devel libbrotli-devel # Make a directory for building mkdir build && cd build # [1]Setup with cmake cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -B . -S /path/to/source/of/Qili # Compile cmake --build . --clean-first --verbose --target all # Packaging,you should add -DUSE_CPACK=ON to the arguments on [1], or re-execute [1] with this param cpack --config CPackConfig.cmake -G RPM -V # Integrate Custom Widgets with Qt Creator # replace/execute the command at [1] cmake -DDEV_MODE=ON \ -DCMAKE_BUILD_TYPE=Debug \ -DCMAKE_INSTALL_PREFIX=$HOME/QiliDev \ -B . \ -S /path/to/source/of/Qili # Install all (include qt designer plugin) components cmake --build . --clean-first --verbose --target install # Launch QtCreator LD_LIBRARY_PATH=$HOME/QiliDev/lib64 \ QT_PLUGIN_PATH=$HOME/QiliDev/plugins \ qtcreator
- Ubuntu/Kylin 22.04
# Install required components sudo apt install --install-recommends \ build-essential \ cmake \ qtbase5-dev \ qtbase5-dev-tools \ qttools5-dev \ qttools5-dev-tools \ libqt5texttospeech5-dev \ libqt5websockets5-dev \ libbrotli-dev # Make a directory for building mkdir build && cd build # [1]Setup with cmake cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DUSE_QT5=ON -B . -S /path/to/source/of/Qili # Compile cmake --build . --clean-first --verbose --target all # Packaging,you should add -DUSE_CPACK=ON to the arguments on [1], or re-execute [1] with this param cpack --config CPackConfig.cmake -G DEB -V