在服务器上播放视频扩展文件

时间:2016-07-26 16:23:25

标签: html5 web-services video

我希望在您输入网址路径时,在浏览器中播放.3gp.mp4的文件,而不是为您提供下载选项。

我想要这样的事情http://www.html5videoplayer.net/videos/toystory.mp4

这就是我目前所拥有的:http://www.reelychat.com/img/1/profileVid/SampleVideo.3gp

我正在使用GoDaddy网络服务器。

2 个答案:

答案 0 :(得分:1)

您需要在.htaccess文件中设置该文件类型的内容类型。

将此添加到您的htaccess文件中:

AddType video / video / 3gpp 3gp

阅读本文以获取更多信息:https://uk.godaddy.com/help/configure-mime-types-375

答案 1 :(得分:0)

很可能,您需要将MIME类型添加到服务器配置中。简短的搜索提出了这个结果。 Configure MIME types。以下更新的示例:

Linux主机

.htaccess文件应与指定文件位于同一目录中。 .htaccess条目具有以下语法:

AddType mime-type ext

使用您的文件扩展名作为示例,.htaccess条目如下:

AddType video/mp4 mp4
AddType video/3gpp 3gpp 3gp

Windows主机

web.config文件应位于网站的根目录中。使用.mp4和.mpv作为示例,使用IIS 7添加MIME类型如下所示:

<configuration>
  <system.webServer>
    <staticContent>
      <mimeMap fileExtension=".mp4" mimeType="video/mp4" />
      <mimeMap fileExtension=".3gp" mimeType="video/3gpp" />
      <mimeMap fileExtension=".3gpp" mimeType="video/3gpp" />
    </staticContent>
  <system.webServer>
</configuration>