You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the encode configuration, if I enter -vf scale=floor(iw/2):floor(ih/2) and try to encode something, I get the following error message (and no encode is generated):
sh: 1: Syntax error: "(" unexpected
It is possible to work around this by escaping the characters with \, so -vf scale=floor\(iw/2\):floor\(ih/2\).
Maybe there are more characters where it doesn't work, so it would be nice to know which symbols exactly we have to escape. Or maybe it could be done automatically.
The text was updated successfully, but these errors were encountered:
In the encode configuration, if I enter
-vf scale=floor(iw/2):floor(ih/2)
and try to encode something, I get the following error message (and no encode is generated):It is possible to work around this by escaping the characters with
\
, so-vf scale=floor\(iw/2\):floor\(ih/2\)
.Maybe there are more characters where it doesn't work, so it would be nice to know which symbols exactly we have to escape. Or maybe it could be done automatically.
The text was updated successfully, but these errors were encountered: