summaryrefslogtreecommitdiffstats
path: root/convert2mp4
diff options
context:
space:
mode:
authorFlorian Pritz <f-p@gmx.at>2009-07-07 11:45:39 +0200
committerFlorian Pritz <f-p@gmx.at>2009-07-07 11:45:39 +0200
commit7f5fb3f68d96dc944b94f2182161285385ebdf17 (patch)
tree108988dfde03500c96bed2a7cf2a287ed30a7d69 /convert2mp4
parent06d31878e661af0f99471fa1ed8f397119ede36b (diff)
downloadbin-7f5fb3f68d96dc944b94f2182161285385ebdf17.tar.gz
bin-7f5fb3f68d96dc944b94f2182161285385ebdf17.tar.xz
fix bug if now maps are given
Diffstat (limited to 'convert2mp4')
-rwxr-xr-xconvert2mp42
1 files changed, 1 insertions, 1 deletions
diff --git a/convert2mp4 b/convert2mp4
index 87375ef..5714baf 100755
--- a/convert2mp4
+++ b/convert2mp4
@@ -51,7 +51,7 @@ def main():
ffmpeg_args.append(options.abitrate)
if options.deinterlace:
ffmpeg_args.append("-deinterlace")
- if options.maps[0]:
+ if options.maps:
for cur_map in options.maps:
ffmpeg_args.append("-map")
ffmpeg_args.append(cur_map)