Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IndexError: list index out of range (on video_track = mkv.video_tracks[0]) #256

Closed
queeup opened this issue Nov 4, 2013 · 8 comments
Closed
Assignees
Labels

Comments

@queeup
Copy link

queeup commented Nov 4, 2013

Don't know why I get this error.

OpenELEC:~ # subliminal-dev  --version
0.7.1
OpenELEC:~ # subliminal-dev movies/ -l en -l tr -p opensubtitles -v --debug
INFO     [subliminal.video-scan_videos:272] Scanning directory u'/storage/movies'
INFO     [subliminal.video-scan_video:184] Scanning video u'Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv' in u'/storage/movies'
DEBUG    [guessit.transfo.guess_filetype-guess_filetype:140] prop: videoCodec = h264
DEBUG    [guessit.transfo.guess_filetype-guess_filetype:140] prop: format = BluRay
DEBUG    [guessit.transfo.guess_filetype-guess_filetype:140] prop: releaseGroup = D-Z0N3
DEBUG    [guessit.transfo.guess_filetype-guess_filetype:140] prop: screenSize = 1080p
DEBUG    [guessit.transfo.guess_filetype-guess_filetype:140] prop: audioCodec = DTS
DEBUG    [guessit.transfo.guess_filetype-process:164] Found with confidence 1.00: {u'type': u'movie'}
DEBUG    [guessit.transfo.guess_filetype-process:176] Found with confidence 1.00: {u'container': u'mkv'}
DEBUG    [guessit.transfo.guess_release_group-find_and_split_node:74] Found with confidence 0.80: {u'releaseGroup': u'D-Z0N3', u'videoCodec': u'h264'}
DEBUG    [guessit.transfo.guess_properties-find_and_split_node:74] Found with confidence 1.00: {u'format': u'BluRay'}
DEBUG    [guessit.transfo.guess_properties-find_and_split_node:74] Found with confidence 1.00: {u'screenSize': u'1080p'}
DEBUG    [guessit.transfo.guess_properties-find_and_split_node:74] Found with confidence 1.00: {u'audioCodec': u'DTS'}
DEBUG    [guessit.transfo.guess_year-find_and_split_node:74] Found with confidence 1.00: {u'year': 2012}
DEBUG    [guessit.transfo.guess_movie_title_from_position-process:49] folder: []
DEBUG    [guessit.transfo.guess_movie_title_from_position-process:50] basename: [<guessit.matchtree.MatchTree object at 0x39cfa10>]
DEBUG    [guessit.transfo.guess_movie_title_from_position-found_property:33] Found with confidence 0.60: {u'title': u'Act of Valor'}
DEBUG    [guessit.matcher-__init__:154] Found match tree:
0000000000000000000000000000000000000000000000 111
0000000000000000000000000000000000000000000000 000
0000000000000000000000000000000000011111111111    
00000000000000000000000011111122222               
000000000000000000111112      01112               
000000000000011112                                
_________________._____.______.___.___________.___
tttttttttttttyyyy sssss ffffff aaa vvvvvvvvvvv ccc
Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv
DEBUG    [guessit.matchtree-matched:286] Final result: {
    [0.80] "videoCodec": "h264", 
    [1.00] "container": "mkv", 
    [1.00] "format": "BluRay", 
    [0.60] "title": "Act of Valor", 
    [0.80] "releaseGroup": "D-Z0N3", 
    [1.00] "screenSize": "1080p", 
    [1.00] "year": 2012, 
    [1.00] "type": "movie", 
    [1.00] "audioCodec": "DTS"
}
DEBUG    [subliminal.video-scan_video:188] Size is 13425894565
DEBUG    [subliminal.video-scan_video:191] Computed hashes {u'opensubtitles': u'00bc1ac54423b13a', u'thesubdb': u'b5da33c3a2c6a7c3b6fbd3ffad4da1d1'}
DEBUG    [subliminal.video-scan_subtitle_languages:168] Found subtitles set([])
INFO     [enzyme.mkv-__init__:34] Reading Segment element
DEBUG    [enzyme.parsers.ebml.core-parse:168] MasterElement EBML parsed
INFO     [enzyme.parsers.ebml.core-parse:170] MasterElement EBML ignored
DEBUG    [enzyme.parsers.ebml.core-parse:168] MasterElement Segment parsed
INFO     [enzyme.parsers.ebml.core-parse:176] Maximum level 0 reached for children of MasterElement Segment
INFO     [enzyme.mkv-__init__:44] Reading SeekHead element
DEBUG    [enzyme.parsers.ebml.core-parse:168] MasterElement Seek parsed
DEBUG    [enzyme.parsers.ebml.core-parse:179] Loading child elements for MasterElement Seek with size 15
DEBUG    [enzyme.parsers.ebml.core-parse:168] Element SeekID parsed
DEBUG    [enzyme.parsers.ebml.core-parse:168] Element SeekPosition parsed
DEBUG    [enzyme.mkv-__init__:76] Element SeekHead ignored
Traceback (most recent call last):
  File "/storage/.xbmc/addons/shell.python.subliminal.dev/bin/subliminal-dev", line 15, in <module>
    load_entry_point('subliminal==0.7.1', 'console_scripts', 'subliminal')()
  File "/storage/.xbmc/addons/shell.python.subliminal.dev/resources/lib/subliminal/cli.py", line 145, in subliminal
    embedded_subtitles=not args.force, age=args.age)
  File "/storage/.xbmc/addons/shell.python.subliminal.dev/resources/lib/subliminal/video.py", line 291, in scan_videos
    video = scan_video(filepath, subtitles, embedded_subtitles)
  File "/storage/.xbmc/addons/shell.python.subliminal.dev/resources/lib/subliminal/video.py", line 201, in scan_video
    video_track = mkv.video_tracks[0]
IndexError: list index out of range
@Diaoul
Copy link
Owner

Diaoul commented Nov 4, 2013

That's because your MKV has weird metadata, it seems like the SeekHead contains other SeekHead elements.

@ghost ghost assigned Diaoul Nov 4, 2013
@queeup
Copy link
Author

queeup commented Nov 4, 2013

No problem with subliminal 0.6.4

OpenELEC:~ # subliminal --version
0.6.4
OpenELEC:~ # subliminal movies/Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv -l en -l tr -s opensubtitles -v
subliminal movies/Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv -l en -l tr -s opensubtitles -v
DEBUG    2013-11-04 18:22:51 subliminal.videos        Scanning file movies/Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv with depth 0/3
DEBUG    2013-11-04 18:22:51 guessit.transfo.guess_filetype Found with confidence 1.00: {u'type': u'movie'}
DEBUG    2013-11-04 18:22:51 guessit.transfo.guess_filetype Found with confidence 1.00: {u'container': u'mkv'}
DEBUG    2013-11-04 18:22:51 guessit.transfo.guess_release_group Found with confidence 0.80: {u'releaseGroup': u'D-Z0N3', u'videoCodec': u'h264'}
DEBUG    2013-11-04 18:22:51 guessit.transfo.guess_properties Found with confidence 1.00: {u'format': u'BluRay'}
DEBUG    2013-11-04 18:22:51 guessit.transfo.guess_properties Found with confidence 1.00: {u'screenSize': u'1080p'}
DEBUG    2013-11-04 18:22:51 guessit.transfo.guess_properties Found with confidence 1.00: {u'audioCodec': u'DTS'}
DEBUG    2013-11-04 18:22:51 guessit.transfo.guess_year Found with confidence 1.00: {u'year': 2012}
DEBUG    2013-11-04 18:22:51 guessit.transfo.guess_movie_title_from_position folder: [<guessit.matchtree.MatchTree object at 0x1c28690>]
DEBUG    2013-11-04 18:22:51 guessit.transfo.guess_movie_title_from_position basename: [<guessit.matchtree.MatchTree object at 0x1c28c90>]
DEBUG    2013-11-04 18:22:51 guessit.transfo.guess_movie_title_from_position Found with confidence 0.60: {u'title': u'Act of Valor'}
DEBUG    2013-11-04 18:22:51 guessit.matcher          Found match tree:
000000 1111111111111111111111111111111111111111111111 222
000000 0000000000000000000000000000000000000000000000 000
       0000000000000000000000000000000000011111111111    
       00000000000000000000000011111122222               
       000000000000000000111112      01112               
       000000000000011112                                
movies/_________________._____.______.___.___________.___
       tttttttttttttyyyy sssss ffffff aaa vvvvvvvvvvv ccc
movies/Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv
DEBUG    2013-11-04 18:22:51 guessit.matchtree        Final result: {
    [0.80] "videoCodec": "h264", 
    [1.00] "container": "mkv", 
    [1.00] "format": "BluRay", 
    [0.60] "title": "Act of Valor", 
    [0.80] "releaseGroup": "D-Z0N3", 
    [1.00] "screenSize": "1080p", 
    [1.00] "year": 2012, 
    [1.00] "type": "movie", 
    [1.00] "audioCodec": "DTS"
}
DEBUG    2013-11-04 18:22:51 subliminal.videos        Computed OpenSubtitle hash 00bc1ac54423b13a for movies/Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv
DEBUG    2013-11-04 18:22:51 subliminal.videos        Computed TheSubDB hash b5da33c3a2c6a7c3b6fbd3ffad4da1d1 for movies/Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv
DEBUG    2013-11-04 18:22:51 enzyme.mkv               HEADER ID found 1A45DFA3
DEBUG    2013-11-04 18:22:51 enzyme.mkv               SEGMENT ID found 18538067
DEBUG    2013-11-04 18:22:51 enzyme.mkv               BEGIN: process element '0x114d9b74'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               BEGIN: process element '0x114d9b74'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               BEGIN: process element '0x1549a966'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               END: process element '0x1549a966'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               BEGIN: process element '0x1654ae6b'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               ELEMENT AE found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Video track found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               ELEMENT AE found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Audio track found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               ELEMENT AE found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Subtitle track found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               ELEMENT AE found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Subtitle track found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Track language found: u'tur'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               END: process element '0x1654ae6b'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               BEGIN: process element '0x1c53bb6b'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               END: process element '0x1c53bb6b'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               BEGIN: process element '0x1043a770'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:00:00.000' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:04:13.712' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:08:14.619' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:11:40.199' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:15:51.367' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:20:26.934' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:25:32.281' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:30:10.058' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:35:50.607' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:39:21.150' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:43:02.038' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:48:31.200' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:51:46.061' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:54:54.791' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'00:58:58.618' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'01:02:49.057' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'01:08:10.461' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'01:11:54.560' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'01:17:47.872' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'01:21:51.156' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'01:26:12.751' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'01:32:46.352' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'01:35:48.618' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               Chapter u'01:41:55.109' found
DEBUG    2013-11-04 18:22:51 enzyme.mkv               END: process element '0x1043a770'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               END: process element '0x114d9b74'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               END: process element '0x114d9b74'
DEBUG    2013-11-04 18:22:51 subliminal.videos        Succeeded parsing movies/Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv with enzyme: <enzyme.mkv.Matroska None>
DEBUG    2013-11-04 18:22:51 subliminal.core          Found 1 videos in [u'movies/Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv'] with maximum depth 3
DEBUG    2013-11-04 18:22:51 subliminal.core          Listing subtitles language_set([Language(Turkish), Language(English)]) for Movie(movies/Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv) with services ['opensubtitles']
DEBUG    2013-11-04 18:22:51 subliminal.core          Created task ListTask(Movie(movies/Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv), language_set([Language(Turkish), Language(English)]), opensubtitles, ServiceConfig(False, /storage/.config/subliminal))
INFO     2013-11-04 18:22:51 subliminal.core          Consuming ListTask(Movie(movies/Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv), language_set([Language(Turkish), Language(English)]), opensubtitles, ServiceConfig(False, /storage/.config/subliminal))
DEBUG    2013-11-04 18:22:51 subliminal.services      Initializing OpenSubtitles
DEBUG    2013-11-04 18:22:51 subliminal.services.opensubtitles Getting subtitles [{'moviebytesize': '13425894565', 'sublanguageid': 'tur,eng', 'moviehash': '00bc1ac54423b13a'}] with token rt2cop6f8rhvfudg2tvb66bcl4
DEBUG    2013-11-04 18:22:52 subliminal.services.opensubtitles Could not find subtitles for [{'moviebytesize': '13425894565', 'sublanguageid': 'tur,eng', 'moviehash': '00bc1ac54423b13a'}] with token rt2cop6f8rhvfudg2tvb66bcl4
DEBUG    2013-11-04 18:22:52 subliminal.async         Thread Thread-2 terminated
DEBUG    2013-11-04 18:22:52 subliminal.async         Thread Thread-3 terminated
DEBUG    2013-11-04 18:22:52 subliminal.async         Thread Thread-4 terminated
DEBUG    2013-11-04 18:22:52 subliminal.services      Terminating OpenSubtitles
No subtitles downloaded
DEBUG    2013-11-04 18:22:52 subliminal.async         Thread Thread-1 terminated

@Diaoul
Copy link
Owner

Diaoul commented Nov 4, 2013

As you can see in subliminal 0.6.4 logs, there is a SeekHead element in the SeekHead element:

DEBUG    2013-11-04 18:22:51 enzyme.mkv               BEGIN: process element '0x114d9b74'
DEBUG    2013-11-04 18:22:51 enzyme.mkv               BEGIN: process element '0x114d9b74'

https://github.com/Diaoul/enzyme-old/blob/develop/enzyme/mkv.py#L440 is responsible for this.

New enzyme doesn't support this and I don't think it should as it might lead to an infinite loop if the nested SeekHead element references itself.
See http://marc.info/?l=helix-datatype-dev&m=130329582908330

@Diaoul
Copy link
Owner

Diaoul commented Nov 4, 2013

Another solution used by VLC is to bail at 10 seekhead to prevent recursion: http://www.videolan.org/developers/vlc/modules/demux/mkv/matroska_segment.cpp

@queeup
Copy link
Author

queeup commented Nov 4, 2013

Thank you for detailed explanation. And sorry for adding new problems to your TODO :)

@Diaoul
Copy link
Owner

Diaoul commented Nov 4, 2013

Fixed with ccfd341

@Diaoul Diaoul closed this as completed Nov 4, 2013
@Diaoul
Copy link
Owner

Diaoul commented Nov 4, 2013

Although due to performance impact, I limit subliminal to the first SeekHead element, that should be enough in most cases.
It doesn't detect information from MKV in your case but at least it doesn't crash.

@queeup
Copy link
Author

queeup commented Nov 5, 2013

Thanks. Tested and it works like expected now. No crash and continue searching other files on directory.

OpenELEC:~ # subliminal-dev movies/Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv -l en -l tr -p opensubtitles -v --debug
INFO     [subliminal.video-scan_video:184] Scanning video u'Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv' in u'/storage/movies'
DEBUG    [guessit.transfo.guess_filetype-guess_filetype:140] prop: videoCodec = h264
DEBUG    [guessit.transfo.guess_filetype-guess_filetype:140] prop: format = BluRay
DEBUG    [guessit.transfo.guess_filetype-guess_filetype:140] prop: releaseGroup = D-Z0N3
DEBUG    [guessit.transfo.guess_filetype-guess_filetype:140] prop: screenSize = 1080p
DEBUG    [guessit.transfo.guess_filetype-guess_filetype:140] prop: audioCodec = DTS
DEBUG    [guessit.transfo.guess_filetype-process:164] Found with confidence 1.00: {u'type': u'movie'}
DEBUG    [guessit.transfo.guess_filetype-process:176] Found with confidence 1.00: {u'container': u'mkv'}
DEBUG    [guessit.transfo.guess_release_group-find_and_split_node:74] Found with confidence 0.80: {u'releaseGroup': u'D-Z0N3', u'videoCodec': u'h264'}
DEBUG    [guessit.transfo.guess_properties-find_and_split_node:74] Found with confidence 1.00: {u'format': u'BluRay'}
DEBUG    [guessit.transfo.guess_properties-find_and_split_node:74] Found with confidence 1.00: {u'screenSize': u'1080p'}
DEBUG    [guessit.transfo.guess_properties-find_and_split_node:74] Found with confidence 1.00: {u'audioCodec': u'DTS'}
DEBUG    [guessit.transfo.guess_year-find_and_split_node:74] Found with confidence 1.00: {u'year': 2012}
DEBUG    [guessit.transfo.guess_movie_title_from_position-process:49] folder: []
DEBUG    [guessit.transfo.guess_movie_title_from_position-process:50] basename: [<guessit.matchtree.MatchTree object at 0x1445c10>]
DEBUG    [guessit.transfo.guess_movie_title_from_position-found_property:33] Found with confidence 0.60: {u'title': u'Act of Valor'}
DEBUG    [guessit.matcher-__init__:154] Found match tree:
0000000000000000000000000000000000000000000000 111
0000000000000000000000000000000000000000000000 000
0000000000000000000000000000000000011111111111    
00000000000000000000000011111122222               
000000000000000000111112      01112               
000000000000011112                                
_________________._____.______.___.___________.___
tttttttttttttyyyy sssss ffffff aaa vvvvvvvvvvv ccc
Act.of.Valor.2012.1080p.BluRay.DTS.x264.D-Z0N3.mkv
DEBUG    [guessit.matchtree-matched:286] Final result: {
    [0.80] "videoCodec": "h264", 
    [1.00] "container": "mkv", 
    [1.00] "format": "BluRay", 
    [0.60] "title": "Act of Valor", 
    [0.80] "releaseGroup": "D-Z0N3", 
    [1.00] "screenSize": "1080p", 
    [1.00] "year": 2012, 
    [1.00] "type": "movie", 
    [1.00] "audioCodec": "DTS"
}
DEBUG    [subliminal.video-scan_video:188] Size is 13425894565
DEBUG    [subliminal.video-scan_video:191] Computed hashes {u'opensubtitles': u'00bc1ac54423b13a', u'thesubdb': u'b5da33c3a2c6a7c3b6fbd3ffad4da1d1'}
DEBUG    [subliminal.video-scan_subtitle_languages:168] Found subtitles set([])
INFO     [enzyme.mkv-__init__:38] Reading Segment element
DEBUG    [enzyme.parsers.ebml.core-parse:168] MasterElement EBML parsed
INFO     [enzyme.parsers.ebml.core-parse:170] MasterElement EBML ignored
DEBUG    [enzyme.parsers.ebml.core-parse:168] MasterElement Segment parsed
INFO     [enzyme.parsers.ebml.core-parse:176] Maximum level 0 reached for children of MasterElement Segment
INFO     [enzyme.mkv-__init__:48] Reading SeekHead element
DEBUG    [enzyme.parsers.ebml.core-parse:168] MasterElement Seek parsed
DEBUG    [enzyme.parsers.ebml.core-parse:179] Loading child elements for MasterElement Seek with size 15
DEBUG    [enzyme.parsers.ebml.core-parse:168] Element SeekID parsed
DEBUG    [enzyme.parsers.ebml.core-parse:168] Element SeekPosition parsed
DEBUG    [enzyme.mkv-_parse_seekhead:90] Element SeekHead ignored
WARNING  [subliminal.video-scan_video:222] MKV has no video track
WARNING  [subliminal.video-scan_video:236] MKV has no audio track
INFO     [subliminal.video-scan_video:249] MKV has no subtitle track
DEBUG    [subliminal.api-download_best_subtitles:175] Skipping provider 'thesubdb': not in the list
DEBUG    [subliminal.api-download_best_subtitles:175] Skipping provider 'bierdopje': not in the list
DEBUG    [subliminal.api-download_best_subtitles:175] Skipping provider 'addic7ed': not in the list
DEBUG    [subliminal.api-download_best_subtitles:175] Skipping provider 'tvsubtitles': not in the list
INFO     [subliminal.api-download_best_subtitles:206] Listing subtitles with provider 'opensubtitles' for video <Movie [u'Act of Valor', 2012]> with languages set([<Language [tur]>])
DEBUG    [subliminal.providers.opensubtitles-query:121] Searching subtitles [{u'moviebytesize': '13425894565', u'sublanguageid': u'tur', u'moviehash': u'00bc1ac54423b13a'}]
DEBUG    [subliminal.providers.opensubtitles-query:129] No subtitle found
INFO     [subliminal.api-download_best_subtitles:216] Found 0 subtitles
No subtitles downloaded
OpenELEC:~ # 

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants