Fixing Mythtv ASX streaming with transcoding to MKV

update the following file

sudo nano /usr/share/mythtv/mythweb/modules/stream/stream_raw.pl

then add the following to the hashtag File type section

    elsif ($basename =~ /\.mkv$/) {
        $type   = 'video/x-matroska';
        $suffix = '.mkv';
    }