<div dir="ltr">On Thu, Apr 23, 2015 at 10:05 AM, dennis <span dir="ltr"><<a href="mailto:deg@outlook.com" target="_blank">deg@outlook.com</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">I noticed that with the 0.28 release all the recordings are now stored as .ts files ( was .mpg in 0.27 ).   I have issues streaming the files or saving them via mythweb.    The error I am getting is: "Unknown video type requested:"<br>
<br>
I have tracked this down to the "modules/<a href="http://stream_raw.pl" target="_blank">stream_raw.pl</a>"  and it looks like it is missing the ".ts" file type in the code.   I have added the following code locally at line 29 and it seems to be working.<br>
<br>
elsif ($basename =~ /\.ts$/) {<br>
        $type   = 'video/mpg';<br>
        $suffix = '.mpg';<br>
    }<br>
<br>
Is this the correct mime type and file name to be setting for a .ts file?<br>
How do I go about getting this change in the official code base?<br>
<br></blockquote><div><br>video/mp2t <a href="https://github.com/MythTV/mythtv/blob/master/mythtv/libs/libmythupnp/httprequest.cpp#L128">https://github.com/MythTV/mythtv/blob/master/mythtv/libs/libmythupnp/httprequest.cpp#L128</a><br></div><div>video/mp2p for UPnP.<br><br></div><div>However, MythWeb is EOL'd for 0.28, so I doubt they would take a patch. If you really wanted to you could make a pull request on it's github or file a trac ticket.<br></div><div>I haven't used 0.28-pre, but I would see what features are built in to the webfrontend and the backend webserver. Then let us know :)<br></div></div></div></div>