Changeset 39367
- Timestamp:
- 11/20/16 01:01:37 (6 years ago)
- Location:
- titan
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/mediathek/localhoster/thevideo.py
r39219 r39367 42 42 43 43 html = self.net.http_GET(web_url, headers=headers).content 44 44 # print "111111111111", html.encode('utf-8').strip() 45 45 vhash = re.search('\'_vhash\', value: \'(.*?)\'', html).group(1) 46 46 gfk = re.search('\'gfk\', value: \'(.*?)\'', html).group(1) … … 64 64 65 65 html = self.net.http_POST(url=web_url, form_data=fdata, headers=headers).content 66 # print "2222222222", html.encode('utf-8').strip() 66 67 68 #http://thevideo.me/jwv/LDonSU04MylZO1ZNSThGPUEK 67 69 r = re.search('sources:\s*(\[.*?\])', html, re.DOTALL) 68 70 … … 86 88 web_url = self.get_aturl(host, path, mpri_Key) 87 89 html = self.net.http_GET(web_url, headers=headers).content 90 # print "3333333333", html.encode('utf-8').strip() 91 88 92 js_data = jsunpack.unpack(html) 89 93 for match in re.finditer('(eval\(function.*?)\{\}\)\)', html, re.DOTALL): -
titan/plugins/tithek/kinox.h
r39365 r39367 391 391 392 392 tmpstr1 = string_replace_all("\\", "", tmpstr1, 1); 393 tmpstr1 = string_resub("<a href=\"", "\"", tmpstr1, 0); 394 393 if(ostrstr(tmpstr1, "iframe src") != NULL) 394 tmpstr1 = string_resub("<a href=\"", "\"", tmpstr1, 0); 395 else 396 tmpstr1 = string_resub("<iframe src=\"", "\"", tmpstr1, 0); 395 397 396 398 url = ostrcat(tmpstr1, NULL, 0, 0);
Note: See TracChangeset
for help on using the changeset viewer.