Skip to content

Commit

Permalink
fix audio-delay option
Browse files Browse the repository at this point in the history
  • Loading branch information
Gavin Beatty committed Nov 26, 2013
1 parent ee538d2 commit 7ad175e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simplemkv/tomp4.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def mp4_add_audio_optimize_cmd(mp4file, audio, **opts):
'-c', audio, '-interleave', '-optimize', mp4file
]
elif opts['mp4'] == 'mp4box':
delay = opts.get('delay', None)
delay = opts.get('a_delay', None)
if delay is not None:
delay = ':delay=' + delay
else:
Expand Down

0 comments on commit 7ad175e

Please sign in to comment.