用户选择是下载还是流式传输mp4媒体

时间:2017-12-18 16:04:50

标签: php download streaming

我想让用户下载或流式传输相同的媒体。我试过这种方式(添加下载),但它不起作用:

<a target='_blank' href='http://another/site/file.mp4' download>DOWNLOAD</a>
<a target='_blank' href='http://another/site/file.mp4'>STREAMING</a>

我使用php 5.6

创建页面

请注意,该文件始终相同:http://another/site/file.mp4来自不同的域({1}}网址位于site1,媒体位于site2中

1 个答案:

答案 0 :(得分:1)

download标记上的<a>属性仅适用于以下内容:

  • 网址必须与HTML文档的来源相同。
  • 浏览器必须是Chrome,Firefox,Edge,Safari(10)或Opera(15)

我将假设该网址来自其他网站,这就是为什么它不起作用。