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 &quot;closed enhancement: wontfix&quot; <br><br>The patch was missing several braces. If this isn&#39;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   = &#39;video/x-matroska&#39;; <br>              $suffix = &#39;.mkv&#39;; <br>      } <br>elsif ($basename =~ /\.avi$/) { <br>      $type   = &#39;video/x-msvideo&#39;; <br>      $suffix = &#39;.avi&#39;; <br>
      }<br>elsif ($basename =~ /\.mov$/) { <br>      $type   = &#39;video/quicktime&#39;; <br>      $suffix = &#39;.mov&#39;; <br>      } <br>elsif ($basename =~ /\.mp4$/) { <br>      $type   = &#39;video/mp4&#39;; <br>      $suffix = &#39;.mp4&#39;; <br>
      }<br>elsif ($basename =~ /\.xvid$/) { <br>      $type   = &#39;video/mp4&#39;; <br>        $suffix = &#39;.mp4&#39;; <br>      }         <br>elsif ($basename =~ /\.ogv$/) { <br>      $type   = &#39;video/ogg&#39;; <br>      $suffix = &#39;.ogv&#39;;<br>
      }<br>