An example of a vimeo feed:
http://vimeo.com/api/v2/channel/funny/videos.xml
A guide to syndicate it with CyberSEO:
Custom fields:
Code:
thumbnail_large->thumb
url->url
id->id
PHP code <?php .. ?>:
Code:
$post['guid'] = $post['custom_fields']['url'];
if (!cseo_post_exists($post)) {
$post['post_excerpt'] = $post['post_content'] = '<iframe src="http://player.vimeo.com/video/' . $post['custom_fields']['id'] . '?portrait=0" width="608" height="375" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>';
unset($post['custom_fields']['url']);
unset($post['custom_fields']['id']);
} else {
$post = false;
}