diff options
-rw-r--r-- | lvc/basicconverters.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lvc/basicconverters.py b/lvc/basicconverters.py index 6db0368..5f71ea7 100644 --- a/lvc/basicconverters.py +++ b/lvc/basicconverters.py @@ -44,7 +44,7 @@ class WebM_VP9(converter.FFmpegConverterInfo): class MP4(converter.FFmpegConverterInfo): media_type = 'format' extension = 'mp4' - parameters = ('-acodec aac -ab 96k -vcodec libx264 -preset slow ' + parameters = ('-acodec aac -ab 128k -vcodec libx264 -preset slow ' '-map_metadata -1 ' '-f mp4 -crf 22') @@ -132,7 +132,7 @@ class NullConverter(converter.FFmpegConverterInfo): def get_extra_arguments(self, video, output): if not video.container: - logging.warn("sameformat: video.container is None. Using mp4") + logging.warn("sameformat: video.container is None. Using mp4") container = 'mp4' elif isinstance(video.container, list): # XXX: special case mov,mp4,m4a,3gp,3g2,mj2 |