medvm / widevine_keys

This repo created for bypassing Widevine L3 DRM and obtaining keys.
450 stars 186 forks source link

Ease of use changes #55

Open MllwAlms opened 2 years ago

MllwAlms commented 2 years ago
pythonkenyard commented 2 years ago

You should allow both options for situation where users dont know to add it as sys arg.

try: MDP_URL = sys.argv[1] lic_url = sys.argv[2] except: MDP_URL = input('\nInput MPD URL: ') lic_url = input('License URL: ')

edit: comments dont allow indent formatting it seems

MllwAlms commented 2 years ago

Added

You should allow both options for situation where users dont know to add it as sys arg.

try: MDP_URL = sys.argv[1] lic_url = sys.argv[2] except: MDP_URL = input('\nInput MPD URL: ') lic_url = input('License URL: ')

edit: comments dont allow indent formatting it seems

Added