Title

The World with Wagner

The World with Wagner

Category

Documentary

Documentary

Client

Bamberger Symphoniker

Bamberger Symphoniker

Year

2022

2022

Overview

Event Trailer for the event The World With Wagner for the Bamberg Symphony

For The World With Wagner by the Bamberg Symphony, we produced a trailer focused on striking visuals. Classical elements take center stage - elevated by the projections that define the show.

Credits

Director

Timo Schlenstedt

Timo Schlenstedt

DP

Julius Pfeiffer

Julius Pfeiffer

MUA

Johanna Spahn

Johanna Spahn

Producer

Anton Kraus

Anton Kraus

import type { ComponentType } from "react"



export function withoutFramerBadge(Component): ComponentType {

return (props) => {

return (

<>

<style>

{`

#__framer-badge-container { display: none !important; }

`}

</style>



<Component {...props} />

</>

)

}

}