作者:Trix Cyrus
為什麼要用 Python 下載 Spotify 曲目?
用於離線收聽。
以 MP3 格式儲存您最喜愛的曲目。
用於建立個人音樂收藏。
~ 使用 Python,下載 Spotify 曲目成為一項簡單的自動化任務。
讓我們開始吧!
第1步:安裝spotdl
首先,您需要安裝 Spotdl 函式庫,這是一個輕量級 Python 工具,用於下載 MP3 格式的 Spotify 曲目。
開啟終端機並執行以下命令:
pip install spotdl
第 2 步:寫 Python 腳本
現在,我們將建立 Python 腳本來下載 Spotify 曲目、專輯或播放清單。
建立一個新的Python檔:
nano spotify_downloader.py
接下來,將以下腳本貼到該檔案中:
import subprocess def download_spotify_mp3(): print("Spotify to MP3 Downloader") content_type = input("What do you want to download? (Enter 'track', 'playlist', or 'album'): ").strip().lower() if content_type not in ['track', 'playlist', 'album']: print("Invalid choice. Please enter 'track', 'playlist', or 'album'.") return spotify_url = input(f"Enter the Spotify {content_type} URL: ").strip() try: print(f"\nDownloading {content_type} as MP3...") subprocess.run(["spotdl", "--format", "mp3", spotify_url]) print(f"\nDownload of {content_type} completed in MP3 format!\n") except Exception as e: print(f"An error occurred: {e}") if __name__ == "__main__": download_spotify_mp3()
第 3 步:執行腳本
儲存腳本後,執行以下命令:
python spotify_downloader.py
腳本將提示您輸入曲目、播放清單或專輯的 Spotify URL。它將下載 MP3 格式的內容。
一切就緒!
現在您可以使用 Python 輕鬆地將 MP3 格式的 Spotify 曲目直接下載到您的裝置。
如果出現任何問題或錯誤,請在下面評論。
~ TrixSec
以上是使用Python製作Spotify歌曲下載器(mp3)的詳細內容。更多資訊請關注PHP中文網其他相關文章!