Roll Bounce

Cast (36)

  • Shad Moss

    Shad Moss

    Xavier 'X'

  • Brandon T. Jackson

    Brandon T. Jackson

    Junior

  • Chi McBride

    Chi McBride

    Curtis Smith

  • Marcus T. Paulk

    Marcus T. Paulk

    Boo

  • Rick Gonzalez

    Rick Gonzalez

    Naps

  • Khleo Thomas

    Khleo Thomas

    Mixed Mike

  • Busisiwe Irvin

    Busisiwe Irvin

    Sonya

  • Jurnee Smollett

    Jurnee Smollett

    Tori

  • Kellita Smith

    Kellita Smith

    Vivian

  • Mike Epps

    Mike Epps

    Byron

  • Charlie Murphy

    Charlie Murphy

    Victor

  • Meagan Good

    Meagan Good

    Naomi Phillips

  • Nick Cannon

    Nick Cannon

    Bernard

  • Wesley Jonathan

    Wesley Jonathan

    Sweetness

  • Paul Wesley

    Paul Wesley

    Troy

  • Daniel Yabut

    Daniel Yabut

    Roy

  • Wayne Brady

    Wayne Brady

    D.J. Johnny Feelgood

  • Darryl 'DMC' McDaniels

    Darryl 'DMC' McDaniels

    Garden D.J. Smooth Dee

  • Joseph Hansa

    Joseph Hansa

    Mervyn Rosenfeld

  • Kat Tuohy

    Kat Tuohy

    Donna

  • Marcia Wright

    Marcia Wright

    Rhonda King

  • Cassandra Lewis

    Cassandra Lewis

    Party Woman #1

  • Deanna Reed-Foster

    Deanna Reed-Foster

    Party Woman #2

  • Mark Simmons

    Mark Simmons

    Guest #1

  • Ernest Perry Jr.

    Ernest Perry Jr.

    Donald Robinson

  • Tim Kazurinsky

    Tim Kazurinsky

    Car Salesman

  • Heather O'Brien

    Heather O'Brien

    Receptionist #1

  • Kelly Jay

    Kelly Jay

    Cute Girl

  • Samirah Garnett

    Samirah Garnett

    Girl Skater

  • Damon Williams

    Damon Williams

    Ambush Kid #1

  • Norman Vance III

    Norman Vance III

    Ambush Kid #2

  • Tammy Fey

    Tammy Fey

    Candy Girl

  • Tai'isha Davis

    Tai'isha Davis

    Candy Girl

  • Tina Au

    Tina Au

    Candy Girl

  • Todd Donoho

    Todd Donoho

    Baseball Announcer (voice)

  • Booker T. Mattison

    Booker T. Mattison

    DJ Background Voice (Sweetwater) (voice)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Roll Bounce

Cast (36)

  • Shad Moss

    Shad Moss

    Xavier 'X'

  • Brandon T. Jackson

    Brandon T. Jackson

    Junior

  • Chi McBride

    Chi McBride

    Curtis Smith

  • Marcus T. Paulk

    Marcus T. Paulk

    Boo

  • Rick Gonzalez

    Rick Gonzalez

    Naps

  • Khleo Thomas

    Khleo Thomas

    Mixed Mike

  • Busisiwe Irvin

    Busisiwe Irvin

    Sonya

  • Jurnee Smollett

    Jurnee Smollett

    Tori

  • Kellita Smith

    Kellita Smith

    Vivian

  • Mike Epps

    Mike Epps

    Byron

  • Charlie Murphy

    Charlie Murphy

    Victor

  • Meagan Good

    Meagan Good

    Naomi Phillips

  • Nick Cannon

    Nick Cannon

    Bernard

  • Wesley Jonathan

    Wesley Jonathan

    Sweetness

  • Paul Wesley

    Paul Wesley

    Troy

  • Daniel Yabut

    Daniel Yabut

    Roy

  • Wayne Brady

    Wayne Brady

    D.J. Johnny Feelgood

  • Darryl 'DMC' McDaniels

    Darryl 'DMC' McDaniels

    Garden D.J. Smooth Dee

  • Joseph Hansa

    Joseph Hansa

    Mervyn Rosenfeld

  • Kat Tuohy

    Kat Tuohy

    Donna

  • Marcia Wright

    Marcia Wright

    Rhonda King

  • Cassandra Lewis

    Cassandra Lewis

    Party Woman #1

  • Deanna Reed-Foster

    Deanna Reed-Foster

    Party Woman #2

  • Mark Simmons

    Mark Simmons

    Guest #1

  • Ernest Perry Jr.

    Ernest Perry Jr.

    Donald Robinson

  • Tim Kazurinsky

    Tim Kazurinsky

    Car Salesman

  • Heather O'Brien

    Heather O'Brien

    Receptionist #1

  • Kelly Jay

    Kelly Jay

    Cute Girl

  • Samirah Garnett

    Samirah Garnett

    Girl Skater

  • Damon Williams

    Damon Williams

    Ambush Kid #1

  • Norman Vance III

    Norman Vance III

    Ambush Kid #2

  • Tammy Fey

    Tammy Fey

    Candy Girl

  • Tai'isha Davis

    Tai'isha Davis

    Candy Girl

  • Tina Au

    Tina Au

    Candy Girl

  • Todd Donoho

    Todd Donoho

    Baseball Announcer (voice)

  • Booker T. Mattison

    Booker T. Mattison

    DJ Background Voice (Sweetwater) (voice)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Roll Bounce

Cast (36)

  • Shad Moss

    Shad Moss

    Xavier 'X'

  • Brandon T. Jackson

    Brandon T. Jackson

    Junior

  • Chi McBride

    Chi McBride

    Curtis Smith

  • Marcus T. Paulk

    Marcus T. Paulk

    Boo

  • Rick Gonzalez

    Rick Gonzalez

    Naps

  • Khleo Thomas

    Khleo Thomas

    Mixed Mike

  • Busisiwe Irvin

    Busisiwe Irvin

    Sonya

  • Jurnee Smollett

    Jurnee Smollett

    Tori

  • Kellita Smith

    Kellita Smith

    Vivian

  • Mike Epps

    Mike Epps

    Byron

  • Charlie Murphy

    Charlie Murphy

    Victor

  • Meagan Good

    Meagan Good

    Naomi Phillips

  • Nick Cannon

    Nick Cannon

    Bernard

  • Wesley Jonathan

    Wesley Jonathan

    Sweetness

  • Paul Wesley

    Paul Wesley

    Troy

  • Daniel Yabut

    Daniel Yabut

    Roy

  • Wayne Brady

    Wayne Brady

    D.J. Johnny Feelgood

  • Darryl 'DMC' McDaniels

    Darryl 'DMC' McDaniels

    Garden D.J. Smooth Dee

  • Joseph Hansa

    Joseph Hansa

    Mervyn Rosenfeld

  • Kat Tuohy

    Kat Tuohy

    Donna

  • Marcia Wright

    Marcia Wright

    Rhonda King

  • Cassandra Lewis

    Cassandra Lewis

    Party Woman #1

  • Deanna Reed-Foster

    Deanna Reed-Foster

    Party Woman #2

  • Mark Simmons

    Mark Simmons

    Guest #1

  • Ernest Perry Jr.

    Ernest Perry Jr.

    Donald Robinson

  • Tim Kazurinsky

    Tim Kazurinsky

    Car Salesman

  • Heather O'Brien

    Heather O'Brien

    Receptionist #1

  • Kelly Jay

    Kelly Jay

    Cute Girl

  • Samirah Garnett

    Samirah Garnett

    Girl Skater

  • Damon Williams

    Damon Williams

    Ambush Kid #1

  • Norman Vance III

    Norman Vance III

    Ambush Kid #2

  • Tammy Fey

    Tammy Fey

    Candy Girl

  • Tai'isha Davis

    Tai'isha Davis

    Candy Girl

  • Tina Au

    Tina Au

    Candy Girl

  • Todd Donoho

    Todd Donoho

    Baseball Announcer (voice)

  • Booker T. Mattison

    Booker T. Mattison

    DJ Background Voice (Sweetwater) (voice)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Roll Bounce

Cast (36)

  • Shad Moss

    Shad Moss

    Xavier 'X'

  • Brandon T. Jackson

    Brandon T. Jackson

    Junior

  • Chi McBride

    Chi McBride

    Curtis Smith

  • Marcus T. Paulk

    Marcus T. Paulk

    Boo

  • Rick Gonzalez

    Rick Gonzalez

    Naps

  • Khleo Thomas

    Khleo Thomas

    Mixed Mike

  • Busisiwe Irvin

    Busisiwe Irvin

    Sonya

  • Jurnee Smollett

    Jurnee Smollett

    Tori

  • Kellita Smith

    Kellita Smith

    Vivian

  • Mike Epps

    Mike Epps

    Byron

  • Charlie Murphy

    Charlie Murphy

    Victor

  • Meagan Good

    Meagan Good

    Naomi Phillips

  • Nick Cannon

    Nick Cannon

    Bernard

  • Wesley Jonathan

    Wesley Jonathan

    Sweetness

  • Paul Wesley

    Paul Wesley

    Troy

  • Daniel Yabut

    Daniel Yabut

    Roy

  • Wayne Brady

    Wayne Brady

    D.J. Johnny Feelgood

  • Darryl 'DMC' McDaniels

    Darryl 'DMC' McDaniels

    Garden D.J. Smooth Dee

  • Joseph Hansa

    Joseph Hansa

    Mervyn Rosenfeld

  • Kat Tuohy

    Kat Tuohy

    Donna

  • Marcia Wright

    Marcia Wright

    Rhonda King

  • Cassandra Lewis

    Cassandra Lewis

    Party Woman #1

  • Deanna Reed-Foster

    Deanna Reed-Foster

    Party Woman #2

  • Mark Simmons

    Mark Simmons

    Guest #1

  • Ernest Perry Jr.

    Ernest Perry Jr.

    Donald Robinson

  • Tim Kazurinsky

    Tim Kazurinsky

    Car Salesman

  • Heather O'Brien

    Heather O'Brien

    Receptionist #1

  • Kelly Jay

    Kelly Jay

    Cute Girl

  • Samirah Garnett

    Samirah Garnett

    Girl Skater

  • Damon Williams

    Damon Williams

    Ambush Kid #1

  • Norman Vance III

    Norman Vance III

    Ambush Kid #2

  • Tammy Fey

    Tammy Fey

    Candy Girl

  • Tai'isha Davis

    Tai'isha Davis

    Candy Girl

  • Tina Au

    Tina Au

    Candy Girl

  • Todd Donoho

    Todd Donoho

    Baseball Announcer (voice)

  • Booker T. Mattison

    Booker T. Mattison

    DJ Background Voice (Sweetwater) (voice)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Roll Bounce

Cast (36)

  • Shad Moss

    Shad Moss

    Xavier 'X'

  • Brandon T. Jackson

    Brandon T. Jackson

    Junior

  • Chi McBride

    Chi McBride

    Curtis Smith

  • Marcus T. Paulk

    Marcus T. Paulk

    Boo

  • Rick Gonzalez

    Rick Gonzalez

    Naps

  • Khleo Thomas

    Khleo Thomas

    Mixed Mike

  • Busisiwe Irvin

    Busisiwe Irvin

    Sonya

  • Jurnee Smollett

    Jurnee Smollett

    Tori

  • Kellita Smith

    Kellita Smith

    Vivian

  • Mike Epps

    Mike Epps

    Byron

  • Charlie Murphy

    Charlie Murphy

    Victor

  • Meagan Good

    Meagan Good

    Naomi Phillips

  • Nick Cannon

    Nick Cannon

    Bernard

  • Wesley Jonathan

    Wesley Jonathan

    Sweetness

  • Paul Wesley

    Paul Wesley

    Troy

  • Daniel Yabut

    Daniel Yabut

    Roy

  • Wayne Brady

    Wayne Brady

    D.J. Johnny Feelgood

  • Darryl 'DMC' McDaniels

    Darryl 'DMC' McDaniels

    Garden D.J. Smooth Dee

  • Joseph Hansa

    Joseph Hansa

    Mervyn Rosenfeld

  • Kat Tuohy

    Kat Tuohy

    Donna

  • Marcia Wright

    Marcia Wright

    Rhonda King

  • Cassandra Lewis

    Cassandra Lewis

    Party Woman #1

  • Deanna Reed-Foster

    Deanna Reed-Foster

    Party Woman #2

  • Mark Simmons

    Mark Simmons

    Guest #1

  • Ernest Perry Jr.

    Ernest Perry Jr.

    Donald Robinson

  • Tim Kazurinsky

    Tim Kazurinsky

    Car Salesman

  • Heather O'Brien

    Heather O'Brien

    Receptionist #1

  • Kelly Jay

    Kelly Jay

    Cute Girl

  • Samirah Garnett

    Samirah Garnett

    Girl Skater

  • Damon Williams

    Damon Williams

    Ambush Kid #1

  • Norman Vance III

    Norman Vance III

    Ambush Kid #2

  • Tammy Fey

    Tammy Fey

    Candy Girl

  • Tai'isha Davis

    Tai'isha Davis

    Candy Girl

  • Tina Au

    Tina Au

    Candy Girl

  • Todd Donoho

    Todd Donoho

    Baseball Announcer (voice)

  • Booker T. Mattison

    Booker T. Mattison

    DJ Background Voice (Sweetwater) (voice)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Roll Bounce

Cast (36)

  • Shad Moss

    Shad Moss

    Xavier 'X'

  • Brandon T. Jackson

    Brandon T. Jackson

    Junior

  • Chi McBride

    Chi McBride

    Curtis Smith

  • Marcus T. Paulk

    Marcus T. Paulk

    Boo

  • Rick Gonzalez

    Rick Gonzalez

    Naps

  • Khleo Thomas

    Khleo Thomas

    Mixed Mike

  • Busisiwe Irvin

    Busisiwe Irvin

    Sonya

  • Jurnee Smollett

    Jurnee Smollett

    Tori

  • Kellita Smith

    Kellita Smith

    Vivian

  • Mike Epps

    Mike Epps

    Byron

  • Charlie Murphy

    Charlie Murphy

    Victor

  • Meagan Good

    Meagan Good

    Naomi Phillips

  • Nick Cannon

    Nick Cannon

    Bernard

  • Wesley Jonathan

    Wesley Jonathan

    Sweetness

  • Paul Wesley

    Paul Wesley

    Troy

  • Daniel Yabut

    Daniel Yabut

    Roy

  • Wayne Brady

    Wayne Brady

    D.J. Johnny Feelgood

  • Darryl 'DMC' McDaniels

    Darryl 'DMC' McDaniels

    Garden D.J. Smooth Dee

  • Joseph Hansa

    Joseph Hansa

    Mervyn Rosenfeld

  • Kat Tuohy

    Kat Tuohy

    Donna

  • Marcia Wright

    Marcia Wright

    Rhonda King

  • Cassandra Lewis

    Cassandra Lewis

    Party Woman #1

  • Deanna Reed-Foster

    Deanna Reed-Foster

    Party Woman #2

  • Mark Simmons

    Mark Simmons

    Guest #1

  • Ernest Perry Jr.

    Ernest Perry Jr.

    Donald Robinson

  • Tim Kazurinsky

    Tim Kazurinsky

    Car Salesman

  • Heather O'Brien

    Heather O'Brien

    Receptionist #1

  • Kelly Jay

    Kelly Jay

    Cute Girl

  • Samirah Garnett

    Samirah Garnett

    Girl Skater

  • Damon Williams

    Damon Williams

    Ambush Kid #1

  • Norman Vance III

    Norman Vance III

    Ambush Kid #2

  • Tammy Fey

    Tammy Fey

    Candy Girl

  • Tai'isha Davis

    Tai'isha Davis

    Candy Girl

  • Tina Au

    Tina Au

    Candy Girl

  • Todd Donoho

    Todd Donoho

    Baseball Announcer (voice)

  • Booker T. Mattison

    Booker T. Mattison

    DJ Background Voice (Sweetwater) (voice)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Roll Bounce

Cast (36)

  • Shad Moss

    Shad Moss

    Xavier 'X'

  • Brandon T. Jackson

    Brandon T. Jackson

    Junior

  • Chi McBride

    Chi McBride

    Curtis Smith

  • Marcus T. Paulk

    Marcus T. Paulk

    Boo

  • Rick Gonzalez

    Rick Gonzalez

    Naps

  • Khleo Thomas

    Khleo Thomas

    Mixed Mike

  • Busisiwe Irvin

    Busisiwe Irvin

    Sonya

  • Jurnee Smollett

    Jurnee Smollett

    Tori

  • Kellita Smith

    Kellita Smith

    Vivian

  • Mike Epps

    Mike Epps

    Byron

  • Charlie Murphy

    Charlie Murphy

    Victor

  • Meagan Good

    Meagan Good

    Naomi Phillips

  • Nick Cannon

    Nick Cannon

    Bernard

  • Wesley Jonathan

    Wesley Jonathan

    Sweetness

  • Paul Wesley

    Paul Wesley

    Troy

  • Daniel Yabut

    Daniel Yabut

    Roy

  • Wayne Brady

    Wayne Brady

    D.J. Johnny Feelgood

  • Darryl 'DMC' McDaniels

    Darryl 'DMC' McDaniels

    Garden D.J. Smooth Dee

  • Joseph Hansa

    Joseph Hansa

    Mervyn Rosenfeld

  • Kat Tuohy

    Kat Tuohy

    Donna

  • Marcia Wright

    Marcia Wright

    Rhonda King

  • Cassandra Lewis

    Cassandra Lewis

    Party Woman #1

  • Deanna Reed-Foster

    Deanna Reed-Foster

    Party Woman #2

  • Mark Simmons

    Mark Simmons

    Guest #1

  • Ernest Perry Jr.

    Ernest Perry Jr.

    Donald Robinson

  • Tim Kazurinsky

    Tim Kazurinsky

    Car Salesman

  • Heather O'Brien

    Heather O'Brien

    Receptionist #1

  • Kelly Jay

    Kelly Jay

    Cute Girl

  • Samirah Garnett

    Samirah Garnett

    Girl Skater

  • Damon Williams

    Damon Williams

    Ambush Kid #1

  • Norman Vance III

    Norman Vance III

    Ambush Kid #2

  • Tammy Fey

    Tammy Fey

    Candy Girl

  • Tai'isha Davis

    Tai'isha Davis

    Candy Girl

  • Tina Au

    Tina Au

    Candy Girl

  • Todd Donoho

    Todd Donoho

    Baseball Announcer (voice)

  • Booker T. Mattison

    Booker T. Mattison

    DJ Background Voice (Sweetwater) (voice)