mirror of
https://github.com/9001/copyparty.git
synced 2025-10-03 01:39:26 +02:00
well that was dumb
This commit is contained in:
parent
ee0a060b79
commit
49470c05fa
3 changed files with 8 additions and 6 deletions
|
@ -36,7 +36,10 @@ FAST = True # parse entire file at container level
|
|||
|
||||
|
||||
# warnings to ignore
|
||||
harmless = re.compile("^Unsupported codec with id ")
|
||||
harmless = re.compile(
|
||||
r"Unsupported codec with id |Could not find codec parameters.*Attachment:|analyzeduration"
|
||||
+ r"|timescale not set"
|
||||
)
|
||||
|
||||
|
||||
def wfilter(lines):
|
||||
|
@ -91,7 +94,7 @@ def main():
|
|||
if err:
|
||||
return err
|
||||
|
||||
if min(w, h) < 1080:
|
||||
if min(w, h) < 720:
|
||||
return "resolution too small"
|
||||
|
||||
zs = (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue