votify


Namevotify JSON
Version 1.5.4 PyPI version JSON
download
home_pageNone
SummaryA command-line app for downloading songs, podcasts and videos from Spotify.
upload_time2025-07-13 15:30:50
maintainerNone
docs_urlNone
authorglomatico
requires_python>=3.10
licenseNone
keywords
VCS
bugtrack_url
requirements click colorama inquirerpy mutagen pillow protobuf pybase62 pycryptodome pywidevine yt-dlp
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Votify

A command-line app for downloading songs, podcasts and videos from Spotify.

**Discord Server:** https://discord.gg/aBjMEZ9tnq

## Features

- **Songs**: Download songs up in AAC 128kbps or in AAC 256kbps with an active premium subscription.
- **Podcasts**: Download podcasts in Vorbis or AAC.
- **Videos**: Download podcast videos and music videos with an active premium subscription.
- **Synced Lyrics**: Download synced lyrics in LRC.
- **Artist Support**: Download an entire discography by providing the artist's URL.
- **Highly Customizable**: Extensive configuration options for advanced users.

## Prerequisites

- **Python 3.10 or higher** installed on your system.
- The **cookies file** of your Spotify browser session in Netscape format.
  - **Firefox**: Use the [Export Cookies](https://addons.mozilla.org/addon/export-cookies-txt) extension.
  - **Chromium-based Browsers**: Use the [Get cookies.txt LOCALLY](https://chromewebstore.google.com/detail/get-cookiestxt-locally/cclelndahbckbenkjhflpdbgdldlbecc) extension.
- **FFmpeg** on your system PATH.
  - **Windows**: Download from [AnimMouse's FFmpeg Builds](https://github.com/AnimMouse/ffmpeg-stable-autobuild/releases).
  - **Linux**: Download from [John Van Sickle's FFmpeg Builds](https://johnvansickle.com/ffmpeg/).
- A **.wvd file**.
  - A .wvd file contains the Widevine keys from a device and is required to decrypt music videos and songs in AAC. The easiest method of obtaining one is using KeyDive, which extracts it from an Android device. Detailed instructions can be found here: https://github.com/hyugogirubato/KeyDive. **.wvd files extracted from emulated devices may not work**.

#### Notes

- **Some users have reported that Spotify suspended their accounts after using Votify**. Use it at your own risk.
- The .wvd file is not required if you plan on only downloading podcasts and can be skipped by enabling the `disable_wvd` option.
- FFmpeg is not required if you plan on only downloading podcasts in Vorbis, but it's needed for downloading podcasts in AAC.

### Optional dependencies

The following tools are optional but required for specific features. Add them to your system's PATH or specify their paths using command-line arguments or the config file.

- [MP4Box](https://gpac.io/downloads/gpac-nightly-builds/): Required when setting `mp4box` as remux mode.
- [Shaka Packager](https://github.com/shaka-project/shaka-packager/releases/latest): Required when setting `webm` as video format and when downloading music videos.
- [mp4decrypt](https://www.bento4.com/downloads/): Required when setting `mp4box` or `mp4decrypt` as remux mode.
- [aria2c](https://github.com/aria2/aria2/releases): Required when setting `aria2c` as download mode.

## Installation

1. Install the package `votify` using pip:
   ```bash
   pip install votify
   ```
2. Set up the cookies file.
   - Move the cookies file to the directory where you'll run Votify and rename it to `cookies.txt`.
   - Alternatively, specify the path to the cookies file using command-line arguments or the config file.
3. Set up the .wvd file.
   - Move the .wvd file file to the directory where you'll run Votify and rename it to `device.wvd`.
   - Alternatively, specify the path to the .wvd file using command-line arguments or the config file.

## Usage

Run Votify with the following command:

```bash
votify [OPTIONS] URLS...
```

### Supported URL types

- Song
- Album
- Playlist
- Podcast episode
- Podcast series
- Music video
- Artist

### Examples

- Download a song
  ```bash
  votify "https://open.spotify.com/track/18gqCQzqYb0zvurQPlRkpo"
  ```
- Download an album
  ```bash
  votify "https://open.spotify.com/album/0r8D5N674HbTXlR3zNxeU1"
  ```
- Download a podcast episode
  ```bash
  votify "https://open.spotify.com/episode/3kwxWnzGH8T6UY2Nq582zx"
  ```
- Download a podcast series
  ```bash
  votify "https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk"
  ```
- Download a music video
  ```bash
  votify "https://open.spotify.com/track/31k4hgHmrbzorLZMvMWuzq" --download-music-videos
  ```
- List and select a related music video to download from a song
  ```bash
  votify "https://open.spotify.com/track/0a0n6u6j3t6m0p4k0t0k0u0" --download-music-videos
  ```
- Download a podcast video
  ```bash
  votify "https://open.spotify.com/episode/3kwxWnzGH8T6UY2Nq582zx" --download-podcast-videos
  ```
- Choose which albums to download from an artist
  ```bash
  votify "https://open.spotify.com/artist/0gxyHStUsqpMadRV0Di1Qt"
  ```

### Interactive prompt controls

- **Arrow keys**: Move selection
- **Space**: Toggle selection
- **Ctrl + A**: Select all
- **Enter**: Confirm selection

## Configuration

Votify can be configured using the command-line arguments or the config file.

The config file is created automatically when you run Votify for the first time at `~/.votify/config.json` on Linux and `%USERPROFILE%\.votify\config.json` on Windows.

Config file values can be overridden using command-line arguments.

| Command-line argument / Config file key                         | Description                                                        | Default value                                  |
| --------------------------------------------------------------- | ------------------------------------------------------------------ | ---------------------------------------------- |
| `--wait-interval`, `-w` / `wait_interval`                       | Wait interval between downloads in seconds.                        | `5`                                            |
| `--disable-wvd` / `disable_wvd`                                 | Disable Widevine decryption                                        | `false`                                        |
| `--download-music-videos` / `download_music_videos`             | List and select a related music video to download from songs.      | `false`                                        |
| `--download-podcast-videos` / `download_podcast_videos`         | Attempt to download the video version of podcasts.                 | `false`                                        |
| `--force-premium`, `-f` / `force_premium`                       | Force to detect the account as premium.                            | `false`                                        |
| `--read-urls-as-txt`, `-r` / -                                  | Interpret URLs as paths to text files containing URLs.             | `false`                                        |
| `--config-path` / -                                             | Path to config file.                                               | `<home>/.spotify-web-downloader/config.json`   |
| `--log-level` / `log_level`                                     | Log level.                                                         | `INFO`                                         |
| `--no-exceptions` / `no_exceptions`                             | Don't print exceptions.                                            | `false`                                        |
| `--cookies-path` / `cookies_path`                               | Path to cookies file.                                              | `cookies.txt`                                  |
| `--output-path`, `-o` / `output_path`                           | Path to output directory.                                          | `Spotify`                                      |
| `--temp-path` / `temp_path`                                     | Path to temporary directory.                                       | `temp`                                         |
| `--wvd-path` / `wvd_path`                                       | Path to .wvd file.                                                 | `device.wvd`                                   |
| `--aria2c-path` / `aria2c_path`                                 | Path to aria2c binary.                                             | `aria2c`                                       |
| `--ffmpeg-path` / `ffmpeg_path`                                 | Path to ffmpeg binary.                                             | `ffmpeg`                                       |
| `--mp4box-path` / `mp4box_path`                                 | Path to MP4Box binary.                                             | `mp4box`                                       |
| `--mp4decrypt-path` / `mp4decrypt_path`                         | Path to mp4decrypt binary.                                         | `mp4decrypt`                                   |
| `--packager-path` / `packager_path`                             | Path to Shaka Packager binary.                                     | `packager`                                     |
| `--template-folder-album` / `template_folder_album`             | Template folder for tracks that are part of an album.              | `{album_artist}/{album}`                       |
| `--template-folder-compilation` / `template_folder_compilation` | Template folder for tracks that are part of a compilation album.   | `Compilations/{album}`                         |
| `--template-file-single-disc` / `template_file_single_disc`     | Template file for the tracks that are part of a single-disc album. | `{track:02d} {title}`                          |
| `--template-file-multi-disc` / `template_file_multi_disc`       | Template file for the tracks that are part of a multi-disc album.  | `{disc}-{track:02d} {title}`                   |
| `--template-folder-episode` / `template_folder_episode`         | Template folder for episodes (podcasts).                           | `Podcasts/{album}`                             |
| `--template-file-episode` / `template_file_episode`             | Template file for music videos.                                    | `{track:02d} {title}`                          |
| `--template-folder-music-video` / `template_folder_music_video` | Template folder for music videos                                   | `{artist}/Unknown Album`                       |
| `--template-file-music-video` / `template_file_music_video`     | Template file for the tracks that are not part of an album.        | `{title}`                                      |
| `--template-file-playlist` / `template_file_playlist`           | Template file for the M3U8 playlist.                               | `Playlists/{playlist_artist}/{playlist_title}` |
| `--date-tag-template` / `date_tag_template`                     | Date tag template.                                                 | `%Y-%m-%dT%H:%M:%SZ`                           |
| `--cover-size` / `cover_size`                                   | Cover size.                                                        | `extra-large`                                  |
| `--save-cover` / `save_cover`                                   | Save cover as a separate file.                                     | `false`                                        |
| `--save-playlist` / `save_playlist`                             | Save a M3U8 playlist file when downloading a playlist.             | `false`                                        |
| `--overwrite` / `overwrite`                                     | Overwrite existing files.                                          | `false`                                        |
| `--exclude-tags` / `exclude_tags`                               | Comma-separated tags to exclude.                                   | `null`                                         |
| `--truncate` / `truncate`                                       | Maximum length of the file/folder names.                           | `null`                                         |
| `--audio-quality`, `-a` / `audio_quality`                       | Audio quality for songs and podcasts.                              | `aac-medium`                                   |
| `--download-mode`, `-d` / `download_mode`                       | Download mode for songs and podcasts.                              | `ytdlp`                                        |
| `--remux-mode-audio` / `remux_mode_audio`                       | Remux mode for songs and podcasts.                                 | `ffmpeg`                                       |
| `--lrc-only`, `-l` / `lrc_only`                                 | Download only the synced lyrics.                                   | `false`                                        |
| `--no-lrc` / `no_lrc`                                           | Don't download the synced lyrics.                                  | `false`                                        |
| `--video-format` / `video_format`                               | Video format.                                                      | `mp4`                                          |
| `--remux-mode-video` / `remux_mode_video`                       | Remux mode for videos.                                             | `ffmpeg`                                       |
| `--no-config-file`, `-n` / -                                    | Do not use a config file.                                          | `false`                                        |

### Tag variables

The following variables can be used in the template folder/file and/or in the `exclude_tags` list:

- `album`
- `album_artist`
- `artist`
- `compilation`
- `composer`
- `copyright`
- `cover`
- `disc`
- `disc_total`
- `isrc`
- `label`
- `lyrics`
- `media_type`
- `playlist_artist`
- `playlist_title`
- `playlist_track`
- `publisher`
- `producer`
- `rating`
- `release_date`
- `release_year`
- `title`
- `track`
- `track_total`
- `url`

### Cover sizes

- `small`: up to 64px
- `medium`: up to 300px
- `large`: up to 640px
- `extra-large`: up to 2000px

### Audio qualities

- General codecs:
  - `aac-medium`: 128kbps
  - `aac-high` 256kbps, requires an active premium subscription
- Podcast only codecs:
  - `vorbis-high`: 320kbps, requires an active premium subscription
  - `vorbis-medium`: 160kbps
  - `vorbis-low`: 96kbps

### Video formats

- `mp4`: H.264 Up to 1080p with AAC 128kbps.
- `webm`: VP9 Up to 1080p with Opus 160kbps.
- `ask`: Prompt to choose available video and audio codecs.

### Download modes

- `ytdlp`: Default download mode.
- `aria2c`: Faster alternative to `ytdlp` only applicable to songs and podcasts.

### Video remux modes

- `ffmpeg`
- `mp4box`

### Audio remux modes

- `ffmpeg`
- `mp4box`
- `mp4decrypt`

### Credits

- [spotify-oggmp4-dl](https://github.com/DevLARLEY/spotify-oggmp4-dl)
- [spsync](https://github.com/baltitenger/spsync)
- [unplayplay](https://git.gay/uhwot/unplayplay)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "votify",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": "glomatico",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/2a/aa/aa3df91e54aa3d7f862df0e529aa0e7cb868d57bd6eab7e28dabec74021c/votify-1.5.4.tar.gz",
    "platform": null,
    "description": "# Votify\n\nA command-line app for downloading songs, podcasts and videos from Spotify.\n\n**Discord Server:** https://discord.gg/aBjMEZ9tnq\n\n## Features\n\n- **Songs**: Download songs up in AAC 128kbps or in AAC 256kbps with an active premium subscription.\n- **Podcasts**: Download podcasts in Vorbis or AAC.\n- **Videos**: Download podcast videos and music videos with an active premium subscription.\n- **Synced Lyrics**: Download synced lyrics in LRC.\n- **Artist Support**: Download an entire discography by providing the artist's URL.\n- **Highly Customizable**: Extensive configuration options for advanced users.\n\n## Prerequisites\n\n- **Python 3.10 or higher** installed on your system.\n- The **cookies file** of your Spotify browser session in Netscape format.\n  - **Firefox**: Use the [Export Cookies](https://addons.mozilla.org/addon/export-cookies-txt) extension.\n  - **Chromium-based Browsers**: Use the [Get cookies.txt LOCALLY](https://chromewebstore.google.com/detail/get-cookiestxt-locally/cclelndahbckbenkjhflpdbgdldlbecc) extension.\n- **FFmpeg** on your system PATH.\n  - **Windows**: Download from [AnimMouse's FFmpeg Builds](https://github.com/AnimMouse/ffmpeg-stable-autobuild/releases).\n  - **Linux**: Download from [John Van Sickle's FFmpeg Builds](https://johnvansickle.com/ffmpeg/).\n- A **.wvd file**.\n  - A .wvd file contains the Widevine keys from a device and is required to decrypt music videos and songs in AAC. The easiest method of obtaining one is using KeyDive, which extracts it from an Android device. Detailed instructions can be found here: https://github.com/hyugogirubato/KeyDive. **.wvd files extracted from emulated devices may not work**.\n\n#### Notes\n\n- **Some users have reported that Spotify suspended their accounts after using Votify**. Use it at your own risk.\n- The .wvd file is not required if you plan on only downloading podcasts and can be skipped by enabling the `disable_wvd` option.\n- FFmpeg is not required if you plan on only downloading podcasts in Vorbis, but it's needed for downloading podcasts in AAC.\n\n### Optional dependencies\n\nThe following tools are optional but required for specific features. Add them to your system's PATH or specify their paths using command-line arguments or the config file.\n\n- [MP4Box](https://gpac.io/downloads/gpac-nightly-builds/): Required when setting `mp4box` as remux mode.\n- [Shaka Packager](https://github.com/shaka-project/shaka-packager/releases/latest): Required when setting `webm` as video format and when downloading music videos.\n- [mp4decrypt](https://www.bento4.com/downloads/): Required when setting `mp4box` or `mp4decrypt` as remux mode.\n- [aria2c](https://github.com/aria2/aria2/releases): Required when setting `aria2c` as download mode.\n\n## Installation\n\n1. Install the package `votify` using pip:\n   ```bash\n   pip install votify\n   ```\n2. Set up the cookies file.\n   - Move the cookies file to the directory where you'll run Votify and rename it to `cookies.txt`.\n   - Alternatively, specify the path to the cookies file using command-line arguments or the config file.\n3. Set up the .wvd file.\n   - Move the .wvd file file to the directory where you'll run Votify and rename it to `device.wvd`.\n   - Alternatively, specify the path to the .wvd file using command-line arguments or the config file.\n\n## Usage\n\nRun Votify with the following command:\n\n```bash\nvotify [OPTIONS] URLS...\n```\n\n### Supported URL types\n\n- Song\n- Album\n- Playlist\n- Podcast episode\n- Podcast series\n- Music video\n- Artist\n\n### Examples\n\n- Download a song\n  ```bash\n  votify \"https://open.spotify.com/track/18gqCQzqYb0zvurQPlRkpo\"\n  ```\n- Download an album\n  ```bash\n  votify \"https://open.spotify.com/album/0r8D5N674HbTXlR3zNxeU1\"\n  ```\n- Download a podcast episode\n  ```bash\n  votify \"https://open.spotify.com/episode/3kwxWnzGH8T6UY2Nq582zx\"\n  ```\n- Download a podcast series\n  ```bash\n  votify \"https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk\"\n  ```\n- Download a music video\n  ```bash\n  votify \"https://open.spotify.com/track/31k4hgHmrbzorLZMvMWuzq\" --download-music-videos\n  ```\n- List and select a related music video to download from a song\n  ```bash\n  votify \"https://open.spotify.com/track/0a0n6u6j3t6m0p4k0t0k0u0\" --download-music-videos\n  ```\n- Download a podcast video\n  ```bash\n  votify \"https://open.spotify.com/episode/3kwxWnzGH8T6UY2Nq582zx\" --download-podcast-videos\n  ```\n- Choose which albums to download from an artist\n  ```bash\n  votify \"https://open.spotify.com/artist/0gxyHStUsqpMadRV0Di1Qt\"\n  ```\n\n### Interactive prompt controls\n\n- **Arrow keys**: Move selection\n- **Space**: Toggle selection\n- **Ctrl + A**: Select all\n- **Enter**: Confirm selection\n\n## Configuration\n\nVotify can be configured using the command-line arguments or the config file.\n\nThe config file is created automatically when you run Votify for the first time at `~/.votify/config.json` on Linux and `%USERPROFILE%\\.votify\\config.json` on Windows.\n\nConfig file values can be overridden using command-line arguments.\n\n| Command-line argument / Config file key                         | Description                                                        | Default value                                  |\n| --------------------------------------------------------------- | ------------------------------------------------------------------ | ---------------------------------------------- |\n| `--wait-interval`, `-w` / `wait_interval`                       | Wait interval between downloads in seconds.                        | `5`                                            |\n| `--disable-wvd` / `disable_wvd`                                 | Disable Widevine decryption                                        | `false`                                        |\n| `--download-music-videos` / `download_music_videos`             | List and select a related music video to download from songs.      | `false`                                        |\n| `--download-podcast-videos` / `download_podcast_videos`         | Attempt to download the video version of podcasts.                 | `false`                                        |\n| `--force-premium`, `-f` / `force_premium`                       | Force to detect the account as premium.                            | `false`                                        |\n| `--read-urls-as-txt`, `-r` / -                                  | Interpret URLs as paths to text files containing URLs.             | `false`                                        |\n| `--config-path` / -                                             | Path to config file.                                               | `<home>/.spotify-web-downloader/config.json`   |\n| `--log-level` / `log_level`                                     | Log level.                                                         | `INFO`                                         |\n| `--no-exceptions` / `no_exceptions`                             | Don't print exceptions.                                            | `false`                                        |\n| `--cookies-path` / `cookies_path`                               | Path to cookies file.                                              | `cookies.txt`                                  |\n| `--output-path`, `-o` / `output_path`                           | Path to output directory.                                          | `Spotify`                                      |\n| `--temp-path` / `temp_path`                                     | Path to temporary directory.                                       | `temp`                                         |\n| `--wvd-path` / `wvd_path`                                       | Path to .wvd file.                                                 | `device.wvd`                                   |\n| `--aria2c-path` / `aria2c_path`                                 | Path to aria2c binary.                                             | `aria2c`                                       |\n| `--ffmpeg-path` / `ffmpeg_path`                                 | Path to ffmpeg binary.                                             | `ffmpeg`                                       |\n| `--mp4box-path` / `mp4box_path`                                 | Path to MP4Box binary.                                             | `mp4box`                                       |\n| `--mp4decrypt-path` / `mp4decrypt_path`                         | Path to mp4decrypt binary.                                         | `mp4decrypt`                                   |\n| `--packager-path` / `packager_path`                             | Path to Shaka Packager binary.                                     | `packager`                                     |\n| `--template-folder-album` / `template_folder_album`             | Template folder for tracks that are part of an album.              | `{album_artist}/{album}`                       |\n| `--template-folder-compilation` / `template_folder_compilation` | Template folder for tracks that are part of a compilation album.   | `Compilations/{album}`                         |\n| `--template-file-single-disc` / `template_file_single_disc`     | Template file for the tracks that are part of a single-disc album. | `{track:02d} {title}`                          |\n| `--template-file-multi-disc` / `template_file_multi_disc`       | Template file for the tracks that are part of a multi-disc album.  | `{disc}-{track:02d} {title}`                   |\n| `--template-folder-episode` / `template_folder_episode`         | Template folder for episodes (podcasts).                           | `Podcasts/{album}`                             |\n| `--template-file-episode` / `template_file_episode`             | Template file for music videos.                                    | `{track:02d} {title}`                          |\n| `--template-folder-music-video` / `template_folder_music_video` | Template folder for music videos                                   | `{artist}/Unknown Album`                       |\n| `--template-file-music-video` / `template_file_music_video`     | Template file for the tracks that are not part of an album.        | `{title}`                                      |\n| `--template-file-playlist` / `template_file_playlist`           | Template file for the M3U8 playlist.                               | `Playlists/{playlist_artist}/{playlist_title}` |\n| `--date-tag-template` / `date_tag_template`                     | Date tag template.                                                 | `%Y-%m-%dT%H:%M:%SZ`                           |\n| `--cover-size` / `cover_size`                                   | Cover size.                                                        | `extra-large`                                  |\n| `--save-cover` / `save_cover`                                   | Save cover as a separate file.                                     | `false`                                        |\n| `--save-playlist` / `save_playlist`                             | Save a M3U8 playlist file when downloading a playlist.             | `false`                                        |\n| `--overwrite` / `overwrite`                                     | Overwrite existing files.                                          | `false`                                        |\n| `--exclude-tags` / `exclude_tags`                               | Comma-separated tags to exclude.                                   | `null`                                         |\n| `--truncate` / `truncate`                                       | Maximum length of the file/folder names.                           | `null`                                         |\n| `--audio-quality`, `-a` / `audio_quality`                       | Audio quality for songs and podcasts.                              | `aac-medium`                                   |\n| `--download-mode`, `-d` / `download_mode`                       | Download mode for songs and podcasts.                              | `ytdlp`                                        |\n| `--remux-mode-audio` / `remux_mode_audio`                       | Remux mode for songs and podcasts.                                 | `ffmpeg`                                       |\n| `--lrc-only`, `-l` / `lrc_only`                                 | Download only the synced lyrics.                                   | `false`                                        |\n| `--no-lrc` / `no_lrc`                                           | Don't download the synced lyrics.                                  | `false`                                        |\n| `--video-format` / `video_format`                               | Video format.                                                      | `mp4`                                          |\n| `--remux-mode-video` / `remux_mode_video`                       | Remux mode for videos.                                             | `ffmpeg`                                       |\n| `--no-config-file`, `-n` / -                                    | Do not use a config file.                                          | `false`                                        |\n\n### Tag variables\n\nThe following variables can be used in the template folder/file and/or in the `exclude_tags` list:\n\n- `album`\n- `album_artist`\n- `artist`\n- `compilation`\n- `composer`\n- `copyright`\n- `cover`\n- `disc`\n- `disc_total`\n- `isrc`\n- `label`\n- `lyrics`\n- `media_type`\n- `playlist_artist`\n- `playlist_title`\n- `playlist_track`\n- `publisher`\n- `producer`\n- `rating`\n- `release_date`\n- `release_year`\n- `title`\n- `track`\n- `track_total`\n- `url`\n\n### Cover sizes\n\n- `small`: up to 64px\n- `medium`: up to 300px\n- `large`: up to 640px\n- `extra-large`: up to 2000px\n\n### Audio qualities\n\n- General codecs:\n  - `aac-medium`: 128kbps\n  - `aac-high` 256kbps, requires an active premium subscription\n- Podcast only codecs:\n  - `vorbis-high`: 320kbps, requires an active premium subscription\n  - `vorbis-medium`: 160kbps\n  - `vorbis-low`: 96kbps\n\n### Video formats\n\n- `mp4`: H.264 Up to 1080p with AAC 128kbps.\n- `webm`: VP9 Up to 1080p with Opus 160kbps.\n- `ask`: Prompt to choose available video and audio codecs.\n\n### Download modes\n\n- `ytdlp`: Default download mode.\n- `aria2c`: Faster alternative to `ytdlp` only applicable to songs and podcasts.\n\n### Video remux modes\n\n- `ffmpeg`\n- `mp4box`\n\n### Audio remux modes\n\n- `ffmpeg`\n- `mp4box`\n- `mp4decrypt`\n\n### Credits\n\n- [spotify-oggmp4-dl](https://github.com/DevLARLEY/spotify-oggmp4-dl)\n- [spsync](https://github.com/baltitenger/spsync)\n- [unplayplay](https://git.gay/uhwot/unplayplay)\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A command-line app for downloading songs, podcasts and videos from Spotify.",
    "version": "1.5.4",
    "project_urls": {
        "repository": "https://github.com/glomatico/votify"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f880ebde95d54d5c35c69afb4f2b1b2c7d214acfec3d5ce434dfaae8ab5b950",
                "md5": "3d1d46d1b91646a72704048f8ee9a197",
                "sha256": "02c8389fc2567b7a1bff1e5d1bc9b98a1beae0f5aff91a3f0752344da8815882"
            },
            "downloads": -1,
            "filename": "votify-1.5.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3d1d46d1b91646a72704048f8ee9a197",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 35205,
            "upload_time": "2025-07-13T15:30:49",
            "upload_time_iso_8601": "2025-07-13T15:30:49.635824Z",
            "url": "https://files.pythonhosted.org/packages/2f/88/0ebde95d54d5c35c69afb4f2b1b2c7d214acfec3d5ce434dfaae8ab5b950/votify-1.5.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2aaaaa3df91e54aa3d7f862df0e529aa0e7cb868d57bd6eab7e28dabec74021c",
                "md5": "8aa332d5d918fdbf9aba796083605229",
                "sha256": "4cfaa960c15e95ae5442c392714c9fa83ac947a6bead33b90fa8fe6f4b30c90f"
            },
            "downloads": -1,
            "filename": "votify-1.5.4.tar.gz",
            "has_sig": false,
            "md5_digest": "8aa332d5d918fdbf9aba796083605229",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 30980,
            "upload_time": "2025-07-13T15:30:50",
            "upload_time_iso_8601": "2025-07-13T15:30:50.753683Z",
            "url": "https://files.pythonhosted.org/packages/2a/aa/aa3df91e54aa3d7f862df0e529aa0e7cb868d57bd6eab7e28dabec74021c/votify-1.5.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-13 15:30:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "glomatico",
    "github_project": "votify",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "click",
            "specs": []
        },
        {
            "name": "colorama",
            "specs": []
        },
        {
            "name": "inquirerpy",
            "specs": []
        },
        {
            "name": "mutagen",
            "specs": []
        },
        {
            "name": "pillow",
            "specs": []
        },
        {
            "name": "protobuf",
            "specs": []
        },
        {
            "name": "pybase62",
            "specs": []
        },
        {
            "name": "pycryptodome",
            "specs": []
        },
        {
            "name": "pywidevine",
            "specs": []
        },
        {
            "name": "yt-dlp",
            "specs": []
        }
    ],
    "lcname": "votify"
}
        
Elapsed time: 1.32728s