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
[redtube] add age_limit
rtmp_test
Philipp Hagemeister
11 years ago
parent
b24f347190
commit
1310bf2474
1 changed files
with
9 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-4
youtube_dl/extractor/redtube.py
+ 9
- 4
youtube_dl/extractor/redtube.py
View File
@ -30,9 +30,14 @@ class RedTubeIE(InfoExtractor):
r
'
<h1 class=
"
videoTitle slidePanelMovable
"
>(.+?)</h1>
'
,
webpage
,
u
'
title
'
)
# No self-labeling, but they describe themselves as
# "Home of Videos Porno"
age_limit
=
18
return
{
'
id
'
:
video_id
,
'
url
'
:
video_url
,
'
ext
'
:
video_extension
,
'
title
'
:
video_title
,
'
id
'
:
video_id
,
'
url
'
:
video_url
,
'
ext
'
:
video_extension
,
'
title
'
:
video_title
,
'
age_limit
'
:
age_limit
,
}
Write
Preview
Loading…
Cancel
Save