Skip to content

Instantly share code, notes, and snippets.

View fakeyanss's full-sized avatar
🤪
Focusing

fakeyanss

🤪
Focusing
View GitHub Profile
@fakeyanss
fakeyanss / mp3_download.py
Created November 7, 2024 08:34
mp3下载脚本--youtube搜索歌名并下载音频
import os
from yt_dlp import YoutubeDL
from youtubesearchpython import VideosSearch
# 配置:YouTube下载选项
YDL_OPTIONS = {
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',