After the upload, how I set the title / description of the video in Vimeo using PHP ?
$uri = $lib->upload($localfile);
$video_data = $lib->request($uri);
if ($uri)
{
$link = $video_data['body']['link'];
$lib->request($uri, array('name' => 'Teste','description' => 'My upload by vimeo php api'), 'PATCH');
echo "<br>Success $filename was sent to $link ";
}