'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Sundance Film Festival

The Sundance Film Festival, a program of the Sundance Institute, is an American film festival that takes place annually in Utah. With 46,731 attendees in 2012, it is the largest independent film festival in the United States. Held in January in Park City, Salt Lake City, and Ogden, as well as at the Sundance Resort, the festival is a showcase for new work from American and international independent filmmakers. The festival comprises competitive sections for American and international dramatic and documentary films, both feature-length films and short films, and a group of out-of-competition sections, including NEXT, New Frontier, Spotlight, and Park City At Midnight. The 2016 Sundance Film Festival took place January 21 to January 31, 2016.

History

Utah/US Film Festival

Sundance began in Salt Lake City in August 1978, as the Utah/US Film Festival in an effort to attract more filmmakers to Utah. It was founded by Sterling Van Wagenen (then head of Wildwood, Robert Redford's company), John Earle, and Cirina Hampton Catania (both serving on the Utah Film Commission at the time). The 1978 festival featured films such as Deliverance, A Streetcar Named Desire, Midnight Cowboy, Mean Streets, and The Sweet Smell of Success. With chairman Robert Redford, and the help of Utah Governor Scott M. Matheson, the goal of the festival was to showcase strictly American-made films, highlight the potential of independent film, and to increase visibility for filmmaking in Utah. At the time, the main focus of the event was to conduct a competition for independent American films, present a series of retrospective films and filmmaker panel discussions, and to celebrate the Frank Capra Award. The festival also highlighted the work of regional filmmakers who worked outside the Hollywood system.

2011 Sundance Film Festival

The 27th annual Sundance Film Festival took place from January 20, 2011 until January 30, 2011 in Park City, Utah, with screenings in Salt Lake City, Utah, Ogden, Utah, and Sundance, Utah.

The festival opened with five screenings, one from each category in competition: Sing Your Song, Pariah, The Guard, Project Nim, and Shorts Program I. The New Frontier category opened with All That Is Solid Melts into Air. The closing night film was The Son of No One.

There were 750 sponsors of the festival and 1,670 volunteers. Attendance was initially estimated at 60,000 people.

Films

10,279 films were submitted. 3,812 feature films were submitted, including 1,943 from the US and 1,869 internationally. From these, 118 feature films were selected and include 95 world premieres. 6,467 short films were submitted, 81 short films were selected to be screened and 12 shorts are viewable on YouTube. The festival had films from 40 first-time filmmakers (25 in competition), representing 29 countries.

2003 Sundance Film Festival

At the 2003 Sundance Film Festival, unseasonably warm weather attracted record numbers of attendees, among them singing artist Bob Dylan.American Splendor, a biopic of comic-book author Harvey Pekar, won the grand-jury prize.

2003

16 January - 26 January

The official announcement of the 2003 winners can be found here.

  • Grand Jury Prize: Documentary - Capturing the Friedmans
  • Grand Jury Prize: Dramatic - American Splendor (film)
  • Audience Award: Documentary - My Flesh and Blood
  • Audience Award: Dramatic - The Station Agent
  • Special Jury Prize: Dramatic - What Alice Found
  • Documentary Directing Award - Jonathan Karsh director of My Flesh and Blood
  • Dramatic Directing Award - Catherine Hardwicke for Thirteen
  • Excellence in Cinematography Award: Documentary - Stevie
  • Excellence in Cinematography Award: Dramatic - Quattro Noza
  • References

    External links

  • IMDb profile

  • $100 Film Festival

    The $100 Film Festival is an independent film festival that runs for three days every March at the Globe Cinema in downtown Calgary, Alberta. The festival showcases films in all genres by local and international independent artists who enjoy working with traditional film.

    Created in 1992 by the Calgary Society of Independent Filmmakers (CSIF), the $100 Film Festival started as a challenge for area filmmakers to a make a low-budget movie using Super8 film for less than $100. In later years, the CSIF changed the rules to allow filmmakers to work with 16 mm film and an increased budget. The $100 Film Festival still works to embody the spirit of low-budget film making and has become a popular event in Calgary.

    External links

  • CSIF Official Website
  • $100 Film Festival Website
  • References

  • Calgary Herald
  • The Gauntlet
  • Fast Forward

  • Sundance

    A sun dance is a Native American ceremony. Sun dance or Sundance may also refer to:

    Places

  • Sundance, Calgary, a neighbourhood in Calgary, Alberta, Canada
  • Sundance, Manitoba, a ghost town in Manitoba, Canada
  • Sundance, Wyoming, the county seat and largest community in Crook County
  • Sundance Resort, a Utah ski resort
  • Sundance Mountain in Bonner County, Idaho, where the Sundance wildfire of 1967 originated
  • People

  • Sundance (activist), an American Indian civil rights activist lobbying for the change of denigrating Native American Native American imagery and director of the Cleveland branch of the American Indian Movement
  • Sundance (rapper), an American rapper and radio personality
  • Sundance, a Secret Service codename shared by Ethel Kennedy and Al Gore
  • Sundance Bilson-Thompson, an Australian physicist
  • Sundance Head, an American singer and season 6 American Idol contestant
  • Sundance Kid, the nickname of Harry Longabaugh
  • Art, entertainment, and media

    Films

  • Sundance and the Kid (1969), a spaghetti Western film
  • Sundance (activist)

    Sundance is an American Indian civil rights activist. He is perhaps best known for being one of several prominent American Indians to spearhead the movement against the use of Native American imagery as sports mascots.

    Early life

    Sundance is a member of the Muscogee, a tribe of Native American people living in the southeastern woodlands.

    Career

    Sundance is the director of the Cleveland branch of the American Indian Movement (AIM).

    Activism

    Sundance (video game)

    Sundance is a puzzle arcade game using vector graphics released by Cinematronics in 1979. The game consists of two grids floating in a pseudo-3D space with small suns bouncing between them. The player scored points by capturing the suns as they made contact with the grids. The player also had a limited-use "smart bomb" button which would eliminate all of the suns currently bouncing between the grids. As the suns bounced, the grids would move closer and closer, making gameplay more difficult. The game ended when the grids fully converged.

    The game itself had only a small production run and was plagued with hardware failures due to its unconventional design. According to Tim Skelly, the game's designer, Sundance used an additional daughterboard that controlled the intensity of certain vectors. This board and its connections were rather fragile and prone to failure. Also, the monitor used a defective carbon coating spray which tended to cause the monitor's tube to arc if it was left in a certain position, destroying the monitor.

    Podcasts:

    • How the Sundance Film Festival works

      Brian Stelter looks at the strict hierarchy behind the popular festival in the quaint mountain town of Park City, UT.

      published: 28 Jan 2015
    • The 2021 Sundance Film Festival

      From Jan. 28–Feb. 3, audiences all over the world gathered for the reimagined 2021 Sundance Film Festival. SUBSCRIBE: http://bit.ly/SundanceSub Connect with Sundance: Follow Sundance on Instagram: http://bit.ly/SundanceInsta Follow Sundance on Twitter: http://bit.ly/SundanceTW Like Sundance on Facebook: http://bit.ly/SundanceFacebook Learn more about The Sundance Institute: http://sndnc.org/SundanceOrg

      published: 17 Nov 2020
    • Get an inside look at the Sundance Film Festival

      CNN's Stephanie Elam discusses the role that the Sundance Film Festival plays in the entertainment industry.

      published: 21 Jan 2016
    • The 2022 Sundance Film Festival Warm-Up

      The 2022 Sundance Film Festival is just around the corner! Whether you’re planning on joining us by logging on from the comfort of your couch or from a satellite screening around the country, it’s time to start getting into the Festival spirit. Begin planning your Festival experience now. Go now: festival.sundance.org SUBSCRIBE: http://bit.ly/SundanceSub CONNECT WITH US Instagram: http://bit.ly/SundanceInsta Twitter: http://bit.ly/SundanceTW Facebook: http://bit.ly/SundanceFacebook LEARN MORE: http://sndnc.org/SundanceOrg

      published: 28 Sep 2021
    • 2023 Sundance Film Festival | Daily Recap: Day One

      It has begun! Highlights from Thursday, Jan. 19, at the 2023 Sundance Film Festival. Presented by Adobe.

      published: 20 Jan 2023
    • Sundance Film Festival unveils lineup for 2023 edition

      (8 Dec 2022) Sundance Film Festival unveils lineup for 2023 edition Subscribe for more Breaking News: http://smarturl.it/AssociatedPress Website: https://apnews.com Twitter: https://twitter.com/AP Facebook: https://facebook.com/APNews Instagram: https://www.instagram.com/APNews/ ​ You can license this story through AP Archive: http://www.aparchive.com/metadata/youtube/b7c8eb60b4e14a4daf408bb55887810d

      published: 08 Dec 2022
    • How to Go to Sundance - Film Festival 2019 Tips - Park City Travel Guide

      NEW VIDEO: "Best Beginner Camera for Photography and Video 2019 " https://www.youtube.com/watch?v=kqsxE_E8PZ0 --~-- 8 tips to get the most out of the Sundance Film Festival experience. Includes a Park City, Utah travel guide, but very specific to the opening weekend of Sundance. Check out my other Sundance videos here: - Sundance Film Festival 2019 in 2 Minutes http://bit.ly/sundance-2019 - Sundance 2018 in 3 Minutes: http://bit.ly/sundance2018video -- * Subscribe to my channel: http://bit.ly/GeminiConnectYouTube * Check out my blog http://www.geminiconnect.com * Follow on Instagram: http://www.instagram.com/geminiconnect -- Camera Gear We Use: http://bit.ly/our-cameras Music We Use: http://bit.ly/geminimusic -- SUPPORT THE CHANNEL * Support us monthly on Patreon - https://www.p...

      published: 02 Feb 2019
    • Sundance Film Festival: 32 prizes awarded this year in Utah

      The Sundance Film Festival is wrapping up in the US state of Utah. More than 100 films debuted at the event, which shines the spotlight on independent movies. Al Jazeera's Rob Reynolds reports from Park City in Utah, the United States. - Subscribe to our channel: http://aje.io/AJSubscribe - Follow us on Twitter: https://twitter.com/AJEnglish - Find us on Facebook: https://www.facebook.com/aljazeera - Check our website: https://www.aljazeera.com/ @AljazeeraEnglish #Aljazeeraenglish #News #UnitedStates #US #SundanceFilmFestival

      published: 30 Jan 2023
    • The Headhunter's Daughter (2022) Trailer l Sundance Film Festival 2022

      Leaving her family behind, Lynn traverses the harrowing roads of the Cordilleran highlands to try her luck in the city as a country singer. Official Selection: - Sundance Film Festival 2022 - Clermont-Ferrand International Short Film Festival 2022 Directed by: Don Josephus Raphael Eblahan Written by: Don Josephus Raphael Eblahan Produced by: Hannah Schierbeek Cast: Ammin Acha-ur, Pablo Quintos Courtesy of Don Josephus Raphael Eblahan's Vimeo. https://vimeo.com/648285133 #sundance #sundancefilmfestival #sundance2022 Meet the Artist: Don Josephus Raphael Eblahan on "The Headhunter's Daughter" Sundance Institute

      published: 13 Dec 2021
    • Sundance Film Festival returns to Park City after two years online

      Awards were handed out at this year's Sundance Film Festival, which showcases the best in independent cinema. A drama about a struggling single mother has taken the Grand Jury Prize. Al Jazeera's Rob Reynolds reports from Utah, United States. Subscribe to our channel http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ Check out our Instagram page: https://www.instagram.com/aljazeeraenglish/ @AljazeeraEnglish #Aljazeeraenglish #News #SundanceFilmFestival #Sundance #Film #Cinema ##unitedstates #Actor

      published: 28 Jan 2023
    How the Sundance Film Festival works
    2:16

    How the Sundance Film Festival works

    • Order:
    • Duration: 2:16
    • Uploaded Date: 28 Jan 2015
    • views: 37921
    Brian Stelter looks at the strict hierarchy behind the popular festival in the quaint mountain town of Park City, UT.
    https://wn.com/How_The_Sundance_Film_Festival_Works
    The 2021 Sundance Film Festival
    1:36

    The 2021 Sundance Film Festival

    • Order:
    • Duration: 1:36
    • Uploaded Date: 17 Nov 2020
    • views: 18437
    From Jan. 28–Feb. 3, audiences all over the world gathered for the reimagined 2021 Sundance Film Festival. SUBSCRIBE: http://bit.ly/SundanceSub Connect with Sundance: Follow Sundance on Instagram: http://bit.ly/SundanceInsta Follow Sundance on Twitter: http://bit.ly/SundanceTW Like Sundance on Facebook: http://bit.ly/SundanceFacebook Learn more about The Sundance Institute: http://sndnc.org/SundanceOrg
    https://wn.com/The_2021_Sundance_Film_Festival
    Get an inside look at the Sundance Film Festival
    2:26

    Get an inside look at the Sundance Film Festival

    • Order:
    • Duration: 2:26
    • Uploaded Date: 21 Jan 2016
    • views: 27499
    CNN's Stephanie Elam discusses the role that the Sundance Film Festival plays in the entertainment industry.
    https://wn.com/Get_An_Inside_Look_At_The_Sundance_Film_Festival
    The 2022 Sundance Film Festival Warm-Up
    1:01

    The 2022 Sundance Film Festival Warm-Up

    • Order:
    • Duration: 1:01
    • Uploaded Date: 28 Sep 2021
    • views: 17956
    The 2022 Sundance Film Festival is just around the corner! Whether you’re planning on joining us by logging on from the comfort of your couch or from a satellite screening around the country, it’s time to start getting into the Festival spirit. Begin planning your Festival experience now. Go now: festival.sundance.org SUBSCRIBE: http://bit.ly/SundanceSub CONNECT WITH US Instagram: http://bit.ly/SundanceInsta Twitter: http://bit.ly/SundanceTW Facebook: http://bit.ly/SundanceFacebook LEARN MORE: http://sndnc.org/SundanceOrg
    https://wn.com/The_2022_Sundance_Film_Festival_Warm_Up
    2023 Sundance Film Festival | Daily Recap: Day One
    2:08

    2023 Sundance Film Festival | Daily Recap: Day One

    • Order:
    • Duration: 2:08
    • Uploaded Date: 20 Jan 2023
    • views: 8658
    It has begun! Highlights from Thursday, Jan. 19, at the 2023 Sundance Film Festival. Presented by Adobe.
    https://wn.com/2023_Sundance_Film_Festival_|_Daily_Recap_Day_One
    Sundance Film Festival unveils lineup for 2023 edition
    1:56

    Sundance Film Festival unveils lineup for 2023 edition

    • Order:
    • Duration: 1:56
    • Uploaded Date: 08 Dec 2022
    • views: 3521
    (8 Dec 2022) Sundance Film Festival unveils lineup for 2023 edition Subscribe for more Breaking News: http://smarturl.it/AssociatedPress Website: https://apnews.com Twitter: https://twitter.com/AP Facebook: https://facebook.com/APNews Instagram: https://www.instagram.com/APNews/ ​ You can license this story through AP Archive: http://www.aparchive.com/metadata/youtube/b7c8eb60b4e14a4daf408bb55887810d
    https://wn.com/Sundance_Film_Festival_Unveils_Lineup_For_2023_Edition
    How to Go to Sundance  - Film Festival 2019 Tips - Park City Travel Guide
    8:34

    How to Go to Sundance - Film Festival 2019 Tips - Park City Travel Guide

    • Order:
    • Duration: 8:34
    • Uploaded Date: 02 Feb 2019
    • views: 7755
    NEW VIDEO: "Best Beginner Camera for Photography and Video 2019 " https://www.youtube.com/watch?v=kqsxE_E8PZ0 --~-- 8 tips to get the most out of the Sundance Film Festival experience. Includes a Park City, Utah travel guide, but very specific to the opening weekend of Sundance. Check out my other Sundance videos here: - Sundance Film Festival 2019 in 2 Minutes http://bit.ly/sundance-2019 - Sundance 2018 in 3 Minutes: http://bit.ly/sundance2018video -- * Subscribe to my channel: http://bit.ly/GeminiConnectYouTube * Check out my blog http://www.geminiconnect.com * Follow on Instagram: http://www.instagram.com/geminiconnect -- Camera Gear We Use: http://bit.ly/our-cameras Music We Use: http://bit.ly/geminimusic -- SUPPORT THE CHANNEL * Support us monthly on Patreon - https://www.patreon.com/geminiconnect * Make a one-time donation on PayPal - https://bit.ly/gemini-paypal We love making YouTube videos, but it takes time to film and edit material for you to enjoy. If you enjoy our free videos and would like to help us produce fresh content, please consider supporting us Patreon, making a one-time donation via PayPal, or using our affiliate links to purchase products (we receive small commissions at no extra charge to you). Our videos will continue to be free to watch on YouTube, and there is no obligation to help at all. But any support offered is greatly appreciated and goes directly into creating better content for you to enjoy. Thank you! - Martin and Suzi 📭 SEND US SOMETHING Gemini Connect PO Box #28353 Seattle WA 98144
    https://wn.com/How_To_Go_To_Sundance_Film_Festival_2019_Tips_Park_City_Travel_Guide
    Sundance Film Festival: 32 prizes awarded this year in Utah
    2:37

    Sundance Film Festival: 32 prizes awarded this year in Utah

    • Order:
    • Duration: 2:37
    • Uploaded Date: 30 Jan 2023
    • views: 600
    The Sundance Film Festival is wrapping up in the US state of Utah. More than 100 films debuted at the event, which shines the spotlight on independent movies. Al Jazeera's Rob Reynolds reports from Park City in Utah, the United States. - Subscribe to our channel: http://aje.io/AJSubscribe - Follow us on Twitter: https://twitter.com/AJEnglish - Find us on Facebook: https://www.facebook.com/aljazeera - Check our website: https://www.aljazeera.com/ @AljazeeraEnglish #Aljazeeraenglish #News #UnitedStates #US #SundanceFilmFestival
    https://wn.com/Sundance_Film_Festival_32_Prizes_Awarded_This_Year_In_Utah
    The Headhunter's Daughter (2022) Trailer l Sundance Film Festival 2022
    0:49

    The Headhunter's Daughter (2022) Trailer l Sundance Film Festival 2022

    • Order:
    • Duration: 0:49
    • Uploaded Date: 13 Dec 2021
    • views: 100489
    Leaving her family behind, Lynn traverses the harrowing roads of the Cordilleran highlands to try her luck in the city as a country singer. Official Selection: - Sundance Film Festival 2022 - Clermont-Ferrand International Short Film Festival 2022 Directed by: Don Josephus Raphael Eblahan Written by: Don Josephus Raphael Eblahan Produced by: Hannah Schierbeek Cast: Ammin Acha-ur, Pablo Quintos Courtesy of Don Josephus Raphael Eblahan's Vimeo. https://vimeo.com/648285133 #sundance #sundancefilmfestival #sundance2022 Meet the Artist: Don Josephus Raphael Eblahan on "The Headhunter's Daughter" Sundance Institute
    https://wn.com/The_Headhunter's_Daughter_(2022)_Trailer_L_Sundance_Film_Festival_2022
    Sundance Film Festival returns to Park City after two years online
    2:36

    Sundance Film Festival returns to Park City after two years online

    • Order:
    • Duration: 2:36
    • Uploaded Date: 28 Jan 2023
    • views: 1284
    Awards were handed out at this year's Sundance Film Festival, which showcases the best in independent cinema. A drama about a struggling single mother has taken the Grand Jury Prize. Al Jazeera's Rob Reynolds reports from Utah, United States. Subscribe to our channel http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ Check out our Instagram page: https://www.instagram.com/aljazeeraenglish/ @AljazeeraEnglish #Aljazeeraenglish #News #SundanceFilmFestival #Sundance #Film #Cinema ##unitedstates #Actor
    https://wn.com/Sundance_Film_Festival_Returns_To_Park_City_After_Two_Years_Online
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 25:59

    How the Sundance Film Festival works

    Brian Stelter looks at the strict hierarchy behind the popular festival in the quaint mountain town of Park City, UT.
    2:16
    How the Sundance Film Festival works
    Brian Stelter looks at the strict hierarchy behind the popular festival in the quaint moun...
    published: 28 Jan 2015
    Play in Full Screen
    1:36
    The 2021 Sundance Film Festival
    From Jan. 28–Feb. 3, audiences all over the world gathered for the reimagined 2021 Sundanc...
    published: 17 Nov 2020
    Play in Full Screen
    2:26
    Get an inside look at the Sundance Film Festival
    CNN's Stephanie Elam discusses the role that the Sundance Film Festival plays in the enter...
    published: 21 Jan 2016
    Play in Full Screen
    1:01
    The 2022 Sundance Film Festival Warm-Up
    The 2022 Sundance Film Festival is just around the corner! Whether you’re planning on join...
    published: 28 Sep 2021
    Play in Full Screen
    2:08
    2023 Sundance Film Festival | Daily Recap: Day One
    It has begun! Highlights from Thursday, Jan. 19, at the 2023 Sundance Film Festival. Prese...
    published: 20 Jan 2023
    Play in Full Screen
    1:56
    Sundance Film Festival unveils lineup for 2023 edition
    (8 Dec 2022) Sundance Film Festival unveils lineup for 2023 edition Subscribe for more ...
    published: 08 Dec 2022
    Play in Full Screen
    8:34
    How to Go to Sundance - Film Festival 2019 Tips - Park City Travel Guide
    NEW VIDEO: "Best Beginner Camera for Photography and Video 2019 " https://www.youtube.com...
    published: 02 Feb 2019
    Play in Full Screen
    2:37
    Sundance Film Festival: 32 prizes awarded this year in Utah
    The Sundance Film Festival is wrapping up in the US state of Utah. More than 100 films de...
    published: 30 Jan 2023
    Play in Full Screen
    0:49
    The Headhunter's Daughter (2022) Trailer l Sundance Film Festival 2022
    Leaving her family behind, Lynn traverses the harrowing roads of the Cordilleran highlands...
    published: 13 Dec 2021
    Play in Full Screen
    2:36
    Sundance Film Festival returns to Park City after two years online
    Awards were handed out at this year's Sundance Film Festival, which showcases the best in ...
    published: 28 Jan 2023
    Play in Full Screen

    Sundance Film Festival

    The Sundance Film Festival, a program of the Sundance Institute, is an American film festival that takes place annually in Utah. With 46,731 attendees in 2012, it is the largest independent film festival in the United States. Held in January in Park City, Salt Lake City, and Ogden, as well as at the Sundance Resort, the festival is a showcase for new work from American and international independent filmmakers. The festival comprises competitive sections for American and international dramatic and documentary films, both feature-length films and short films, and a group of out-of-competition sections, including NEXT, New Frontier, Spotlight, and Park City At Midnight. The 2016 Sundance Film Festival took place January 21 to January 31, 2016.

    History

    Utah/US Film Festival

    Sundance began in Salt Lake City in August 1978, as the Utah/US Film Festival in an effort to attract more filmmakers to Utah. It was founded by Sterling Van Wagenen (then head of Wildwood, Robert Redford's company), John Earle, and Cirina Hampton Catania (both serving on the Utah Film Commission at the time). The 1978 festival featured films such as Deliverance, A Streetcar Named Desire, Midnight Cowboy, Mean Streets, and The Sweet Smell of Success. With chairman Robert Redford, and the help of Utah Governor Scott M. Matheson, the goal of the festival was to showcase strictly American-made films, highlight the potential of independent film, and to increase visibility for filmmaking in Utah. At the time, the main focus of the event was to conduct a competition for independent American films, present a series of retrospective films and filmmaker panel discussions, and to celebrate the Frank Capra Award. The festival also highlighted the work of regional filmmakers who worked outside the Hollywood system.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: sundance film festival

    Edit

    Developer plans 2,500-seat venue as Boulder preps for Sundance

    Daily Camera 17 Apr 2025
    The plans come as the Sundance Film Festival is set to debut in Boulder in 2027 after moving from its longtime home of Park City, Utah, The Dairy Arts Center’s Boedecker Theater in the Dairy Arts Center is pictured on May 20, 2023.
    Edit

    Utah independent film festivals eye growth, more awareness as Sundance heads east

    Provo Daily Herald 16 Apr 2025
    Like many Utahns, Marshall and Michelle Moore felt the pain when news of the Sundance Film Festival’s decision to relocate to Boulder, Colorado, in 2027 began to make the rounds last month.
    Edit

    ‘The Legend of Ochi’ Review: A24 Fantasy Adventure Is Lovingly Crafted Yet Oddly Inert

    The Wrap 16 Apr 2025
    The acclaimed music video director’s debut feature, which premiered back at the Sundance Film Festival and is produced by A24, does break the heart and pulls on plenty of its strings.
    Edit

    In 'The Wedding Banquet,' a queer landmark is reborn for today

    North Shore News 16 Apr 2025
    Made last year, “The Wedding Banquet” premiered at the Sundance Film Festival just a week after the inauguration of President Donald Trump ushered in new challenges for the LGBTQ community ... ‘This film is the most like me’.
    Edit

    In ‘The Wedding Banquet,’ a queer landmark is reborn for today

    News-Press Now 16 Apr 2025
    AP Film Writer ... Made last year, “The Wedding Banquet” premiered at the Sundance Film Festival just a week after the inauguration of President Donald Trump ushered in new challenges for the LGBTQ community ... ‘This film is the most like me’.
    Edit

    Bleecker Street acquires Josh O’Connor Sundance drama ‘Rebuilding’, mk2 boards sales

    Screen Daily 15 Apr 2025
    Bleecker Street has acquired US rights to the Sundance drama starring Josh ... debuted in the Premieres Section at Sundance and will open San Francisco International Film Festival on Thursday (April 17).
    Edit

    Bleecker Street takes US on Josh O’Connor Sundance drama ‘Rebuilding’, mk2 handling international sales

    Screen Daily 15 Apr 2025
    Bleecker Street has acquired US rights to the Sundance drama starring Josh ... debuted in the Premieres Section at Sundance and will open San Francisco International Film Festival on Thursday (April 17).
    Edit

    What to stream: With new releases this week, revisit movies of Ryan Coogler and Andrew Ahn

    The Spokesman-Review 15 Apr 2025
    The Sundance Film Festival launched the careers of both filmmakers ... Ahn’s debut feature “Spa Night,” which premiered at the 2016 Sundance Film Festival, is also set in his hometown of Los Angeles.
    Edit

    Bleecker Street Acquires U.S. Rights to Sundance Wildfire Drama ‘Rebuilding’

    The Wrap 15 Apr 2025
    The film premiered at Sundance this past January and will be the opening film of the San Francisco Film Festival this Thursday. O’Connor stars in the film as Dusty, a cowboy who loses his ranch to devastating wildfires.
    Edit

    Mass. Indie Film Fest returning to Southbridge, Worcester and online with 146 shorts, features

    Telegram & Gazette - Worcester 15 Apr 2025
    "Porcelain War," a documentary film directed by Brendan Bellomo and Slava Leontyev, won the 2024 Sundance Festival Grand Jury Prize and follows the experience of Ukrainian artists as their country is invaded by Russia.
    Edit

    ‘The grief takes your breath away’: how death transformed a loving family – and shaped ...

    The Guardian 15 Apr 2025
    The reluctant stars of A New Kind of Wilderness talk about a world without Maria ... The Paynes find themselves the reluctant stars of a film, A New Kind of Wilderness, which has won awards at Sundance and other festivals around the world ... ....
    Edit

    Vail Resorts leader stays rooted in community connection through a career in storytelling

    Park Record 15 Apr 2025
    Since arriving in Park City in 2016 to work in the Sundance Film Festival press office, Sara Huey has leaned into storytelling as a way to make a real difference ... “(The ski industry) is not like a film ...
    Edit

    Apple acquires Sundance Festival Favorite ‘Come See Me In The Good Light’

    Screen Daily 14 Apr 2025
    In a relatively rare foray into Sundance acquisitions, Apple Original Films has picked up Ryan White’s Festival Favorite audience award-winning documentary&nbsp;.
    Edit

    Apple TV+ Acquires Sundance Doc ‘Come See Me in the Good Light’

    The Wrap 14 Apr 2025
    Apple TV+ has acquired the global rights to the documentary “Come See Me in the Good Light,” which won the Festival Favorite Award at Sundance this past January ... White produced the film with Jessica Hargrave, Tig Notaro and Stef Willen.
    ×