i would like to force download the googlevideo.com url with php or js rather than playing in the browser....
url is:
https://lh3.googleusercontent.com/9hjfn7zqOZINb2UmY352yVU3XWLE7vvtDRHiWm9KPwd6hIBultO5yFea0yzGkwNdci9c-Y1SJINEN6dqoqrTqFI2B57d9Di_tODQ2Tsrp0nXS9XCfU9nCvxp1ONbQoquLFeeesa3iw=m37
my code:
<button class="button button1" ><a target="_self" href="<?php $data = json_decode($getGP, true); echo $data[0]['file'];?>">1080p Download Link</a></button>
Seems like here you can find proper answer to this How to force file download with PHP
In short words - there is no simple way with html-tag or with url modification to tell browser that you want to download video.
In the thread from link above there is a php code to create own script that will download video from link and put it back to user's browser as a file.