Jeff Richter
Jeff Richter is an American music video director and editor who mostly directs music videos and commercials. He has worked for Intuitive Entertainment, MTV Networks, Trans-Siberian Orchestra and is the owner of Earthquake Productions, a production company where he directs and edits his own music videos, concert films and commercials.
Select videography
- 1989
- "Bed of Nails" (directed by Nigel Dick; editor only) - Alice Cooper
- 1990
- "The More Things Change" - Cinderella
- 1992
- "Foreclosure of a Dream" - Megadeth
- 1994
- "Foreign Sand" - Roger Taylor featuring Yoshiki
- 1996
- "Work It Out" (directed by Nigel Dick; editor only) - Def Leppard
- 1997
- "Break on Through (To the Other Side)" (version 2) - The Doors
- 1998
- "Ain't Goin' to Goa" ('98 Radio Remix) - Alabama 3
- 1999
- "Nobody Can Stop Me" (directed by Gregory Dark; editor only) - Bizzy Bone
- "Blue Monday" (directed by Gregory Dark; editor only) - Orgy
- "Fuck Dying" (directed by Gregory Dark; editor only) - Ice Cube featuring Korn
- "Thug Mentality" (directed by Gregory Dark; editor only) - Krayzie Bone
- "Awful" - Hole
- "Good to Be Alive" (Radio Remix) - DJ Rap
- "Welcome to the Jungle" (Live) - Guns N' Roses
- "The Anthem" - Sway & King Tech featuring RZA, Tech N9ne, Eminem, Xzibit, Pharoahe Monch, Kool G Rap, Jayo Felony, Chino XL and KRS-One
- 2000
- "Whoa!" - Black Rob
- "Into the Void" (co-directed with Walter Stern; also editor) - Nine Inch Nails
- "You Sang to Me" (also editor) - Marc Anthony
- "Quality Control" - Jurassic 5
- "Wifey" - Next
- "The Light" - Pharoahe Monch
- "Oooh." - De La Soul featuring Redman
- "Oh No" - Mos Def, Pharoahe Monch and Nate Dogg
- "After Party" - Koffee Brown
- 2001
- "W.O.E. Is Me (World of Entertainment)" (uncredited) - Jurassic 5
- "It Don't Matter" - Rehab
- "La Rhumba" - RZA as Bobby Digital featuring Method Man, Killa Sin and Beretta 9
- 2002
- "The Knoc" - Knoc-turn'al featuring Missy Elliott and Dr. Dre
- 2003
- "Send the Pain Below" - Chevelle
- "Worms of the Earth" - Finch
- "We Want Peace" - Lenny Kravitz
- "True to Myself" - Ziggy Marley
- 2004
- "She Bangs" - William Hung
- "Saturday Night" - Ozomatli
- 2005
- 2007
- "Rise Today" (directed by Dale Resteghini; editor only) - Alter Bridge
- "Calling You" (also editor) - Blue October
- 2014
- "Lose Yourself Avicii and Leehom Wang" (directed by Jeff Richter; director editor) - Avicii
gollark: See, if I was the owner/admin *I* wouldn't randomly ping everyone!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessimport randomimport stringparser = argparse.ArgumentParser(description="Compile a WHY program using WHYJIT.")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def randomword(length): letters = string.ascii_lowercase return ''.join(random.choice(letters) for i in range(length))def which(program): proc = subprocess.run(["which", program], stdout=subprocess.PIPE) if proc.returncode == 0: return proc.stdout.replace(b"\n", b"") else: return Nonedef find_C_compiler(): compilers = ["gcc", "clang", "tcc", "cc"] for compiler in compilers: path = which(compiler) if path != None: return pathdef build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ heredoc = randomword(100) devnull = "2>/dev/null" shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-tooTMP3=/tmp/dont-look-here cat << {heredoc} > $TMP1{C_code}{heredoc}sed -e '1,/^exit \$?$/d' "$0" > $TMP3chmod +x $TMP3$TMP3 -x c -o $TMP2 $TMP1chmod +x $TMP2$TMP2exit $?""".encode("utf-8") with open(find_C_compiler(), "rb") as f: return shell_script + f.read()input = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "wb") as out: out.write(code)```
gollark: !esowiki WHY
gollark: Yes.
gollark: Stop using the passive voice!
References
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.