1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-01 21:51:02 +02:00

Looks like Google switched to a new JS compiler that includes dollar signs in function names.

This commit is contained in:
Phil Kulak 2015-01-15 10:23:05 -08:00
parent a45c0a5d67
commit a9b6b5cd15

View File

@ -588,7 +588,7 @@ def _genslice(start, end, step):
def _parse_sig_js(self, jscode):
funcname = self._search_regex(
r'\.sig\|\|([a-zA-Z0-9]+)\(', jscode,
r'\.sig\|\|([a-zA-Z0-9\$]+)\(', jscode,
'Initial JS player signature function name')
jsi = JSInterpreter(jscode)