[youtube] Add support for automatically translated subtitles (fixes #4555)

They have a manually uploaded subtitles track and YouTube can transtale it.
This commit is contained in:
Jaime Marquínez Ferrándiz 2014-12-31 14:15:16 +01:00
parent 1931a73f39
commit 7d900ef1bf
2 changed files with 11 additions and 2 deletions

View file

@ -88,6 +88,14 @@ class TestYoutubeSubtitles(BaseTestSubtitles):
subtitles = self.getSubtitles()
self.assertTrue(subtitles['it'] is not None)
def test_youtube_translated_subtitles(self):
# This video has a subtitles track, which can be translated
self.url = 'Ky9eprVWzlI'
self.DL.params['writeautomaticsub'] = True
self.DL.params['subtitleslangs'] = ['it']
subtitles = self.getSubtitles()
self.assertTrue(subtitles['it'] is not None)
def test_youtube_nosubtitles(self):
self.DL.expect_warning('video doesn\'t have subtitles')
self.url = 'n5BB19UTcdA'