diff options
author | metamuffin <metamuffin@disroot.org> | 2025-06-15 12:32:44 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-06-15 12:32:44 +0200 |
commit | f1d857b5ab44b35cf049981a2597b9a9610eae94 (patch) | |
tree | 20c9ea71158d4cf3d15c4a37f1a8d7e303f07492 /scripts/ytdlp_flatten.md | |
parent | 88a45d8003deb6804f90313e994fac1bf8eefce6 (diff) | |
download | isda-f1d857b5ab44b35cf049981a2597b9a9610eae94.tar isda-f1d857b5ab44b35cf049981a2597b9a9610eae94.tar.bz2 isda-f1d857b5ab44b35cf049981a2597b9a9610eae94.tar.zst |
add nicovideo support
Diffstat (limited to 'scripts/ytdlp_flatten.md')
-rw-r--r-- | scripts/ytdlp_flatten.md | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/scripts/ytdlp_flatten.md b/scripts/ytdlp_flatten.md index dd7be2b..78e837a 100644 --- a/scripts/ytdlp_flatten.md +++ b/scripts/ytdlp_flatten.md @@ -2,8 +2,9 @@ Transforms a playlist-like object into the media items that make it up. -Currently supported task kinds are `youtube-channel` and `bilibili-channel`. -Where task ids are the ids assigned by the respective platform. +Currently supported task kinds are `youtube-channel`, `niconico-channel` and +`bilibili-channel`. Where task ids are the ids assigned by the respective +platform. ## Configuration @@ -17,7 +18,7 @@ Sample configuration: ```yaml ytdlp_flatten: - filters: - notlive: live_status=not_live - short: duration<300 + filters: + notlive: live_status=not_live + short: duration<300 ``` |