Opened 5 years ago
Closed 5 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)
Changed 5 years ago by
Attachment: | stream_raw.pl added |
---|
comment:1 Changed 5 years ago by
Milestone: | unknown → 0.28 |
---|---|
Owner: | changed from Rob Smith to Stuart Auchterlonie |
Status: | new → assigned |
comment:2 Changed 5 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
fixed stream_raw.pl