Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

.webm file not playing when coming from server location (MIME type: text/html) on FF instead of writing AddType video/webm .webm line in .htaccess file.

  • 1 trả lời
  • 4 gặp vấn đề này
  • 10 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

I have written following html5 code in a html page for my site.

<video controls>
	<source src="http://www.mysite.com/../videos/30frames.webm" type="video/webm"/>
</video>

When I run that page on Firefox browser (FF version:19.0, Windows XP Operating System), I see video is not playing, instead it is showing a black box 'X' on it and below the cross sign text: 'No video with supported format and MIME type found' is shown.

To solve the problem, I have tried following lines of code in .htaccess file.

AddType video/webm .webm
## or ##
<FilesMatch "\.webm$">
  ForceType video/webm
</FilesMatch>
## or ##
<FilesMatch "\.webm$">
  DefaultType video/webm
</FilesMatch>

But none worked. Can you please help in this regard? Thanks.

I have written following html5 code in a html page for my site. <blockquote><pre><nowiki> <video controls> <source src="http://www.mysite.com/../videos/30frames.webm" type="video/webm"/> </video> </nowiki></pre></blockquote> When I run that page on Firefox browser (FF version:19.0, Windows XP Operating System), I see video is not playing, instead it is showing a black box 'X' on it and below the cross sign text: 'No video with supported format and MIME type found' is shown. To solve the problem, I have tried following lines of code in .htaccess file. <blockquote><pre><nowiki> AddType video/webm .webm ## or ## <FilesMatch "\.webm$"> ForceType video/webm </FilesMatch> ## or ## <FilesMatch "\.webm$"> DefaultType video/webm </FilesMatch> </nowiki></pre></blockquote> But none worked. Can you please help in this regard? Thanks.

Được chỉnh sửa bởi iwdsamir vào

Tất cả các câu trả lời (1)

more options

That file is send as Content-Type: application/force-download


A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.

The helpers at that forum are more knowledgeable about web development issues.
You need to register at the MozillaZine forum site in order to post at that forum.