A cross-platform music player based on PyQt5.
English | 简体中文
-
Play local music
-
Search, play and download online music
-
Create and manage custom playlist
-
View and edit song meta data
-
Watch and download MV
-
Create virtual environment:
conda create -n Groove python=3.8 conda activate Groove pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
-
Download decoder:
- For the Win32, you should install LAV Filters.
- For the Linux, you should install GStreamer.
-
Open Groove music:
cd app conda activate Groove python Groove.py
- Download and install LAV Filters
- Download
Groove_v*.*.*_windows_x64.zip
from release page - Unzip
Groove_v*.*.*_windows_x64.zip
- Go to
Groove
folder, find and double click Groove.exe - Start to enjoy your music~~
- Install GStreamer
- Download
Groove_v*.*.*_linux_x64.zip
from release page - Unzip
Groove_v*.*.*_linux_x64.zip
- Go to
Groove
folder, find and double click the Groove executable file - Start to enjoy your music~~
-
Why does the window get stuck when it is dragged?
Because the interface background uses acrylic effect, this problem will occur for some versions of win10. There are three solutions:
- Upgrade Win10 to Win11.
- Uncheck the check box of Advanced system settings --> Performance --> Show window contents when dragging.
- Turn off the option to enable acrylic background in the setting interface.
-
What formats of audio files are supported?
Currently, the following formats are supported:
- True Audio File(*.tta)
- WAVE Audio File(*.wav)
- WavPack Audio File(*.wv)
- Audio Codec 3 File(*.ac3)
- Ogg Opus Audio File(*.opus)
- Ogg Vorbis Audio File(*.ogg)
- MPEG File(*.mp3, *.m4a, *.mp4)
- Windows Media Audio File(*.wma)
- Advanced Audio Coding File(*.aac)
- Advanced Systems Format File(*.asf)
- Audio Interchange File Format(*.aiff)
- Free Lossless Audio Codec File(*.flac)
- Musepack Compressed Audio File(*.mpc)
- Monkey's Audio Lossless Audio File(*.ape)
-
Why did GStreamer report this error: Warning: "No decoder available for type blah blah"?
I solved this problem on Ubuntu 20.04 by
sudo apt-get install gstreamer1.0-libav
.
MIT License
Copyright (c) 2022 Zhengzhi Huang
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.