What would the process be to ask to have other file types added to mythweb for downloading from the recorded listing. There is a ticket Ticket #7730 but it shows as "closed enhancement: wontfix" <br><br>The patch was missing several braces. If this isn't something other people use I will go away quietly and keep patching my own every time there is an update. <br>
<br>elsif ($basename =~ /\.mkv$/) { <br> $type = 'video/x-matroska'; <br>         $suffix = '.mkv'; <br> } <br>elsif ($basename =~ /\.avi$/) { <br> $type = 'video/x-msvideo'; <br> $suffix = '.avi'; <br>
}<br>elsif ($basename =~ /\.mov$/) { <br> $type = 'video/quicktime'; <br> $suffix = '.mov'; <br> } <br>elsif ($basename =~ /\.mp4$/) { <br> $type = 'video/mp4'; <br> $suffix = '.mp4'; <br>
}<br>elsif ($basename =~ /\.xvid$/) { <br> $type = 'video/mp4'; <br>        $suffix = '.mp4'; <br> }         <br>elsif ($basename =~ /\.ogv$/) { <br> $type = 'video/ogg'; <br> $suffix = '.ogv';<br>
}<br>