1
0
mirror of https://github.com/l1ving/youtube-dl synced 2020-11-18 19:53:54 -08:00
2014-07-08 09:42:50 +02:00

22 lines
528 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import re
from gorillavid import GorillaVidIE
class DaclipsIE(GorillaVidIE):
_HOST = 'daclips.in'
_VALID_URL = GorillaVidIE._VALID_URL_TEMPLATE % {'host': re.escape(_HOST)}
_TESTS = [{
'url': 'http://daclips.in/3rso4kdn6f9m',
'info_dict': {
'id': '3rso4kdn6f9m',
'ext': 'mp4',
'title': 'Micro Pig piglets ready on 16th July 2009',
'thumbnail': 're:http://.*\.jpg',
},
}]