Dear Lowell,
Try to replace your code with:
add_filter('wpcf_fields_slug_video_value_display', 'embed_video'); function embed_video($value) { global $wp_embed; return $wp_embed->run_shortcode('[wpvideosembed]' . $value . '[/wpvideosembed]'); }
The filter needs to has this format "wpcf_fields_slug_fieldname_value_display".
BTW It is very cool blog @sridharK
Please let me know if you are satisfied with my answer and if I can help you with any other questions you might have.