Updated the aspect ratio threshold for short detection

This commit is contained in:
Kieran Eglin 2024-09-10 08:41:02 -07:00
parent c85e9cb5f1
commit eeb622846c
No known key found for this signature in database
GPG key ID: 193984967FCF432D
2 changed files with 1 additions and 1 deletions

View file

@ -124,7 +124,7 @@ defmodule Pinchflat.YtDlp.Media do
# #
# These don't fail if duration or aspect_ratio are missing # These don't fail if duration or aspect_ratio are missing
# due to Elixir's comparison semantics # due to Elixir's comparison semantics
response["duration"] <= 60 && response["aspect_ratio"] < 0.8 response["duration"] <= 60 && response["aspect_ratio"] <= 0.85
end end
end end

Binary file not shown.

Before

Width:  |  Height:  |  Size: 436 KiB

After

Width:  |  Height:  |  Size: 428 KiB