removed forgotten debug prints

This commit is contained in:
Kjistóf 2017-01-15 21:55:08 +01:00
parent 39d5626c81
commit 96bfb29cf2
1 changed files with 0 additions and 3 deletions

View File

@ -57,9 +57,6 @@ videoData = getDuration(getCmdStdErr(('/usr/bin/env', 'ffprobe', FILES[Stream.VI
audioLen = timedelta(hours=float(audioData[0]), minutes=float(audioData[1]), seconds=float(audioData[2]))
videoLen = timedelta(hours=float(videoData[0]), minutes=float(videoData[1]), seconds=float(videoData[2]))
print(audioLen)
print(videoLen)
longer = audioLen if audioLen > videoLen else videoLen
shorter = audioLen if audioLen < videoLen else videoLen
shorterFile = FILES[Stream.AUDIO] if audioLen < videoLen else FILES[Stream.VIDEO]