|
@@ -16,8 +16,8 @@ from main.get_cookies import GetCookies
|
|
|
class Channel:
|
|
|
@classmethod
|
|
|
def download_rule(cls, play_cnt, duration):
|
|
|
- if int(play_cnt) >= 50000:
|
|
|
- if int(duration) >= 60:
|
|
|
+ if int(play_cnt) >= 10000:
|
|
|
+ if int(duration) >= 30:
|
|
|
return True
|
|
|
else:
|
|
|
return False
|