I got this following error while playing a video file (.m3u8 format ) in asp.net mvc application.
SOLUTION:
1.Open the web.config file in the ASP.NET MVC application.
2.Add the following configuration inside the <system.webServer> element:
MIME Type is used for HTTP Live Streaming HLS playlist file which is used for streaming video content.By adding the configuration in web.config file for .m3u8 extenstion which will identify the HLS
playlist file and handle it appropriately.
Web.config:
<system.webServer> <staticContent> <mimeMap fileExtension=".m3u8" mimeType="application/x-mpegURL"/> </staticContent> </system.webServer>
VIDEO GUIDE:
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article