Tennis on ESPN
The sport of tennis has been televised by the properties of ESPN since 1979.
Tennis on ESPN | |
---|---|
Created by | ESPN |
Country of origin | |
No. of episodes | N/A |
Production | |
Running time | 120 minutes+ |
Release | |
Original network | ESPN ESPN2 ESPN3 ESPN on ABC |
Picture format | 480i (SDTV), 1080p (HDTV) |
Original release | 1979 – present |
External links | |
Website |
Current tournaments and competitions covered by ESPN include The Championships, Wimbledon and the US Open, which are covered exclusively, and the Australian Open, which is shared with the Tennis Channel. In addition, several higher level events from the ATP World Tour and WTA Tour are featured, including the US Open Series and the ATP Finals.[1]
Tournaments
Current
- Australian Open (1984–present)
- The Championships, Wimbledon (2012–present (full coverage), 2003–present (partial coverage))
- US Open (2015–present (full coverage), 2009–present (partial coverage))
- Indian Wells Masters (?–2007, 2011–present)[2]
- Miami Open (1985–2007, 2011–present)[3]
- US Open Series (2004–present)
- ATP Finals (2000–present)
Former
- French Open (1986–1993, 2003–2015 (partial coverage))
Announcers
- Darren Cahill - Since 2007, Cahill is a tennis analyst for the global sports network ESPN for three of the four major tennis Grand Slams: the Australian Open, Wimbledon and the US Open. He also works for the Australian television network Channel 7 for the Hopman Cup and Australian Open.[5]
- Cliff Drysdale - Drysdale has served as a tennis commentator for ESPN since 1979 and is the network's longest-tenured employee after the retirement of Bob Ley.[6]
- Chris Evert - In June 2011, she joined ESPN as a tennis commentator for Grand Slam tournaments.
- Mary Joe Fernandez - Since retiring from the tour, Mary Joe Fernández has served as a tennis commentator for ESPN and joined CBS Sports as an analyst for the 2005 U.S. Open.
- Chris Fowler - He is the head studio anchor for tennis tournaments broadcast on ESPN, including Wimbledon, Australian Open, French Open and for the US Open being broadcast for the first year in 2009 on ESPN.
- Brad Gilbert - While commentating Andy Murray's third-round match in the 2011 Australian Open for ESPN2, Gilbert mentioned that he lives near the Olympian runner Michael Johnson and that when he was Murray's coach he introduced Johnson and Murray, who did a series of sprints together on a nearby track.
- Jason Goodall[7]
- Sam Gore[8] - In 2015, Goodall joined ESPN to provide commentary and analysis during their tennis broadcasts, starting with the Australian Open. He has continued to work with ESPN at other Grand Slam events, including Wimbledon and the US Open.
- John McEnroe
- Patrick McEnroe
- Chris McKendry - As of April 1, 2016, she serves as full-time on-site host for ESPN tennis coverage of the Australian Open, French Open, Wimbledon and US Open.[9] McKendry co-anchored her final SportsCenter broadcast on March 31, 2016 and transitioned to cover tennis full-time for ESPN with the Australian Open in January, and U.S. Open in late summer.[10]
- Tom Rinaldi
- Pam Shriver
gollark: oh dear.
gollark: Well, the outsourced `parsedatetime` stuff can probably do it.
gollark: Good luck.
gollark: Fine.```python# from here: https://github.com/Rapptz/RoboDanny/blob/18b92ae2f53927aedebc25fb5eca02c8f6d7a874/cogs/utils/time.pyshort_timedelta_regex = re.compile("""(?:(?P<years>[0-9]{1,8})(?:years?|y))? # e.g. 2y(?:(?P<months>[0-9]{1,8})(?:months?|mo))? # e.g. 2months(?:(?P<weeks>[0-9]{1,8})(?:weeks?|w))? # e.g. 10w(?:(?P<days>[0-9]{1,8})(?:days?|d))? # e.g. 14d(?:(?P<hours>[0-9]{1,8})(?:hours?|h))? # e.g. 12h(?:(?P<minutes>[0-9]{1,8})(?:minutes?|m))? # e.g. 10m(?:(?P<seconds>[0-9]{1,8})(?:seconds?|s))? # e.g. 15s """, re.VERBOSE)def parse_short_timedelta(text): match = short_timedelta_regex.fullmatch(text) if match is None or not match.group(0): raise ValueError("parse failed") data = { k: int(v) for k, v in match.groupdict(default=0).items() } return datetime.datetime.utcnow() + relativedelta(**data)cal = parsedatetime.Calendar()def parse_humantime(text): time_struct, parse_status = cal.parse(text) if parse_status == 1: return datetime.datetime(*time_struct[:6]) else: raise ValueError("parse failed")def parse_time(text): try: return datetime.datetime.strptime(text, "%d/%m/%Y") except: pass try: return parse_short_timedelta(text) except: pass try: return parse_humantime(text) except: pass raise ValueError("could not parse time")```
gollark: ... no.
References
- http://espnmediazone.com/us/media-kits/tennis/
- http://espnmediazone.com/us/press-releases/2011/03/indian-wells-miami-tennis-return-to-espn/
- http://espnmediazone.com/us/press-releases/2011/03/indian-wells-miami-tennis-return-to-espn/
- https://espnmediazone.com/us/bios/?id=69973
- "Darren Cahill - ESPN MediaZone U.S." Espnmediazone.com. Retrieved 18 July 2018.
- https://espnpressroom.com/us/bios/drysdale_cliff/
- https://espnmediazone.com/us/press-releases/2018/06/for-first-time-all-of-wimbledon-available-and-only-from-espn-fortnight-begins-july-2/
- http://espnmediazone.com/us/bios/sam-gore/
- "Chris McKendry". espnmediazone.com. ESPN MediaZone. Retrieved 2017-01-28.
- Nagle, Dave (2016-03-30). "Chris McKendry jumps the net from SportsCenter to tennis full time - ESPN Front Row". ESPN Front Row. Retrieved 2017-01-28.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.