<!DOCTYPE html>
<html  ng-app="vpModule" ng-controller="VPController">
<head>
   <meta charset="utf-8"/>
   <meta name="viewport" content="width=1200">
   <meta name="msvalidate.01" content="AF86D6C94D0294C6DCFF4C02777B9787" />
   
   <link rel="stylesheet" href="/st/css/main.css">
   <link rel="stylesheet" href="/st/css/common.css">
   
   <link rel="stylesheet" href="https://vjs.zencdn.net/4.5/video-js.css">
   
   <script  src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
   <script  src="/st/js/o/easing.js"></script>
   
   <link rel="apple-touch-icon" sizes="57x57" href="/st/fav/apple-touch-icon-57x57.png">
   <link rel="apple-touch-icon" sizes="114x114" href="/st/fav/apple-touch-icon-114x114.png">
   <link rel="apple-touch-icon" sizes="72x72" href="/st/fav/apple-touch-icon-72x72.png">
   <link rel="apple-touch-icon" sizes="144x144" href="/st/fav/apple-touch-icon-144x144.png">
   <link rel="apple-touch-icon" sizes="60x60" href="/st/fav/apple-touch-icon-60x60.png">
   <link rel="apple-touch-icon" sizes="120x120" href="/st/fav/apple-touch-icon-120x120.png">
   <link rel="apple-touch-icon" sizes="76x76" href="/st/fav/apple-touch-icon-76x76.png">
   <link rel="apple-touch-icon" sizes="152x152" href="/st/fav/apple-touch-icon-152x152.png">
   <meta name="apple-mobile-web-app-title" content="Videopixie">
   <link rel="icon" type="image/png" href="/st/fav/favicon-196x196.png" sizes="196x196">
   <link rel="icon" type="image/png" href="/st/fav/favicon-160x160.png" sizes="160x160">
   <link rel="icon" type="image/png" href="/st/fav/favicon-96x96.png" sizes="96x96">
   <link rel="icon" type="image/png" href="/st/fav/favicon-16x16.png" sizes="16x16">
   <link rel="icon" type="image/png" href="/st/fav/favicon-32x32.png" sizes="32x32">
   <meta name="msapplication-TileColor" content="#ffffff">
   <meta name="msapplication-TileImage" content="/st/fav/mstile-144x144.png">
   <meta name="application-name" content="Videopixie">
   
   
   
   <title>Best Kickstarter Video Production Companies | Videopixie</title>
   <meta name="description" content="As of 2016, these are the best Kickstarter video production companies in the world.  They&#39;ve helped raise $50M+ over the years.  And based on data from hundreds of crowdfunding campaigns, these video production companies ranked highest in terms of quality, results and value.">
   <link rel="stylesheet" href="/st/css/creator_list.css"/>
   
   <script>
   
      var angularTemplate = '';
      var allProfiles = [];
   
   </script>
   

      
   <link href='//fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
   <link href='//fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
   
   <script  src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.min.js"></script>
   <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular-animate.min.js"></script>
   
   <script>
      window.SES={};
      SES.is_dev_enviro = false;
      SES.coupon_unavailable = false;

      var vpModule = angular.module('vpModule', ['ngAnimate',]);
       
   </script>
   
  
   
   <script src="/st/build/vjs.4.5.min.js"></script>
   
   <!--
      <script type="text/javascript" src="/st/build/vjs-extra.concat.js"></script>
   -->
   <script  src="/st/build/vjs-extra.min.js"></script>
   
   <script  src="/st/js/o/common.js"></script>
   <script  src="/st/js/c/VPController.js"></script>
   <script  src="/st/js/c/DirectivesCommon.js"></script>
   <script  src="/st/js/c/MediaModalController.js"></script>
   <script  src="/st/js/c/EditorProfileController.js"></script>
   <script>
      
   var log = VPL('HomePageController');
      
   
   vpModule.controller('HomePageController', ['$scope', 'comm', '$http', 
      function($scope, comm, $http){
      
         $scope.mediaClick = function(id, evt, _options, size){
         
            log.d('mediaClick', _options);

            var content = $(evt.currentTarget).children('.about').eq(0).html()
            var options = _options || {}
            
            comm.broadcast(VP.SHOW_MEDIA,{
               mode: (content ? VP.SIDEBAR_MODES.HTML_MODE : VP.SIDEBAR_MODES.ASSET_MODE),
               htmlSidebarContent: content,
               mediaData: {
                  bucket: options.bucket || "our.s3.videopixie.com/examples/",
                  provider: options.provider || "",
                  provider_id: id,
                  file_extension: 'mp4', 
                  hasWebm: true,
                  overlays: options.overlays || null,
                  format: options.format || null
               },
               size: size
            });
         };
         
         $scope.homepageVideo = function(id,evt){
         
            $scope.mediaClick(id, evt, {
               bucket: 'our.s3.videopixie.com/video/',
               format: '704p'
            },
            {
               width: 1024,
               height: 576,
               media_width: 1024,
               media_height: 576
            });
         }
         
         
         $scope.$watch('MediaModal',function(isPlaying){
         
            window.isPlayingVideo = !!isPlaying;
         });
         
         
         $scope.registerNew = function(){
         
            var path = '/register/new';
            
            if (!$scope.registerNewEmailAddress || $scope.registerNewEmailAddress.length < 3){
               return;
            }
            
            var data = {
               email_address: $scope.registerNewEmailAddress,
               type_context: SES.type_context || ''
            };
            
            $scope.registerNewPending = true;
            $scope.registerNewErrorMsg = null;
           
            $http.post(path, data).then(
               function registerNewSuccess(response){
                  log.d('SUCCESS', path);
                  $scope.registerNewComplete = true;
                  $scope.registerNewPending = false;
               },
               function registerNewError(response){
                  log.d('ERROR', path, response);
                  $scope.registerNewErrorMsg = response.data.error.human;
                  $scope.registerNewPending = false;
               }
            );
            
         
         }

         
         
      }]);
      
      
      
      $(document).ready(function(){
         $('.click-proxy').click(function(evt){
         
            var id = $(evt.currentTarget).attr('click-proxy');
            //console.log('click-proxy', id);
            $('#'+id).triggerHandler('click');
            
         });
         
         (function(d, s, id) {
           var js, fjs = d.getElementsByTagName(s)[0];
           if (d.getElementById(id)) return;
           js = d.createElement(s); js.id = id;
           js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=257876044244230";
           fjs.parentNode.insertBefore(js, fjs);
         }(document, 'script', 'facebook-jssdk'));
      
      });

   </script>

   
   <!-- start Mixpanel -->
   <script type="text/javascript">
    (function(c,a){window.mixpanel=a;var b,d,h,e;b=c.createElement("script");
    b.type="text/javascript";b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+
    '//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';d=c.getElementsByTagName("script")[0];
    d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){
    var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(
    Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?g=a[f]=[]:
    f="mixpanel";g.people=g.people||[];h=['disable','track','track_pageview','track_links',
    'track_forms','register','register_once','unregister','identify','alias','name_tag',
    'set_config','people.set','people.increment','people.track_charge','people.append'];
    for(e=0;e<h.length;e++)d(g,h[e]);a._i.push([b,c,f])};a.__SV=1.2;})(document,window.mixpanel||[]);
    mixpanel.init("");
   </script>
   <!-- end Mixpanel -->
   
   
   <script type="text/javascript" src="/st/js/v/ses_mixpanel.js"></script>
   
   <!--[if lt IE 7.]>
      <script defer type="text/javascript" src="st/pngfix.js"></script>
   <![endif]-->
   
   <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

      ga('create', 'UA-42918769-1', 'videopixie.com');
      ga('require', 'displayfeatures');
      ga('send', 'pageview');
      
      var referrerCookieName = 'vpFirstReferrer';
      if (!readCookie(referrerCookieName)){
         var ref = document.referrer || 'empty';
         createCookie(referrerCookieName , ref ,365*2);
      }
   </script>
  
   
   
   <script  src="/st/js/nm/VideoCreators.js"></script>
   <link href='https://fonts.googleapis.com/css?family=Open+Sans:400italic' rel='stylesheet' type='text/css'>

   

  
</head>
<body class="VP"  ng-controller="HomePageController">
   
   <div id="header">
      <a href="/"><img id="logo" src="/st/images/logo_text_and_pixie.png" alt="Videopixie"></a>
      <a id="phone" href="tel:1 800 510 6570">1 (800) 510-6570</a>
      
      
      
         
         
         
         
      
      
      
      <a class="right-link" href="/pricing">Pricing</a>
      <a class="right-link" href="/video-school">Video School</a>
      <a class="right-link browse-link browse-link-first" href="/videographers">Videographers</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-animators">Animators</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-editors">Browse:&nbsp; Video editors</a>
      
   </div>
   
   
   


   <div id="hero" 
      >
   
      <h1>Top 20 Kickstarter Video Production Companies</h1>
      <h2>Videopixie helps you hire the best Kickstarter Video Production Companies for your budget</h2>
      
      <div class="buttonWrapper">
         <a href="/start"><div class="button">Start getting quotes today</div></a>
      </div>
      
   </div>
   
   <div id="relatedWrapper">
      
      <a class="related" href="/san-francisco-kickstarter-video-production-companies">San Francisco Kickstarter Video Production</a>
      
      <a class="related" href="/los-angeles-kickstarter-video-production-companies">Los Angeles Kickstarter Video Production</a>
      
      <a class="related" href="/seattle-kickstarter-video-production-companies">Seattle Kickstarter Video Production</a>
      
      <a class="related" href="/new-york-kickstarter-video-production">New York Kickstarter Video Production</a>
      
   </div>

   <div id="creatorsList" class="content" ng-controller="CreatorListController">
      
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/GlassMarker__zUZ5UKc7RkCHXVMZwjj8yw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/GlassMarker">   
                  <h3>
                     Glass & Marker
                     <span>Kickstarter video production company in </span>
                     <span class="location">Oakland, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">At Glass and Marker, our goal is to help brands - large and small - reach people emotionally, through beautiful cinematography, polished visual effects, and slick animation.   Glass &amp; Marker specializes in storytelling by creating strategic visual content that is tailored to meet the exact needs of our clients.  It doesn’t matter if it&#39;s a crowdfunding video, an internal corporate animation, or an IPO roadshow video, G&amp;M can do it all, and do it all well.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="195836158" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/608156775_1280.jpg)"></div>
                     <img class="play" alt="Occipital Canvas Product Video Tags:  Crowdfunding, Hardware" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '195836158')"
                        ng-class="{full: showFullComments['195836158']}">
                        Occipital Canvas Product Video Tags:  Crowdfunding, Hardware
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="195833900" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/608153445_1280.jpg)"></div>
                     <img class="play" alt="Drawing Dead Kickstarter Tags: Game" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '195833900')"
                        ng-class="{full: showFullComments['195833900']}">
                        Drawing Dead Kickstarter Tags: Game
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="195838261" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/608159085_1280.jpg)"></div>
                     <img class="play" alt="Presence 360 product video Tags: Crowdfunding. Hardware" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '195838261')"
                        ng-class="{full: showFullComments['195838261']}">
                        Presence 360 product video Tags: Crowdfunding. Hardware
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/KNOX_AVENUE__vdWoI93uTC6BtVC0fvzspg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/knoxavenue">   
                  <h3>
                     KNOX AVENUE
                     <span>Kickstarter video production company in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are Visual Mixologists - people who blend story &amp; design with compassion &amp; laughter.  We write, produce, direct, shoot and edit engaging content with the purpose of captivating you.

We make our own creative business opportunities with innovative brands and organizations. We strive to live in a world where new ideas and good stories are king.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="188869084" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/599015792_1280.jpg)"></div>
                     <img class="play" alt="The Font Awesome 5 Kickstarter raised $1,076,940 with 35,550 backers, making it the most funded and most backed software Kickstarter of all time - Tags: Viral, Crowdfunding, Funny" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '188869084')"
                        ng-class="{full: showFullComments['188869084']}">
                        The Font Awesome 5 Kickstarter raised $1,076,940 with 35,550 backers, making it the most funded and most backed software Kickstarter of all time - Tags: Viral, Crowdfunding, Funny
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/MikhailProductions__VtKdhJIlSQ2Mzk-cQrNiig.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MikhailProductions">   
                  <h3>
                     Mikhail Productions
                     <span>Kickstarter video production company in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are a full service creative agency that makes some of the internets most viral videos. Our most recent crowdfunding campaign grossed over 27 million dollars in the first 30 days of launching. You can check it out at www.Glowforge.com</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="40687862" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/491752660_1280.jpg)"></div>
                     <img class="play" alt="Tile Crowdfunding Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '40687862')"
                        ng-class="{full: showFullComments['40687862']}">
                        Tile Crowdfunding Video
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="ysCaqh38JVQ" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/ysCaqh38JVQ/maxresdefault.jpg)"></div>
                     <img class="play" alt="Glowforge Crowdfunding Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'ysCaqh38JVQ')"
                        ng-class="{full: showFullComments['ysCaqh38JVQ']}">
                        Glowforge Crowdfunding Video
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="brmS9_dCBz4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/brmS9_dCBz4/maxresdefault.jpg)"></div>
                     <img class="play" alt="Spinn Crowdfunding Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'brmS9_dCBz4')"
                        ng-class="{full: showFullComments['brmS9_dCBz4']}">
                        Spinn Crowdfunding Video
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Creators are ready to bid on your project</span>
               <a href="/start"><div class="button">Get quotes from Kickstarter video production companys</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/0111-hunthouse.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/hunthousepictures">   
                  <h3>
                     Hunt House Pictures
                     <span>Kickstarter video production company in </span>
                     <span class="location">Marina del Rey, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Based in Santa Monica, CA, Hunt House Pictures was founded by USC Cinema graduates Jack Murgatroyd and Edwin Eversole. Since 2011, they’ve worked with such clients as Coldplay, Marriott, Build a Bear, American Eagle, and Disney. Whether it’s through advertising, music video, or narrative filmmaking, Hunt House Pictures was founded with the singular intention of telling great stories. In order to do so, we use a collaboration of our styles, our inspirations, our past and whatever else we can get our hands on to deliver content that an audience can connect with, share, and fall in love with. We believe story is everything and we like exploring all the ways of telling it.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="151958691" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/551829960_1280.jpg)"></div>
                     <img class="play" alt="Gnarbox Crowdfunding Campaign" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '151958691')"
                        ng-class="{full: showFullComments['151958691']}">
                        Gnarbox Crowdfunding Campaign
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="115839850" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/502057597_640.jpg)"></div>
                     <img class="play" alt="ZBoard 2 IndieGoGo Video - Tag: Kickstarter, Indiegogo" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '115839850')"
                        ng-class="{full: showFullComments['115839850']}">
                        ZBoard 2 IndieGoGo Video - Tag: Kickstarter, Indiegogo
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/CanyonDriveProductions__c5npQHcXThKiiJbsYsx3ew.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/lowercaseprods">   
                  <h3>
                     Canyon Drive Productions
                     <span>Kickstarter video production company in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Our production company specializes in short, dynamic digital videos for brands, people and projects.  Videopixie listed us as one of LA&#39;s top 3 crowdfunding video creators!  As you can see from our portfolio, all of our work has a film aesthetic and it&#39;s always in HD. We love to bring out the personality of the subject we work with to tell their respective story, which makes each video unique. From a production standpoint we work extremely fast. We run a professional, fast-moving production and once we have the footage, the rate at which we deliver the first cut is unmatched. Clients are thrilled with our turnover rate. Please review the sample videos as they will demonstrate the quality and character of our work. If you have any questions at all please feel free to contact us: 323-696-1237 www.canyondrive.co (that&#39;s &#39;.co&#39; not &#39;.com&#39;)</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="112522222" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/497540117_640.jpg)"></div>
                     <img class="play" alt="Somabar - Kickstarter Funded!- Produced, Directed, Filmed and Edited by Canyon Drive Productions" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '112522222')"
                        ng-class="{full: showFullComments['112522222']}">
                        Somabar - Kickstarter Funded!- Produced, Directed, Filmed and Edited by Canyon Drive Productions
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Planet_Nutshell__TBKPEv7yRkq-ZtuJEwXzrA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/planetnutshell">   
                  <h3>
                     Planet Nutshell
                     <span>Kickstarter video production company in </span>
                     <span class="location">Boston, MA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Planet Nutshell is a small motion-graphics outfit that produces animated educational and explanatory videos for public institutions and commercial clients.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="128873170" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/520170674_640.jpg)"></div>
                     <img class="play" alt="Environmental Voter Project Crowdfunding Video - Animation" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '128873170')"
                        ng-class="{full: showFullComments['128873170']}">
                        Environmental Voter Project Crowdfunding Video - Animation
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Kickstarter video production companys by tomorrow</span>
               <a href="/start"><div class="button">Post a project - free!</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/LuminouStudios__rpN0G6hOSDuJCIYuSdO0KA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/LuminouStudios">   
                  <h3>
                     LuminouStudios
                     <span>Kickstarter video production company in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are LuminouStudios, a bicoastal production company (LA and NY) focused on creating exciting video content for start-ups, mostly in tech lifestyle and fashion. We began as indie filmmakers, so our approach is to bring together cinematic style storytelling and branded content to create a high-quality product.   

We are a one-stop-shop and can handle everything from development to delivery. Reach out for more info and watch our work at www.luminoustudios.com/portfolio.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="141085519" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/538763790_1280.jpg)"></div>
                     <img class="play" alt="TellyMount Kickstarter video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '141085519')"
                        ng-class="{full: showFullComments['141085519']}">
                        TellyMount Kickstarter video
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="154077720" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/556189185_1280.jpg)"></div>
                     <img class="play" alt="Kickstarter video for SANS - successful funded 150%+" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '154077720')"
                        ng-class="{full: showFullComments['154077720']}">
                        Kickstarter video for SANS - successful funded 150%+
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="149047411" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/548171401_640.jpg)"></div>
                     <img class="play" alt="Kickstarter video for a new play about rape culture." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '149047411')"
                        ng-class="{full: showFullComments['149047411']}">
                        Kickstarter video for a new play about rape culture.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/StudioBFilms__sTouA_M8T3mjX9U3fYxC0w.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/StudioBFilms">   
                  <h3>
                     Studio B Films
                     <span>Kickstarter video production company in </span>
                     <span class="location">Berkeley, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We’re a creative agency and full service video production company.

Since 1992, Studio B Films has partnered with our clients to communicate their messages with a clear, creative and bold voice. Located in a beautiful loft space in Berkeley, CA just 20 minutes away from San Francisco, Studio B Films is known not only for its quality, but also for its approachability.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="164148615" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/567703784_1280.jpg)"></div>
                     <img class="play" alt="Magic Instrument Indiegogo Crowdfunding Campaign" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '164148615')"
                        ng-class="{full: showFullComments['164148615']}">
                        Magic Instrument Indiegogo Crowdfunding Campaign
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/SutroStudios__-oypg0CnTAm9ETMzqpYEJQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/SutroStudios">   
                  <h3>
                     Sutro Studios
                     <span>Kickstarter video production company in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Professional filmmakers, DPs, and editors, color grading artists with close to twenty years of film industry experience, and multiple credits in Academy-Award winning films. Please check out http://sutrostudios.com for more.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="56601540" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/391917454_1280.jpg)"></div>
                     <img class="play" alt="Crowdfunding Kickaster campaign for GUSTIN jeans. Became a staff pick, and the most successful fashion Kickstarter campaign ever at the time." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '56601540')"
                        ng-class="{full: showFullComments['56601540']}">
                        Crowdfunding Kickaster campaign for GUSTIN jeans. Became a staff pick, and the most successful fashion Kickstarter campaign ever at the time.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="br35qLSzG7g" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/br35qLSzG7g/maxresdefault.jpg)"></div>
                     <img class="play" alt="Keyboardio Crowdfunding campaign. Official staff pick on Kickstarter, reaching it&#39;s goal in less than 48 hours. Raised more than half a million dollars." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'br35qLSzG7g')"
                        ng-class="{full: showFullComments['br35qLSzG7g']}">
                        Keyboardio Crowdfunding campaign. Official staff pick on Kickstarter, reaching it&#39;s goal in less than 48 hours. Raised more than half a million dollars.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Kickstarter video production company for your project</span>
               <a href="/start"><div class="button">Connect with Kickstarter video production companys</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/LNCProductions__VCUWRC3ASPKEypJXjXEwuQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/LNCProductions">   
                  <h3>
                     LNC Productions
                     <span>Kickstarter video production company in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Fully In-House end to end Video Production Company with a knack for concept development, scripting, shooting, editing, motion graphics and 2D/3D animating. We will help you produce a stunning, highly-personalized video that evokes​ emotion and revolves around your specific objective.

Let&#39;s chat about your idea!

www.lncproductions.com</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="201490526" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/615592976_1280.jpg)"></div>
                     <img class="play" alt="LNC Productions Reel :  Fully In-House end to end video production company in NYC with a knack for concept development, scripting, shooting, editing, motion graphics and 2D/3D animating. We specialize in everything from explainer videos both animated and live action to advertisements, branded content and kickstarter video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '201490526')"
                        ng-class="{full: showFullComments['201490526']}">
                        LNC Productions Reel :  Fully In-House end to end video production company in NYC with a knack for concept development, scripting, shooting, editing, motion graphics and 2D/3D animating. We specialize in everything from explainer videos both animated and live action to advertisements, branded content and kickstarter video.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="178107074" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/591754363_1280.jpg)"></div>
                     <img class="play" alt="Rock My Run:     Fully In-House end to end video production company in NYC with a knack for concept development, scripting, shooting, editing, motion graphics and 2D/3D animating. We specialize in everything from explainer videos both animated and live action to advertisements, branded content and kickstarter video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '178107074')"
                        ng-class="{full: showFullComments['178107074']}">
                        Rock My Run:     Fully In-House end to end video production company in NYC with a knack for concept development, scripting, shooting, editing, motion graphics and 2D/3D animating. We specialize in everything from explainer videos both animated and live action to advertisements, branded content and kickstarter video.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="134913336" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/550366789_1280.jpg)"></div>
                     <img class="play" alt="Agora App:  Fully In-House end to end video production company in NYC with a knack for concept development, scripting, shooting, editing, motion graphics and 2D/3D animating. We specialize in everything from explainer videos both animated and live action to advertisements, branded content and kickstarter video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '134913336')"
                        ng-class="{full: showFullComments['134913336']}">
                        Agora App:  Fully In-House end to end video production company in NYC with a knack for concept development, scripting, shooting, editing, motion graphics and 2D/3D animating. We specialize in everything from explainer videos both animated and live action to advertisements, branded content and kickstarter video.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Riposte__xb9EFzIwROKMTeYUuxJjPA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/riposte">   
                  <h3>
                     Venture
                     <span>Kickstarter video production company in </span>
                     <span class="location">Denver, CO, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Great content can sell products and build brands. Riposte can make it easier, faster and more affordable than ever.

My name is Tristan Olson and my company—Riposte—is a video content creation company here in Denver. We’ve created a model that breaks down all of the barriers that might be keeping you from creating fresh, relevant, compelling content for web, social or broadcast media: Time, cost, and message.

We do creative concepting and scripting. We do shoots and edits. We do visual effects, animation, music and more. We even do some wild new things like VR, Augmented Reality and 360-degree video. 

Riposte is not an ad agency, but we think like one. We’re not just a production company, but can do everything they do. We’re something new.

And we might be perfect for you.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="134460061" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/527969490_1280.jpg)"></div>
                     <img class="play" alt="Comex - &quot;All in&quot; - Kickstarter like video . Handled all production and post." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '134460061')"
                        ng-class="{full: showFullComments['134460061']}">
                        Comex - &quot;All in&quot; - Kickstarter like video . Handled all production and post.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="139614562" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/535533456_1280.jpg)"></div>
                     <img class="play" alt="Whittington Center - Kickstarter like video. Handled all production, post production, writing, concept, and VFX." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '139614562')"
                        ng-class="{full: showFullComments['139614562']}">
                        Whittington Center - Kickstarter like video. Handled all production, post production, writing, concept, and VFX.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Aris__4BnlyBrsSzWzqLQwJ-MFsw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/GregBassenian">   
                  <h3>
                     Aris
                     <span>Kickstarter video production company in </span>
                     <span class="location">Santa Monica, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are a full service creative video studio that specializes in creating great commercial, crowdfunding and corporate content!  

We have worked with all types of clients from Coca-Cola and Chevy to startups like Flo Technologies and Simple Practice.

We guarantee delivery of a high quality creative video asset that is on time, on brief, and on budget.

You can email us with any inquiries at contact@wearearis.com or please  visit our site at www.weareAris.com to learn more.  We look forward to working with you!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="158966826" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/560601047_1280.jpg)"></div>
                     <img class="play" alt="A kickstarter video we created for Ralf Albedhyll." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '158966826')"
                        ng-class="{full: showFullComments['158966826']}">
                        A kickstarter video we created for Ralf Albedhyll.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="184034598" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/598212744_1280.jpg)"></div>
                     <img class="play" alt="Wolfprint 3D Seedinvest Equity Crowdfunding Video, Tags: VR" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '184034598')"
                        ng-class="{full: showFullComments['184034598']}">
                        Wolfprint 3D Seedinvest Equity Crowdfunding Video, Tags: VR
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Creators are ready to bid on your project</span>
               <a href="/start"><div class="button">Get quotes from Kickstarter video production companys</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/TheHardWay__VxaCAOsaR1qqMyuIX1MeSw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TheHardWay">   
                  <h3>
                     The Hard Way
                     <span>Kickstarter video production company in </span>
                     <span class="location">San Jose, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">At The Hard Way, we create artful, cinematic video content. Your brand is much more than a logo, and for that reason, we feel it is our duty to create videos with more than just a sales pitch. Our purpose is to combine our clients’ sincere human message, with stunning cinematography, thoughtful editing, and solid design - resulting in compelling content. We don&#39;t aim to just to place your message in the mind of the viewers, but to tie that message to their hearts. The goal of video content is to make people think. The goal of The Hard Way is to make people feel as well. 

We take pride in our ability to keep our crews small and efficient, in turn tipping the balance between quality and cost in our clients&#39; favor. While we are pleased to be able to leverage new technology and methods to keep cost down, we spare no effort in our projects - when it&#39;s a matter of quality, we do things The Hard Way.

The Hard Way is led by producer, Logan Parks, and supported by a network of select freelancers that are brought in when appropriate. Logan started as a camera operator/editor in Southern California, and moved to San Jose - where he has been producing cinematic video content for businesses since 2009. His obsession with the quality of his work is arguably unhealthy. He sometimes writes about himself in the third person.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="171987515" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/577579848_1280.jpg)"></div>
                     <img class="play" alt="This video was created for a Kickstarter campaign, which raised over $92000! I can&#39;t take all of the credit for the campaign, of course, but I can take credit for filming, editing, color grading and graphics." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '171987515')"
                        ng-class="{full: showFullComments['171987515']}">
                        This video was created for a Kickstarter campaign, which raised over $92000! I can&#39;t take all of the credit for the campaign, of course, but I can take credit for filming, editing, color grading and graphics.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Circa3__R1Xgu_5FQsqkr5NTU-qCJg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/Circa3">   
                  <h3>
                     Circa3
                     <span>Kickstarter video production company in </span>
                     <span class="location">Ogden, UT, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Looking for the best video production company in Utah that offers high-quality production services at affordable prices? CIRCA3 is the place for you. Established in 2015, but with over a decade of video production experience in Utah, CIRCA3’s videographers and video editors have gained a great reputation for quality across the Wasatch Front.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="142744147" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/549935029_1280.jpg)"></div>
                     <img class="play" alt="Circa3, wrote, directed, shot and produced this kickstarter campaign video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '142744147')"
                        ng-class="{full: showFullComments['142744147']}">
                        Circa3, wrote, directed, shot and produced this kickstarter campaign video.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="168660727" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/573198930_1280.jpg)"></div>
                     <img class="play" alt="Circa3, wrote, directed, shot and produced this kickstarter campaign video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '168660727')"
                        ng-class="{full: showFullComments['168660727']}">
                        Circa3, wrote, directed, shot and produced this kickstarter campaign video.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/FundedToday__jlYZDpZlSb6O8PEkqiQhSg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/FundedToday">   
                  <h3>
                     Funded Today
                     <span>Kickstarter video production company in </span>
                     <span class="location">South Ogden, UT, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Funded Today is the world&#39;s most successful crowdfunding agency! Since our inception in mid-2014 among Utah&#39;s Silicon Slopes, we&#39;ve  worked with over 2,000 projects on Kickstarter and/or Indiegogo, and we&#39;ve helped hundreds of those campaigns to raise over $175,000,000 altogether. Although we&#39;re best-known for our marketing, we&#39;ve also worked hard to assemble a great team of creative experts, including seasoned videographers who can skilfully persuade viewers into becoming backers. But we&#39;d like to let their work speak for itself—so, please watch our sample videos on this site to learn more about what we can do for you!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="faTqQFE3LOk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/faTqQFE3LOk/maxresdefault.jpg)"></div>
                     <img class="play" alt="Funded Today&#39;s well-seasoned expert artists have now worked with dozens of crowdfunding projects, producing visually-compelling media at an emotionally-compelling price. We produced this video to help sell these creative services, which may include producing your video, designing your page, and/or photographing your product. Please watch this video FIRST to not only see a sample of our work, but also learn more about what we can do to persuasively present your crowdfunding project to the world!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'faTqQFE3LOk')"
                        ng-class="{full: showFullComments['faTqQFE3LOk']}">
                        Funded Today&#39;s well-seasoned expert artists have now worked with dozens of crowdfunding projects, producing visually-compelling media at an emotionally-compelling price. We produced this video to help sell these creative services, which may include producing your video, designing your page, and/or photographing your product. Please watch this video FIRST to not only see a sample of our work, but also learn more about what we can do to persuasively present your crowdfunding project to the world!
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Kickstarter video production companys by tomorrow</span>
               <a href="/start"><div class="button">Post a project - free!</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/RedcubeProduction__6k_FhpwlQWqSDDQ6crDlsw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/RedcubeProduction">   
                  <h3>
                     Redcube Production
                     <span>Kickstarter video production company in </span>
                     <span class="location">South San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Red Cube Production is a cross-border one-stop shop that provides social video marketing and public relations services to early-stage companies. At Red Cube, we specialize in Video Production, Public Relation, Design ( logo / web / UIUX ) and Crowdfunding. We are looking forward to work with you in the near future. Our professionals will assist you through the process and help grow your business.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="qkYoBiJck4o" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/qkYoBiJck4o/maxresdefault.jpg)"></div>
                     <img class="play" alt="Founders Interview of Indiegogo" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'qkYoBiJck4o')"
                        ng-class="{full: showFullComments['qkYoBiJck4o']}">
                        Founders Interview of Indiegogo
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/CristianZamora__WmpZS-3_QLOhfFl0zxqguA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/CristianZamora">   
                  <h3>
                     Cristian Zamora
                     <span>Kickstarter video production company in </span>
                     <span class="location">Berlin, Germany</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m an award winning Cinematographer, Film maker, Editor and Creative Producer with more than 15 years working on TV series, TV commercials, movies, shorts, corporate and music videos among others.
I can guarantee punctuality and the highest standards of video, cinema and television with the most qualified people in Germany and around the world.
For more information please visit my website: http://klavsx.com/</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="78054600" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/453375753_1280.jpg)"></div>
                     <img class="play" alt="Lock 8 kickstarter video and product video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '78054600')"
                        ng-class="{full: showFullComments['78054600']}">
                        Lock 8 kickstarter video and product video
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/SecretSauceMedia__TrSRQfrNQeKSYloV4W9LPQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/gonzointhewildproductions">   
                  <h3>
                     Secret Sauce Media
                     <span>Kickstarter video production company in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Secret Sauce is a group of creative talent, film professionals and education specialists uniquely positioned to work with businesses ready to scale up. Whether you want to attract new customers, cultivate a skilled staff with training videos or give your audience fresh content — we can help. We provide filming, animation and post-production services as well as creative direction and marketing consulting.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="124435600" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/514156621_640.jpg)"></div>
                     <img class="play" alt="The Marriage Project is an education startup that provides valuable resources about relationships and marriage. Their goal is to create enduring marriages and combat divorce by using time tested philosophies and techniques. We created a 2D animation for their crowdfunding campaign with a directive to get across their mission in a fun and engaging way. The founders of The Marriage Project hope to get enough interest and capital to launch their line of videos, classes and books." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '124435600')"
                        ng-class="{full: showFullComments['124435600']}">
                        The Marriage Project is an education startup that provides valuable resources about relationships and marriage. Their goal is to create enduring marriages and combat divorce by using time tested philosophies and techniques. We created a 2D animation for their crowdfunding campaign with a directive to get across their mission in a fun and engaging way. The founders of The Marriage Project hope to get enough interest and capital to launch their line of videos, classes and books.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="131701947" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/524059548_640.jpg)"></div>
                     <img class="play" alt="Paralo approached us with the idea to make a kickstarter video for their VR headset. They wanted the video to be simple, slick and fun; just like their product! We had the idea to have the founder, Tony, talk about the background his company, what led him to develop Play and to explain how it works. We made a 3D animation to recreate those dream worlds Tony imagined as a kid and show you how Play can transform your world!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '131701947')"
                        ng-class="{full: showFullComments['131701947']}">
                        Paralo approached us with the idea to make a kickstarter video for their VR headset. They wanted the video to be simple, slick and fun; just like their product! We had the idea to have the founder, Tony, talk about the background his company, what led him to develop Play and to explain how it works. We made a 3D animation to recreate those dream worlds Tony imagined as a kid and show you how Play can transform your world!
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Kickstarter video production company for your project</span>
               <a href="/start"><div class="button">Connect with Kickstarter video production companys</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/SeanLee__rl01GamNRHSJQ2unKNLQlg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/SeanLee">   
                  <h3>
                     Sean Lee
                     <span>Kickstarter video production company in </span>
                     <span class="location">California, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Creator of hundreds of videos including, but not limited to, wedding videos, crowdfunding project videos, and music videos.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="182109685" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/590909104_1280.jpg)"></div>
                     <img class="play" alt="Crowdfunding (Kickstarter / Indiegogo) campaign video:  Traveled to Bay area to shoot for 3 days, and the post-production was done back home in Orange County. The developer drafted original script and storyboard, and we had several lengthy meetings (through FaceTime) to discuss ideas and modify script." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '182109685')"
                        ng-class="{full: showFullComments['182109685']}">
                        Crowdfunding (Kickstarter / Indiegogo) campaign video:  Traveled to Bay area to shoot for 3 days, and the post-production was done back home in Orange County. The developer drafted original script and storyboard, and we had several lengthy meetings (through FaceTime) to discuss ideas and modify script.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="175790735" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/582935527_1280.jpg)"></div>
                     <img class="play" alt="Crowdfunding (Kickstarter / Indiegogo) campaign video:" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '175790735')"
                        ng-class="{full: showFullComments['175790735']}">
                        Crowdfunding (Kickstarter / Indiegogo) campaign video:
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="171537767" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/577023633_1280.jpg)"></div>
                     <img class="play" alt="Crowdfunding (Kickstarter / Indiegogo) campaign video:" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '171537767')"
                        ng-class="{full: showFullComments['171537767']}">
                        Crowdfunding (Kickstarter / Indiegogo) campaign video:
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/ADJUSTVideoProduction__F0PZYYevTGGdToCctX4iPw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/AlexJopsonFedotov">   
                  <h3>
                     AD.JUST Video Production
                     <span>Kickstarter video production company in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">AD.JUST VIDEO PRODUCTION -  A BOUTIQUE EUROPEAN STYLE VIDEO PRODUCTION STUDIO 
AD.JUST is the full service Orlando video production company delivering a unique style to video marketing products. 
We follow trends in design and visual communications.
We approach each project with a fresh, comprehensive and sophisticated manner to deliver one-of-the kind, outstanding video.
AD.JUST is always trying new techniques, tricks, and devices to get a perfect modern look for our video products.
We have an extensive marketing background to make promotional videos work hard to meet and exceed client’s goals.
We don&#39;t do replicate, we make art. It&#39;s not just a video, it is visual communication, where efficiency is a must!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="208610264" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/623973510_1280.jpg)"></div>
                     <img class="play" alt="Kickstarter for Treah Press" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '208610264')"
                        ng-class="{full: showFullComments['208610264']}">
                        Kickstarter for Treah Press
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="205300547" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/620057705_1280.jpg)"></div>
                     <img class="play" alt="Indiegogo video for Fuseconnect.me" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '205300547')"
                        ng-class="{full: showFullComments['205300547']}">
                        Indiegogo video for Fuseconnect.me
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="142691743" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/541306974_1280.jpg)"></div>
                     <img class="play" alt="Kickstarter Video for Animal Rescue" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '142691743')"
                        ng-class="{full: showFullComments['142691743']}">
                        Kickstarter Video for Animal Rescue
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
      
   </div>
         
   

   
   <div id="footer">
      
      <div class="content">
         <img id="footer-logo" src="/st/images/logo_text_and_pixie.png" alt="videopixie logo">
         
         <div id="footer-left">
            <a href="/im_a_pro">Sign-up as a Professional</a>
            <a href="/video-production">Browse Video Producers</a>
            <a href="/learn-more">Learn More</a>
            <a href="/pricing">Pricing</a>
         </div>
         
         <div id="footer-left">
            <a href="/video-school">Video School</a>
            <a href="/about">Our Team</a>
            <a href="/jobs">Jobs</a>
            <a href="/faq">FAQ</a>
         </div>
      
         <div id="social-links">
            <a target="vp_facebook" href="//www.facebook.com/videopixie" class="facebook social-box">f</a>
            <a target="vp_twitter" href="//www.twitter.com/videopixie" class="twitter social-box">t</a>
            <a target="vp_google" href="//www.google.com/+videopixie" class="google social-box">g+</a>
            <a target="vp_linkedin" href="//www.linkedin.com/company/videopixie" class="linkedin social-box">in</a>
         </div>
         
         <div id="footer-bottom">
            <span>Copyright 2015 TT Labs Inc.</span>
            <a href="/st/privacy.html">Privacy Policy</a>
            <a href="/st/dmca.html">DMCA</a>
         </div>
      
      </div>
      
      
      
   </div>
  
   
   
   <div id="media-modal" class="modal modal-wrapper video-modal dn" vp-size="size" vp-fade="[[MediaModal]]" vp-closeable="MediaModal"  ng-controller="MediaModalController">
<!--vp-fade-but-leave-in-display="MediaModal" -->

   <div id="media-background" vp-width-by-aspect="[[aspectRatio]]"></div>
   <div id="image-wrapper"
      ng-class="{ontop: imageViewerMode, small_hide: !imageViewerMode}"
      vp-img-child="src: '[[imageSrc]]', valid: true">
      <!--img is inserted by vp-img-child -->
   </div>
   <div id="player-wrapper" ng-class="{small_hide: imageViewerMode}">
      <video id="video-element" class="video-js vjs-default-skin" controls ng-controller = "VideoPlayerController"></video>
      <div id="video-overlay" ng-bind-html="overlayHtml">
         
      </div>
   </div>
   
   <div id="sidebar-wrapper">
      
      <div ng-show="mode.design_mode" ng-controller="DesignSideBarController" class="side-bar designSideBar"><!-- Design Mode -->
         
         <div class="font-14-999 fr">[[currentQuestion.name]]</div>
         <div class="currentOptionWrapper clearfix">
         
            <div class="option clearfix"
               ng-click="onCurrentOptionClick()"
               ng-class="{selected:currentOption.selected}"
               vp-hover-exclusion="not-hot">
               <div class="mainRow fl">
                  <div class="thumbnailWrapper fl" 
                     vp-img-child="src: '[[AWS + mediaData.bucket + currentOption.video.provider_id]]' + '_120h.jpg', valid: [[!!currentOption.video.provider_id]]">
                     <!--img is inserted by vp-img-child -->
                     
                  </div>
                  <div class="font-16-666-b optionName fl">[[currentOption.name]]</div>
                  <div class="ok"></div>
               </div>
               <div class="font3 details fl">[[currentOption.details]]</div>
            </div>
            
         </div>
         
         <div class = "otherOptionsWrapper">
            
            <div class="bar"></div>
            <div class="font4 subtitle">Other [[currentQuestion.name]] options:</div>
            <div class="vp-scroll-bar vp-scroll-shadows scroll-wrapper">
               <div class="option clearfix" 
                  ng-repeat="(optionIdx,option) in currentQuestion.options" 
                  ng-hide='optionIdx == currentOptionIdx || option.hidden || option.renderer == "lengthInput"'
                  ng-class="{clickable:option.video.provider_id}"
                  ng-click="onOtherOptionClick(optionIdx)">
                  
                  <div class="thumbnailWrapper fl"
                     vp-img-child="src: '[[AWS + mediaData.bucket + option.video.provider_id]]' + '_120h.jpg', valid: [[!!option.video.provider_id]]">
                     <!--img is inserted by vp-img-child -->
                     
                     <div class="no-example" ng-hide="option.video.provider_id">No example</div>
                  </div>
                  <div class="font3 optionName">[[option.name]]</div>               
               </div>
            </div>
         </div>
         
      </div>
      
      <div ng-show="mode.html_mode" class="html-side-bar side-bar">
      
         <div ng-bind-html="htmlSidebarContent"></div>
      
      </div>
         
      
   </div>
   <div class="x close"></div>
</div>

   
   <div class="dimmer dn" vp-fade="[[Dimmer]]" vp-match-document-height></div>
   
   <div id="fb-root"></div>
      
   
   <!-- begin olark code -->
   <script data-cfasync="false" type='text/javascript'>
   /*<![CDATA[*/
   if(!SES.is_dev_enviro){
      window.olark||(function(c){var f=window,d=document,l=f.location.protocol=="https:"?"https:":"http:",z=c.name,r="load";var nt=function(){
      f[z]=function(){
      (a.s=a.s||[]).push(arguments)};var a=f[z]._={
      },q=c.methods.length;while(q--){(function(n){f[z][n]=function(){
      f[z]("call",n,arguments)}})(c.methods[q])}a.l=c.loader;a.i=nt;a.p={
      0:+new Date};a.P=function(u){
      a.p[u]=new Date-a.p[0]};function s(){
      a.P(r);f[z](r)}f.addEventListener?f.addEventListener(r,s,false):f.attachEvent("on"+r,s);var ld=function(){function p(hd){
      hd="head";return["<",hd,"></",hd,"><",i,' onl' + 'oad="var d=',g,";d.getElementsByTagName('head')[0].",j,"(d.",h,"('script')).",k,"='",l,"//",a.l,"'",'"',"></",i,">"].join("")}var i="body",m=d[i];if(!m){
      return setTimeout(ld,100)}a.P(1);var j="appendChild",h="createElement",k="src",n=d[h]("div"),v=n[j](d[h](z)),b=d[h]("iframe"),g="document",e="domain",o;n.style.display="none";m.insertBefore(n,m.firstChild).id=z;b.frameBorder="0";b.id=z+"-loader";if(/MSIE[ ]+6/.test(navigator.userAgent)){
      b.src="javascript:false"}b.allowTransparency="true";v[j](b);try{
      b.contentWindow[g].open()}catch(w){
      c[e]=d[e];o="javascript:var d="+g+".open();d.domain='"+d.domain+"';";b[k]=o+"void(0);"}try{
      var t=b.contentWindow[g];t.write(p());t.close()}catch(x){
      b[k]=o+'d.write("'+p().replace(/"/g,String.fromCharCode(92)+'"')+'");d.close();'}a.P(2)};ld()};nt()})({
      loader: "static.olark.com/jsclient/loader0.js",name:"olark",methods:["configure","extend","declare","identify"]});
      /* custom configuration goes here (www.olark.com/documentation) */
      olark.identify('3567-618-10-4944');
   }/*]]>*/
   </script>
   <noscript><a href="https://www.olark.com/site/3567-618-10-4944/contact" title="Contact us" target="_blank">Questions? Feedback?</a> powered by <a href="http://www.olark.com?welcome" title="Olark live chat software">Olark live chat software</a></noscript>
   <!-- end olark code -->
   
  
   
   <!-- Google Code for Remarketing Tag -->
   <!--------------------------------------------------
   Remarketing tags may not be associated with personally identifiable information or placed on pages related to sensitive categories. See more information and instructions on how to setup the tag on: http://google.com/ads/remarketingsetup
   --------------------------------------------------->
   <script type="text/javascript">
   /* <![CDATA[ */
   var google_conversion_id = 993449120;
   var google_custom_params = window.google_tag_params;
   var google_remarketing_only = true;
   /* ]]> */
   </script>
   <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
   </script>
   <noscript>
      <div style="display:inline;">
         <img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/993449120/?value=0&amp;guid=ON&amp;script=0"/>
      </div>
   </noscript>

   
   <script type="text/javascript">
      (function() {
         window._pa = window._pa || {};
         // _pa.orderId = "myOrderId"; // OPTIONAL: attach unique conversion identifier to conversions
         // _pa.revenue = "19.99"; // OPTIONAL: attach dynamic purchase values to conversions
         // _pa.productId = "myProductId"; // OPTIONAL: Include product ID for use with dynamic ads
         var pa = document.createElement('script'); pa.type = 'text/javascript'; pa.async = true;
         pa.src = ('https:' == document.location.protocol ? 'https:' : 'http:') + "//tag.perfectaudience.com/serve/53dac13adc92cfda2d000130.js";
         var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(pa, s);
      })();
   </script>
   
</body>
</html>
