This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
youtube-dl
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1.1k
Wiki
Activity
Browse Source
[imdb] Fix the resolution values (
fixes
#1847
)
We were using the size of the player, it was the same for all the formats
totalwebcasting
Jaime Marquínez Ferrándiz
11 years ago
parent
17769d5a6c
commit
acf37ca151
1 changed files
with
1 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-2
youtube_dl/extractor/imdb.py
+ 1
- 2
youtube_dl/extractor/imdb.py
View File
@ -46,8 +46,7 @@ class ImdbIE(InfoExtractor):
formats
.
append
(
{
'
format_id
'
:
f_id
,
'
url
'
:
format_info
[
'
url
'
]
,
'
height
'
:
format_info
[
'
height
'
]
,
'
width
'
:
format_info
[
'
width
'
]
,
'
height
'
:
int
(
info
[
'
titleObject
'
]
[
'
encoding
'
]
[
'
selected
'
]
[
:
-
1
]
)
,
}
)
return
{
Write
Preview
Loading…
Cancel
Save