Superhuman (music)

Superhuman are a British composing, production and songwriting duo consisting of Liam Westbrook and Robin Stout. Presently based in Los Angeles, California they were formed in London, UK in 2012. Superhuman have had their most notable success in the world of trailer music, with their tracks featuring on trailers for many movies including Avengers: Age of Ultron, Mad Max: Fury Road and The Hunger Games: Mockingjay – Part 2.

History

Having produced, composed and performed music since their early teens, Liam Westbrook and Robin Stout formed Superhuman in early 2012, before moving to Los Angeles in late 2014.

As well as collaborating with numerous artists, their tracks have featured on trailers for the following films: The Hunger Games: Mockingjay – Part 2, Crimson Peak, Mad Max: Fury Road, Avengers: Age of Ultron, Tomorrowland, The Maze Runner, Dawn of the Planet of the Apes, Noah, The Hobbit: The Desolation of Smaug, 47 Ronin, Star Trek Into Darkness, R.I.P.D., Rush, Olympus Has Fallen, Battleship, Elysium.

gollark: Eh. It's improved. Still problematic though, but I like it.
gollark: Well, it's poorly designed, more so than JS in my opinion.
gollark: PHP is maaaaybe easy for simple stuff, but also very evil.
gollark: There are many languages you can use for web*server*y stuff, but you can only really use HTML/CSS/JS for frontends.
gollark: With Express.js the server thing would look *very roughly* like this:```javascriptconst express = require("express")const multer = require("multer")const app = express()const upload = multer({ storage: multer.memoryStorage(), limits: { fileSize: 2**22 // 4MiB maximum filesize }})app.get("/image", (req, res) => { res.send(loadImageFromSomewhere())})// send upload form HTML - you would need to write this tooapp.get("/upload", (req, res) => res.sendFile("upload.html"))app.post("/upload", upload.single("file"), (req, res) => { saveImageSomewhere(req.file.buffer)})app.listen(8700, () => console.log("listening")) // listen on port 8700```


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.