Nov-13-2017, 02:36 PM
When I call the functions and go to pass arguments for the functions (specifically for download_clips and download_clip) I get an error. I'm unsure what is supposed to go in their. I've tried multiple arguments but I can't seem to get the correct one. Also, for download_clip can I put multiple clips in there? Is there a way to have download_clip download all .mov files?
def download_clip(clip):
url = "http://10.1.1.27/media/" + clip
print url
def download_clips(response):
values = response.split(":")
i = 0
for word in values:
i += 1
if(word.find('clipname') > -1):
clip = values[i].split(',')[0].translate(string.maketrans("",""), '[]{} \,\"\" ')
if not os.path.exists(clip):
print "Downloading clip: " + clip
else:
f = urllib.urlopen("http://10.1.1.27/config?action=set¶mid=eParamID_MediaState&value=0")
print "No new clips found"Error:C:\Python26\python.exe C:/Users/nroman/PycharmProjects/Stuffz/FileRecorderVideoGrab.py
Traceback (most recent call last):
http://10.1.1.27/media/C1ATK26
File "C:/Users/nroman/PycharmProjects/Stuffz/FileRecorderVideoGrab.py", line 37, in <module>
download_clips(response)
NameError: name 'response' is not defined
Process finished with exit code 1
