I noticed my ffmpeg convertion in my media mover wasnt setting bitrate even though it was passed fine...
Around line 615 of ffmpeg_wrapper.module:
if ($params['ffmpeg_video_br'] && ! $params['ffmpeg_video_br'] == 'source') {

didn't enter the if statement when i passed the video bitrate param, but this worked:

if ($params['ffmpeg_video_br'] && $params['ffmpeg_video_br'] != 'source') { // or !($params['ffmpeg_video_br'] == 'source')

Thanks,
-Arian

Comments

arthurf’s picture

Status: Active » Needs review

Thanks for the catch. I committed the fix, please go ahead and test.