Skip to content

Commit

Permalink
Merge pull request #4 from kevcenteno/truliveFix
Browse files Browse the repository at this point in the history
Trulive fix
  • Loading branch information
kevcenteno committed Dec 9, 2014
2 parents af94ed1 + c104297 commit ede24a4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
7 changes: 4 additions & 3 deletions Contents/Code/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

KEY = 'a534012a8ee25958f374263ece97eb27'

TITLE = 'BallPlex .05'
PREFIX = '/video/ballplex'
TITLE = 'BallPlex .06'
PREFIX = '/video/ballplex06'

ART = 'art-default.jpg'
ICON = 'icon-default.png'
Expand Down Expand Up @@ -305,6 +305,7 @@ def GetStream(game_id, title1, url, thumb, art, summary, include_container=False
swfurl = ""

url = url.replace("rtmp:////", "rtmp://")
swfurl = swfurl.replace("'", "").replace("swfUrl=", "")

vco = VideoClipObject(
key=Callback(GetStream, game_id=game_id, title1=title1, url=url, thumb=thumb, art=art, summary=summary,
Expand Down Expand Up @@ -495,4 +496,4 @@ def populateVideoArray(videoArr, videoObj, is_live=False):
# Built the title
title = playingMarker + getTeamName(awayTeam) + ligature + getTeamName(homeTeam) + feedType

videoArr.append([game_id, title, logo, arena, summary, isPlaying])
videoArr.append([game_id, title, logo, arena, summary, isPlaying])
9 changes: 7 additions & 2 deletions Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<dict>

<key>CFBundleIdentifier</key>
<string>com.plexapp.plugins.ballplex</string>
<string>com.plexapp.plugins.ballplex06</string>

<key>PlexClientPlatforms</key>
<string>*</string>
Expand All @@ -17,5 +17,10 @@
<string>NoURLServices</string>
</array>

<key>PlexFrameworkFlags</key>
<array>
<string>UseRealRTMP</string>
</array>

</dict>
</plist>
</plist>
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,13 @@ Most devices will allow you to enter your BallStreams username and password from
4. Enter your ballstreams account username and password, press "Save" to save

## Known Issues
* Live streams don't work on Plex Web Client, and possibly other devices. This is due to the use of HLS streams.
* Live streams don't work on Plex Web Client, and possibly other devices. This is due to the use of HLS streams. Please stream from the BallStreams website directly if you're using a browser!

## Release Log
#### Version .06 - Dec 8, 2014
* Fix issue with live streams not loading
* Add TrueLive streams (Only tested on desktop clients)

#### Version .05 - Dec 5, 2014
* Added short team names functionality (Made default)
* On Demand streams: add highlights. Condensed games are ready, but Ballstreams doesn't provide these streams yet
Expand Down

0 comments on commit ede24a4

Please sign in to comment.