yt-dont-lock-p by Grub4K Apply a system wake lock during yt-dlp execution Extensions that don't use the official plugin system dl-plus by un-def A youtube-dl/yt-dlp extension with pluggable extractors Check out the yt-dlp-plugins GitHub topic for more...
plugin_info = [None] classes = [] try: plugin_info = imp.find_module( name, [os.path.join(get_executable_path(), 'ytdlp_plugins')]) plugins = imp.load_module(name, *plugin_info) for name in dir(plugins): if not name.endswith(type): continue klass = getattr(plugins, name) cla...
Repository files navigation README MIT license A yt-dlp plugin that allows unlocking the cookie database for chromium-based browsers. Based on the work of Charles Machalow here. See installing yt-dlp plugins for how this plugin package can be installed.About...
Executable location: Plugin packages can similarly be installed in a yt-dlp-plugins directory under the executable location (recommended for portable installations): Binary: where <root-dir>/yt-dlp.exe, <root-dir>/yt-dlp-plugins/<package name>/yt_dlp_plugins/ Source: where <root-dir>/yt_dlp...
python3 -m pip install -U https://github.com/yt-dlp/yt-dlp-sample-plugins/archive/master.zip See installing yt-dlp plugins for the other methods this plugin package can be installed. Development See the Plugin Development section of the yt-dlp wiki.About...
2. **Executable location**: Plugin packages can similarly be installed in a `yt-dlp-plugins` directory under the executable location: * Binary: where `<root-dir>/yt-dlp.exe`, `<root-dir>/yt-dlp-plugins/<package name>/yt_dlp_plugins/` * Source: where `<root-dir>/yt_dlp/__main_...
Files master .github .gitignore Extractors.md FAQ.md Forks.md Home.md Installation.md Plugin Development.md Plugins.mdBreadcrumbs yt-dlp-wiki / Forks.md Latest commit bashonly [Forks] Update forks list (#47) 3871835· Oct 27, 2024 HistoryHistory File metadata and controls Preview Code Blame...
Add option --plugin-dirs (#11277) by coletdjnz, imranh2 cookies: Fix compatibility for Python <=3.9 in traceback by Grub4K utils Popen: Reset PyInstaller environment (#11258) by bashonly, Grub4K sanitize_path: Reimplement function (#11198) by Grub4K Extractor changes adobepass: Use newer...
python3 -m pip install -U https://github.com/yt-dlp/yt-dlp-sample-plugins/archive/master.zip See installing yt-dlp plugins for the other methods this plugin package can be installed. Development See the Plugin Development section of the yt-dlp wiki.About...
only public part of this is --plugin-locations opt which I'm happy with as we will reuse it when we implement the globals system api users can use sys.path 👍 1 Grub4K approved these changes Oct 19, 2024 View reviewed changes yt_dlp/options.py Outdated Show resolved bashonly self...