Hello,
I had the same problem.
I modified the file brightcove.php. The function:
function add_jquery_scripts() {
wp_deregister_script(‘jquery-brightcove’);
wp_register_script( ‘jquery-brightcove’, ‘https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js’);
wp_enqueue_script( ‘jquery-brightcove’ );
wp_deregister_script(‘jquery-ui-core-brightcove’);
wp_register_script( ‘jquery-ui-core-brightcove’, ‘https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js’);
wp_enqueue_script( ‘jquery-ui-core-brightcove’ );
wp_register_style(‘jqueryStyle-brightcove’, ‘https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/smoothness/jquery-ui.css’);
wp_enqueue_style( ‘jqueryStyle-brightcove’);
}
And it works … try if you can.