When I updated the my Video Filter copy to 6.x-2, all my embeded videos resized much smaller than I liked, so:
Edit the following lines in your video_filter.module to resize the base values:

function video_filter_process($text, $format = -1) {
	if (preg_match_all('/\[video(\:(.+))?( .+)?\]/isU', $text, $matches_code)) {  
		foreach ($matches_code[0] as $ci => $code) {
			$video = array(
				'source'	=> $matches_code[2][$ci],
				'width'		=> variable_get('video_filter_width_'.$format, 200),
				'height'	=> variable_get('video_filter_height_'.$format, 200),
				'autoplay'	=> variable_get('video_filter_autoplay_'.$format, 0),
			);

to:

'width'		=> variable_get('video_filter_width_'.$format, 480),
'height'	=> variable_get('video_filter_height_'.$format, 480),

Comments

fokkezb’s picture

Status: Active » Fixed

Set to 400x400 in last versions.

Anonymous’s picture

Status: Fixed » Closed (fixed)

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