我找到了一个加密视频网址的代码,但前提是该文件以.mp4
结尾所以我想让代码与picasa链接一起使用我能做什么或不做什么?
<video controls>
<source type="video/mp4 src="<?php echo getEncodedVideoString('mp4', 'https://lh3.googleusercontent.com/g2XMA9zsuKNRjLnid599v6HfYI-Io1TZaUDJUJskCp8=m22');?>">
</video>
<?php
function getEncodedVideoString($type, $file) {
return 'data:video/' . $type . ';base64,' . base64_encode(file_get_contents($file));
}
?>