
Title
Category
Client
Year
Overview
An AI music video for Anthony Rother
For the electro musician Anthony Rother, we produced a music video composed entirely of AI-generated visuals. The initial impulse was to push the technology to its limits - resulting in a distinctive visual language that creates a dark yet compelling and stylistically fitting atmosphere.
Credits
Creative Director
More Projects
import type { ComponentType } from "react"
export function withoutFramerBadge(Component): ComponentType {
return (props) => {
return (
<>
<style>
{`
#__framer-badge-container { display: none !important; }
`}
</style>
<Component {...props} />
</>
)
}
}