Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 177bc06b79 | |||
| 2aec9c0185 | |||
| a6a84cf869 | |||
| 3577574ad8 | |||
| 3696fc95a7 | |||
| effa462810 | |||
| 921faefecf | |||
| a4168450d1 | |||
| 7ba3efb75b | |||
| d18ba28864 | |||
| f8da9ecfd2 | |||
| 2588680846 | |||
| f3366f0554 |
@@ -1,6 +1,14 @@
|
||||
[](https://github.com/afkarxyz/SpotifyFLAC/releases)
|
||||
|
||||
**Spotify FLAC** allows you to download Spotify tracks in true FLAC format through services like Tidal, Amazon Music, Qobuz, and Deezer with the help of Lucida.
|
||||

|
||||
|
||||
<div align="center">
|
||||
<b>Spotify FLAC</b> allows you to download Spotify tracks in true FLAC format through services like Tidal, Amazon Music and Qobuz with the help of Lucida.
|
||||
</div>
|
||||
|
||||
### [Download](https://github.com/afkarxyz/SpotifyFLAC/releases/download/v1.5/SpotifyFLAC.exe)
|
||||
|
||||
#
|
||||
|
||||
> [!NOTE]
|
||||
> Requires **Google Chrome**
|
||||
@@ -8,16 +16,14 @@
|
||||
> [!WARNING]
|
||||
Sometimes, the **download speed** from Lucida can be fast or slow; it varies unpredictably.
|
||||
|
||||
#### [Download](https://github.com/afkarxyz/SpotifyFLAC/releases/download/v1.3/SpotifyFLAC.exe) Spotify FLAC
|
||||
|
||||
## Screenshots
|
||||
|
||||

|
||||

|
||||
|
||||
> - When **Headless** is enabled, the browser runs in the background without a graphical interface, improving performance and allowing seamless automation.
|
||||
> - When **Fallback** is enabled, it will use the backup server Lucida.su
|
||||
> - **Filename: Title** means the filename format is `Title - Artist`, and vice versa.
|
||||
> - I highly recommend **Tidal** or **Amazon Music** because `Qobuz` and `Deezer` occasionally experience issues.
|
||||
> - I highly recommend **Tidal** or **Amazon Music** because `Qobuz` occasionally experience issues.
|
||||
|
||||

|
||||
|
||||
@@ -29,4 +35,4 @@ Sometimes, the **download speed** from Lucida can be fast or slow; it varies unp
|
||||
|
||||

|
||||
|
||||
#### [Download](https://github.com/afkarxyz/SpotifyFLAC/releases/download/v0/FLAC-Checker.zip) FLAC Checker
|
||||
### [Download](https://github.com/afkarxyz/SpotifyFLAC/releases/download/v0/FLAC-Checker.zip) FLAC Checker
|
||||
|
||||
+50
-8
@@ -9,8 +9,8 @@ from PyQt6.QtWidgets import (QApplication, QMainWindow, QWidget, QVBoxLayout,
|
||||
QGroupBox, QComboBox)
|
||||
from PyQt6.QtCore import QThread, pyqtSignal, Qt, QSettings, QSize
|
||||
from PyQt6.QtGui import QIcon, QPixmap, QCursor
|
||||
from GetMetadata import get_metadata
|
||||
from LucidaDownloader import TrackDownloader
|
||||
from getMetadata import get_metadata
|
||||
from getTracks import TrackDownloader
|
||||
|
||||
class ImageDownloader(QThread):
|
||||
finished = pyqtSignal(bytes)
|
||||
@@ -102,10 +102,22 @@ class DownloaderWorker(QThread):
|
||||
self.last_downloaded_size = 0
|
||||
|
||||
def format_size(self, size_bytes):
|
||||
return f"{size_bytes / (1024 * 1024):.2f}MB"
|
||||
units = ['B', 'KB', 'MB', 'GB']
|
||||
index = 0
|
||||
while size_bytes >= 1024 and index < len(units) - 1:
|
||||
size_bytes /= 1024
|
||||
index += 1
|
||||
return f"{size_bytes:.2f}{units[index]}"
|
||||
|
||||
def format_speed(self, speed_bytes):
|
||||
return f"{speed_bytes * 8 / (1024 * 1024):.2f}Mbps"
|
||||
speed_bits = speed_bytes * 8
|
||||
|
||||
if speed_bits >= 1024 * 1024:
|
||||
speed_mbps = speed_bits / (1024 * 1024)
|
||||
return f"{speed_mbps:.2f}Mbps"
|
||||
else:
|
||||
speed_kbps = speed_bits / 1024
|
||||
return f"{speed_kbps:.2f}Kbps"
|
||||
|
||||
def progress_callback(self, downloaded_size, total_size):
|
||||
current_time = time.time()
|
||||
@@ -150,8 +162,7 @@ class ServiceComboBox(QComboBox):
|
||||
services = [
|
||||
{'id': 'tidal', 'name': 'Tidal', 'icon': 'tidal.png'},
|
||||
{'id': 'amazon', 'name': 'Amazon Music', 'icon': 'amazon.png'},
|
||||
{'id': 'qobuz', 'name': 'Qobuz', 'icon': 'qobuz.png'},
|
||||
{'id': 'deezer', 'name': 'Deezer', 'icon': 'deezer.png'}
|
||||
{'id': 'qobuz', 'name': 'Qobuz', 'icon': 'qobuz.png'}
|
||||
]
|
||||
|
||||
for service in services:
|
||||
@@ -388,9 +399,37 @@ class SpotifyFlacGUI(QMainWindow):
|
||||
self.progress_bar.hide()
|
||||
self.main_layout.addWidget(self.progress_bar)
|
||||
|
||||
bottom_layout = QHBoxLayout()
|
||||
|
||||
self.status_label = QLabel("")
|
||||
self.main_layout.addWidget(self.status_label)
|
||||
|
||||
bottom_layout.addWidget(self.status_label, stretch=1)
|
||||
|
||||
self.update_button = QPushButton()
|
||||
icon_path = os.path.join(os.path.dirname(__file__), "update.svg")
|
||||
if os.path.exists(icon_path):
|
||||
self.update_button.setIcon(QIcon(icon_path))
|
||||
self.update_button.setFixedSize(16, 16)
|
||||
self.update_button.setStyleSheet("""
|
||||
QPushButton {
|
||||
border: none;
|
||||
background: transparent;
|
||||
}
|
||||
QPushButton:hover {
|
||||
background: transparent;
|
||||
}
|
||||
""")
|
||||
self.update_button.setCursor(QCursor(Qt.CursorShape.PointingHandCursor))
|
||||
self.update_button.setToolTip("Check for Updates")
|
||||
self.update_button.clicked.connect(self.open_update_page)
|
||||
|
||||
bottom_layout.addWidget(self.update_button)
|
||||
|
||||
self.main_layout.addLayout(bottom_layout)
|
||||
|
||||
def open_update_page(self):
|
||||
import webbrowser
|
||||
webbrowser.open('https://github.com/afkarxyz/SpotifyFLAC/releases')
|
||||
|
||||
def validate_url(self, url):
|
||||
url = url.strip()
|
||||
self.fetch_button.setEnabled(False)
|
||||
@@ -439,6 +478,7 @@ class SpotifyFlacGUI(QMainWindow):
|
||||
self.track_widget.show()
|
||||
self.download_button.show()
|
||||
self.cancel_button.show()
|
||||
self.update_button.hide()
|
||||
self.status_label.clear()
|
||||
self.adjustWindowHeight()
|
||||
|
||||
@@ -479,6 +519,7 @@ class SpotifyFlacGUI(QMainWindow):
|
||||
self.status_label.clear()
|
||||
self.metadata = None
|
||||
self.fetch_button.setEnabled(True)
|
||||
self.update_button.show()
|
||||
self.setFixedHeight(180)
|
||||
|
||||
def button_clicked(self):
|
||||
@@ -499,6 +540,7 @@ class SpotifyFlacGUI(QMainWindow):
|
||||
self.track_widget.hide()
|
||||
self.input_widget.show()
|
||||
self.metadata = None
|
||||
self.update_button.show()
|
||||
self.setFixedHeight(180)
|
||||
|
||||
def start_download(self):
|
||||
|
||||
Reference in New Issue
Block a user