All 14 Kevin Jarre Movies | by Carl Ramirez | Apr, 2024 | Medium

All 14 Kevin Jarre Movies

Carl Ramirez
15 min readApr 17, 2024

Get ready to explore the captivating world of Kevin Jarre Movies! In this engrossing roundup, we dive into the compelling work of this renowned filmmaker, showcasing their unique style and creative vision. From the latest blockbusters to timeless classics, Jarre’s films are sure to leave a lasting impression on audiences of all ages. Join us as we embark on this cinematic journey, discovering the magic and inspiration behind Jarre’s movies.

As an Amazon Associate I earn from qualifying purchases.

1. Rambo: First Blood Part II (1985)

rambo-first-blood-part-ii-tt0089880-1

“Rambo: First Blood Part II” (1985) picks up where the first film left off, with legendary hero John Rambo (Sylvester Stallone) returning to the Vietnam War jungles on a daring mission to infiltrate enemy lines and save the captured American soldiers. As he delves deeper into the heart of darkness, Rambo faces formidable foes and uncovers brutal truths, all while staying true to his unwavering code of loyalty and vengeance. Directed by George P. Cosmatos and written by David Morrell, Kevin Jarre, and Stallone himself, this explosive action-thriller is the perfect follow-up for fans of the first installment. Boasting a powerful cast, including Richard Crenna and Charles Napier, “Rambo: First Blood Part II” delivers a gripping tale of heroism and redemption amidst the chaos of war. With stunning cinematography and a memorable score, this action-packed sequel will leave you on the edge of your seat. ```

import re

import pandas as pd

from tqdm import tqdm

from sklearn. feature\_extraction. text import CountVectorizer

from sklearn import preprocessing

from sklearn. metrics. pairwise import cosine\_similarity

data = pd. read\_json("movies. json")

def preprocess\_data(data): data["overview"] = data["overview"]. apply(lambda x: re. sub(r"\W", " ", x))

return data

def review\_bow(data, cv): review\_bow1 = cv. fit\_transform(data['overview']. values. astype(! '))

review\_bow2 = cv. fit\_transform(data['overview']. values. astype(! '))



return review\_bow1, review\_bow2

def calculate\_similarity(review\_bow1, review\_bow2): similarity\_matrix = cosine\_similarity(review\_bow1, review\_bow2)

return similarity\_matrix

def get\_top\_similar\_movies(movie\_row, similarity\_matrix, all\_movies, no\_of\_recs): movie\_idx = all\_movies[all\_movies['title'] == movie\_row['title']]. index[0]

similar\_indices = similarity\_matrix[movie\_idx]. argsort()[: : -1][1: (no\_of\_recs+1)]

similar\_movies = all\_movies. iloc[similar\_indices, 2]

return similar\_movies

def get\_closest\_movie(movie\_name, similar\_movies, all\_movies): idx = all\_movies[all\_movies['title'] == movie\_name]. index[0]

closest\_movie = all\_movies. iloc[Get\_top\_similar\_movie(data, similarity\_matrix, all\_movies, 5)]

return closest\_movie

def get\_movie\_genres(movie\_row, all\_movies): genre\_list = []

for genre in movie\_row['genres']: genre\_list. append(get\_closest\_movie(genre, all\_movies, all\_movies)['title'])

return ', '. join(genre\_list)

def get\_release\_date(movie\_row): return movie\_row['release\_date'] if pd. notnull(movie\_row['release\_date']) else 'N/A'

def get\_duration(movie\_row): return movie\_row['duration'] if pd. notnull(movie\_row['duration']) else 'N/A'

def get\_content\_rating(movie\_row): return movie\_row['content\_rating'] if pd. notnull(movie\_row['content\_rating']) else 'N/A'

def get\_imdb\_link(movie\_row): return f'https: //www. imdb. com/title/tt{movie\_row["id"]}/' if pd. notnull(movie\_row['id']) else 'N/A'

def get\_overview(movie\_row): return movie\_row['overview'] if pd. notnull(movie\_row['overview']) else 'N/A'

def get\_vote\_count(movie\_row): return movie\_row['vote\_count'] if pd. notnull(movie\_row['vote\_count']) else 'N/A'

def get\_vote\_average(movie\_row): return movie\_row['vote\_average'] if pd. notnull(movie\_row['vote\_average']) else 'N/A'

def get\_credits(movie\_row): return movie\_row['credits'] if pd. notnull(movie\_row['credits']) else 'N/A'

def get\_company(movie\_row): return movie\_row['company'] if pd. notnull(movie\_row['company']) else 'N/A'

def get\_country(movie\_row): return ', '. join(movie\_row['countries']. values)

def get\_cast(movie\_row): return ', '. join(movie\_row['cast']. values)

def get\_director(movie\_row): return ', '. join(movie\_row['directors']. values)

def get\_writer(movie\_row): return ', '. join(movie\_row['writers']. values)

def get\_awards(movie\_row): return ', '. join(movie\_row['awards']. values)

def get\_production\_companies(movie\_row): return ', '. join(movie\_row['production\_companies']. values)

def get\_production\_countries(movie\_row): return ', '. join(movie\_row['production\_countries']. values)

def get\_spoken\_languages(movie\_row): return ', '. join(movie\_row['spoken\_languages']. values)

def get\_external\_ids(movie\_row): return ', '. join([f'{key}: {value}' for key, value in movie\_row['external\_ids']. items()])

def get\_revenue(movie\_row): return movie\_row['revenue'] if pd. notnull(movie\_row['revenue']) else 'N/A'

def get\_budget(movie\_row): return movie\_row['budget'] if pd. notnull(movie\_row['budget']) else 'N/A'

data = preprocess\_data(data)

cv = CountVectorizer(max\_df=0.75, min\_df=2, stop\_words='english', max\_features=5000)

review\_bow1, review\_bow2 = review\_bow(data, cv)

similarity\_matrix = calculate\_similarity(review\_bow1, review\_bow2)

all\_movies = data[['id', 'title', 'release\_date', 'duration', 'content\_rating', 'overview', 'vote\_count', 'vote\_average', 'credits', 'company', 'countries', 'cast', 'directors', 'writers', 'awards', 'production\_companies', 'production\_countries', 'spoken\_languages', 'external\_ids', 'revenue', 'budget']]

def get\_movie\_recommendations(movie\_name): movie\_row = all\_movies[all\_movies['title'] == movie\_name]



similar\_movies = get\_top\_similar\_movies(movie\_row, similarity\_matrix, all\_movies, 5)

return [

{

"title": movie. to\_dict()['title'], "genre": get\_movie\_genres(movie, all\_movies), "release\_date": get\_release\_date(movie), "duration": get\_duration(movie), "content\_rating": get\_content\_rating(movie), "imdb\_link": get\_imdb\_link(movie), "overview": get\_overview(movie), "vote\_count": get\_vote\_count(movie), "vote\_average": get\_vote\_average(movie), "credits": get\_credits(movie), "company": get\_company(movie), "country": get\_country(movie), "cast": get\_cast(movie), "director": get\_director(movie), "writer": get\_writer(movie), "awards": get\_awards(movie), "production\_companies": get\_production\_companies(movie), "production\_countries": get\_production\_countries(movie), "spoken\_languages": get\_spoken\_languages(movie), "external\_ids": get\_external\_ids(movie), "revenue": get\_revenue(movie), "budget": get\_budget(movie)

}

for movie in similar\_movies

]

movies = {

"data": pd. read\_json('movies. json'), "functions": {

"get\_review\_bow": review\_bow, "calculate\_similarity": calculate\_similarity, "get\_top\_similar\_movies": get\_top\_similar\_movies, "get\_closest\_movie": get\_closest\_movie, "get\_movie\_genres": get\_movie\_genres, "get\_release\_date": get\_release\_date, "get\_duration": get\_duration, "get\_content\_rating": get\_content\_rating, "get\_imdb\_link": get\_imdb\_link, "get\_overview": get\_overview, "get\_vote\_count": get\_vote\_count, "get\_vote\_average": get\_vote\_average, "get\_credits": get\_credits, "get\_company": get\_company, "get\_country": get\_country, "get\_cast": get\_cast, "get\_director": get\_director, "get\_writer": get\_writer, "get\_awards": get\_awards, "get\_production\_companies": get\_production\_companies, "get\_production\_countries": get\_production\_countries, "get\_spoken\_languages": get\_spoken\_languages, "get\_external\_ids": get\_external\_ids, "get\_revenue": get\_revenue, "get\_budget": get\_budget, "get\_movie\_recommendations": get\_movie\_recommendations, }, }

def get\_movie\_data(): return movies

exported\_functions = []

def export\_functions(functions): for f in tqdm(functions, desc="Exporting functions"): exported\_functions. append(f"{f. \_\_name\_\_}: {functions[f]}")

def get\_indexed\_functions(): indexed\_functions = {}

for f in dir(movies['functions']): if not f. startswith("\_") and callable(getattr(movies['functions'], f)): indexed\_functions[f] = getattr(movies['functions'], f)

return indexed\_functions

def get\_indexed\_movie\_data(data, fns): funcs = get\_indexed\_functions()

for fn in funcs: data[fn] = funcs[fn](data)

return data

def get\_indexed\_movie\_functions(): indexed\_functions = get\_indexed\_functions()

return {

"get\_indexed\_movie\_functions": get\_indexed\_movie\_functions, "get\_indexed\_movie\_data": get\_indexed\_movie\_data, "exported\_functions": exported\_functions

}

if \_\_name\_\_ == "\_\_main\_\_": with open("movies. py", "w") as out\_file: out\_file. write(f"indexed\_functions = {get\_indexed\_functions()}\n\n")

out\_file. write(f"functions = {get\_indexed\_movie\_functions()}\n\n")

out\_file. write(f"data = {get\_indexed\_movie\_data(pd. read\_json('movies. json'), functions)}\n\n")

out\_file. write(f"exported\_functions = {exported\_functions}\n\n")

"""

Watch free on Amazon Prime

Awesome movie posters

2. Gotham (1988)

gotham-tt0095246-1

Gotham, released in 1988, is a gripping thriller starring Tommy Lee Jones as a private detective on a mysterious assignment. When his client seeks protection against his ex-wife’s relentless harassment, the detective learns that she has supposedly been dead for a decade. As the mystery unfolds, the detective is left to navigate a web of secrets, deception, and supernatural forces. The film’s intriguing plot is bolstered by an engaging cast, including Virginia Madsen and Colin Bruce. Directed by Lloyd Fonvielle, Gotham is a chilling exploration of the human psyche that dives deep into a world filled with suspense and intrigue. The story is a masterful blend of the supernatural, human relationships, and nail-biting suspense, making it a standout among thriller films of its time. Gotham features a captivating storyline that keeps viewers on the edge of their seats and a distinctive style that sets it apart from other thrillers of the era. With its gripping plot, strong performances, and suspenseful atmosphere, this film is sure to leave an indelible mark on audiences and remain a classic of the thriller genre. Don’t miss out on the chance to experience the chilling thriller, Gotham, with its engrossing plot and unforgettable characters. This movie is not for the faint-hearted, but for those who enjoy a good scare, it’s not one to be missed. Get ready to immerse yourself in the dark and mysterious world of Gotham, where danger lurks around every corner.

Watch free on Amazon Prime

Awesome movie posters

3. The Tracker (1988)

dead-or-alive-tt0096295-1

In the rugged landscape of a harsh frontier, after a succession of brutal crimes by a band of ruthless cowboys led by the fearsome “Red Jack” Stilwell, a retired tracker named Noble Adams is drawn back into a world he once left behind. Tasked with capturing or killing this dangerous outlaw, Noble’s journey takes a darker turn when he agrees to take his son, Tom, along on the manhunt.

Watch free on Amazon Prime

Awesome movie posters

4. Glory (1989)

glory-tt0097441-1

In the gripping historical drama “Glory” (1989), directed by Edward Zwick and written by Kevin Jarre, Peter Burchard, and Lincoln Kirstein, the U. S. Civil War serves as the backdrop for an unforgettable tale of courage and perseverance. Starring Matthew Broderick, Denzel Washington, and Cary Elwes, this powerful film delves into the story of Robert Gould Shaw (Broderick), who leads the first all-black volunteer company during the conflict. With a runtime of 2 hours and 2 minutes, “Glory” captures the essence of this pivotal moment in American history, as Shaw faces challenges not only from Confederate forces but also from his own Union Army, which is fraught with prejudice. The outstanding performances by the ensemble cast, particularly Washington’s Oscar-winning portrayal of Pvt. Trip, are sure to captivate viewers, as they witness firsthand the brutal realities of war and the struggles faced by these brave soldiers. Set against the backdrop of 19th-century America, “Glory” masterfully transports audiences to a period defined by uncertainty, sacrifice, and deep-seated social issues. Bolstered by its compelling storylines and memorable characters, “Glory” has earned its place in cinematic history, garnering three Academy Awards and a cult following among fans of the genre. With its engaging blend of biography, drama, and history, “Glory” remains a poignant and timeless narrative that resonates with audiences of all ages. Boasting an impressive 7.8 on IMDb and an unforgettable cast of rising stars, this film is a true must-watch for lovers of extraordinary storytelling and cinematic artistry.

Watch free on Amazon Prime

Awesome movie posters

5. Navy Seals (1990)

navy-seals-tt0100232-1

“Navy Seals” (1990), directed by Lewis Teague and written by Chuck Pfarrer and Gary Goldman, is a high-octane action-adventure thriller filled with intense battles and deadly missions. A crack team of Navy SEALs, played by Charlie Sheen and Michael Biehn, are tasked with destroying a shipment of US-built Stinger missiles that have fallen into the wrong hands. As the clock ticks down, the team must use their tactical prowess to overcome their enemies and protect their nation from a devastating attack. With an IMDb rating of 5.5 and grossing $25,069,101 worldwide, “Navy Seals” is sure to keep you on the edge of your seat.

Watch free on Amazon Prime

Awesome movie posters

6. Tombstone (1993)

tombstone-tt0108358-1

“Tombstone” is a captivating historical drama set in the Wild West of 1880. Renowned lawman Wyatt Earp dreams of a quiet life in Tombstone, Arizona, but his past comes back to haunt him as a notorious gang of outlaws, known for their ruthless exploits, arrives in town. Earp, along with his brother Virgil and his longtime friend Doc Holliday, takes on the challenge of restoring peace to Tombstone. Packed with intense action and powerful performances by Kurt Russell, Val Kilmer, and Sam Elliott, “Tombstone” is a gripping tale of loyalty, vengeance, and the relentless pursuit of justice. This modern Western classic has captivated audiences since its release in 1993, earning rave reviews and numerous award nominations. Experience the excitement and danger of the Wild West in this gripping 130-minute thriller.

Watch free on Amazon Prime

Awesome movie posters

7. The Jackal (1997)

the-jackal-tt0119395-1

“The Jackal” (1997) is a riveting action-drama that explores the world of a merciless assassin and the desperate attempt to stop him. With the help of a former I. R. A. fighter released from prison, authorities race against time to prevent a deadly assassination. Set in a thrilling international backdrop, the film boasts an all-star lineup including Bruce Willis, Richard Gere, and Sidney Poitier. Directed by Michael Caton-Jones and based on Keneth Ross’s story, “The Jackal” promises an unforgettable cinematic experience filled with high-stakes action, suspense, and intrigue. If you are a fan of crime, suspense, and high-stakes action, this film is a must-watch!

Watch free on Amazon Prime

Awesome movie posters

8. The Devil’s Own (1997)

the-devils-own-tt0118972-1

“The Devil’s Own” (1997) is a gripping action-drama starring Harrison Ford and Brad Pitt. Set in 1997, the storyline revolves around a police officer’s unsettling discovery that his house guest, an I. R. A. terrorist in hiding, may be more dangerous than he appears. Rated R, the film exposes the complexities of trust, loyalty, and identity in a high-stakes game of cat and mouse. With a runtime of 1 hour and 51 minutes, this thrilling tale skillfully woven by directors Alan J. Pakula and writers Kevin Jarre, David Aaron Cohen, and Vincent Patrick, delivers intense action alongside compelling, emotional drama. Set against the backdrop of the I. R. A. conflict, the plot unfolds as a simple house guest scenario escalates into a deadly cat and mouse game between the police officer and the visiting I. R. A. terrorist. The theme of trust and identity is further explored through intense scenes and intriguing character development. The film is part of a larger genre that includes other notable titles such as “Patriot Games”, “Clear and Present Danger”, “Spy Game”, “Legends of the Fall”, “Seven Years in Tibet”, “The Mexican”, “Presumed Innocent”, “Sleepers”, “The Pelican Brief”, “Air Force One”, “Witness”, and “Outbreak”. These movies share similar thematic elements and plots that make them compelling entertainment choices. Despite its intense themes, “The Devil’s Own” has received notable recognition with one award nomination. Bolstered by its all-star cast featuring Harrison Ford, Brad Pitt, and Margaret Colin, the film’s success is further cemented by its worldwide gross of $140,807,547.

In summary, “The Devil’s Own” is an suspenseful action-drama that plunges viewers into a harrowing game of trust and identity. Its gripping storyline, tense action sequences, and strong performances by lead actors make it a compelling watch for fans of action-packed dramas. The film has been praised for its engaging plot that intertwines themes of trust, loyalty, and identity, and its powerful performances. Highly recommended for those who enjoy thrillers and action films, “The Devil’s Own” delivers an intense and compelling experience.

Watch free on Amazon Prime

Awesome movie posters

9. The Mummy (1999)

the-mummy-tt0120616-1

Dive into the thrilling 1999 fantasy adventure, “The Mummy, “ directed by Stephen Sommers. This epic tale follows an American soldier in the French Foreign Legion, played by Brendan Fraser, who becomes embroiled in an otherworldly quest for love and immortality. Set in the ancient city of Hamunaptra, the soldier accidentally uncovers a long-dormant mummy, unleashing a chain of events that sends fear and destruction across the world. As the mummy, now portrayed by Arnold Vosloo, embarks on a ruthless search for the Book of the Dead, our protagonist must rally a team of archaeologists, played by Rachel Weisz and John Hannah, to stop the ancient terror. Experience breathtaking action, gripping adventure, and heart-stopping suspense as the mummy’s chilling story unfolds, blurring the lines between past and present, and challenging the boundaries of life itself. “The Mummy” — a cinematic masterpiece that redefines immortality in the most unexpected way. Join Fraser, Weisz, and Hannah on their unforgettable journey, where nothing is as it seems, and where the greatest love might hold the secret to eternal life.

Watch free on Amazon Prime

Awesome movie posters

10. Rules of Engagement (2000)

rules-of-engagement-tt0160797-1

In “Rules of Engagement, “ an intense and thrilling legal drama, an experienced attorney must defend a dedicated military officer on trial for ordering his troops to fire on civilians. This incident unfolds when a militia storms a U. S. embassy in a volatile Middle Eastern country. The movie unfolds as suspenseful moments escalate, with violence, chanting, and surprising twists surrounding the events at the heart of the story. Told through the eyes of the Vietnam War veteran, the audience is drawn into a web of intrigue and political drama that unfolds at The White House, Washington D. C. , and beyond. Directed by William Friedkin and written by Jim Webb and Stephen Gaghan, this gripping film features an all-star cast, including Tommy Lee Jones, Samuel L. Jackson, and Guy Pearce. The filmmakers have crafted a captivating narrative that delves into the complexities of war, politics, and human nature. “Rules of Engagement” has received critical acclaim and has earned a total of $71 million worldwide, making it another addition to the repertoire of thought-provoking and action-packed thrillers. The film’s release in 2000 by Seven Arts Productions, Paramount Pictures, Munich Film Partners & Company (MFP) ROE Production, combines the strengths of four different countries, making it a unique and fascinating study of international collaboration. “Rules of Engagement” is a must-see for fans of the drama, thriller, and war genres, with a runtime of 2 hours and 8 minutes and a content rating of R. With an IMDb rating of 6.4 and over 49,000 votes, this nail-biting film explores themes of loyalty, morality, and self-sacrifice, all while keeping viewers on the edge of their seats.

Watch free on Amazon Prime

Awesome movie posters

11. The Mummy Returns (2001)

the-mummy-returns-tt0209163-1

“The Mummy Returns” promises an exciting ride as it masterfully combines elements of action, adventure, and fantasy. Set in the year 2001, this high-energy film plunges viewers into a world where good battles against evil in the form of a mummy, Imhotep. The movie’s plot thickens when Imhotep, once again, wakes up, ready for more havoc and terror. With a running time of two hours and ten minutes, “The Mummy Returns” offers an engaging storyline filled with unforgettable characters. Brendan Fraser, Rachel Weisz, and John Hannah brilliantly bring their respective roles to life, weaving a tale of suspense, adventure, and intrigue. The film’s creators, Universal Pictures, Alphaville Films, and Imhotep Productions, ensure that the action never stops. In addition to its gripping narrative, “The Mummy Returns” boasts an impressive list of awards, confirming its status as an exhilarating cinema experience. Director Stephen Sommers and writer Stephen Sommers take audiences on a thrilling journey that is sure to have viewers on the edge of their seats. Fans of action, adventure, and fantasy movies will not want to miss this one. Get ready to experience the thrill and excitement of “The Mummy Returns” — where the battle between good and evil reaches new dimensions!

Watch free on Amazon Prime

Awesome movie posters

12. The Alamo (2004)

the-alamo-tt0318974-1

“The Alamo” (2004), directed by John Lee Hancock, transports audiences back to the fiery standoff between Texan and Tejano men, led by legendary heroes Davy Crockett and Jim Bowie, against Mexican dictator Santa Anna’s advancing forces. This historical epic delves into the heart of the 1836 battle, unfolding against the backdrop of the burgeoning Texan rebellion. Bolstered by powerhouse performances from Dennis Quaid, Billy Bob Thornton, and Emilio Echevarría, “The Alamo” masterfully examines sacrifice, courage, and the unyielding spirit of the American frontier. “The Alamo” is a compelling drama brimming with action, empathy, and a sense of duty that transcends the boundaries of its characters. With a runtime of 2 hours and 17 minutes, this cinematic gem offers a gripping narrative that envelopes viewers within the struggle for Texan independence. The film’s powerful imagery and intense action sequences are a testament to the indomitable spirit of those who fought for freedom in the face of insurmountable odds. “The Alamo” has garnered critical acclaim and award nominations, firmly planting itself within the annals of American cinematic history. It stands as a poignant reminder of the sacrifices made by those who stood at the Alamo, as well as an unforgettable glimpse into a pivotal moment in the nation’s past. “The Alamo” is a must-see classic for fans of historical dramas and war films alike.

Watch free on Amazon Prime

Awesome movie posters

13. The Mummy: Tomb of the Dragon Emperor (2008)

the-mummy-tomb-of-the-dragon-emperor-tt0859163-1

“The Mummy: Tomb of the Dragon Emperor” is a thrilling, action-packed film that follows the adventures of Alex O’Connell, the son of the famous mummy fighters Rick and Evy O’Connell. Set in the Far East, this exhilarating adventure takes Alex on a journey to uncover the mummy of the first Emperor of Qin, a shape-shifting entity cursed by a witch centuries ago. The film also features numerous well-known stars such as Brendan Fraser, Jet Li, and Maria Bello. Along with its exciting plot, “The Mummy: Tomb of the Dragon Emperor” also stands out for its stunning visual effects and captivating storyline that will enthrall viewers of all ages. With a runtime of 1 hour and 52 minutes and a content rating of PG-13, this film is perfect for a family movie night or a fun outing with friends.

Watch free on Amazon Prime

Awesome movie posters

14. Tinsel — The Lost Movie About Hollywood (2021)

tinsel-the-lost-movie-about-hollywood-4644553-1

“Tinsel — The Lost Movie About Hollywood” is a riveting documentary, set in the glittering world of 1990s Hollywood, that takes viewers on a captivating journey through the highs and lows of the film industry. The movie delves into the captivating love affair fans have always had with fame, celebrities, and movies, expertly comparing how they’ve evolved in the 21st century.

Watch free on Amazon Prime

Awesome movie posters

--

--

Carl Ramirez