nimiology / spotify_downloader_telegram__bot

This Python script allows you to download songs from Spotify withTelegram bot
MIT License
144 stars 155 forks source link

404 eror #9

Open DanyBoy1384 opened 2 years ago

DanyBoy1384 commented 2 years ago

if you run bot locally it downloads the song on your laptop or pc but gives the user in the chat 404 eror

Soebb commented 2 years ago

I had this issue with youtube-dl in my own use cases before, and i resolved it with adding 2 options to youtube-dl options. So maybe you want check by editing the options list :

options = { 'format': 'bestaudio/best', 'geo_bypass': True, 'nocheckcertificate': True, 'keepvideo': False, 'outtmpl': f'{self.trackName}.*', 'postprocessors': [{ 'key': 'FFmpegExtractAudio', 'preferredcodec': 'mp3', 'preferredquality': '320' }], }

Also I personally prefer using yt-dlp instead of youtube-dl nowadays.