I am trying (php) to upload a video (a browser that does not save the video in my application wants to upload directly to YouTube).
I can not find any documents about this. For example, like https://developers.google.com/youtube/2.0/developers_guide_php#Browser_based_Upload
But for v3.0, I look at the code that is provided (3.0), but I see no way to get the video (i.e. $ videoPath = "/path/to/file.mp4") without saving (temporarily in my application).
$videoPath = "/path/to/file.mp4";
$snippet = new Google_VideoSnippet();
$snippet->setTitle("Test title");
$snippet->setDescription("Test description");
$snippet->setTags(array("tag1", "tag2"));
source
share