CLI tool to mirror YouTube playlists into local directories
Project description
sync-yt
sync-yt is a command-line tool that synchronizes YouTube playlists to local directories on your system. It uses yt-dlp for downloading videos and a JSON based configuration file to define playlists and other options.
Features
- Declarative config.json to specify playlists and other configurable options.
- Option to save playlists in audio-only format, useful for music playlists.
- Can sync private YouTube playlists by specifying the logged-in browser.
- Automatically skips repeated video entries.
- Detects videos which become unavailable.
Requirements
- Python 3.10+
- yt-dlp
- FFmpeg (Highly recommended)
Installation
- From PyPI
$ pip install --user sync-yt
OR
- Build yourself
$ git clone https://github.com/sidtronics/sync-yt.git
$ cd sync-yt
$ pip install --user .
Configuration
Configuration file is first searched at ~/.config/sync-yt/config.json on POSIX compliant systems or at
C:\Users\<User>\AppData\Local\sync-yt\config.json on Windows.
config.json
sync_dir
- Type:
string - Description: Specifies the local directory where YouTube playlist folders will be synced. This path can be relative to the user's home directory (using
~) or an absolute path. - Examples:
"~/Music" , "D:\YouTube"
cookies_from_browser
- Type:
string - Description: Specifies the browser from which cookies should be extracted. This is required for downloading private playlists that are accessible only when signed into a Google account. Supported browsers include
firefox,chrome,edge, etc. You can choose to leave this option blank if you're not downloading private playlists. - Examples:
"firefox", "chrome", "brave", "edge", "vivaldi"
playlists
-
Type:
array -
Description: An array of playlist objects, where each object represents a YouTube playlist to be synced. Each object in the array has the following properties:
-
name- Type:
string - Description: A descriptive name to refer the playlist. This is the name of folder created in
sync_dirwhere corresponding playlist is synced.
- Type:
-
url- Type:
string - Description: The URL of the YouTube playlist.
- Example:
"https://www.youtube.com/playlist?list=PLSdoVPM5WnndSQEXRz704yQkKwx76GvPV"
- Type:
-
convert_to_audio- Type:
boolean - Description: Indicates whether the videos in the playlist should be converted to audio files. If
true, the videos will be converted to audio.
- Type:
-
Example Configuration
Below is a sample config.json file demonstrating the use of the configuration options:
{
"sync_dir": "~/Music",
"cookies_from_browser": "firefox",
"playlists": [
{
"name": "Daft Punk - Discovery",
"url": "https://www.youtube.com/playlist?list=PLSdoVPM5WnndSQEXRz704yQkKwx76GvPV",
"convert_to_audio": true
},
{
"name": "Minuscule Compilation",
"url": "https://www.youtube.com/playlist?list=PL7eLsxQrsg-4DNH682TNzgSlCXEeJ3IsX",
"convert_to_audio": false
}
]
}
Usage
$ sync-yt
Notes
-
Manual intervention is needed when a video becomes unavailable. Remove it from upstream youtube playlist to get rid of error/warning. Upon removal from upstream playlist it will be removed locally as well on next sync. So backup before syncing if needed.
-
Two different playlist can share same
nameattribute to sync both playlists in a single folder. -
You can skip installation of FFmpeg but it is highly recommended especially if you are using
convert_to_audiooption.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sync_yt-1.0.0.tar.gz.
File metadata
- Download URL: sync_yt-1.0.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a91d0aaf5f20b6d8a37212f16c3863f4e952793e3eafcc768a91bea980e4e82
|
|
| MD5 |
a4c90c52ab86b860bc63eb7f65001335
|
|
| BLAKE2b-256 |
299b18023cb9969e3a05529593f8269e94d500e7456a55293199ef382018e73f
|
File details
Details for the file sync_yt-1.0.0-py3-none-any.whl.
File metadata
- Download URL: sync_yt-1.0.0-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b79365be4be66d4948a1814a5a4643f8e3a1618e1bc4cc9fae7cd4f829592e8
|
|
| MD5 |
817e24724405299c99e584a447326c5c
|
|
| BLAKE2b-256 |
275e952b3998d905e716102f4a0003d3022c89b0d8411c7392e7b1eaa0697772
|