Perfect, thanks. Just in case anyone else wants to do this, I used this code to get the latest podcast:
$the_query = new WP_Query('post_type=podcast&posts_per_page=1');
$the_query->the_post();
And then to get the meta data, I just used get_post_meta($post->ID, ‘duration’, true);