<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div><div class="h5">Solved this - recording below for future reference:</div></div>
<br>
Turned out to be two problems:<br>
1)  The only filetypes allowed for direct download in Mythweb 0.22 are<br>
.mpg, .mpeg, .mpeg2, and .nuv .<br>
To allow for mkv (and others) to be directly downloaded, edit<br>
/usr/share/mythtv/mythweb/modules/stream/<a href="http://stream_raw.pl" target="_blank">stream_raw.pl</a> and add the<br>
filetype under &quot;# File Type&quot; (line 26).<br>
<br>
For example, mkv files can be added under the .nuv section with the following:<br>
<br>
 elsif ($basename =~ /\.mkv$/) {<br>
         $type   = &#39;video/x-matroska&#39;;<br>
         $suffix = &#39;.mkv&#39;;<br>
     }<br>
<br>
<br>
2) I had characters in my filenames that did not get parsed correctly<br>
by Mythweb, and hence never got converted to flv for streaming. After<br>
removing all ampersands, commas, apostrophes, and parenthesis,<br>
streaming worked on all files.<br>
<br>
Hope this helps someone in the future.<br>
<div><div></div><div class="h5"><br>
Barry<br>
_______________________________________________rs.</div></div></blockquote></div><br>
<div>now is one going to need to make a patch.. or that file not going to be</div><div>written over every few days with updates?</div>