Kein video mit unterstütztem format und mime-typ gefunden linux

I still see the same problem, though here are the headers on this version in case they are useful:

curl "https://media.awoo.space/awoo.space/media_attachments/files/001/836/100/original/0ef76395cd4259d3.mp4" -H "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0" -H "Accept: */*" -H "Accept-Language: en-US,en;q=0.5" --compressed -H "Referer: https://pinafore-1i23wzm4v.now.sh/service-worker.js" -H "Origin: https://pinafore-1i23wzm4v.now.sh" -H "Connection: keep-alive" -H "Pragma: no-cache" -H "Cache-Control: no-cache" -H "TE: Trailers" -o-

no video with supported format and MIME type found

A huge screen for video is displayed and says the message above. How do I solve this? This happens to me only in Mozilla Fire fox and not on Google Chrome. I am using webm videos and mp4 videos.

This is for html5 video.

asked May 3, 2012 at 3:33

1

The webserver might not be sending the correct MIME types. Depending on the server you may be able to add a .htaccess file with the following:

AddType video/webm .webm
AddType video/mp4 .mp4

If that doesn't work try searching for "server mime types".

answered Jul 11, 2012 at 5:46

Martin FidoMartin Fido

1,07011 silver badges12 bronze badges

2

Go to IIS Manager. Click MIME Types Under IIS. Click Add Button. Enter the following Details.

File Name Extension: .webm MIME Type: video/webm

Again Add, File Name Extension: .ogv MIME Type: video/ogg

And File Name Extension: .mp4 MIME Type: video/mp4

answered Dec 5, 2012 at 15:16

Kein video mit unterstütztem format und mime-typ gefunden linux

Alok RajAlok Raj

911 silver badge1 bronze badge

<html>
<head></head>
<body>
<video width="320" height="240" controls>
<source src="ho.mp4" type="video/mp4">
<source src="ho.ogg" type="video/ogg">
Your browser does not support the video tag.
</video> 
</body>
</html>

this code worked fine for me...Found it from w3schools.com...Incase you still have issues try to add the mime types in the iis manager

answered Mar 6, 2017 at 9:38

Kein video mit unterstütztem format und mime-typ gefunden linux

I have the same problem and this is how I fix it: Open: "C:\Users\DuongKiet\Documents\IISExpress\config\applicationhost.config" --> where "C:\Users\DuongKiet\" depends on your folder name.

Edit applicationhost.config, go to this line:

<mimeMap fileExtension=".mp3" mimeType="audio/mpeg" />

then insert this line below:

<mimeMap fileExtension=".webm" mimeType="video/webm" /> --> problemo solved

In case you cannot locate the folder, just follow this link for instruction how to add a new mime type: http://www.misfitgeek.com/use-html5-video-tags-in-your-asp-net-applications/

Kein video mit unterstütztem format und mime-typ gefunden linux

Pang

9,264146 gold badges85 silver badges120 bronze badges

answered May 5, 2012 at 17:33

Hallo,
Ich habe ein ähnliches Problem, allerdings nicht nur am Handy, sondern auch am PC. Und zwar werden die Videos, die ich per HTML eingebettet habe, nicht abgespielt (in allen Browsern).

Bei Opera kommt keine Meldung, bei Firefox und Edge steht jeweils "Kein Video mit unterstütztem Format und MIME-Typ gefunden".

Da die Videos sehr groß sind, habe ich sie per Link eingebettet. Die Links selbst funktionieren alle, und auch die Videos per se sind in Ordnung. Nun habe ich die Antwort hier gesehen, und mich gefragt, ob evtl die Codecs nicht passen und wie ich das überprüfen kann.

Falls mir jemand weiterhelfen kann, wäre ich sehr dankbar!

Hier ist noch der HTML-Code, den ich verwendet habe (die Links habe ich hier der Übersichtlichkeit halber gekürzt):

<video width="259" height="512" controls controlsList="nodownload">
<source src="https://jl[...]aq/FunktionalerSupport-final.mp4" type="video/mp4" />
<source src="https://jl[...]sgw/FunktionalerSupport_final.ogg" type="video/ogg" />
<source src="https://jl[...]atQ/FunktionalerSupport_final.webm" type="video/webm" />

asked Nov 12, 2021 in SoSci Survey (dt.) by s168783 (110 points)
edited Nov 12, 2021 by s168783

1 Answer