for some reason, the minimum thumbnail size for videos is 100 x 100
This commit is contained in:
parent
1cefccc755
commit
7674b9c05b
@ -191,7 +191,8 @@ class InitialProcessor(CommonAudioProcessor):
|
|||||||
'--thumb_size',
|
'--thumb_size',
|
||||||
nargs=2,
|
nargs=2,
|
||||||
metavar=('max_width', 'max_height'),
|
metavar=('max_width', 'max_height'),
|
||||||
type=int)
|
type=int,
|
||||||
|
help='minimum size is 100 x 100')
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--medium_width',
|
'--medium_width',
|
||||||
@ -259,7 +260,8 @@ class Resizer(CommonAudioProcessor):
|
|||||||
'--thumb_size',
|
'--thumb_size',
|
||||||
nargs=2,
|
nargs=2,
|
||||||
metavar=('max_width', 'max_height'),
|
metavar=('max_width', 'max_height'),
|
||||||
type=int)
|
type=int,
|
||||||
|
help='minimum size is 100 x 100')
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--medium_width',
|
'--medium_width',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user