Media, Video or Youtube Sizing With Embed

Hi there,

my first post and loving the software its blooming amazing!

A main feature of my forum will be video / media embedding, embed size is a little small.. is there anywhere in admin to control media size, I've had a good look in the options.

If not, does anyone know which file to adjust that contains the pre-formatted embed code.

Many thanks
 
admincp -> BB Code and Smilies -> BB Code Media Sites -> (Media Site) -> Embed HTML

For example, the Youtube code is:

Code:
<object width="500" height="300" data="http://www.youtube.com/v/{$id}&amp;fs=1" type="application/x-shockwave-flash">
    <param name="movie" value="http://www.youtube.com/v/{$id}&amp;fs=1" />
    <param name="allowFullScreen" value="true" />
    <param name="wmode" value="opaque" />
    <embed src="http://www.youtube.com/v/{$id}&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" wmode="opaque" width="500" height="300" />
</object>

Change the object width and height.
 
Top Bottom