youtube api v3.0 Upload baseado em navegador no php

Eu estou tentando (php) para fazer upload de um vídeo (navegador baseado não armazenar o vídeo no meu aplicativo deseja fazer o upload direto para o youtube).

Eu não consigo encontrar nenhum documento sobre isso. Por exemplo, como estehttps://developers.google.com/youtube/2.0/developers_guide_php#Browser_based_Upload

Mas para v3.0 eu estou olhando para o código que é fornecido (3.0), mas não consigo ver uma maneira de obter vídeo (ou seja, $ videoPath = "/path/to/file.mp4") sem armazenar (temporariamente no meu aplicativo) .

// REPLACE with the path to your file that you want to upload
$videoPath = "/path/to/file.mp4";

// Create a snipet with title, description, tags and category id
$snippet = new Google_VideoSnippet();
$snippet->setTitle("Test title");
$snippet->setDescription("Test description");
$snippet->setTags(array("tag1", "tag2"));

questionAnswers(1)

yourAnswerToTheQuestion