mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +00:00
changed frame check to less equal
This commit is contained in:
parent
3211c2c88e
commit
2b97917e34
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ def frame_check(source: Path, encoded: Path, temp, check):
|
||||||
json.dump(d, f)
|
json.dump(d, f)
|
||||||
else:
|
else:
|
||||||
s1, s2 = [frame_probe(i) for i in (source, encoded)]
|
s1, s2 = [frame_probe(i) for i in (source, encoded)]
|
||||||
if s1 == s2:
|
if s1 <= s2:
|
||||||
doneFileLock.acquire()
|
doneFileLock.acquire()
|
||||||
with status_file.open() as f:
|
with status_file.open() as f:
|
||||||
d = json.load(f)
|
d = json.load(f)
|
||||||
|
|
Loading…
Reference in a new issue