소스 검색

filmix pauze

Ivars 6 년 전
부모
커밋
fa813dd7fb
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. 8
    1
      sources/filmix.py

+ 8
- 1
sources/filmix.py 파일 보기

@@ -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):