$video_type, 'id' => $video_id ); return $video_array; } else { return false; } } /* Takes a Vimeo video/clip ID and calls the Vimeo API v2 to get the large thumbnail URL.*/ function get_vimeo_thumbnail_uri( $clip_id ) { $vimeo_api_uri = 'http://vimeo.com/api/v2/video/' . $clip_id . '.php'; $vimeo_response = wp_remote_get( $vimeo_api_uri ); if( is_wp_error( $vimeo_response ) ) { return $vimeo_response; } else { $vimeo_response = unserialize( $vimeo_response['body'] ); return $vimeo_response[0]['thumbnail_large']; } } /* Takes a wistia oembed url and gets the video thumbnail url. */ function get_wistia_thumbnail_uri( $video_uri ) { if ( empty($video_uri) ) return false; $wistia_api_uri = 'http://fast.wistia.com/oembed?url=' . $video_uri; $wistia_response = wp_remote_get( $wistia_api_uri ); if( is_wp_error( $wistia_response ) ) { return $wistia_response; } else { $wistia_response = json_decode( $wistia_response['body'], true ); return $wistia_response['thumbnail_url']; } }