If I create a video node by manually attaching/uploading a video file (Create Content)... the resulting embedded video will have the dimensions specified in FlashVideo settings -FFMPEG Settings >> Video Default Size.

However, if I create a video node my the video import feature, these dimensions are not observed. I get something else.

Comments

travist’s picture

Good find. Not serious, so it will just wait until the next release.

attheshow’s picture

Status: Active » Postponed
spiffyd’s picture

I guess I have to wait awhile... :/

petria’s picture

when you are waiting "offical" fix:
My quick'n'dirty solution to force all videos same resolution is change line 1212 of flashvideo.module:
$video_args = str_replace('@output', '-s '. $new_dimensions .' @output', $video_args);
to
$video_args = str_replace('@output', '-s '. $max_dimensions .' @output', $video_args);