'+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; })); }); -->

Independent film

An independent film or indie film is a film production resulting in a feature film that is produced mostly or completely outside of the major film studio system, in addition to being produced and distributed by independent entertainment agencies.

Independent films are sometimes distinguishable by their content and style and the way in which the filmmakers' personal artistic vision is realized. Usually, but not always, independent films are made with considerably lower budgets than major studio movies.

Generally, the marketing of independent films is characterized by limited release, but can also have major marketing campaigns and a wide release. Independent films are often screened at local, national, or international film festivals before distribution (theatrical or retail release). An independent film production can rival a mainstream film production if it has the necessary funding and distribution.

History

Edison Trust

In 1908, the Motion Picture Patents Company or "Edison Trust" was formed as a trust. The Trust was a cartel that held a monopoly on film production and distribution comprising all the major film companies of the time (Edison, Biograph, Vitagraph, Essanay, Selig, Lubin, Kalem, American Star, American Pathé), the leading distributor (George Kleine) and the biggest supplier of raw film, Eastman Kodak. A number of filmmakers declined to join or were refused into the trust and came to be described as "independent".

Podcasts:

  • The Wait - 1 Minute Short Film | Award Winning

    *** Please Subscribe for more content! *** Check out my new mini-series: https://www.youtube.com/watch?v=kO7BlRMjVfY Instagram : https://www.instagram.com/noltvut/ https://www.instagram.com/apoeminreverse/ https://www.instagram.com/morph_film/ "The Wait" (Written & Directed by Nolt Vutthisak) tells the story of a lonely drummer (Kritthee Visitkitjakarn) during the self-distancing period in 2020, who has grown frustrated with the absence of his band. Killing time, the self-taught drummer must do something by his own imagination. Written, Directed & Edited : Nolt Vutthisak Starring : Kritthee Visitkitjakarn Director of Photography : Ronapee Pensri Music by : Kritthee Visitkitjakarn, Korn Mahadumrongkul Mixed & Mastered by : Nolt Vutthisak Check out my Website : https://www.morphstudio.c...

    published: 27 May 2020
  • THE RAISIN (award-winning short film)

    A short film about a raisin. Written and directed by Rob Carter Produced by Sara Shulman and Tom Holloway Producer and DOP - Archie Brooksbank Starring Trevor Allan Davies and Helen Ryan WINNER of Best Foreign Short at LA Comedy Festival A Bladesman Production Editors - Rob Carter and Archie Brooksbank Production Designer - Chris Rosser Composers - Gabriel Chernick and Tom Recknell Unit Production Manager - Tom Holloway First Assistant Director - Tom Gordon Camera Assistant - George Pearton Sound Mixer - Frank Barlow Makeup and Prosthetics - Poppy Taylor Costume Designer - Chris Rosser Photographer - Kit Oates Location Scout - James Northcote Standby Props - Stephen Carter Sound Design - Ed Shaw Colourist - Chris Shaw SPK Videographer - Kit Oates Storyboard Artist - Dan Morison Catering...

    published: 30 Nov 2022
  • Superhit Malayalam Movie | Independence [ HD ] | Comedy Movie | Ft. Vani Viswanath, Jagathi

    Independence is a Malayalam fantasy film directed by Vinayan and starring Vani Viswanath, Khushbu, Kalabhavan Mani and Indraja in the lead roles.All lyrics are written by S. Ramesan Nair; all music is composed by Suresh Peters.The film was a commercial boxoffice hit.Two sisters disguise themselves as police officers to seek revenge against a corrupt politician, who ruined their family by killing their father. Two sisters disguise themselves as police officers to seek revenge against a corrupt politician, who ruined their family by killing their father.

    published: 26 Feb 2016
  • Top 10 Independent Movies of All Time | A CineFix Movie List

    It’s harder than you might think to pin down what it means to be an independent film. Is a true Indie one that’s made without money from the studios? If that’s the case then Terminator 2 and The Fellowship of the Ring are “indies” and Rushmore and Mean Streets are not. We’re digging in to some of the best indies in cinema history to find out exactly what defines independent cinema and there are at least (even though we’re sure there are more) 10 categories worth of defining traits, so here are our picks for the 10 best indies of all time. We could start by looking at indies that don’t have Sony or Disney or Warner Brothers anywhere in their company org charts, which would give us gems from Charlie Chaplin, Alfred Hitchcock with Rebecca on up to A24 and Bo Burnham with Eighth Grade. Or may...

    published: 15 Jun 2022
  • Shy High - Independent Films (Dir. @DanielJordanK)

    Shy High - Independent Films (Dir. @DanielJordanK) OFFICIAL MUSIC VIDEO Shy High is a rising artist from Oregon taking off on tiktok with Independent Films and Clam Chowder Follow Shy High on Socials https://www.instagram.com/shyhiigh/ Director - Daniel Jordan K https://fanlink.to/DanielJordanK Have an inquiry? Email me at danieljordank@gmail.com ------------------------------------------------- #shyhigh #independentfilms

    published: 10 Feb 2022
  • independent films

    Provided to YouTube by DistroKid independent films · Shy High · Nevi A Sanger independent films ℗ MUSH Released on: 2021-11-19 Auto-generated by YouTube.

    published: 18 Nov 2021
  • Independence Day Resurgence 2016 720p

    published: 28 Feb 2022
  • How A24 took over Hollywood

    They went from solely distributing uncut indie gems to getting everything they made everywhere all at once Subscribe and turn on notifications 🔔 so you don't miss any videos: http://goo.gl/0bsAjO When you think back on your favorite movies, you might think about their famous directors or actors. But recently, a new name has become synonymous with indie film culture and appeal, and it’s not an individual, but a studio. You have to admit, their logo is pretty cool. A24 swept the 2022 Oscars. They’ve made some of the most distinct and interesting movies and TV shows of the past 10 years. But most importantly, they’ve garnered a reputation for quality — and their brand loyalty so strong that hipster film bros everywhere are wearing A24 t-shirts and caps right now. But unlike Universal o...

    published: 12 May 2023
  • HUSSLUP Webinar: Show Us The Money - How to Get Independent Film Financing

    published: 27 Aug 2024
  • How Much Money Do Independent Movies Make? - Glen Reynolds

    Glen Reynolds founded Circus Road Films in 2006 to provide strategic advisory services to filmmakers. Circus Road guides filmmakers through the festival and distribution process and negotiates licensing agreements on their behalf. Glen has participated in the sales of over 900 narrative and documentary feature films with many of them premiering at Sundance, Slamdance, SXSW, Cinequest, Tribeca, Hot Docs, Fantastic, Telluride and Toronto. Distributors of these films include Fox, Sony, Warner Bros, Universal, Lions Gate, Magnolia, IFC, Strand, Oscilloscope, Drafthouse, Netflix, Hulu, HBO, Showtime, Starz, Lifetime, ESPN and Syfy.   Some favorite films sold include the first films of some successful filmmakers such as Absentia, written and directed by Mike Flanagan (Midnight Mass); Pop Skull, ...

    published: 25 Sep 2022
The Wait  - 1 Minute Short Film | Award Winning
1:00

The Wait - 1 Minute Short Film | Award Winning

  • Order:
  • Duration: 1:00
  • Uploaded Date: 27 May 2020
  • views: 4227283
*** Please Subscribe for more content! *** Check out my new mini-series: https://www.youtube.com/watch?v=kO7BlRMjVfY Instagram : https://www.instagram.com/noltvut/ https://www.instagram.com/apoeminreverse/ https://www.instagram.com/morph_film/ "The Wait" (Written & Directed by Nolt Vutthisak) tells the story of a lonely drummer (Kritthee Visitkitjakarn) during the self-distancing period in 2020, who has grown frustrated with the absence of his band. Killing time, the self-taught drummer must do something by his own imagination. Written, Directed & Edited : Nolt Vutthisak Starring : Kritthee Visitkitjakarn Director of Photography : Ronapee Pensri Music by : Kritthee Visitkitjakarn, Korn Mahadumrongkul Mixed & Mastered by : Nolt Vutthisak Check out my Website : https://www.morphstudio.co/ My Gears : Sony a7 III https://amzn.to/3Nl5JiL Sony FE 50mm F1.8 Standard Lens https://amzn.to/43wUtFC #shortfilm #short #morphfilm #morphstudio #filmphotography #advertising #creative #film #creativeagency #production #filmproduction #Indiefilm #Independentfilm #filmmaker
https://wn.com/The_Wait_1_Minute_Short_Film_|_Award_Winning
THE RAISIN (award-winning short film)
9:17

THE RAISIN (award-winning short film)

  • Order:
  • Duration: 9:17
  • Uploaded Date: 30 Nov 2022
  • views: 1393875
A short film about a raisin. Written and directed by Rob Carter Produced by Sara Shulman and Tom Holloway Producer and DOP - Archie Brooksbank Starring Trevor Allan Davies and Helen Ryan WINNER of Best Foreign Short at LA Comedy Festival A Bladesman Production Editors - Rob Carter and Archie Brooksbank Production Designer - Chris Rosser Composers - Gabriel Chernick and Tom Recknell Unit Production Manager - Tom Holloway First Assistant Director - Tom Gordon Camera Assistant - George Pearton Sound Mixer - Frank Barlow Makeup and Prosthetics - Poppy Taylor Costume Designer - Chris Rosser Photographer - Kit Oates Location Scout - James Northcote Standby Props - Stephen Carter Sound Design - Ed Shaw Colourist - Chris Shaw SPK Videographer - Kit Oates Storyboard Artist - Dan Morison Catering - Anson & Curtis Camera Equipment - Cameraworks Transport - Kendall Cars Poster design by Rebecca Pitt Special Thanks: Amy Lord Joanna Griffin Mark Maughan Nicholai Saalfeld Duchy of Cornwall Estate The Squirrel Filmed on location at Dartmoor National Park, UK
https://wn.com/The_Raisin_(Award_Winning_Short_Film)
Superhit Malayalam Movie | Independence [ HD ] | Comedy Movie | Ft. Vani Viswanath, Jagathi
2:25:13

Superhit Malayalam Movie | Independence [ HD ] | Comedy Movie | Ft. Vani Viswanath, Jagathi

  • Order:
  • Duration: 2:25:13
  • Uploaded Date: 26 Feb 2016
  • views: 2816509
Independence is a Malayalam fantasy film directed by Vinayan and starring Vani Viswanath, Khushbu, Kalabhavan Mani and Indraja in the lead roles.All lyrics are written by S. Ramesan Nair; all music is composed by Suresh Peters.The film was a commercial boxoffice hit.Two sisters disguise themselves as police officers to seek revenge against a corrupt politician, who ruined their family by killing their father. Two sisters disguise themselves as police officers to seek revenge against a corrupt politician, who ruined their family by killing their father.
https://wn.com/Superhit_Malayalam_Movie_|_Independence_Hd_|_Comedy_Movie_|_Ft._Vani_Viswanath,_Jagathi
Top 10 Independent Movies of All Time | A CineFix Movie List
18:56

Top 10 Independent Movies of All Time | A CineFix Movie List

  • Order:
  • Duration: 18:56
  • Uploaded Date: 15 Jun 2022
  • views: 372772
It’s harder than you might think to pin down what it means to be an independent film. Is a true Indie one that’s made without money from the studios? If that’s the case then Terminator 2 and The Fellowship of the Ring are “indies” and Rushmore and Mean Streets are not. We’re digging in to some of the best indies in cinema history to find out exactly what defines independent cinema and there are at least (even though we’re sure there are more) 10 categories worth of defining traits, so here are our picks for the 10 best indies of all time. We could start by looking at indies that don’t have Sony or Disney or Warner Brothers anywhere in their company org charts, which would give us gems from Charlie Chaplin, Alfred Hitchcock with Rebecca on up to A24 and Bo Burnham with Eighth Grade. Or maybe it’s just an vibe in the subject matter, Call Me By Your Name, En Bruge, Adaptation, they all FEEL indie, but had major studio money behind them. Perhaps, it’s a fresh and new style and structure, something that’s truly unique in the vein of Pulp Fiction or Moonlight. The point here is, “indie” is a near impossible thing to define, but you’ll know it when you see it! This Movie List was written and edited by Billy Jackson. The Picks 10 - Indie Studio - Reservoir Dogs (1992) dir. Quentin Tarantino 9 - Studios Indie Division - Lost in Translation (2003) dir. Sofia Coppola 8 - Exclusively Self Funded - Night of the Living Dead (1968) dir. George A. Romero 7 - Low Budget - Slacker (1990) dir. Richard Linklater 6 - Indie out of Sundance - Sex, Lies and Videotape (1989) dir. Stephen Soderbergh 5 - Indie By Audience It’s Made For - Killer of Sheep (1978) dir. Charles Burnett 4 - Indie By Subject Matter - Pink Flamingos (1972) dir. John Waters 3 - Indie By Style - Easy Rider (1969) dir. Dennis Hopper 2 - Indie By Structure - Memento (2000) dir. Christopher Nolan 1 - Something Utterly New - Shadows (1959) dir. John Cassavetes For more tangentially related CineFix - IGN Movies and TV, be sure to subscribe AND check these out! 5 Brilliant Moments of David Cronenberg Body Horror - https://youtu.be/ii4gUB3-dZo How The Daniels Made Kindness as Thrilling as John Wick for the multiverse of Everything Everywhere All At Once - https://www.youtube.com/watch?v=jJgzrPUGRh8 The Green Knight, David Lowery and a Unique Obsession with Myth - https://www.youtube.com/watch?v=jEfDu2s7G5I&t=84s The Rocky Horror Picture Show and 10 of the Best Musicals of All Time - https://youtu.be/uT_fK5bpAfw Interstellar, Tenet and A Brief History of Christopher Nolan and Time - https://www.youtube.com/watch?v=pLrvo1ab4XM&t=80s How Sean Baker became America’s Neo-Realist with Red Rocket - https://youtu.be/ei8OOVeB1mQ
https://wn.com/Top_10_Independent_Movies_Of_All_Time_|_A_Cinefix_Movie_List
Shy High - Independent Films (Dir. @DanielJordanK)
2:31

Shy High - Independent Films (Dir. @DanielJordanK)

  • Order:
  • Duration: 2:31
  • Uploaded Date: 10 Feb 2022
  • views: 93829
Shy High - Independent Films (Dir. @DanielJordanK) OFFICIAL MUSIC VIDEO Shy High is a rising artist from Oregon taking off on tiktok with Independent Films and Clam Chowder Follow Shy High on Socials https://www.instagram.com/shyhiigh/ Director - Daniel Jordan K https://fanlink.to/DanielJordanK Have an inquiry? Email me at danieljordank@gmail.com ------------------------------------------------- #shyhigh #independentfilms
https://wn.com/Shy_High_Independent_Films_(Dir._Danieljordank)
independent films
2:20

independent films

  • Order:
  • Duration: 2:20
  • Uploaded Date: 18 Nov 2021
  • views: 243164
Provided to YouTube by DistroKid independent films · Shy High · Nevi A Sanger independent films ℗ MUSH Released on: 2021-11-19 Auto-generated by YouTube.
https://wn.com/Independent_Films
Independence Day Resurgence 2016 720p
1:59:45

Independence Day Resurgence 2016 720p

  • Order:
  • Duration: 1:59:45
  • Uploaded Date: 28 Feb 2022
  • views: 2194556
https://wn.com/Independence_Day_Resurgence_2016_720P
How A24 took over Hollywood
9:56

How A24 took over Hollywood

  • Order:
  • Duration: 9:56
  • Uploaded Date: 12 May 2023
  • views: 2378188
They went from solely distributing uncut indie gems to getting everything they made everywhere all at once Subscribe and turn on notifications 🔔 so you don't miss any videos: http://goo.gl/0bsAjO When you think back on your favorite movies, you might think about their famous directors or actors. But recently, a new name has become synonymous with indie film culture and appeal, and it’s not an individual, but a studio. You have to admit, their logo is pretty cool. A24 swept the 2022 Oscars. They’ve made some of the most distinct and interesting movies and TV shows of the past 10 years. But most importantly, they’ve garnered a reputation for quality — and their brand loyalty so strong that hipster film bros everywhere are wearing A24 t-shirts and caps right now. But unlike Universal or Paramount, studios that have been around for over a century, A24 has done this in just over a decade. How did this independent film distributor transform into a major player in the entertainment industry in such a short time? In this Vox Video, Nate Jones (senior writer at Vulture, and A24 obsessor) breaks down their history, and stratospheric rise to the top. Read more of Nate's writing on Vulture: https://www.vulture.com/article/a24-movies-ranked.html https://www.vulture.com/article/a24-movies-cult.html Check out more from A24: https://a24films.com/films https://a24films.com/television Make sure you never miss behind the scenes content in the Vox Video newsletter, sign up here: http://vox.com/video-newsletter Vox is an explanatory newsroom on a mission to help everyone understand our weird, wonderful, complicated world, so that we can all help shape it. Part of that mission is keeping our work free. You can help us do that by making a gift: http://www.vox.com/contribute-now Watch our full video catalog: http://goo.gl/IZONyE Follow Vox on TikTok: http://tiktok.com/@voxdotcom Check out our articles: https://www.vox.com/ Listen to our podcasts: https://www.vox.com/podcasts
https://wn.com/How_A24_Took_Over_Hollywood
HUSSLUP Webinar: Show Us The Money - How to Get Independent Film Financing
46:53

HUSSLUP Webinar: Show Us The Money - How to Get Independent Film Financing

  • Order:
  • Duration: 46:53
  • Uploaded Date: 27 Aug 2024
  • views: 100
https://wn.com/Husslup_Webinar_Show_US_The_Money_How_To_Get_Independent_Film_Financing
How Much Money Do Independent Movies Make? - Glen Reynolds
11:05

How Much Money Do Independent Movies Make? - Glen Reynolds

  • Order:
  • Duration: 11:05
  • Uploaded Date: 25 Sep 2022
  • views: 56464
Glen Reynolds founded Circus Road Films in 2006 to provide strategic advisory services to filmmakers. Circus Road guides filmmakers through the festival and distribution process and negotiates licensing agreements on their behalf. Glen has participated in the sales of over 900 narrative and documentary feature films with many of them premiering at Sundance, Slamdance, SXSW, Cinequest, Tribeca, Hot Docs, Fantastic, Telluride and Toronto. Distributors of these films include Fox, Sony, Warner Bros, Universal, Lions Gate, Magnolia, IFC, Strand, Oscilloscope, Drafthouse, Netflix, Hulu, HBO, Showtime, Starz, Lifetime, ESPN and Syfy.   Some favorite films sold include the first films of some successful filmmakers such as Absentia, written and directed by Mike Flanagan (Midnight Mass); Pop Skull, written and directed by Adam Wingard (Godzilla vs Kong); and Newlyweeds, written and directed by Shaka King. (Judas and the Black Messiah).   Recent work includes Clean (Tribeca/IFC) with Adrien Brody, My Dead Dad and 18½ with Willa Fitzgerald (101 Films).   Glen has also co-produced twenty films to date including his favorite Conversations with Other Women which premiered at Telluride and stars Aaron Eckhart, Helena Bonham Carter, and Olivia Wilde.  Other great production experiences include developing two projects with Craig Brewer (Hustle & Flow) and co-producing five films with Ram Bergman (Knives Out, Star Wars: The Last Jedi).   Glen holds a JD from the University of Texas at Austin, a BA in English from NYU and is a graduate of the Neighborhood Playhouse in New York. He serves as a judge for the UCLA Screenwriting Competition and on the jury for the Woods Hole Film Festival. MORE VIDEOS WITH GLEN REYNOLDS https://bit.ly/3idqRHf CONNECT WITH GLEN REYNOLDS http://www.circusroadfilms.com https://www.instagram.com/circusroadfilms https://www.facebook.com/filmsales https://twitter.com/CircusRoadFilms RELATED VIDEOS Harsh Truths About Selling A Movie - https://youtu.be/BBln8XndIs0 What Filmmakers Don't Understand About Distribution - https://youtu.be/8JR0CI_iauo 3 Ways Distributors Rip Off Filmmakers - https://youtu.be/Qh-viRcgYhk Beginners Guide To Working With A Movie Distributor - https://youtu.be/ihyRkSh7UBI Why Filmmakers Get Ripped Off By Film Distributors - https://youtu.be/IiLdKCYlS1M 3 Things Filmmakers Should Know About Distributors - https://youtu.be/JBQDc3kfhEk (Affiliates) ►WE USE THIS CAMERA (B&H) – https://buff.ly/3rWqrra ►WE USE THIS EDITING PROGRAM (ADOBE) – https://goo.gl/56LnpM ►WE USE THIS SOUND RECORDER (AMAZON) – http://amzn.to/2tbFlM9 ►WRITERS, TRY FINAL DRAFT FREE FOR 30-DAYS! (FINAL DRAFT) - http://ow.ly/Gz4w30rDSKt BOOKS WE RECOMMEND https://buff.ly/3o0oE5o SUPPORT FILM COURAGE BY BECOMING A MEMBER https://www.youtube.com/channel/UCs8o1mdWAfefJkdBg632_tg/join CONNECT WITH FILM COURAGE http://www.FilmCourage.com http://twitter.com/#!/FilmCourage https://www.facebook.com/filmcourage https://www.instagram.com/filmcourage http://filmcourage.tumblr.com http://pinterest.com/filmcourage SUBSCRIBE TO THE FILM COURAGE YOUTUBE CHANNEL http://bit.ly/18DPN37 LISTEN TO THE FILM COURAGE PODCAST https://soundcloud.com/filmcourage-com Stuff we use: LENS - Most people ask us what camera we use, no one ever asks about the lens which filmmakers always tell us is more important. This lens was a big investment for us and one we wish we could have made sooner. Started using this lens at the end of 2013 - http://amzn.to/2tbtmOq AUDIO Rode VideoMic Pro - The Rode mic helps us capture our backup audio. It also helps us sync up our audio in post http://amzn.to/2t1n2hx Audio Recorder - If we had to do it all over again, this is probably the first item we would have bought - http://amzn.to/2tbFlM9 LIGHTS - Although we like to use as much natural light as we can, we often enhance the lighting with this small portable light. We have two of them and they have saved us a number of times - http://amzn.to/2u5UnHv COMPUTER - Our favorite computer, we each have one and have used various models since 2010 - http://amzn.to/2t1M67Z EDITING - We upgraded our editing suite this year and we’re glad we did! This has improved our workflow and the quality of our work. Having new software also helps when we have a problem, it’s easy to search and find a solution - https://goo.gl/56LnpM *These are affiliate links, by using them you can help support this channel. #film #movies #filmmaking
https://wn.com/How_Much_Money_Do_Independent_Movies_Make_Glen_Reynolds
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Wait  - 1 Minute Short Film | Award Winning
    1:00
    The Wait - 1 Minute Short Film | Award Winningremove from playlist
  • THE RAISIN (award-winning short film)
    9:17
    THE RAISIN (award-winning short film)remove from playlist
  • Superhit Malayalam Movie | Independence [ HD ] | Comedy Movie | Ft. Vani Viswanath, Jagathi
    2:25:13
    Superhit Malayalam Movie | Independence [ HD ] | Comedy Movie | Ft. Vani Viswanath, Jagathiremove from playlist
  • Top 10 Independent Movies of All Time | A CineFix Movie List
    18:56
    Top 10 Independent Movies of All Time | A CineFix Movie Listremove from playlist
  • Shy High - Independent Films (Dir. @DanielJordanK)
    2:31
    Shy High - Independent Films (Dir. @DanielJordanK)remove from playlist
  • independent films
    2:20
    independent filmsremove from playlist
  • How A24 took over Hollywood
    9:56
    How A24 took over Hollywoodremove from playlist
  • How Much Money Do Independent Movies Make? - Glen Reynolds
    11:05
    How Much Money Do Independent Movies Make? - Glen Reynoldsremove from playlist
PLAYLIST TIME: 0:00 / 6:06:56

The Wait - 1 Minute Short Film | Award Winning

*** Please Subscribe for more content! *** Check out my new mini-series: https://www.youtube.com/watch?v=kO7BlRMjVfY Instagram : https://www.instagram.com/noltvut/ https://www.instagram.com/apoeminreverse/ https://www.instagram.com/morph_film/ "The Wait" (Written & Directed by Nolt Vutthisak) tells the story of a lonely drummer (Kritthee Visitkitjakarn) during the self-distancing period in 2020, who has grown frustrated with the absence of his band. Killing time, the self-taught drummer must do something by his own imagination. Written, Directed & Edited : Nolt Vutthisak Starring : Kritthee Visitkitjakarn Director of Photography : Ronapee Pensri Music by : Kritthee Visitkitjakarn, Korn Mahadumrongkul Mixed & Mastered by : Nolt Vutthisak Check out my Website : https://www.morphstudio.co/ My Gears : Sony a7 III https://amzn.to/3Nl5JiL Sony FE 50mm F1.8 Standard Lens https://amzn.to/43wUtFC #shortfilm #short #morphfilm #morphstudio #filmphotography #advertising #creative #film #creativeagency #production #filmproduction #Indiefilm #Independentfilm #filmmaker
1:00
The Wait - 1 Minute Short Film | Award Winning
*** Please Subscribe for more content! *** Check out my new mini-series: https://www.youtu...
published: 27 May 2020
Play in Full Screen
9:17
THE RAISIN (award-winning short film)
A short film about a raisin. Written and directed by Rob Carter Produced by Sara Shulman ...
published: 30 Nov 2022
Play in Full Screen
2:25:13
Superhit Malayalam Movie | Independence [ HD ] | Comedy Movie | Ft. Vani Viswanath, Jagathi
Independence is a Malayalam fantasy film directed by Vinayan and starring Vani Viswanath, ...
published: 26 Feb 2016
Play in Full Screen
18:56
Top 10 Independent Movies of All Time | A CineFix Movie List
It’s harder than you might think to pin down what it means to be an independent film. Is a...
published: 15 Jun 2022
Play in Full Screen
2:31
Shy High - Independent Films (Dir. @DanielJordanK)
Shy High - Independent Films (Dir. @DanielJordanK) OFFICIAL MUSIC VIDEO Shy High is a ris...
published: 10 Feb 2022
Play in Full Screen
2:20
independent films
Provided to YouTube by DistroKid independent films · Shy High · Nevi A Sanger independen...
published: 18 Nov 2021
Play in Full Screen
1:59:45
Independence Day Resurgence 2016 720p
published: 28 Feb 2022
Play in Full Screen
9:56
How A24 took over Hollywood
They went from solely distributing uncut indie gems to getting everything they made everyw...
published: 12 May 2023
Play in Full Screen
46:53
HUSSLUP Webinar: Show Us The Money - How to Get Independent Film Financing
published: 27 Aug 2024
Play in Full Screen
11:05
How Much Money Do Independent Movies Make? - Glen Reynolds
Glen Reynolds founded Circus Road Films in 2006 to provide strategic advisory services to ...
published: 25 Sep 2022
Play in Full Screen

Independent film

An independent film or indie film is a film production resulting in a feature film that is produced mostly or completely outside of the major film studio system, in addition to being produced and distributed by independent entertainment agencies.

Independent films are sometimes distinguishable by their content and style and the way in which the filmmakers' personal artistic vision is realized. Usually, but not always, independent films are made with considerably lower budgets than major studio movies.

Generally, the marketing of independent films is characterized by limited release, but can also have major marketing campaigns and a wide release. Independent films are often screened at local, national, or international film festivals before distribution (theatrical or retail release). An independent film production can rival a mainstream film production if it has the necessary funding and distribution.

History

Edison Trust

In 1908, the Motion Picture Patents Company or "Edison Trust" was formed as a trust. The Trust was a cartel that held a monopoly on film production and distribution comprising all the major film companies of the time (Edison, Biograph, Vitagraph, Essanay, Selig, Lubin, Kalem, American Star, American Pathé), the leading distributor (George Kleine) and the biggest supplier of raw film, Eastman Kodak. A number of filmmakers declined to join or were refused into the trust and came to be described as "independent".

'); } 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: independent film

Edit

Her POV: Spotlighting landmark independent films directed by Black women

Stanford Daily 04 Apr 2025
In recent years,&nbsp;several newcomers have made their feature film debuts. Filmmaker Julie Dash and founder of the Black Film Archive, Maya Cade, have been instrumental in restoring and re-releasing independent films made by Black directors.
Edit

Film by 2 Broomfield brothers to debut this summer

Daily Camera 04 Apr 2025
With small amounts of sleep and a big commitment to not give up on their dreams, two Broomfield brothers are debuting their first feature film this summer ... feature film, “The Corner.”.
Edit

Clio Barnard’s ‘I See Buildings Fall Like Lightning’ starts UK shoot

Screen Daily 04 Apr 2025
Further backing comes from&nbsp;Ali Jazayeri and Keith Kehoe’s US-based independent film financier TPC... Barnard’s previous feature, , was Bafta- nominated for the  Outstanding British Film award in 2022.
Edit

Top-rated Cinema Columbus Film Festival to showcase indie-screen scene

The Columbus Dispatch 04 Apr 2025
Cinema Columbus Film Festival will be presented from April 30-May 4 at seven venues around the city.The festival, presented by CAPA, showcases works by indie filmmakers that celebrate diverse people and stories ... on May 3Gateway Film Center.
Edit

World's coolest architecture stars in Phoenix indie film fest. Here's how to see it

Azcentral 04 Apr 2025
No Festival Required Independent Cinema is hosting the annual Arizona Architectural Film Showcase in April in downtown Phoenix. The showcase will present three architecture films over three nights, with a different venue for each screening.
Edit

Qumra 2025 public screenings from today at Museum of Islamic Art

The Peninsula 04 Apr 2025
A still from the film "East of Noon" ... Qumra 2025 includes seven critically acclaimed feature films supported by DFI representing the most prominent, bold, and distinctive voices in independent cinema.
Edit

‘The White Lotus’ Season 3 finale is near. Here’s a cheat sheet

The Los Angeles Times 04 Apr 2025
A cutting-edge film festival returns, shining a light on two lost works. For the second edition of the local festival, two independent films from 1981, Jessie Maple’s “Will” and Robina Rose’s “Nightshift,” receive belated attention.
Edit

Who Is Emily Ratajkowski’s Ex-Husband? Sebastian Bear-McClard’s Job & Kids

Coming Soon 04 Apr 2025
Sebastian Bear-McClard works as a film producer and actor ... His movie Good Time earned several nominations at the Gotham Independent Film Awards, including Best Feature Film.
Edit

Two local festivals launch for their second year, plus the week’s best films in L.A.

The Los Angeles Times 04 Apr 2025
... focused on the two restorations in the lineup, both from 1981, Jessie Maple’s “Will” and Robina Rose’s “Nightshift.” Maple was among the first Black women to direct an independent feature film.
Edit

Bollywood icon Manoj Kumar's top seven influential and memorable Indian films of his career

Gulf News 04 Apr 2025
While the actor, who died earlier today at 87, bows out here's a look at seven of his most influential films in his career ... Manoj Kumar didn't just direct this film; he embodied Bharat, the farmer-soldier who made self-sacrifice look heroic.
Edit

Amol Palekar: “The middle ground is shrinking”

Hindustan Times 04 Apr 2025
Beyond the endearing “boy next door” characters, I successfully portrayed complexity and depth in films like Bhoomika, Akriet, and Khamosh ... Viewers are gravitating towards either blockbuster franchises, or niche/ independent films.
Edit

Meet the Des Moines native who produced the movie 'Bob Trevino Likes It'

Des Moines Register 04 Apr 2025
"Bob Trevino Likes It" director/writer Tracie Laymon shared that her film was inspired by her own experience trying to find her father online ... With 10 years of experience in the film industry, the story "Bob Trevino Likes It" caught Rosa's eye.
×