Why convert ASF to MKV?
ASF (Advanced Systems Format) is Microsoft's aging streaming container from 1999, poorly supported outside Windows Media Player. .MKV is an open, universally supported container that carries multiple audio tracks, subtitles, and chapters, making it the preferred format for media servers like Plex, Jellyfin, and Kodi. Converting also makes the file editable in modern video editors that do not read ASF.
How to convert ASF to MKV
VLC media player FREE
Go to Media > Convert/Save, add your .asf, set the encapsulation to Matroska, and click Start.
Command line - FFmpeg CLI
Run ffmpeg -i input.asf -c:v libx264 -c:a aac output.mkv to re-encode to H.264/AAC inside an MKV container.
XMedia Recode FREE
Add your .asf, set the output container to MKV, configure the codec, and click Encode.
AviDemux OPEN-SOURCE
Open the .asf, set the output format to MKV Muxer, and save.
Programs that convert ASF
About these formats
An ASF file is Microsoft's Advanced Systems Format container - the same format that underlies Windows Media Video (.wmv) and Windows Media Audio (.wma). On Windows, double-click it and…
Open .ASF details →An MKV file is a Matroska multimedia container that holds video, multiple audio tracks, subtitles and chapters in one file. Open it for free with VLC media player, or on Windows 11 with the…
Open .MKV details →Quality & what to watch
- DRM-protected ASF files cannot be converted - they produce a silent or blank output regardless of the tool used.
- A container-only copy (FFmpeg
-c copy) is fast and lossless but keeps WMV/WMA streams inside MKV, which not all players handle; re-encoding to H.264/AAC is safer for compatibility. - ASF and WMV share the same container format, so a
.wmvfile converts to MKV using exactly the same tools and steps.
Frequently asked questions
Is there quality loss when converting ASF to MKV?
Why does my converted MKV have no sound?
-c:a aac explicitly to force audio transcoding.Can I convert a DRM-protected ASF file?
Is ASF the same as WMV?
.wmv converts to MKV using the same tools and commands.