Skip to content

Commit 9ed40bc

Browse files
authored
Merge pull request #997 from acrilique/patch-2
Fix single-quote issue on windows shells
2 parents b0df739 + 5ce6198 commit 9ed40bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Python/utils/mp4-dash-encode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def main():
193193

194194
#x264_opts = "-x264opts keyint=%d:min-keyint=%d:scenecut=0:rc-lookahead=%d" % (options.segment_size, options.segment_size, options.segment_size)
195195
#video_opts = "-g %d" % (options.segment_size)
196-
video_opts = "-force_key_frames 'expr:eq(mod(n,%d),0)'" % (options.segment_size)
196+
video_opts = '-force_key_frames "expr:eq(mod(n,%d),0)"' % (options.segment_size)
197197
video_opts += " -bufsize %dk -maxrate %dk" % (bitrates[i], int(bitrates[i]*1.5))
198198
if options.video_codec == 'libx264':
199199
video_opts += " -x264opts rc-lookahead=%d" % (options.segment_size)

0 commit comments

Comments
 (0)