Updated to --skip-previous details

This commit is contained in:
DraftKinner 2025-02-09 17:23:15 -05:00
parent 08c6fb911e
commit 3ae34dae60
2 changed files with 6 additions and 5 deletions

View file

@ -10,10 +10,11 @@
- Added `--download-real-time` feature back.
- Added implementation for `--skip-previous` as it was included as a config parameter but was unimplemented.
- Added implementation for `--skip-duplicates` as it was included as a config parameter but was unimplemented. Note that tracks must have the key metadata for this to work. Tracks downloaded using version 0.9.8 will automatically have this. TBA: Procedure to add key metadata for tracks without it
### Removals
- None
- `--archive` to be removed as it is not used for `--skip-previous` and `--skip-duplicates`
### Fixes

View file

@ -5,8 +5,6 @@
This is a fork of Zotify's [dev branch](https://github.com/zotify-dev/zotify/tree/v1.0-dev) which hasn't seen any activity for months. This fork will be updated to include missing/unimplemented features and maintained by yours truly until the original developers decide to come home with the milk.
A customizable music and podcast downloader. \
Formerly ZSpotify.
Built on [Librespot](https://github.com/kokarare1212/librespot-python).
## Features
@ -52,8 +50,8 @@ Downloads specified items. Accepts any combination of track, album, playlist, ep
| Config key | Command line argument | Description | Default |
| ----------------------- | ------------------------- | --------------------------------------------------- | ---------------------------------------------------------- |
| path_credentials | --path-credentials | Path to credentials file | |
| path_archive | --path-archive | Path to track archive file | |
| path_credentials | --credentials | Path to credentials file | |
| path_archive | --archive | Path to track archive file | |
| music_library | --music-library | Path to root of music library | |
| podcast_library | --podcast-library | Path to root of podcast library | |
| mixed_playlist_library | --mixed-playlist-library | Path to root of mixed content playlist library | |
@ -69,6 +67,8 @@ Downloads specified items. Accepts any combination of track, album, playlist, ep
| ffmpeg_args | --ffmpeg-args | Additional ffmpeg arguments when transcoding | |
| save_credentials | --save-credentials | Save login credentials to a file | |
| replace_existing | --replace-existing | Redownload and replace songs if they already exist | |
| skip_previous | --skip-previous | Skip previously downloaded songs in the playlist | |
| skip_duplicates | --skip-duplicates | Skip downloading existing track to different album | |
</details>