Playlist Management¶
Motify provides powerful playlist management features that allow you to organize and download your music efficiently.
Features¶
View Playlists¶
- Access all your Spotify playlists
- Sort and filter playlists
- Search within playlists
- View playlist details and statistics
Download Playlists¶
- Select a playlist from your library
- Choose download quality and format
- Add to download queue
- Monitor download progress
Queue Management¶
- Add multiple playlists to queue
- Reorder download queue
- Pause/resume downloads
- Remove items from queue
Usage¶
Adding Playlists to Queue¶
from motify_music import SpotifyService
# Initialize service
spotify = SpotifyService()
# Get user playlists
playlists = spotify.get_user_playlists()
# Add playlist to download queue
spotify.add_to_queue(playlist_id="your_playlist_id")
Managing Download Queue¶
# Get current queue
queue = spotify.get_download_queue()
# Reorder queue
spotify.reorder_queue(queue_item_id="item_id", new_position=0)
# Remove from queue
spotify.remove_from_queue(queue_item_id="item_id")
Configuration¶
You can configure playlist download behavior in the settings:
- Download quality
- File naming format
- Metadata preferences
- Download location
Tips¶
- Use the search feature to quickly find playlists
- Sort playlists by name, date, or size
- Monitor download progress in the queue tab
- Use keyboard shortcuts for faster navigation
Troubleshooting¶
If you encounter issues with playlist downloads:
- Check your internet connection
- Verify Spotify credentials
- Ensure sufficient disk space
- Check download permissions
For more help, visit our GitHub issues page.