Solved it
Code:
<?php
$vid = get_post_meta($post->ID, '_wpb_video', true);
$splash = get_post_meta($post->ID, '_wpb_poster', true);
{ echo flowplayer( '[flowplayer src="' . $vid . '" width=580 height=326 splashend=show splash="' . $splash . '" autoplay=true]'); } ?>
Incase anyone ever needs to pull a vid from a custom field using flowplayer in wp.
this works.