M3U8 to MP4: Free Online Pre-flight Inspector
Quick answer
To convert an m3u8 playlist to MP4 in 2026, you cannot do it purely client-side in a browser due to CORS restrictions on streaming CDNs. This tool inspects the m3u8 manifest (variants, encryption status, duration) for free, then suggests the right method to actually download: the Vidora Chrome extension for one-click muxing (handles AES-128), ffmpeg with -c copy for CLI users, or yt-dlp for power users. We also show you the exact command for each.
Note: fetching the manifest is subject to CORS. Most CDNs block cross-origin requests. If the fetch fails, this tool still generates the ffmpeg and yt-dlp commands for you to run locally.
How to actually download this m3u8 as MP4
Three methods ranked by ease of use. The right one depends on whether your stream is encrypted, authenticated, or public.
One click. Works on authenticated streams, AES-128 encrypted HLS, and separate audio renditions. No CORS issues because it runs inside your browser tab.
Install Vidora - $9.99 lifetime → 5 free downloads includedFree and unlimited. Handles AES-128 automatically. Use -c copy to remux without re-encoding (fast, lossless quality).
ffmpeg -i "YOUR_M3U8_URL" -c copy output.mp4
After inspecting above, the command updates with your URL automatically.
Smarter extraction with site-specific handlers. Best for streams where cookies or Referer headers are required.
yt-dlp "YOUR_M3U8_URL" -o output.mp4
After inspecting above, the command updates with your URL automatically.
Frequently asked questions
Can I really convert M3U8 to MP4 online for free?
Why does the tool show a CORS error when I paste my m3u8 URL?
What does AES-128 encryption mean for my download?
What is the difference between a master playlist and a media playlist?
What is the ffmpeg command to convert m3u8 to MP4?
Vidora Engineering
The Vidora team builds and maintains the Vidora Chrome extension for HLS, DASH, and MP4 video download. Based in Albuquerque, NM. We write about video streaming protocols, browser extension architecture, and practical ffmpeg recipes.