mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +00:00
removed debug prints :)
This commit is contained in:
parent
a2f058e015
commit
c3468dc549
1 changed files with 0 additions and 3 deletions
3
av1an.py
3
av1an.py
|
@ -230,7 +230,6 @@ class Av1an:
|
||||||
if self.scenes and os.path.exists(join(self.here, self.scenes)):
|
if self.scenes and os.path.exists(join(self.here, self.scenes)):
|
||||||
# Read stats from CSV file opened in read mode:
|
# Read stats from CSV file opened in read mode:
|
||||||
with open(join(self.here, self.scenes), 'r') as stats_file:
|
with open(join(self.here, self.scenes), 'r') as stats_file:
|
||||||
print('reading and run')
|
|
||||||
stats = stats_file.read()
|
stats = stats_file.read()
|
||||||
return stats
|
return stats
|
||||||
|
|
||||||
|
@ -261,10 +260,8 @@ class Av1an:
|
||||||
if self.scenes:
|
if self.scenes:
|
||||||
with open(join(self.here, self.scenes), 'w') as stats_file:
|
with open(join(self.here, self.scenes), 'w') as stats_file:
|
||||||
stats_file.write(scenes)
|
stats_file.write(scenes)
|
||||||
print('writing scenes and making run')
|
|
||||||
return scenes
|
return scenes
|
||||||
else:
|
else:
|
||||||
print('just making run')
|
|
||||||
return scenes
|
return scenes
|
||||||
except:
|
except:
|
||||||
print('Error in PySceneDetect')
|
print('Error in PySceneDetect')
|
||||||
|
|
Loading…
Reference in a new issue