There is a call to mm_ffmpeg_frame_sizes() in this module, which obviously doesn't work if Media mover isn't enabled. I suggest adding this renamed copy of the function:

<?php
/**
 * Output dimentions form settings.
 * @return
 *   An array of frame sizes.
 */
function ffmpeg_wrapper_frame_sizes(){
  $frame_sizes = drupal_map_assoc(array('128x96', '176x144', '320x240', '352x288', '512x386', '704x576'));
  return $frame_sizes;
}
?>

Comments

arthurf’s picture

Status: Needs review » Fixed

Ouch! Good catch. I've committed this to D5.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

robert castelo’s picture

Status: Closed (fixed) » Active

Needs to be added to the 5.x-1.0-alpha1 release as well I think.

In that version opening the editing page for a configuration gives a white screen of death with a PHP error complaining that the function could not be found.

zoo33’s picture

Status: Active » Fixed

We can't add anything to 5.x-1.0-alpha1 at this point, you should use 5.x-1.0-alpha3.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.