wangkun 2 년 전
부모
커밋
af9d74b0ce
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      main/kanyikan_recommend.py

+ 1 - 1
main/kanyikan_recommend.py

@@ -41,7 +41,7 @@ class Kanyikanrecommend:
         publish_day = int(int(now - video_dict["publish_time_stamp"]) / (3600*24))
         if (int(video_dict["video_width"]) or int(video_dict["video_height"]) >= 0) \
             and int(video_dict["duration"]) >= 40\
-            and ((publish_day >= 7 and int(video_dict["play_cnt"]) >= 150000) or (publish_day < 7 and int(video_dict["play_cnt"]) >= 50000)):
+            and ((publish_day >= 7 and int(video_dict["play_cnt"]) >= 1000000) or (publish_day < 7 and int(video_dict["play_cnt"]) >= 500000)):
             return True
         else:
             return False