CptDarling / xot-uzg

Automatically exported from code.google.com/p/xot-uzg
0 stars 0 forks source link

Newer episode in SVT Play doesn't play #144

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Open channel SVTplay -> Fåret Shaun -> Abrakadabra

What is the expected output? What do you see instead?
Episode should start to play, but nothing happens.

What version of the product are you using? On what operating system?
XOT-Uzg v3.2.0b5 and svt.20090626. Seen on both XBOX and Windows.

Please provide any additional information below.

It looks like some newer episodes use RTMPE protocol which isn't supported 
by XBMC as far as I can see. 
SVT Play site makes additional streams available. By adding the following 
to UpdateVideoItem(self, item) in chn_svt.py I manage to get a stream that 
is supported by XBMC.

  # first check for ASPX
  aspxRegex = 'href="([^"]+wmv)"'
  aspxResults = common.DoRegexFindAll(aspxRegex, data)
  if len(aspxResults) > 0:
    logFile.debug("Running ASPX/WMV %s", aspxResults[0])
    mediaurl = aspxResults[0]
  else:
    # then for the rest

Original issue reported on code.google.com by stefan.n...@gtempaccount.com on 6 Oct 2009 at 7:45

Attachments:

GoogleCodeExporter commented 9 years ago
Oke, I will try to fix it as soon as I have some time left.

Original comment by basrie...@gmail.com on 6 Oct 2009 at 5:28

GoogleCodeExporter commented 9 years ago
Fixed it. You can use Auto update from within the script or visit the download 
site:
http://code.google.com/p/xot-uzg/downloads/detail?name=svt.20091006.zip&can=2&q=

Original comment by basrie...@gmail.com on 6 Oct 2009 at 8:52

GoogleCodeExporter commented 9 years ago
Changed status to Done

Original comment by basrie...@gmail.com on 24 Jun 2012 at 11:42