I am not able to set the resolution of my videos. If I set the resolution to one of the presets (16:9 Widescreen) it changes back to "manually set" after saving the video (type Upload mp4). Also entering values in Width and Height are ignored and reset to 0. Videos are shown always with 400x316.
I tried leaving the Default Width field blank in Administer/Site Configuration/Video/Video resolution and alternatively setting a value without success.

What is wrong?

Comments

Murando’s picture

Title: Resulution always "Manual resolution 0 0" » Resolution always "Manual resolution 0 0"
szato’s picture

Category: support » bug

Hi!

This is because "video_submit is never called" --> http://drupal.org/node/654514. My solution is:
create a module and use hook_nodeapi to call video_submit, video_update functions.
PS: hook_submit is D5 hook

video_bugfix.info
; $Id$
name = Video Bugfix
description = Video module v 6.x-2.8. update BUGfix
core = 6.x
dependencies[] = video

video_bugfix.module:
function video_bugfix_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
if ($node->type == 'video' && ($op == 'update' || $op == 'insert')) {
video_submit($node);//setting video fields
video_update($node);//update video
}
}

hypertext200’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

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