Opened 11 years ago
Closed 11 years ago
#12437 closed Bug Report - General (fixed)
mythweb streaming issue 0.28
| Reported by: | Owned by: | Stuart Auchterlonie | |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.28 |
| Component: | Plugin - MythWeb | Version: | Master Head |
| Severity: | low | Keywords: | |
| Cc: | Ticket locked: | no |
Description
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:"
I have tracked this down to the "modules/stream_raw.pl" 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 verified to be working.
elsif ($basename =~ /\.ts$/) {
$type = 'video/mp2t'; $suffix = '.ts';
}
Attachments (1)
Change History (3)
by , 11 years ago
| Attachment: | stream_raw.pl added |
|---|
comment:1 by , 11 years ago
| Milestone: | unknown → 0.28 |
|---|---|
| Owner: | changed from to |
| Status: | new → assigned |
comment:2 by , 11 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.

fixed stream_raw.pl