Skip to content

Commit 114a255

Browse files
committed
fix 4mv vs mv4 to close #4490. It's interesting that my ffmpeg says I should use mv4, but has no problem when I use 4mv. This has been around long enough that I hope hard-coding the fix won't cause too many issues for people.
1 parent a1f50e2 commit 114a255

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nuvexport/export/ffmpeg/MP4.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ package export::ffmpeg::MP4;
237237
;
238238
}
239239
else {
240-
$ffmpeg_xtra .= ' -flags +4mv+trell+loop'
240+
$ffmpeg_xtra .= ' -flags +mv4+trell+loop'
241241
.' -aic 1'
242242
.' -mbd 1'
243243
.' -cmp 2 -subcmp 2'

nuvexport/export/ffmpeg/XviD.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ package export::ffmpeg::XviD;
150150
. $self->param('bit_rate_tolerance', 32)
151151
. ' -bufsize 65535'
152152
: '')
153-
.' -flags +4mv+trell+loop'
153+
.' -flags +mv4+trell+loop'
154154
.' -aic 1'
155155
.' -mbd 1'
156156
.' -cmp 2 -subcmp 2'

0 commit comments

Comments
 (0)