audiobookshelf/client/components/app
Claude aaf87821a3
Add YouTube download feature with yt-dlp integration
This commit implements a comprehensive YouTube download feature that allows
administrators to download audio from YouTube videos and playlists.

Backend Changes:
- Add yt-dlp-wrap npm dependency for YouTube downloading
- Create YouTubeDownloadManager to handle download queue and execution
- Create YouTubeDownloadController with API endpoints for download/queue/cancel
- Add YouTube utility functions for URL validation and metadata extraction
- Create YouTubeDownload object model for tracking download state
- Add API routes: POST /api/youtube/download, GET /api/youtube/queue, DELETE /api/youtube/download/:id
- Implement playlist support - automatically queue all videos from playlist URLs
- Download audio in MP3 format with best quality
- Organize files in subfolder structure: <Uploader>/<Video Title>/
- Extract metadata and create library items automatically
- Real-time progress updates via Socket.io

Frontend Changes:
- Create YouTubeDownloadModal component for user-friendly download interface
- Add download button to Appbar header (admin-only, visible with current library)
- Update Vuex store with modal state management
- Register modal globally in default layout
- Implement Socket.io listeners for download events (started, progress, completed, failed, queued)
- Show toast notifications for download status updates

Features:
- Admin-only access control
- Support for single videos and playlists
- Audio quality selection (best, 320kbps, 256kbps, 192kbps, 128kbps)
- Library and folder selection
- Download queue management
- Real-time progress tracking
- Automatic thumbnail download as cover image
- Automatic library item creation with metadata
- Error handling and user feedback

Technical Details:
- Uses yt-dlp for reliable YouTube downloading
- Integrates with existing task management system
- Respects library folder permissions
- Follows existing code patterns (similar to podcast downloads)
- Socket.io events for real-time updates
2025-12-31 01:32:37 +00:00
..
Appbar.vue Add YouTube download feature with yt-dlp integration 2025-12-31 01:32:37 +00:00
BookShelfCategorized.vue Add support for searching podcast episode titles #3301 2025-05-15 17:16:15 -05:00
BookShelfRow.vue Fix item edit modal show next/prev arrows when opening from Files or Match context menu item #4718 2025-10-08 14:52:14 -05:00
BookShelfToolbar.vue Replace some SVG icons with material-symbols 2025-08-01 09:20:34 +02:00
ConfigSideNav.vue Add get all, update and delete endpoints. Add api keys config page 2025-06-30 11:32:02 -05:00
LazyBookshelf.vue Fix item edit modal show next/prev arrows when opening from Files or Match context menu item #4718 2025-10-08 14:52:14 -05:00
MediaPlayerContainer.vue Update item image in audio player when updated on item #4025 2025-04-01 17:32:21 -05:00
SettingsContent.vue Tailwind V4 migration initial commit 2025-03-16 16:41:37 +02:00
SideRail.vue Replace some SVG icons with material-symbols 2025-08-01 09:20:34 +02:00