0

I am trying to get a subtitle track to play with a video, but my subtitles are not appearing. This is the srt file:

https://adbience-staging.s3-us-west-2.amazonaws.com/podcast_srt_english_b9e728d9-7953-4ff6-b287-e150be3d4b45

My code is as follows:

player  = ExamplePlayer()

subtitle_file='https://adbience-staging.s3-us-west-2.amazonaws.com/podcast_srt_english_b9e728d9-7953-4ff6-b287-e150be3d4b45'

def downloadSubtitles(subtitlesUrl):
        global player

        while not player.isPlaying():
            xbmc.sleep(5) #wait until video is being played
        player.setSubtitles(subtitlesUrl)
        player.showSubtitles(True)
        xbmc.Player().setSubtitles(subtitlesUrl)

player.play(item=file, listitem=items)
downloadSubtitles(subtitle_file)

But the subtitles never show up in the layer. Am i doing something wrong?

Devin Dixon
  • 11,553
  • 24
  • 86
  • 167

0 Answers0