Why convert TRP to MKV?
TRP files are rarely supported outside dedicated PVR software, while MKV plays on almost any media player and works natively with Plex, Jellyfin, and Kodi. MKV also preserves DVB subtitles and multiple audio tracks better than .MP4, making it the preferred archive container for broadcast recordings with more than one language or embedded subtitle track.
How to convert TRP to MKV
MKVToolNix FREE
Drag your .trp into MKVMerge GUI, set the output filename to .mkv, and click Start muxing - all streams are copied without re-encoding.
HandBrake FREE
Open your .trp file, choose MKV as the container in the Summary tab, and click Start Encode; HandBrake re-encodes video so this is slower than a remux.
Command line - ffmpeg CLI
Run ffmpeg -i in.trp -c copy out.mkv for a lossless remux; add -map 0 before -c copy to include all audio and subtitle tracks.
Programs that convert TRP
About these formats
A TRP file is an HD video recording produced by a TV set-top box or PVR (Topfield, Humax, Samsung and similar devices), stored as an MPEG-2 transport stream. The free VLC media player opens…
Open .TRP 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
- A remux with ffmpeg or MKVToolNix copies streams byte-for-byte - quality is identical to the source and conversion takes seconds even for a 10 GB file.
- MKV preserves all audio tracks and DVB subtitles from the broadcast; MP4 handles these less reliably and may drop subtitle tracks entirely.
- If playback stutters at the start of the converted file, the source may have discontinuous timestamps - add
-fflags +genptsto the ffmpeg command.
Frequently asked questions
Will I lose quality converting TRP to MKV?
Why choose MKV over MP4 for a TRP recording?
Will both audio tracks from my broadcast recording be kept?
ffmpeg -i in.trp -map 0 -c copy out.mkv or select all tracks in MKVToolNix to include every audio and subtitle stream.