metube
metube copied to clipboard
How to mimic the command "yt-dlp --sponsorblock-remove sponsor,selfpromo,intro,outro,poi_highlight"?
Is there anyway to remove all sponsorblock clips from the videos automatically to avoid watching sponsorblock clips?
set YTDL_OPTIONS
'postprocessors': [
{'key': 'SponsorBlock', 'categories': ['sponsor','selfpromo','intro','outro','poi_highlight']},
{'key': 'ModifyChapters', 'remove_sponsor_segments': ['sponsor','selfpromo','intro','outro','poi_highlight']}
]
It worked! Thank you so much!