Banner Headline: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam rhoncus non lacus eget commodo.
Call to Action
Menu
Menu
Hi,' + fname + '
'; }; }); }; let photoFilepath = data["image"]; let role = data["userRoleFormatted"] || ""; let domain = "https://d2wsrejhnxatgp.cloudfront.net/"; // Set the user profile image let url = domain + photoFilepath; if (photoFilepath === undefined || photoFilepath === "") { url = "/static/media/user_profile_logo.1943adb5.svg"; } //populate menu profile for non-SC if ( role !== "Sundance Circle") { //populate desktop menu profile jQuery('li.menu-item-14573 a').each(function(i) { let userGreeting = 'Hi,'; if (jQuery('li.menu-item-14573 a')[i].innerHTML === userGreeting) { jQuery('li.menu-item-14573 a').css("opacity", "1"); jQuery('li.menu-item-14573 a')[i].innerHTML = '
' + role + '
Hi,' + fname + '
'; }; }); //populate mobile profile name jQuery('#user-profile-name').html('
Hi, ' + fname + '
' + role + '
'); //Populate mobile profile image upper nav jQuery('#mobile-profile-image').html(''); }; //populate menu profile for SC if ( role === "Sundance Circle") { //populate desktop menu jQuery('li.menu-item-14573 a').each(function(i) { let userGreeting = 'Hi,'; if (jQuery('li.menu-item-14573 a')[i].innerHTML === userGreeting) { jQuery('li.menu-item-14573 a').css("opacity", "1"); jQuery('li.menu-item-14573 a')[i].innerHTML = '
' + role + '
Hi,' + fname + '
'; }; }); //populate mobile name and user type for SC jQuery('#user-profile-name').html('
Hi, ' + fname + '
' + role + '
'); //Populate mobile profile image upper nav jQuery('#mobile-profile-image').html(''); }; //show my festival menu links jQuery('.my-fest-mobile').show(); //Populate mobile profile // jQuery('.mobile-profile').html('
Hi, ' + fname + ''); //show user profile menu on desktop jQuery('elementor-nav-menu--layout-horizontal li.menu-item-14573').show(); jQuery(".mobile_menu .menu-item-14573").css("display","none") // Hide Sign In / Register jQuery('li.menu-item-1281').hide(); // Show Cart Icon //jQuery('.cart_icon').show(); //jQuery('.cart_header_column').show(); // Show Schedule Icon //jQuery('.calendar_header_column').show(); //jQuery('.calendar_icon').show(); // Widen nav_header_column// jQuery('.nav_header_column').css("width","80%"); //hide search Icon// jQuery('.search_icon').hide(); //show/hide desktop profile Item depending on screensize// if(jQuery(window.width() < 768) {// //show user profile menu// jQuery('li.menu-item-1260').show();// } else {// jQuery('li.menu-item-1260').hide();// }); jQuery('.mobile_logged_in').show(); jQuery('.mobile_logged_out').hide();} else { // Hide My Library jQuery('li.menu-item-942').hide(); // Hide Hi, User jQuery('li.menu-item-14573').hide(); // Hide role specific pages jQuery('li.menu-item-22560').hide(); jQuery('li.menu-item-22561').hide(); jQuery('li.menu-item-22562').hide(); // Show Sign In / Register jQuery('li.menu-item-1281').show(); // Widen nav_header_column// jQuery('.nav_header_column').css("width","80%"); //hide upper sign-in button jQuery(".upper-sign-in-button").show(); //increase upper nav column width jQuery(".upper-nav-col").css("width","30%"); //decrease logo col width jQuery(".logo-col").css("width","55%"); //align sign-in button jQuery('.upper-sign-in-button').css("margin-bottom","0px !important"); // Hide Cart Icon //jQuery('.cart_header_column').hide(); //jQuery('.cart_icon').hide(); // Hide Schedule Icon //jQuery('.calendar_header_column').hide(); //jQuery('.calendar_icon').hide(); //show my festival menu links jQuery('.my-fest-mobile').hide(); //hide search Icon// jQuery('.search_icon').hide(); jQuery('.mobile_logged_in').hide(); jQuery('.mobile_logged_out').show();}// Sign OutjQuery(".menu-item-object-custom .menu-item-1261 a").click(function(event) { signOut(event);});jQuery(".mobile-sign-out").click(function(event) { signOut(event);});jQuery(".mobile-logout-button").click(function(event) { signOut(event);});// Show Cart Items (hidden during off season)if (loggedinData) { data = JSON.parse(loggedinData); jQuery.ajax({ url: cartUrl, type: 'post', data: { "userToken": data["token"] }, headers: { auth: "Bearer 5iMhxOXyxzKylr41AY5X6BljYpCBK1n6" }, dataType: 'json', success: function (data) { if (data.message.count > 0) { jQuery('.cart_items').html(data.message.count); jQuery('.cart_items').show(); } } });}// Open SearchjQuery(".search_icon").click(function(event) { jQuery('.elementor-element-6eba26eb').show();});// Close SearchjQuery(".close_search").click(function(event) { event.preventDefault; event.stopPropogation; event.stopImmediatePropogation; jQuery('.elementor-element-6eba26eb').hide();});// NOTE: DISABLED Spaceship for SFF23 as New Frontier cancelled.// Set the Spaceship link//let tokenData = getCookie("myLoginToken");let tokenData = false;if (tokenData) { jQuery.ajax({ url: 'https://digitalcms.sundance.org:3000/api/thirdPartyToken', type: 'post', data: {"id": "62bc1275092076223a6764c5","redirectLink": "https://newfrontier.sundance.org/"}, headers: { Authorization: "Bearer " + tokenData }, dataType: 'json', success: function (data) { jQuery('li.menu-item-934 a').attr('href',data.URL); } });}// Toggle the mobile menujQuery("#elementor-popup-modal-2099 .dialog-close-button").click(function(event) { event.preventDefault; event.stopPropogation; event.stopImmediatePropogation; jQuery('.toggle_menu').removeClass('navmenu-active'); var pathname = window.location.pathname; window.history.pushState("object or string", "Title", pathname);});jQuery("#elementor-popup-modal-2099 .dialog-widget-content").on("transitionend webkitTransitionEnd oTransitionEnd", function(){ //do something here console.log('mobile popup animationend');}, false);// Do not search if less than two charactersjQuery(".sd_enter_serach").click(function(event) { event.preventDefault(); if (jQuery("#serach_form input")[0].value.length < 2) { jQuery(".sd_error_msg").html('Enter at least two characters to search.'); jQuery("#search_input").attr("placeholder", ""); } else { jQuery(".sd_error_msg").html(''); jQuery("#serach_form").submit(); }});// when user clicks to start typing in the search input, hide error messagejQuery("#search_input").click(function(event) { event.preventDefault(); jQuery(".sd_error_msg").html('');});jQuery(".sd_error_msg").click(function(event) { event.preventDefault(); jQuery(".sd_error_msg").html('');});}jQuery( document ).ready(function() { configHeader();});//--------------------------------// Re-run configHeader once mobile menu is Open//-------------------------------- // Select the entire DOM for observing:const target = document.querySelector('body'); // Create a new observer instance:const observer = new MutationObserver(function() { if (document.getElementById('elementor-popup-modal-2099')) { //jQuery('.toggle_menu').toggleClass('navmenu-active'); //jQuery('body,html').toggleClass('dialog-prevent-scroll'); setTimeout(() => { var pathname = window.location.pathname; window.history.pushState("object or string", "Title", pathname); }, "10"); //jQuery('.toggle_menu').toggleClass('navmenu-active'); configHeader(); }}); // Set configuration object:const config = { childList: true }; // Start the observerobserver.observe(target, config);
Sign In
Highlights
- January 19, 2024
Daniel Hoesl, co-director of “Veni Vidi Vici,” speaks into the microphone at a Q&A session following the premiere of the film on January 18, 2024, at the Sundance Film Festival. (Photo by Marc Sagliocco/Shutterstock for Sundance Film Festival)
By Vanessa Zimmer
The richest people in the world get away with anything. Next thing you know, they’ll be getting away with murder. And that’s exactly what happens in the Austrian film Veni Vidi Vici, which opened Thursday, January 18, at the 2024 Sundance Film Festival.
Murder is not even an act of passion in this film. It’s serial killing for sport. Wealthy entrepreneur Amon Maynard (Laurence Rupp) picks off a cyclist pumping up the highway, jokingly calls it “recycling” as he swaps his street shoes for cycling shoes, mounts the dead man’s bicycle, and sets off downhill, whooping with joy, as his butler carries away his street shoes and his rifle.
The butler, clearly, is enabling Amon. But so are others, just more invisibly, like the police, who ignore an old gamekeeper who reports seeing Maynard walking with a rifle near the scene of two people randomly cut down in the woods. A court judge, government officials, business people who benefit from Amon’s investments — all avert their eyes.
Meanwhile, Amon comes off as a benevolent man who supports sustainable energy, who admires animals too much to hunt them, and who showers attention on his children. What will happen to the oldest, Paula (Olivia Goschler) — a teenager curious about her father’s huge gun collection and proving to be Little Miss Sure Shot down at the arcade?
Veni, vidi, vici, Latin for “I came, I saw, I conquered,” is attributed to Julius Caesar in regard to military maneuvers. In this dark satire on class, it is a privilege reserved for the rich.
In the post-premiere Q&A, co-director Daniel Hoesl says it took nine years to make the film. He wrote the screenplay in 2015, but he couldn’t attract financing or support. “They [potential investors] wanted Amon to change, you know, in the course of the story,” and reform himself, Hoesl says. “I had to insist that he wouldn’t. That was the problem.”
The son of a truck driver and a nurse, Hoesl comes from working-class roots. He emphasizes that it is the responsibility of all of us to stop people like Amon Maynard. “He’s so charming that the sunlight is blinding us. We all know about these people, we know people like him, and we let them get away with it, and I wondered why. It is our job to change that.”
As Paula questions early in the film, defending an obvious, but uncalled, foul she commits in a polo match that saved the day for her team: Who is to blame? The person who commits the foul? Or the person who looks the other way?
Hoesl has examined the world of wealth and power in previous films, among them his debut feature Soldier Jane (Soldate Jeannette) at the 2013 Festival, as well as WinWin (2016) and the 2020 documentary Davos with his Veni Vidi Vici co-director Julia Niemann. “We always follow the money,” Hoesl jokes in their Meet the Artist video. Hoesl lamented that Niemann, who worked so hard beside him to bring the project to completion, was unable to attend the premiere because of food poisoning.
This World Cinema Dramatic Competition film has been bought by Magnify, formerly Magnolia Pictures.
JOIN
THE CONVERSATION
PRESENTING SPONSORS
PRESENTING SPONSORS
FESTIVAL HOST STATE
FESTIVAL HOST STATE
LEADERSHIP SPONSORS
LEADERSHIP SPONSORS
SUSTAINING SPONSORS
SUSTAINING SPONSORS
MEDIA SPONSORS
MEDIA SPONSORS
VIEW ALL SPONSORS
January 23–February 2
January 23–February 2
Festival News
& Updates
Sign Up
[form_submit_test]
Sign Up
Festival News
& Updates
Top Links
Merch
Highlights
Lodging
Sundance Industry Office
Press Center
Customer Support
Tickets
In Person
Online
How to Fest
At a Glance
Ticketing
Attend in Person
Watch Online
Accessibility
Donors
Press
Industry
My Festival
My Account
Log Out
Sign In
Create Account
Top Links
Merch
Highlights
Lodging
Sundance Industry Office
Press Center
Customer Support
How to Fest
At a Glance
Ticketing
Attend in Person
Watch Online
Accessibility
Donors
Press
Industry
Tickets
In Person
Online
My Festival
Sign In
Create Account
Log Out
My Account
Copyright © 2024 Sundance Institute, All Rights Reserved
About Sundance Institute
Community Agreement
Privacy Policy
Privacy Policy
About Sundance Institute
Community Agreement
Copyright © 2024 Sundance
Institute, All Rights Reserved