diff options
| author | Tithen-Firion <Tithen-Firion@users.noreply.github.com> | 2014-11-30 19:57:35 +0100 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-12-01 00:10:12 +0100 | 
| commit | a196a53265a1df05270fe2a5ae83257b3629d30c (patch) | |
| tree | d2f24a71605ab4aba2b482c1bbd6c16d493e5f26 | |
| parent | 3266f0c68e9512f226043d868630a7179f45d390 (diff) | |
[myspace] Update tests
| -rw-r--r-- | youtube_dl/extractor/myspace.py | 33 | 
1 files changed, 28 insertions, 5 deletions
diff --git a/youtube_dl/extractor/myspace.py b/youtube_dl/extractor/myspace.py index dd0a0415e..b4b1fb51d 100644 --- a/youtube_dl/extractor/myspace.py +++ b/youtube_dl/extractor/myspace.py @@ -29,19 +29,42 @@ class MySpaceIE(InfoExtractor):                  'skip_download': True,              },          }, -        # song +        # songs          { -            'url': 'https://myspace.com/spiderbags/music/song/darkness-in-my-heart-39008454-27041242', +            'url': 'https://myspace.com/killsorrow/music/song/of-weakened-soul...-93388656-103880681', +            'md5': 'f1d7323321f6b7775bf1e3754c1707dc',              'info_dict': { -                'id': '39008454', +                'id': '93388656',                  'ext': 'flv', -                'title': 'Darkness In My Heart', -                'uploader_id': 'spiderbags', +                'playlist': 'The Demo', +                'title': 'Of weakened soul...', +                'uploader': 'Killsorrow', +                'uploader_id': 'killsorrow',              },              'params': {                  # rtmp download                  'skip_download': True,              }, +        }, { +            'add_ie': ['Vevo'], +            'url': 'https://myspace.com/threedaysgrace/music/song/animal-i-have-become-28400208-28218041', +            'info_dict': { +                'id': u'USZM20600099', +                'title': u'Animal I Have Become', +                'uploader': u'Three Days Grace', +                'timestamp': int, +            }, +            'skip': 'VEVO is only available in some countries', +        }, { +            'add_ie': ['Youtube'], +            'url': 'https://myspace.com/starset2/music/song/first-light-95799905-106964426', +            'info_dict': { +                'id': 'ypWvQgnJrSU', +                'title': 'Starset - First Light', +                'uploader': 'Jacob Soren', +                'uploader_id': 'SorenPromotions', +                'upload_date': '20140725', +            }          },      ]  | 
