Don Sevcik
Don Sevcik

Reputation: 915

Drupal MP4 videos not playing in Firefox

I've added these 2 lines to our htaccess file, but the video shows a dark screen with No video with supported MIME type and format found:

AddType sites/default/files/videos/original/webm .webm
AddType sites/default/files/videos/original/mp4 .mp4

Upvotes: 0

Views: 507

Answers (1)

Jon Lin
Jon Lin

Reputation: 143886

sites/default/files/videos/original/webm and sites/default/files/videos/original/mp4 aren't mime-types. You're probably looking for video/webm and video/mp4, respectively.

Upvotes: 1

Related Questions