Opened 10 years ago

Closed 10 years ago

Last modified 10 years ago

#11996 closed Patch - Bug Fix (fixed)

aspect in mythweb/modules/stream/stream_flv.pl

Reported by: xfr@… 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)

comment:1 Changed 10 years ago by Karl Dietz <dekarl@…>

Resolution: fixed
Status: newclosed

In af4635569c4facacde9c089ca0be712797bfdc75/mythweb:

change base for custom aspect from 10,000 to 1,000,000

Patch by FU-REN XIAO (蕭輔仁)

Fixes #11996

comment:2 Changed 10 years ago by Karl Dietz <dekarl@…>

In fca2bd2f78136a5363b1fbe7a313677b6bd1adc5/mythweb:

change base for custom aspect from 10,000 to 1,000,000

Patch by FU-REN XIAO (蕭輔仁)

Fixes #11996
(cherry picked from commit af4635569c4facacde9c089ca0be712797bfdc75)

comment:3 Changed 10 years ago by Karl Egly

Owner: changed from Rob Smith to Karl Egly
Type: Bug Report - GeneralPatch - Bug Fix
Note: See TracTickets for help on using tickets.