/usr/bin/milbplay.py is in mlbviewer 2015.sf.1-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | #!/usr/bin/python
from MLBviewer import *
import os
import sys
import re
import curses
import curses.textpad
import select
import datetime
import subprocess
import time
import pickle
import copy
def padstr(s,num):
if len(str(s)) < num:
p = num - len(str(s))
return ' '*p + s
else:
return s
def check_bool(userinput):
if userinput in ('0', '1', 'True', 'False'):
return eval(userinput)
# This section prepares a dict of default settings and then loads
# the configuration file. Any setting defined in the configuration file
# overwrites the defaults defined here.
#
# Note: AUTHDIR, AUTHFILE, etc are defined in MLBviewer/mlbtv.py
myconfdir = os.path.join(os.environ['HOME'],AUTHDIR)
myconf = os.path.join(myconfdir,AUTHFILE)
mydefaults = {'speed': DEFAULT_SPEED,
'video_player': DEFAULT_V_PLAYER,
'audio_player': DEFAULT_A_PLAYER,
'audio_follow': [],
'video_follow': [],
'blackout': [],
'favorite': [],
'use_color': 0,
'adaptive_stream': 1,
'favorite_color': 'cyan',
'bg_color': 'xterm',
'show_player_command': 0,
'debug': 0,
'x_display': '',
'top_plays_player': '',
'use_librtmp': 0,
'use_nexdef': 0,
'condensed' : 0,
'nexdef_url': 0,
'adaptive_stream': 1,
'zdebug' : 0,
'milbtv' : 1,
'time_offset': ''}
mycfg = MLBConfig(mydefaults)
mycfg.loads(myconf)
# initialize some defaults
startdate = None
teamcodes_help = "\n" +\
"Valid teamcodes are:" + "\n" +\
"\n" +\
" 'ana', 'ari', 'atl', 'bal', 'bos', 'chc', 'cin', 'cle', 'col',\n" +\
" 'cws', 'det', 'fla', 'hou', 'kc', 'la', 'mil', 'min', 'nym',\n" +\
" 'nyy', 'oak', 'phi', 'pit', 'sd', 'sea', 'sf', 'stl', 'tb',\n" +\
" 'tex', 'tor', 'was'\n" +\
"\n"
if len(sys.argv) == 1:
print "%s <key>=<value>" % sys.argv[0]
print "examples:"
print "%s v=ana // plays the video stream for LA Angels" % sys.argv[0]
print "%s a=nyy // plays the audio stream for NY Yankees" % sys.argv[0]
print ""
print "See MLBPLAY-HELP for more options."
print teamcodes_help
sys.exit()
# All options are name=value, loop through them all and take appropriate action
if len(sys.argv) > 1:
for n in range(len(sys.argv)):
if n == 0:
continue
# first make sure the argument is of name=value format
pattern = re.compile(r'(.*)=(.*)')
parsed = re.match(pattern,sys.argv[n])
if not parsed:
print 'Error: Arguments should be specified as variable=value'
print "can't parse : " + sys.argv[n]
sys.exit()
split = parsed.groups()
# Content-id: e=<event-id>, can be found from mlblistings or z=1
if split[0] in ( 'event_id' , 'e' ):
mycfg.set('event_id', split[1])
# Content-id: c=<content-id>
elif split[0] in ( 'content_id', 'c'):
mycfg.set('content_id', split[1])
# Audio: a=<teamcode>: NOT SUPPORTED FOR MILBTV
# Video: v=<teamcode>
elif split[0] in ( 'video', 'v' ):
streamtype = 'video'
teamcode = split[1]
player = mycfg.get('video_player')
# Speed: p=<speed> (Default: 1200)
elif split[0] in ( 'speed', 'p' ):
mycfg.set('speed', split[1])
# Nexdef URL: nu=1
elif split[0] in ( 'nexdefurl', 'nu' ):
parsed = check_bool(split[1])
if parsed != None:
mycfg.set('nexdef_url', parsed)
# Debug: d=1
elif split[0] in ( 'debug', 'd' ):
parsed = check_bool(split[1])
if parsed != None:
mycfg.set('debug', parsed)
elif split[0] in ( 'inning', 'i' ):
mycfg.set('start_inning', split[1])
# Listing debug: z=1
elif split[0] in ( 'zdebug', 'z' ):
parsed = check_bool(split[1])
if parsed != None:
mycfg.set('zdebug', parsed)
# Nexdef: n=1
elif split[0] in ( 'nexdef', 'n' ):
parsed = check_bool(split[1])
if parsed != None:
mycfg.set('use_nexdef', parsed)
# Startdate: j=mm/dd/yy
elif split[0] in ( 'startdate', 'j'):
try:
sys.argv[n] = sys.argv[n].replace('j=', 'startdate=')
except:
raise
pattern = re.compile(r'startdate=([0-9]{1,2})(/)([0-9]{1,2})(/)([0-9]{2})')
parsed = re.match(pattern,sys.argv[n])
if not parsed:
print 'Error: listing start date not in mm/dd/yy format.'
sys.exit()
split = parsed.groups()
startmonth = int(split[0])
startday = int(split[2])
startyear = int('20' + split[4])
# not sure why jesse went with yy instead of yyyy but let's
# throw an error for 4 digit years for the heck of it.
if startyear == 2020:
print 'Error: listing start date not in mm/dd/yy format.'
sys.exit()
startdate = (startyear, startmonth, startday)
else:
print 'Error: unknown variable argument: '+split[0]
sys.exit()
if startdate is None:
now = datetime.datetime.now()
dif = datetime.timedelta(1)
if now.hour < 9:
now = now - dif
startdate = (now.year, now.month, now.day)
# First create a schedule object
mysched = MiLBSchedule(ymd_tuple=startdate,time_shift=mycfg.get('time_offset'))
# Now retrieve the listings for that day
try:
available = mysched.getListings(mycfg.get('speed'), mycfg.get('blackout'))
except (KeyError, MLBXmlError), detail:
if mycfg.get('debug'):
raise Exception, detail
available = []
#raise
print "There was a parser problem with the listings page"
sys.exit()
# Determine media tuple using teamcode e.g. if teamcode is in home or away, use
# that media tuple. A media tuple has the format:
# ( call_letters, code, content-id, event-id )
# The code is a numerical value that maps to a teamcode. It is used
# to identify a media stream as belonging to one team or the other. A code
# of zero is used for national broadcasts or a broadcast that isn't owned by
# one team or the other.
if teamcode is not None:
if teamcode not in TEAMCODES.keys():
print 'Invalid teamcode: ' + teamcode
print teamcodes_help
sys.exit()
media = []
for n in range(len(available)):
home = available[n][0]['home']
away = available[n][0]['away']
if teamcode in ( home, away ):
listing = available[n]
gameid = available[n][6].replace('/','-')
if streamtype == 'video':
media.append(available[n][2])
elif streamtype == 'condensed':
media = available[n][2]
condensed_media = available[n][4]
else:
media.append(available[n][3])
eventId = available[n][6]
# media assigned above will be a list of both home and away media tuples
# This next section determines which media tuple to use (home or away)
# and assign it to a stream tuple.
# Added to support requesting specific games of a double-header
cli_event_id = mycfg.get('event_id')
# MiLB.TV uses doesn't use eventIds as much as contentIds
cli_content_id = mycfg.get('content_id')
if len(media) > 0:
stream = None
for m in media:
for n in range(len(m)):
( call_letters,
code,
content_id,
event_id ) = m[n]
if cli_event_id is not None:
if cli_event_id != content_id:
continue
if cli_content_id is not None:
if cli_content_id != content_id:
continue
if code == TEAMCODES[teamcode][0] or code == '0':
if streamtype == 'condensed':
stream = condensed_media[0]
else:
stream = m[n]
break
else:
print 'Could not find media for teamcode: ' + teamcode
sys.exit()
# Similar behavior to the 'z' key in mlbviewer
if mycfg.get('zdebug'):
print 'media = ' + repr(media)
print 'prefer = ' + repr(stream)
sys.exit()
# Before creating MediaStream object, get session data from login
session = MiLBSession(user=mycfg.get('user'),passwd=mycfg.get('pass'),
debug=mycfg.get('debug'))
session.getSessionData()
# copy all the cookie data to pass to GameStream
mycfg.set('cookies', {})
mycfg.set('cookies', session.cookies)
mycfg.set('cookie_jar', session.cookie_jar)
# Jump to innings returns a start_time other than the default behavior
if mycfg.get('start_inning') is not None:
streamtype = 'video'
jump_pat = re.compile(r'(B|T|E|D)(\d+)?')
match = re.search(jump_pat, mycfg.get('start_inning').upper())
innings = mysched.parseInningsXml(stream[3], mycfg)
if match is not None:
if match.groups()[0] == 'D':
print "retrieving innings index for %s" % stream[3]
print repr(innings)
sys.exit()
elif match.groups()[0] not in ('T', 'B', 'E' ):
print "You have entered an invalid half inning."
sys.exit()
elif match.groups()[1] is None:
print "You have entered an invalid half inning."
sys.exit()
elif match.groups()[0] == 'T':
half = 'away'
inning = int(match.groups()[1])
elif match.groups()[0] == 'B':
half = 'home'
inning = int(match.groups()[1])
elif match.groups()[0] == 'E':
half = 'away'
inning = 10
try:
start_time = innings[inning][half]
except:
print "You have entered an invalid or unavailable half inning."
sys.exit()
# Once the correct media tuple has been assigned to stream, create the
# MediaStream object for the correct type of media
if stream is not None:
if streamtype == 'audio':
m = MiLBMediaStream(stream, session=session,
cfg=mycfg,
streamtype='audio')
elif streamtype in ( 'video', 'condensed'):
try:
start_time
except NameError:
start_time = 0
# No nexdef for MiLB.TV
#if mycfg.get('use_nexdef'):
# if mycfg.get('start_inning') is None:
# start_time = mysched.getStartOfGame(listing, mycfg)
m = MiLBMediaStream(stream, session=session,
streamtype=streamtype,
cfg=mycfg,start_time=start_time)
else:
print 'Unknown streamtype: ' + repr(streamtype)
sys.exit()
else:
print 'Stream could not be found.'
print 'Media listing debug information:'
print 'media = ' + repr(media)
print 'prefer = ' + repr(stream)
sys.exit()
# Post-rewrite, the url beast has been replaced with locateMedia() which
# returns a raw url.
try:
mediaUrl = m.locateMedia()
except:
if mycfg.get('debug'):
raise
else:
print 'An error occurred locating the media URL:'
print m.error_str
#sys.exit()
if mycfg.get('debug'):
print 'Media URL received: '
print mediaUrl
#sys.exit()
# prepareMediaStreamer turns a raw url into either an mlbhls command or an
# rtmpdump command that pipes to stdout
mediaUrl = m.prepareMediaStreamer(mediaUrl)
# preparePlayerCmd is the second half of the pipe using *_player to play
# media from stdin
if cli_event_id is not None:
eventId = cli_event_id
cmdStr = m.preparePlayerCmd(mediaUrl,eventId,streamtype)
if mycfg.get('show_player_command') or mycfg.get('debug'):
print cmdStr
if mycfg.get('debug'):
sys.exit()
try:
#playprocess = subprocess.Popen(cmdStr,shell=True)
#playprocess.wait()
play = MLBprocess(cmdStr)
play.open()
play.wait()
play.close()
except KeyboardInterrupt:
play.close()
sys.exit()
except:
raise
|