mirror of
https://github.com/anxdpanic/plugin.video.youtube.git
synced 2025-12-06 02:30:50 -08:00
Fix typo causing no fractional frame rate hinting to fail #679
This commit is contained in:
parent
587b08825c
commit
d19c542bc7
3 changed files with 6 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<addon id="plugin.video.youtube" name="YouTube" version="7.0.5+beta.4" provider-name="anxdpanic, bromix, MoojMidge">
|
||||
<addon id="plugin.video.youtube" name="YouTube" version="7.0.5+beta.5" provider-name="anxdpanic, bromix, MoojMidge">
|
||||
<requires>
|
||||
<import addon="xbmc.python" version="3.0.0"/>
|
||||
<import addon="script.module.requests" version="2.27.1"/>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
## v7.0.5+beta.5
|
||||
### Fixed
|
||||
- Fix typo causing no fractional frame rate hinting to fail #679
|
||||
|
||||
## v7.0.5+beta.4
|
||||
### Fixed
|
||||
- Fix typo that caused android player requests to fail
|
||||
|
|
|
|||
|
|
@ -596,7 +596,7 @@ class VideoInfo(YouTubeRequestClient):
|
|||
48: '48000/1000', # 48.00 fps
|
||||
50: '50000/1000', # 50.00 fps
|
||||
60: '60000/1000', # 60.00 fps
|
||||
},
|
||||
}
|
||||
FRACTIONAL_FPS_SCALE = {
|
||||
0: '{0}000/1000', # --.00 fps
|
||||
24: '24000/1001', # 23.976 fps
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue