Initializing... drag & drop files here
Supports: HEVC
A .hevc file is a raw H.265 elementary stream — just the compressed video bitstream with no container, no timing index, and no audio track. This guide turns that bare stream into a playable, seekable MKV (Matroska) file you can scrub through in VLC or MPV, and explains the one setting that decides whether the result stays H.265 or gets re-encoded.
.hevc Stream Needs a ContainerWhen an encoder (x265, an FFmpeg test build, a hardware capture chip) writes a raw .hevc file, it emits only the coded picture data. There is no index telling a player where each frame starts, no duration, and — because HEVC is a video-only codec — no audio. Most players (Windows Media Player, QuickTime, browsers) refuse to open it, and even players that do try usually can't seek, because there is nothing to seek against. Wrapping the stream in MKV adds the frame index, timestamps, and metadata a player needs, which is why the same video that wouldn't scrub before plays and seeks cleanly afterward.
MKV (Matroska) is a good target here because it natively carries HEVC: the Matroska spec stores H.265 under the codec ID V_MPEGH/ISO/HEVC, so the stream can go in without being re-encoded if you choose to keep it. 1
.hevc file onto the page or click "+ Add Files". You can queue several raw streams and convert them in one batch with the same settings.The Video Codec dropdown is the choice that matters most on this page, because a raw .hevc file can be put into MKV two different ways:
Because HEVC carries no audio, the MKV you get is silent regardless of codec — the converter has no sound to put in the file. That is expected for a .hevc source, not a bug. If you have a matching audio file, mux it in afterward with a separate tool.
.hevc source: the stream is video-only, so there is no audio to carry. Add an audio track separately if you have one..hevc capture may lack a valid stream header; re-export the file from the encoder before retrying.This tool expects a genuine raw H.265 elementary stream. If your file is actually an MP4 or MOV that was renamed to .hevc, it already has a container and you want a remux of that file instead. DRM-protected or encrypted streams cannot be converted by any tool until the protection is removed at the source. And if the stream itself is corrupt — a dropped capture, an interrupted encode — no container can repair the missing frames; you will need to re-create the .hevc file from the original source.
Files are uploaded over an encrypted connection, processed on our servers, and deleted automatically a few hours after conversion — no sign-up, no watermark, never shared or made public.
Either, depending on the Video Codec you pick. Select H.265/HEVC and the existing stream is wrapped into Matroska with no re-encoding and no quality loss. Leave the MKV default of H.264 and the video is decoded and re-encoded, which costs a little quality but plays on more devices. The dropdown is where you make that call.
Because a .hevc file is a video-only elementary stream — it never contained audio in the first place, so there is nothing to carry into the MKV. This is normal for raw HEVC. If you need sound, mux a separate audio file into the MKV afterward.
No. VLC, MPV, Kodi and many recent smart TVs play HEVC-in-MKV, but support is not universal — some older TVs, browsers, and editing apps that handle plain MP4 will not. For the broadest compatibility, either re-encode to H.264 here or use the HEVC to MP4 converter; MP4 with HEVC has stricter rules but is recognized by more devices, while MKV is the more forgiving container.
MKV is the more permissive container and accepts HEVC with the least fuss, which makes it ideal for archiving or for playback in VLC/MPV. MP4 is the more widely recognized container — phones, browsers, and TVs are likelier to open it — but it is stricter about how HEVC is tagged. Pick MKV for flexibility and tooling, MP4 for reaching the most devices.
In our testing, selecting H.265/HEVC as the Video Codec on a clean raw .hevc stream produces an MKV whose video matches the source frame-for-frame, with no re-encoding step — the conversion finishes faster and the picture is byte-identical to the input. Switching the codec to H.264 triggers a full re-encode, which takes longer and is visibly a transcode rather than a wrap.
It is a raw H.265 / MPEG-H Part 2 video bitstream with no container around it. HEVC was standardized as ITU-T H.265 (and ISO/IEC 23008-2) in 2013 and offers roughly 25–50% better compression than H.264 at the same quality. The raw .hevc form is what encoders and test pipelines emit before the video is muxed into a container like MKV or MP4. 3