mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:30:46 +00:00 
			
		
		
		
	@@ -888,6 +888,7 @@ class YoutubeDL:
 | 
			
		||||
        SUPPRESS = 'light black'
 | 
			
		||||
 | 
			
		||||
    def _format_text(self, handle, allow_colors, text, f, fallback=None, *, test_encoding=False):
 | 
			
		||||
        text = str(text)
 | 
			
		||||
        if test_encoding:
 | 
			
		||||
            original_text = text
 | 
			
		||||
            # handle.encoding can be None. See https://github.com/yt-dlp/yt-dlp/issues/2711
 | 
			
		||||
@@ -895,7 +896,7 @@ class YoutubeDL:
 | 
			
		||||
            text = text.encode(encoding, 'ignore').decode(encoding)
 | 
			
		||||
            if fallback is not None and text != original_text:
 | 
			
		||||
                text = fallback
 | 
			
		||||
        if isinstance(f, self.Styles):
 | 
			
		||||
        if isinstance(f, Enum):
 | 
			
		||||
            f = f.value
 | 
			
		||||
        return format_text(text, f) if allow_colors else text if fallback is None else fallback
 | 
			
		||||
 | 
			
		||||
@@ -1708,6 +1709,7 @@ class YoutubeDL:
 | 
			
		||||
            entries.append(entry)
 | 
			
		||||
            try:
 | 
			
		||||
                if entry is not None:
 | 
			
		||||
                    # TODO: Add auto-generated fields
 | 
			
		||||
                    self._match_entry(entry, incomplete=True, silent=True)
 | 
			
		||||
            except (ExistingVideoReached, RejectedVideoReached):
 | 
			
		||||
                broken = True
 | 
			
		||||
 
 | 
			
		||||
@@ -196,7 +196,7 @@ compat_urllib_request = urllib.request
 | 
			
		||||
compat_urlparse = compat_urllib_parse = urllib.parse
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# To be removed
 | 
			
		||||
# To be removed - Do not use
 | 
			
		||||
 | 
			
		||||
compat_basestring = str
 | 
			
		||||
compat_collections_abc = collections.abc
 | 
			
		||||
 
 | 
			
		||||
@@ -28,6 +28,7 @@ from ..utils import (
 | 
			
		||||
 | 
			
		||||
# NOTE: network handler related code is temporary thing until network stack overhaul PRs are merged (#2861/#2862)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def add_opener(ydl, handler):
 | 
			
		||||
    ''' Add a handler for opening URLs, like _download_webpage '''
 | 
			
		||||
    # https://github.com/python/cpython/blob/main/Lib/urllib/request.py#L426
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,5 @@
 | 
			
		||||
import datetime
 | 
			
		||||
import json
 | 
			
		||||
import math
 | 
			
		||||
import random
 | 
			
		||||
import time
 | 
			
		||||
@@ -82,21 +83,32 @@ class SonyLIVIE(InfoExtractor):
 | 
			
		||||
            raise ExtractorError(f'Invalid username/password; {self._LOGIN_HINT}')
 | 
			
		||||
 | 
			
		||||
        self.report_login()
 | 
			
		||||
        data = '''{"mobileNumber":"%s","channelPartnerID":"MSMIND","country":"IN","timestamp":"%s",
 | 
			
		||||
        "otpSize":6,"loginType":"REGISTERORSIGNIN","isMobileMandatory":true}
 | 
			
		||||
         ''' % (username, datetime.datetime.now().strftime("%Y-%m-%dT%H:%M:%S.%MZ"))
 | 
			
		||||
        otp_request_json = self._download_json(
 | 
			
		||||
            'https://apiv2.sonyliv.com/AGL/1.6/A/ENG/WEB/IN/HR/CREATEOTP-V2',
 | 
			
		||||
            None, note='Sending OTP', data=data.encode(), headers=self._HEADERS)
 | 
			
		||||
            None, note='Sending OTP', headers=self._HEADERS, data=json.dumps({
 | 
			
		||||
                'mobileNumber': username,
 | 
			
		||||
                'channelPartnerID': 'MSMIND',
 | 
			
		||||
                'country': 'IN',
 | 
			
		||||
                'timestamp': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%S.%MZ'),
 | 
			
		||||
                'otpSize': 6,
 | 
			
		||||
                'loginType': 'REGISTERORSIGNIN',
 | 
			
		||||
                'isMobileMandatory': True,
 | 
			
		||||
            }).encode())
 | 
			
		||||
        if otp_request_json['resultCode'] == 'KO':
 | 
			
		||||
            raise ExtractorError(otp_request_json['message'], expected=True)
 | 
			
		||||
        otp_code = self._get_tfa_info('OTP')
 | 
			
		||||
        data = '''{"channelPartnerID":"MSMIND","mobileNumber":"%s","country":"IN","otp":"%s",
 | 
			
		||||
        "dmaId":"IN","ageConfirmation":true,"timestamp":"%s","isMobileMandatory":true}
 | 
			
		||||
         ''' % (username, otp_code, datetime.datetime.now().strftime("%Y-%m-%dT%H:%M:%S.%MZ"))
 | 
			
		||||
 | 
			
		||||
        otp_verify_json = self._download_json(
 | 
			
		||||
            'https://apiv2.sonyliv.com/AGL/2.0/A/ENG/WEB/IN/HR/CONFIRMOTP-V2',
 | 
			
		||||
            None, note='Verifying OTP', data=data.encode(), headers=self._HEADERS)
 | 
			
		||||
            None, note='Verifying OTP', headers=self._HEADERS, data=json.dumps({
 | 
			
		||||
                'channelPartnerID': 'MSMIND',
 | 
			
		||||
                'mobileNumber': username,
 | 
			
		||||
                'country': 'IN',
 | 
			
		||||
                'otp': self._get_tfa_info('OTP'),
 | 
			
		||||
                'dmaId': 'IN',
 | 
			
		||||
                'ageConfirmation': True,
 | 
			
		||||
                'timestamp': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%S.%MZ'),
 | 
			
		||||
                'isMobileMandatory': True,
 | 
			
		||||
            }).encode())
 | 
			
		||||
        if otp_verify_json['resultCode'] == 'KO':
 | 
			
		||||
            raise ExtractorError(otp_request_json['message'], expected=True)
 | 
			
		||||
        self._HEADERS['authorization'] = otp_verify_json['resultObj']['accessToken']
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,6 @@
 | 
			
		||||
import hashlib
 | 
			
		||||
import json
 | 
			
		||||
import re
 | 
			
		||||
from hashlib import sha256
 | 
			
		||||
 | 
			
		||||
from .ffmpeg import FFmpegPostProcessor
 | 
			
		||||
from ..compat import compat_urllib_parse_urlencode
 | 
			
		||||
@@ -84,7 +84,7 @@ class SponsorBlockPP(FFmpegPostProcessor):
 | 
			
		||||
        return sponsor_chapters
 | 
			
		||||
 | 
			
		||||
    def _get_sponsor_segments(self, video_id, service):
 | 
			
		||||
        hash = sha256(video_id.encode('ascii')).hexdigest()
 | 
			
		||||
        hash = hashlib.sha256(video_id.encode('ascii')).hexdigest()
 | 
			
		||||
        # SponsorBlock API recommends using first 4 hash characters.
 | 
			
		||||
        url = f'{self._API_URL}/api/skipSegments/{hash[:4]}?' + compat_urllib_parse_urlencode({
 | 
			
		||||
            'service': service,
 | 
			
		||||
 
 | 
			
		||||
@@ -4793,12 +4793,12 @@ def random_birthday(year_field, month_field, day_field):
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# Templates for internet shortcut files, which are plain text files.
 | 
			
		||||
DOT_URL_LINK_TEMPLATE = '''
 | 
			
		||||
DOT_URL_LINK_TEMPLATE = '''\
 | 
			
		||||
[InternetShortcut]
 | 
			
		||||
URL=%(url)s
 | 
			
		||||
'''.lstrip()
 | 
			
		||||
'''
 | 
			
		||||
 | 
			
		||||
DOT_WEBLOC_LINK_TEMPLATE = '''
 | 
			
		||||
DOT_WEBLOC_LINK_TEMPLATE = '''\
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
 | 
			
		||||
<plist version="1.0">
 | 
			
		||||
@@ -4807,16 +4807,16 @@ DOT_WEBLOC_LINK_TEMPLATE = '''
 | 
			
		||||
\t<string>%(url)s</string>
 | 
			
		||||
</dict>
 | 
			
		||||
</plist>
 | 
			
		||||
'''.lstrip()
 | 
			
		||||
'''
 | 
			
		||||
 | 
			
		||||
DOT_DESKTOP_LINK_TEMPLATE = '''
 | 
			
		||||
DOT_DESKTOP_LINK_TEMPLATE = '''\
 | 
			
		||||
[Desktop Entry]
 | 
			
		||||
Encoding=UTF-8
 | 
			
		||||
Name=%(filename)s
 | 
			
		||||
Type=Link
 | 
			
		||||
URL=%(url)s
 | 
			
		||||
Icon=text-html
 | 
			
		||||
'''.lstrip()
 | 
			
		||||
'''
 | 
			
		||||
 | 
			
		||||
LINK_TEMPLATES = {
 | 
			
		||||
    'url': DOT_URL_LINK_TEMPLATE,
 | 
			
		||||
@@ -4872,7 +4872,7 @@ def iri_to_uri(iri):
 | 
			
		||||
def to_high_limit_path(path):
 | 
			
		||||
    if sys.platform in ['win32', 'cygwin']:
 | 
			
		||||
        # Work around MAX_PATH limitation on Windows. The maximum allowed length for the individual path segments may still be quite limited.
 | 
			
		||||
        return r'\\?\ '.rstrip() + os.path.abspath(path)
 | 
			
		||||
        return '\\\\?\\' + os.path.abspath(path)
 | 
			
		||||
 | 
			
		||||
    return path
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user