Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Video Downloader] Allow Users to Download Entire YouTube Playlists #17636

Open
arthurvrt opened this issue Mar 7, 2025 · 4 comments
Open

[Video Downloader] Allow Users to Download Entire YouTube Playlists #17636

arthurvrt opened this issue Mar 7, 2025 · 4 comments
Labels
extension: video-downloader Issues related to the video-downloader extension extension Issues related to one of the extensions in the Store feature request New feature or improvement

Comments

@arthurvrt
Copy link

arthurvrt commented Mar 7, 2025

Extension

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

Description

Background

Currently, the extension allows users to download individual videos from YouTube. However, many users may want to download all the videos from a playlist in one go instead of downloading them one by one.

This feature would be particularly useful for users who want to archive content, download educational courses, or simply save time when dealing with large playlists.

Solutions

Here are some ideas on how this could be implemented. Feel free to share your thoughts!

  1. Allow Playlist URLs in the Existing Input Field
  • Instead of creating a separate action, the extension should detect when a playlist URL is entered in the existing input field.
  • If the URL corresponds to a playlist, the extension should fetch the list of videos.
  1. Handle Video Quality Selection for Playlists
  • Since videos in a playlist may have different available qualities, we need to decide how to handle quality selection:
  • Ask the user to choose a quality for each video individually.
  • Only offer quality options that are available for all videos in the playlist.
  • This could be configurable in the extension preferences.
  1. Show a Download Progress Indicator
  • Since playlists can contain many videos, adding a progress indicator would help users track ongoing downloads.
  • A status update (e.g., “Downloading video X of Y”) could be displayed.
  1. (Bonus) Allow Users to Choose Between Video and Audio Downloads
  • As a more general improvement (not necessarily related to playlists), users could have the option to select whether they want to download videos or extract only the audio.

I can start working on a proof of concept by integrating playlist handling with yt-dlp, which already supports playlist downloads.

This would be my first contribution to this project, and I’d love to take it on! Looking forward to your feedback. 🚀

Who will benefit from this feature?

No response

Anything else?

No response

@arthurvrt arthurvrt added extension Issues related to one of the extensions in the Store feature request New feature or improvement labels Mar 7, 2025
@raycastbot raycastbot added the extension: youtube-downloader Issues related to the youtube-downloader extension label Mar 7, 2025
@raycastbot
Copy link
Collaborator

raycastbot commented Mar 7, 2025

Thank you for opening this issue!

🔔 @vimtor @darmiel @ridemountainpig @remorses @LitoMore @anwarulislam you might want to have a look.

💡 Author and Contributors commands

The author and contributors of vimtor/video-downloader can trigger bot actions by commenting:

  • @raycastbot close this issue Closes the issue.
  • @raycastbot close as not planned Closes the issue as not planned.
  • @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.

@vimtor
Copy link
Contributor

vimtor commented Mar 9, 2025

I think yt-dlp already supports playlists @LitoMore 👀

@arthurvrt
Copy link
Author

I think yt-dlp already supports playlists @LitoMore 👀

It does, but it’s not working with the Raycast extension. I think some changes need to be made to the extension to enable playlist downloads

@LitoMore
Copy link
Contributor

LitoMore commented Mar 9, 2025

See its output:

# This even has no ending
yt-dlp --dump-json 'https://www.youtube.com/watch?v=V3Xpaadt-RA&list=RDEM8WSMezX4Qc4JoWjOcIYWuQ'

It dumps multiple video objects in one process (not an array of videos).

Fetching all the data took a very long time, and we needed to separate the data manually.

It would be a terrible user experience with Raycast. I would suggest using the CLI directly to download playlists.

@pernielsentikaer pernielsentikaer added extension: video-downloader Issues related to the video-downloader extension and removed extension: youtube-downloader Issues related to the youtube-downloader extension labels Mar 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
extension: video-downloader Issues related to the video-downloader extension extension Issues related to one of the extensions in the Store feature request New feature or improvement
Projects
None yet
Development

No branches or pull requests

5 participants