Christopher Reeve filmography
This is a complete filmography for actor Christopher Reeve.
Film
Year | Title | Role | Notes |
---|---|---|---|
1978 | Gray Lady Down | Lieutenant JG Phillips | |
Superman | Kal-El / Clark Kent / Superman | BAFTA Award for Most Promising Newcomer to Leading Film Roles Nominated - Saturn Award for Best Actor | |
1980 | Somewhere in Time | Richard Collier | Nominated - Saturn Award for Best Actor |
Superman II | Clark Kent / Superman | Nominated - Saturn Award for Best Actor | |
1982 | Deathtrap | Clifford Anderson | Nominated - Saturn Award for Best Actor |
Monsignor | Father John Flaherty | ||
1983 | Superman III | Clark Kent / Superman / Evil Superman | Nominated - Saturn Award for Best Actor |
1984 | The Bostonians | Basil Ransome | |
1985 | The Aviator | Edgar Anscombe | |
1987 | Street Smart | Jonathan Fisher | |
Superman IV: The Quest for Peace | Clark Kent / Superman | Also writer | |
1988 | Switching Channels | Blaine Bingham | |
1992 | Noises Off | Frederick Dallas / Philip Brent | |
1993 | Morning Glory | Will Parker | |
The Remains of the Day | Congressman Jack Lewis | ||
1994 | Speechless | Bob 'Baghdad' Freed | |
1995 | Village of the Damned | Dr. Alan Chaffee | |
2006 | Everyone's Hero | N/A | Director and executive producer; Posthumous release |
Superman II: The Richard Donner Cut | Kal-El / Clark Kent / Superman | Archive footage; Posthumous release | |
2007 | Christopher Reeve: Hope in Motion | Himself | Posthumous release |
Television
Television films
Year | Title | Role | Network |
---|---|---|---|
1985 | Anna Karenina | Alexei Vronsky | CBS |
Dinosaur! | Himself / Host | ||
1988 | The Great Escape II: The Untold Story | Major John Dodge | NBC |
1990 | The Rose and the Jackal | Allan Pinkerton | TNT |
1991 | Bump in the Night | Lawrence Muller | CBS |
Death Dreams | George Westfield | Lifetime | |
1992 | Nightmare in the Daylight | Sean Farrell | CBS |
Mortal Sins | Father Tom Cusack | USA Network | |
1993 | The Sea Wolf | Humphrey Van Weyden | TNT |
1995 | Black Fox | Alan Johnson | CBS |
Above Suspicion | Dempsey Cain | HBO | |
1996 | A Step Toward Tomorrow | Denny Gabriel | CBS |
1997 | In the Gloaming | Director | HBO |
1998 | Rear Window | Jason Kemp | ABC |
2004 | The Brooke Ellison Story | Director | A&E |
Television series
Year | Title | Role | Notes |
---|---|---|---|
1974–1976 | Love of Life | Ben Harper | Series regular |
1974 | Great Performances | Officer | Episode: "Enemies" |
1975 | ABC Wide World of Mystery | Max 67 | Episode: "The Norming of Jack 243" |
1980 | The Muppet Show | Himself / Guest Star | Episode: "Christopher Reeve" |
1981 | Saturday Night Live | Himself / Host | Episode: "Jr. Walker & the All-Stars" |
1983 | Faerie Tale Theatre | Prince Charming | Episode: "Sleeping Beauty" |
1991 | Carol & Company | Rex / Bob | Episode: "Overnight Male" |
1992 | Road to Avonlea | Robert Rutherford | Episode: "A Dark and Stormy Night" |
1992 | Tales from the Crypt | Fred | Episode: "What's Cookin'" |
1993 | Frasier | Leonard (voice) | Episode: "Space Quest" |
1994 | The Unpleasant World of Penn & Teller | Himself | Episode: "Episode #1.6" |
1996 | Without Pity: A Film About Abilities | Narrator (voice) | Documentary |
2003 | The Practice | Kevin Healy | Episode: "Burnout" |
2003–2004 | Smallville | Dr. Virgil Swann | Episodes: "Rosetta", "Legacy" |
Theater
West End
- The Aspern Papers (London)
Off-Broadway
- The Winter's Tale
- My Life
Regional
- The Guardsman
- Death Takes a Holiday
- Love Letters (Boston, Los Angeles, San Francisco)
- Richard Cory
- The Greeks
- Summer and Smoke
- The Cherry Orchard
- The Front Page
- Camino Real
- Holiday
- The Royal Family
- John Brown's Body
- Troilus and Cressida
- The Way of the World
- The Firebugs
- The Plow and the Stars
- The Devil's Disciple
- As You Like It
- Richard III
- The Merry Wives of Windsor
- Love's Labour's Lost
- South Pacific
- Finian's Rainbow
- The Music Man
- Galileo
Video games
- 9: The Last Resort (1996) Thurston The Last Big F*ck (voice)
gollark: tio!debug
gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.