Hi,

we have set the video default sizes in the settings area.

However, it seems how no effect on chaning the size of the video after uploading.

Anything I need to configure?

Thanks

Comments

attheshow’s picture

Status: Active » Fixed

The "Video Default Size:" field is for configuring the size the video will appear in your player. If you want your video to be resized during conversion, use the "Video Maximum Dimensions:" field.

martin_s’s picture

Version: 6.x-1.5-rc1 » 6.x-1.5
Component: Miscellaneous » User interface
Status: Fixed » Active

Hi,

maybe the same issue here.

after upgrading from 1.5rc4 to 1.5 (on drupal 6.15) all videos are shown with a size of 450x337, settings are 720x432. using the tag [video: width=720 : height=432] doesn't work anymore. going back to 1.5rc4 everything works fine.

did i miss something at upgrading?

martin_s’s picture

Status: Active » Fixed

it looks like in version 1.5 the values from the database overrides the video tag setting in the nodes. after changing the values in the flashvideo mysql table (height and witdh) to 720x432 all videos are displayed with the correct resolution now.

new imports get the correct values from flashvideo settings.

hope this helps someone with the same problem ;-)

thanks!

ore’s picture

If your already up loading an .mp4 or .flv that is of a resolution greater than your max defined in the settings it currently will not get resized in regards to resolution or file size.

this code would need to change. check greater than the max, if so run a conversion process. at the moment it just moves it. so if someone uploads a 1920x1080 mp4 flashvideo will not size it down to a more playable resolution. I'm changing this for the HD option i'm putting in.

function flashvideo_convert($file, $node_type, $create_thumbnail = FALSE, $params = array()) {
.
.
.
.
if (!$create_thumbnail && ($extension == 'flv'|| $extension == 'mp4')) {
        // Move the file to the output directory
        rename($filepath, $output_path);
travist’s picture

Thanks again for your help Mike. It is good to see you on here again.

Status: Fixed » Closed (fixed)

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