Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
yinyajiang committed Nov 20, 2024
1 parent ab0024c commit ad80ec1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/soopglobal.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import functools
import uuid

from yt_dlp import int_or_none, traverse_obj
from yt_dlp.compat import functools
from yt_dlp.extractor.common import InfoExtractor
from yt_dlp.utils import UserNotLive, bool_or_none, parse_iso8601

Expand Down
3 changes: 1 addition & 2 deletions yt_dlp/postprocessor/mp4decrypt.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import contextvars
import os
import subprocess
from ..utils import encodeFilename
from .common import PostProcessor


Expand All @@ -15,7 +14,7 @@ def __init__(self, downloader=None):
def run(self, info):
files = self._get_files_from_info(info)
for f in files:
dl_path, _ = os.path.split(encodeFilename(info['filepath']))
dl_path, _ = os.path.split(info['filepath'])
inputpath = os.path.join(info.get('__finaldir', dl_path), f)
self._decrypt(info['_drm_decrypt_key'], inputpath)
return [], info
Expand Down

0 comments on commit ad80ec1

Please sign in to comment.