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
Comment #1
travist commentedGood find. Not serious, so it will just wait until the next release.
Comment #2
attheshow commentedComment #3
spiffyd commentedI guess I have to wait awhile... :/
Comment #4
petria commentedwhen 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);