|
@@ -368,7 +368,14 @@ Cookie: FILMIXNET=%s;
|
368
|
368
|
if not r:
|
369
|
369
|
raise Exception("Can not get movie info")
|
370
|
370
|
#return []
|
371
|
|
- js = json.loads(r)
|
|
371
|
+ if r.startswith("<html>"):
|
|
372
|
+ import time
|
|
373
|
+ time.sleep(0.1)
|
|
374
|
+ r = util.post("https://filmix.co/api/movies/player_data", data=post_data, headers = headers)
|
|
375
|
+ try:
|
|
376
|
+ js = json.loads(r)
|
|
377
|
+ except Exception as e:
|
|
378
|
+ raise Exception("Can not get movie info")
|
372
|
379
|
return js
|
373
|
380
|
|
374
|
381
|
def decode_base64(self, encoded_url):
|