Thank you, that worked! And to make it automatically apply these size requirements, I edited the functions.php file and added the following:
add_filter( 'embed_defaults', 'bigger_embed_size' );
function bigger_embed_size()
{
return array( 'width' => 550, 'height' => 310 );
}