diff options
| author | pukkandan <pukkandan.ytdlp@gmail.com> | 2024-04-01 05:31:09 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-01 05:31:09 +0530 |
| commit | e3a3ed8a981d9395c4859b6ef56cd02bc3148db2 (patch) | |
| tree | 2f61a343fd48af1ea30ea1edea365d8c85e7bddb /yt_dlp/extractor/microsoftstream.py | |
| parent | a25a424323267e3f6f9f63c0b62df499bd7b8d46 (diff) | |
[ie, cleanup] No `from` stdlib imports in extractors (#8978)
Diffstat (limited to 'yt_dlp/extractor/microsoftstream.py')
| -rw-r--r-- | yt_dlp/extractor/microsoftstream.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/microsoftstream.py b/yt_dlp/extractor/microsoftstream.py index 9b50996b7..5f5f16087 100644 --- a/yt_dlp/extractor/microsoftstream.py +++ b/yt_dlp/extractor/microsoftstream.py @@ -1,4 +1,4 @@ -from base64 import b64decode +import base64 from .common import InfoExtractor from ..utils import ( @@ -81,7 +81,7 @@ class MicrosoftStreamIE(InfoExtractor): 'url': thumbnail_url, } thumb_name = url_basename(thumbnail_url) - thumb_name = str(b64decode(thumb_name + '=' * (-len(thumb_name) % 4))) + thumb_name = str(base64.b64decode(thumb_name + '=' * (-len(thumb_name) % 4))) thumb.update(parse_resolution(thumb_name)) thumbnails.append(thumb) |
