update version

This commit is contained in:
Ghost 2024-01-10 18:20:50 +01:00
parent d844c2e6dc
commit 507f896cb3
3 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ def main_dw_film(id_film, title_name, domain):
embed_content = get_iframe(id_film, domain)
json_win_video, json_win_param = parse_content(embed_content)
# Select first availability video quaklity
# Select first availability video quality
if json_win_param['token1080p'] != "": render_quality = "1080p"
elif json_win_param['token720p'] != "": render_quality = "720p"
elif json_win_param['token480p'] != "": render_quality = "480p"

View File

@ -103,7 +103,7 @@ def dw_single_ep(tv_id, eps, index_ep_select, domain, token, tv_name, season_sel
embed_content = get_iframe(tv_id, eps[index_ep_select]['id'], domain, token)
json_win_video, json_win_param = parse_content(embed_content)
# Select first availability video quality
# Select first availability video quality for single ep
if json_win_param['token1080p'] != "": render_quality = "1080p"
elif json_win_param['token720p'] != "": render_quality = "720p"
elif json_win_param['token480p'] != "": render_quality = "480p"

View File

@ -1,5 +1,5 @@
__title__ = 'Streaming_community'
__version__ = 'v0.7.0'
__version__ = 'v0.7.5'
__author__ = 'Ghost6446'
__description__ = 'A command-line program to download film'
__license__ = 'MIT License'