mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[nhl] Add an extractor for videocenter's categories (#1586)
It downloads the last 12 videos.
This commit is contained in:
		| @@ -16,6 +16,7 @@ from youtube_dl.extractor import ( | ||||
|     UstreamChannelIE, | ||||
|     SoundcloudUserIE, | ||||
|     LivestreamIE, | ||||
|     NHLVideocenterIE, | ||||
| ) | ||||
| from youtube_dl.utils import * | ||||
|  | ||||
| @@ -74,5 +75,14 @@ class TestPlaylists(unittest.TestCase): | ||||
|         self.assertEqual(result['title'], u'TEDCity2.0 (English)') | ||||
|         self.assertTrue(len(result['entries']) >= 4) | ||||
|  | ||||
|     def test_nhl_videocenter(self): | ||||
|         dl = FakeYDL() | ||||
|         ie = NHLVideocenterIE(dl) | ||||
|         result = ie.extract('http://video.canucks.nhl.com/videocenter/console?catid=999') | ||||
|         self.assertIsPlaylist(result) | ||||
|         self.assertEqual(result['id'], u'999') | ||||
|         self.assertEqual(result['title'], u'Highlights') | ||||
|         self.assertEqual(len(result['entries']), 12) | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     unittest.main() | ||||
|   | ||||
		Reference in New Issue
	
	Block a user