raycast / extensions

Everything you need to extend Raycast.
https://developers.raycast.com
MIT License
5.21k stars 2.91k forks source link

[YouTube Downloader] Downloads not working... #13434

Closed brunocbreis closed 1 month ago

brunocbreis commented 1 month ago

Extension

https://www.raycast.com/vimtor/youtube-downloader

Raycast Version

 1.78.1

macOS Version

Version 14.5 (23F79)

Description

The extension seems to be broken. Is it that the service it uses to download from YouTube might be down?

Steps To Reproduce

  1. try to download a video, say https://youtu.be/QYquJ-USWOo
  2. It fails

Current Behaviour

Doesn't download. Displays this toast: Arc-ss-001277@2x

Expected Behaviour

Downloads the video

raycastbot commented 1 month ago

Thank you for opening this issue!

🔔 @vimtor @pernielsentikaer @darmiel @ridemountainpig you might want to have a look.

💡 Author and Contributors commands The author and contributors of `vimtor/youtube-downloader` can trigger bot actions by commenting: - `@raycastbot close this issue` Closes the issue. - `@raycastbot rename this issue to "Awesome new title"` Renames the issue. - `@raycastbot reopen this issue` Reopens the issue. - `@raycastbot assign me` Assigns yourself to the issue. - `@raycastbot good first issue` Adds the "Good first issue" label to the issue. - `@raycastbot keep this issue open` Make sure the issue won't go stale and will be kept open by the bot.
brunocbreis commented 1 month ago
catch (err) {
    toast.title = "Download Failed";
    toast.style = Toast.Style.Failure;
    const error = err as Error;
    if (error.message.includes("private video")) {
      toast.message = "This video is private and cannot be downloaded.";
    } else if (error.message.includes("429")) {
      toast.message = "You have exceeded your download quota.";
    } else {
      toast.message = "Please try again later. " + error.message;
    }
    return;

i forked the extension and added this bit to learn more about the error and apparently we're getting a 403 status code from the request Arc-ss-001279@2x

brunocbreis commented 1 month ago

https://github.com/fent/node-ytdl-core/issues/1295

👆 seems to be a problem with the service

ridemountainpig commented 1 month ago

@raycastbot close this issue