add logic for joined or separated audio and video

This commit is contained in:
Xaloc 2020-05-03 03:54:39 +02:00
parent e8da229655
commit 7a40b46f81

View File

@ -5,6 +5,10 @@ import wget as wget
from urllib.request import urlopen
from urllib.error import HTTPError
sep = input("Are audio and video in the Same or Different files? [S|D]")
sep = sep.lower()
if not(sep=='s' or sep=='d'):
raise ValueError("The answer should be S or D")
#video
i=0
while True: