diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2022-08-30 16:54:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 22:24:46 +0530 |
commit | 9bd13fe5bbe1df6bb01d4edb68f2c63a4812bf94 (patch) | |
tree | 89c3d7b12a98260c0360f569c86dc9e9b2d23c1d /yt_dlp/YoutubeDL.py | |
parent | 459262ac97c039a426f51f3fb3a5d780de5b9dca (diff) | |
download | hypervideo-pre-9bd13fe5bbe1df6bb01d4edb68f2c63a4812bf94.tar.lz hypervideo-pre-9bd13fe5bbe1df6bb01d4edb68f2c63a4812bf94.tar.xz hypervideo-pre-9bd13fe5bbe1df6bb01d4edb68f2c63a4812bf94.zip |
[cookies] Support firefox container in `--cookies-from-browser` (#4753)
Authored by: bashonly
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 491e02dec..10c17ea00 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -304,8 +304,9 @@ class YoutubeDL: should act on each input URL as opposed to for the entire queue cookiefile: File name or text stream from where cookies should be read and dumped to cookiesfrombrowser: A tuple containing the name of the browser, the profile - name/path from where cookies are loaded, and the name of the - keyring, e.g. ('chrome', ) or ('vivaldi', 'default', 'BASICTEXT') + name/path from where cookies are loaded, the name of the keyring, + and the container name, e.g. ('chrome', ) or + ('vivaldi', 'default', 'BASICTEXT') or ('firefox', 'default', None, 'Meta') legacyserverconnect: Explicitly allow HTTPS connection to servers that do not support RFC 5746 secure renegotiation nocheckcertificate: Do not verify SSL certificates |