Download & Extend

Video size width x height dimension settings not applied for imported videos

Project:FlashVideo
Version:6.x-1.4
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:postponed

Issue Summary

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

#1

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

#2

Status:active» postponed

#3

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

#4

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);

nobody click here