Opened 11 years ago
Closed 11 years ago
Last modified 11 years ago
#11996 closed Patch - Bug Fix (fixed)
aspect in mythweb/modules/stream/stream_flv.pl
Reported by: | Owned by: | Karl Egly | |
---|---|---|---|
Priority: | minor | Milestone: | 0.27.1 |
Component: | Plugin - MythWeb | Version: | Master Head |
Severity: | medium | Keywords: | |
Cc: | Ticket locked: | no |
Description
Although HTML5 live streaming is on the way, many people are using the old FLV streaming in mythweb.
It failed to work for me after my upgrading of mythtv.
After some investigation, I found that the custem aspect ratio has changed from x/10000 to x/1000000. Therefore, there should be a fix in corresponing line 105 in stream_flv.pl. That is
$x = $aspect->{'data'}; $y = 10000;
to
$x = $aspect->{'data'}; $y = 1000000;
Change History (3)
Note: See
TracTickets for help on using
tickets.
In af4635569c4facacde9c089ca0be712797bfdc75/mythweb: