readme: add playlist name to config example

This commit is contained in:
2026-05-17 13:38:44 +03:00
parent b0c531389e
commit 3291c0c88f
3 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ config/yt-playlist-config.json
/*/tmp* /*/tmp*
*.code-workspace *.code-workspace
/bin/* /bin/*
/app/data /db/*
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/
+2 -1
View File
@@ -42,7 +42,8 @@ Application uses a json config that canbe edited from UI or manually
"url": "https://www.youtube.com/playlist?list=YOUR_PLAYLIST_ID", "url": "https://www.youtube.com/playlist?list=YOUR_PLAYLIST_ID",
"download_mode": "video", "download_mode": "video",
"max_download_quality": "1080p", "max_download_quality": "1080p",
"save_path": "./downloads" "save_path": "./downloads",
"name": "my favorite playlist"
} }
] ]
} }
+2 -1
View File
@@ -8,7 +8,8 @@
"url": "https://www.youtube.com/playlist?list=YOUR_PLAYLIST_ID_HERE", "url": "https://www.youtube.com/playlist?list=YOUR_PLAYLIST_ID_HERE",
"download_mode": "video", "download_mode": "video",
"max_download_quality": "1080p", "max_download_quality": "1080p",
"save_path": "./downloads" "save_path": "./downloads",
"name": "my favorite playlist"
} }
] ]
} }