I have downloaded mp4 video file from google drive to my website.
$service = new Google_Service_Drive($client);
$file_id = "1JpRYTuW_tlxcjgdsfhsdfhRmJFfjxJA3Rh";
$response = $service->files->get($file_id, array('alt' => 'media'));
$content = $response->getBody()->getContents();
$file = '1JpRYTuW_tlxcjgdsfhsdfhRmJFfjxJA3Rh.mp4';
file_put_contents($file, $content, LOCK_EX);
But I cannot play it, because of video format. So I have two questions:
How can I download video from google drive with API v3 and service account in original video format?
How I can embed non shared video from google drive with API v3 and service account to my website?
Thanks