aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodney Ewing <ewing.rj@gmail.com>2013-08-15 09:29:11 -0700
committerRodney Ewing <ewing.rj@gmail.com>2013-08-16 15:30:23 -0700
commit7674b9c05b29178e280c9cbd19d8dc276f0e71ea (patch)
treeb1ef35f2d88c129e74af5539029e28099940b1f7
parent1cefccc7554a5df4c9bb126ef3b80b53f9e41cd7 (diff)
downloadmediagoblin-7674b9c05b29178e280c9cbd19d8dc276f0e71ea.tar.lz
mediagoblin-7674b9c05b29178e280c9cbd19d8dc276f0e71ea.tar.xz
mediagoblin-7674b9c05b29178e280c9cbd19d8dc276f0e71ea.zip
for some reason, the minimum thumbnail size for videos is 100 x 100
-rw-r--r--mediagoblin/media_types/audio/processing.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/mediagoblin/media_types/audio/processing.py b/mediagoblin/media_types/audio/processing.py
index 8f1ddcbd..42855265 100644
--- a/mediagoblin/media_types/audio/processing.py
+++ b/mediagoblin/media_types/audio/processing.py
@@ -191,7 +191,8 @@ class InitialProcessor(CommonAudioProcessor):
'--thumb_size',
nargs=2,
metavar=('max_width', 'max_height'),
- type=int)
+ type=int,
+ help='minimum size is 100 x 100')
parser.add_argument(
'--medium_width',
@@ -259,7 +260,8 @@ class Resizer(CommonAudioProcessor):
'--thumb_size',
nargs=2,
metavar=('max_width', 'max_height'),
- type=int)
+ type=int,
+ help='minimum size is 100 x 100')
parser.add_argument(
'--medium_width',