Adding a custom post type meta field to rss

Filter the_content_feed:

add_filter( 'the_content_feed', 'wpse_96342_add_video' );

function wpse_96342_add_video( $feed_content )
{
    // fetch post meta
    // add to content

    return $feed_content;
}