--- youtube.py.old 2009-11-11 14:24:44.000000000 -0600 +++ youtube.py 2009-11-11 14:31:33.000000000 -0600 @@ -204,7 +204,7 @@ def resolve_t_param (self, youtube_id): """We have to get the t parameter from the actual video page, since Google changed how their URLs work""" stream = urllib.urlopen ("http://youtube.com/watch?v=" + urllib.quote (youtube_id)) - regexp1 = re.compile ("swfArgs.*\"t\": \"([^\"]+)\"") + regexp1 = re.compile ("'SWF_ARGS'.*\"t\": \"([^\"]+)\"") regexp2 = re.compile ("") contents = stream.read ()