<!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 New York Video Editors | Videopixie</title>
   <meta name="description" content="A selection of the best video editors in New York.  From freelancer editors to post-production houses.">
   <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>Best New York Video Editors</h1>
      <h2>Videopixie helps you hire the best editors in New York</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="/best-new-york-animation-and-motion-graphics-artists">New York Animation and Motion Graphics Designers</a>
      
      <a class="related" href="/new-york-kickstarter-video-production">New York Kickstarter Video Production</a>
      
      <a class="related" href="/new-york-videographers">New York Videographers</a>
      
      <a class="related" href="/new-york-wedding-video-editors">New York Wedding Video Editors</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/CharlesWood__1JDNByMRS9ykne16SW_6Qg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/charleswood">   
                  <h3>
                     Charles Wood
                     <span>New York Video Editor in </span>
                     <span class="location">Brooklyn, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Freelance commercial/video director. Experienced live action, motion graphics, 3D animation, and UI design. 

Clients include Twitter, Microsoft, HTC, Verizon, Carnegie Fabrics, Esquire and more.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="88370778" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/466801012_640.jpg)"></div>
                     <img class="play" alt="Nokia has the apps.  This spot was completed in a little less than 9 days from brief to delivery.   I was in charge of Research, Writing, Art Direction, Animation, Editing" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '88370778')"
                        ng-class="{full: showFullComments['88370778']}">
                        Nokia has the apps.  This spot was completed in a little less than 9 days from brief to delivery.   I was in charge of Research, Writing, Art Direction, Animation, Editing
                     </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/SilverStylePictures__pkSZIqlaQzCLX8KD_gPRlA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/silverstylepictures">   
                  <h3>
                     Silver Style Pictures
                     <span>New York Video Editor in </span>
                     <span class="location">Red Bank, NJ, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">NJ | NY | Worldwide - Film &amp; Video Production 

We work with local brands &amp; others from around the world offering innovative film &amp; video production services. We specialize in films, commercials, branded media content &amp; more. 

Get in touch. Lets&#39;s get creative. 

What&#39;s Your Style?</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="118302924" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/505299323_640.jpg)"></div>
                     <img class="play" alt="Silver Style Pictures | Reel.   Roles: Director, Videographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '118302924')"
                        ng-class="{full: showFullComments['118302924']}">
                        Silver Style Pictures | Reel.   Roles: Director, Videographer, Editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="115481712" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/501519285_640.jpg)"></div>
                     <img class="play" alt="Surf.  Roles: Director, Producer, Editor, Videographer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '115481712')"
                        ng-class="{full: showFullComments['115481712']}">
                        Surf.  Roles: Director, Producer, Editor, Videographer
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="102495320" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/484511331_640.jpg)"></div>
                     <img class="play" alt="Volkswagen Golf - 40 Years Roles: Director, Producer, Editor, Videographer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '102495320')"
                        ng-class="{full: showFullComments['102495320']}">
                        Volkswagen Golf - 40 Years Roles: Director, Producer, Editor, Videographer
                     </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/MotionSickness__FBOP7pMYQKiAcwFNDoC86w.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MotionSickness">   
                  <h3>
                     Motion Sickness
                     <span>New York Video Editor in </span>
                     <span class="location">Brooklyn, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Motion Sickness is a creative studio that produces content for film, broadcast, and digital media. Our team offers a range of narrative skills from design and direction, to animation and visual effects. We strive to help our clients achieve their goals through creative collaboration during the production process.
www.motionsickness.tv</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="177462975" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/585046864_1280.jpg)"></div>
                     <img class="play" alt="Operation: New Earth trailer We did the all the VFX and editing work. Watch our VFX breakdown here: https://vimeo.com/179814996" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '177462975')"
                        ng-class="{full: showFullComments['177462975']}">
                        Operation: New Earth trailer We did the all the VFX and editing work. Watch our VFX breakdown here: https://vimeo.com/179814996
                     </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 New York Video Editors</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/GonzointheWildProductions__o3Vlt97ZS7OkF7e0VICKJg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/gonzointhewildproductions">   
                  <h3>
                     Gonzo in the Wild Productions
                     <span>New York Video Editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Tell your story.
Grow your brand.

Gonzo in the Wild is a collective of creatives, 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.

Go Gonzo!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="99366988" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/480522529_640.jpg)"></div>
                     <img class="play" alt="Real City Tours is a dynamic tour company that consistently ranks #1 in TripAdvisor for their city. They approached GITW to make a video for their ‘Exotic Fruits Tour’. We worked together to storyboard and create a shot list before production. We scouted the location and took the tour to get a feel for how to shoot it. We also helped them write up their release form for the people in the video. GITW directed, shot and edited the final version with guidance from Real City Tours. In the end, both us and the client were very happy with the result." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '99366988')"
                        ng-class="{full: showFullComments['99366988']}">
                        Real City Tours is a dynamic tour company that consistently ranks #1 in TripAdvisor for their city. They approached GITW to make a video for their ‘Exotic Fruits Tour’. We worked together to storyboard and create a shot list before production. We scouted the location and took the tour to get a feel for how to shoot it. We also helped them write up their release form for the people in the video. GITW directed, shot and edited the final version with guidance from Real City Tours. In the end, both us and the client were very happy with the result.
                     </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/Charlie_Cole__XIjskhh8QRGt6MWqm_PhBQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/charliecole">   
                  <h3>
                     Charlie Cole
                     <span>New York Video Editor in </span>
                     <span class="location">Brooklyn, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">An experimental narrative filmmaker with a heavy emphasis on cinematography as the main narrative element. I love making all kinds of films, and I&#39;m happy to find ways to make yours as intriguing and powerful as possible.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="73306949" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/447365428_640.jpg)"></div>
                     <img class="play" alt="Dustin and Indy&#39;s Wedding filmed and edited by master cinematographer Charlie Cole." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '73306949')"
                        ng-class="{full: showFullComments['73306949']}">
                        Dustin and Indy&#39;s Wedding filmed and edited by master cinematographer Charlie Cole.
                     </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/MishlerStudio__beJqNoYGQgq_1IpwDoxCig.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MishlerStudio">   
                  <h3>
                     Mishler Studio
                     <span>New York Video Editor in </span>
                     <span class="location">Manhattan, New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">David is a director, cinematographer, and editor based in NYC. He worked as a video editor under celebrated photographer George Lange, where he salivated over clients such as Jeni’s Splendid Ice Creams and Goldbely. Three years later, David ventured over to Quirky, a real-life Willy Wonka factory for invention, where he worked on the media team telling stories about the inventors and their quirky ideas. David currently runs Mishler Studio, a full service video production company.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="129985007" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/521675169_640.jpg)"></div>
                     <img class="play" alt="I spent the day with Bronx based graffiti artists, Tats Cru, and learned all about their early days tagging subway trains to today where they are commissioned by large corporations to paint murals.   Role: Producer, Director, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '129985007')"
                        ng-class="{full: showFullComments['129985007']}">
                        I spent the day with Bronx based graffiti artists, Tats Cru, and learned all about their early days tagging subway trains to today where they are commissioned by large corporations to paint murals.   Role: Producer, Director, Cinematographer, Editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120534955" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508475562_640.jpg)"></div>
                     <img class="play" alt="Profile on master baker, Dominique Ansel, inventor of the cronut. I met him at his bakery at 6am and followed him for an entire day.   Role: Producer, Director, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120534955')"
                        ng-class="{full: showFullComments['120534955']}">
                        Profile on master baker, Dominique Ansel, inventor of the cronut. I met him at his bakery at 6am and followed him for an entire day.   Role: Producer, Director, Cinematographer, Editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="94196316" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/474198489_640.jpg)"></div>
                     <img class="play" alt="Spent 10 days running around China documenting the manufacturing process of Aros, Quirky + GE&#39;s smart air conditioner.   Role: Producer, Director, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '94196316')"
                        ng-class="{full: showFullComments['94196316']}">
                        Spent 10 days running around China documenting the manufacturing process of Aros, Quirky + GE&#39;s smart air conditioner.   Role: Producer, Director, Cinematographer, Editor
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented New York Video Editors 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/Active_Image_Group__ACuMrKWHSfGnLPGecGoztw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/activeimagegroup">   
                  <h3>
                     Active Image Group
                     <span>New York Video Editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Active Image Group is a full-service video production company with a focus on providing clients affordable content creation for television, film and the web. 

From writing, producing, directing and shooting...to editing, audio-post and 2D / 3D motion graphics, we&#39;ve got it handled! Let our team help ensure your next project is a tremendous success.

Please look around and feel free to drop us a line.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="63621793" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/435261198_640.jpg)"></div>
                     <img class="play" alt="AMERICAN AUTUMN:  ITUNES MOVIE TRAILER - DIRECTOR:  Dennis Trainor &gt;&lt; Jr.  EDITOR:  AJ Russo  &gt;&lt; GRAPHICS:  AJ Russo  &gt;&lt; POST-AUDIO DIR:  James Russo   &gt;&lt; POST-AUDIO COORD:  Jamie Smith  &gt;&lt; POST-AUDIO MIXER:  Peter Nicholas" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '63621793')"
                        ng-class="{full: showFullComments['63621793']}">
                        AMERICAN AUTUMN:  ITUNES MOVIE TRAILER - DIRECTOR:  Dennis Trainor &gt;&lt; Jr.  EDITOR:  AJ Russo  &gt;&lt; GRAPHICS:  AJ Russo  &gt;&lt; POST-AUDIO DIR:  James Russo   &gt;&lt; POST-AUDIO COORD:  Jamie Smith  &gt;&lt; POST-AUDIO MIXER:  Peter Nicholas
                     </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/BillAntonucci__CyN0hcvvTpOIVLOXQ9icoA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/BillAntonucci">   
                  <h3>
                     Bill Antonucci
                     <span>New York Video Editor in </span>
                     <span class="location">Brooklyn, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Shooter and editor with over 8 years of experience producing high-quality, engaging short form content for the web. Clients include Pitchfork, Paste Magazine, Daytrotter, Warby Parker, Skillshare, McDonalds, American Family Insurance.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="doIUBSo3gOM" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/doIUBSo3gOM/0.jpg)"></div>
                     <img class="play" alt="DP + Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'doIUBSo3gOM')"
                        ng-class="{full: showFullComments['doIUBSo3gOM']}">
                        DP + Editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="-hBsqvfFtPo" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/-hBsqvfFtPo/0.jpg)"></div>
                     <img class="play" alt="DP + Edit" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '-hBsqvfFtPo')"
                        ng-class="{full: showFullComments['-hBsqvfFtPo']}">
                        DP + Edit
                     </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/RichardBoehmcke__aa3Txs3PTAK88U1XCL182w.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/RichardBoehmcke">   
                  <h3>
                     Richard Boehmcke
                     <span>New York Video Editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Richard Boehmcke (pronounced Bem-Key) is a prize winning video creator and Creative Director of Vibrant Motion whose videos have received hundreds of thousands of views. He has made hundreds of videos for the travel, education, digital industries and many more. After successfully starting and growing the training and development program at Buddy Media, he left to create the kinds of videos he wanted to see more of. He has shot videos everywhere from San Diego to San Juan. His client list includes startups all the way up to brands like 20th Century Fox, Edelman and many more. In his free time he continues his 200+ episode twice a week video blog.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="161570529" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/563832042_1280.jpg)"></div>
                     <img class="play" alt="We spend so much time self editing, applying filters, picking and choosing what we share that we lose the opportunity to really connect on a human level with anybody. Nothing we share online feels truly real. This project is simple. This isn&#39;t about how amazing or terrible life is. It is an honest examination of what makes us happy, sad, scared, smile, laugh, cry, snort, whatever. This is a project about all of us." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '161570529')"
                        ng-class="{full: showFullComments['161570529']}">
                        We spend so much time self editing, applying filters, picking and choosing what we share that we lose the opportunity to really connect on a human level with anybody. Nothing we share online feels truly real. This project is simple. This isn&#39;t about how amazing or terrible life is. It is an honest examination of what makes us happy, sad, scared, smile, laugh, cry, snort, whatever. This is a project about all of us.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best New York Video Editor for your project</span>
               <a href="/start"><div class="button">Connect with New York Video Editors</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/TyroneHardnett__sGXTdNe5ST6sS7J4DZYgSQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TyroneHardnett">   
                  <h3>
                     Tyrone Hardnett
                     <span>New York Video Editor in </span>
                     <span class="location">Manhattan, New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Filmmaker/film editor with 7 years of experience. Studied film at The Art Institute of California San Francisco and have been working in the industry editing Documentary Films, Music Videos, Corporate campaign funding videos, Interviews, Online promotional videos, reality tv segments etc..</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="124969909" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/514908321_1280.jpg)"></div>
                     <img class="play" alt="Teaser trailer to the feature length documentary film I edited called Music In Mali: Life is Hard, Music is Good. Narrated by Danny Glover." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '124969909')"
                        ng-class="{full: showFullComments['124969909']}">
                        Teaser trailer to the feature length documentary film I edited called Music In Mali: Life is Hard, Music is Good. Narrated by Danny Glover.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="64752605" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/435510013_640.jpg)"></div>
                     <img class="play" alt="A cool little project I edited for artist Jim Olarte &amp; photographer Joe Scarnici. This is the first edit I did for the Modern Beachcomber project but we decided to make another one for business reasons." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '64752605')"
                        ng-class="{full: showFullComments['64752605']}">
                        A cool little project I edited for artist Jim Olarte &amp; photographer Joe Scarnici. This is the first edit I did for the Modern Beachcomber project but we decided to make another one for business reasons.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="53051376" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/366224302_640.jpg)"></div>
                     <img class="play" alt="Shot edited and I directed this kickstarter campaign" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '53051376')"
                        ng-class="{full: showFullComments['53051376']}">
                        Shot edited and I directed this kickstarter 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/0004-hoju-kim.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/hoju">   
                  <h3>
                     Hoju
                     <span>New York Video Editor in </span>
                     <span class="location">Brooklyn, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">jeejung kim</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="128266410" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/519335339_640.jpg)"></div>
                     <img class="play" alt="Townsquare animated explainer.  Recreated the site&#39;s look in After Effects from layered .psd files and animated everything to explain Townsquare. Much more compelling than a screencast IMO. Handled all screen capture, editing and animations." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '128266410')"
                        ng-class="{full: showFullComments['128266410']}">
                        Townsquare animated explainer.  Recreated the site&#39;s look in After Effects from layered .psd files and animated everything to explain Townsquare. Much more compelling than a screencast IMO. Handled all screen capture, editing and animations.
                     </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/OliviaDreyer__-ya5EQp5SFqzLnsedsiluQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/OliviaDreyer">   
                  <h3>
                     Olivia Dreyer
                     <span>New York Video Editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a director/producer/cinematographer. I graduated from the New York Conservatory for Dramatic Arts and since have been filming and editing a lot of short and independent films and crowdfunding videos.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="163955935" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/567462020_1280.jpg)"></div>
                     <img class="play" alt="Kickstarter promo video for a movie. In this, I directed, filmed, and edited the entire promo." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '163955935')"
                        ng-class="{full: showFullComments['163955935']}">
                        Kickstarter promo video for a movie. In this, I directed, filmed, and edited the entire promo.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="162995094" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/565866813_1280.jpg)"></div>
                     <img class="play" alt="Kickstarter promo video for a movie. In this, I directed, filmed, and edited the entire promo." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '162995094')"
                        ng-class="{full: showFullComments['162995094']}">
                        Kickstarter promo video for a movie. In this, I directed, filmed, and edited the entire promo.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="162997740" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/565876234_1280.jpg)"></div>
                     <img class="play" alt="Horror/Thriller short film. I directed, shot, and edited this film myself." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '162997740')"
                        ng-class="{full: showFullComments['162997740']}">
                        Horror/Thriller short film. I directed, shot, and edited this film myself.
                     </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 New York Video Editors</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/.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ReubenOliver">   
                  <h3>
                     Reuben Oliver
                     <span>New York Video Editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;ve been editing videos for over 17 years across different industries including broadcast, corporate, and gaming. 

If I were to describe myself in 3 words it would be 1) Creative 2) Fast 3) Reliable.

My skills include Colour grading, Audio mixing, Graphics design, Compressing video for the web, Media Management, Producing, Shooting and Lighting.

Please email me at reuben.oliver@gmail.com or phone 929 202 6884.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="128402093" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/519525922_640.jpg)"></div>
                     <img class="play" alt="I&#39;ve been editing videos for over 17 years across different industries including broadcast, corporate, and gaming" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '128402093')"
                        ng-class="{full: showFullComments['128402093']}">
                        I&#39;ve been editing videos for over 17 years across different industries including broadcast, corporate, and gaming
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="128533134" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/519716171_640.jpg)"></div>
                     <img class="play" alt="Video edited for Panel App" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '128533134')"
                        ng-class="{full: showFullComments['128533134']}">
                        Video edited for Panel App
                     </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/0000-default-man.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/timfranklin">   
                  <h3>
                     Tim Franklin
                     <span>New York Video Editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">i</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="88454629" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/504017947_640.jpg)"></div>
                     <img class="play" alt="Video Editing Demo Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '88454629')"
                        ng-class="{full: showFullComments['88454629']}">
                        Video Editing Demo Reel
                     </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/NewMindsGroup__oyV4qw4OSfCzYmUK2rfBBw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/NewMindsGroup">   
                  <h3>
                     New Minds Group
                     <span>New York Video Editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We would to love to help you get the right message across, bring your idea to life, count on us to make something memorable and professional.  Our team can help you with Promo Videos, Motion Graphics, Photography and Interactive Media.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="J6P1740ma3w" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/J6P1740ma3w/hqdefault.jpg)"></div>
                     <img class="play" alt="Video Direction, Video Edition, Camera Shooting, Sound Mixing, Art Direction, Typography, Video Coloring" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'J6P1740ma3w')"
                        ng-class="{full: showFullComments['J6P1740ma3w']}">
                        Video Direction, Video Edition, Camera Shooting, Sound Mixing, Art Direction, Typography, Video Coloring
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented New York Video Editors 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/ArieOhayon__j0aM9KsHRHeOrYhTlgbe-g.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ArieOhayon">   
                  <h3>
                     Wild Pixel Productions - Cinematographer/Editor
                     <span>New York Video Editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Experienced and versatile videographer, editor and director</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="uxjt54AxERk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/uxjt54AxERk/0.jpg)"></div>
                     <img class="play" alt="Director/Cinematographer/Editor: Arie Ohayon  - Wild Pixel Production 2015" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'uxjt54AxERk')"
                        ng-class="{full: showFullComments['uxjt54AxERk']}">
                        Director/Cinematographer/Editor: Arie Ohayon  - Wild Pixel Production 2015
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="trZbJY2JJzk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/trZbJY2JJzk/0.jpg)"></div>
                     <img class="play" alt="Director/Cinematographer/Editor: Arie Ohayon - Wild Pixel Productions 2015" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'trZbJY2JJzk')"
                        ng-class="{full: showFullComments['trZbJY2JJzk']}">
                        Director/Cinematographer/Editor: Arie Ohayon - Wild Pixel Productions 2015
                     </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/.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/DavidUscinski">   
                  <h3>
                     David Uscinski
                     <span>New York Video Editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Award winning multimedia Director/Editor with 20 years of experience in short and long-format television, broadcast news, on-air promos, web promos, long format documentary, short films, feature film production and original programming. Internationally recognized for technical innovation and storytelling, my experience spans from editing, writing, producing, to editing and motion graphics. 
As a creative storyteller, I am able to take a client’s vision and create a multimedia piece that exceeds expectations. My fiction/documentary work has aired on Discovery Channel, Nat Geo, MSNBC, and screened at dozens of film festivals worldwide. I have also produced, directed, shot, and edited news segments and multimedia pieces for a multitude of outlets, including Russia Today and Jus Punjabi TV. Most recently, I edited two short films premiering at the Cannes and Coney Island film festivals, and a feature length film ready to run the festival circuit.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="zfluGSJjmKE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/zfluGSJjmKE/hqdefault.jpg)"></div>
                     <img class="play" alt="Editing reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'zfluGSJjmKE')"
                        ng-class="{full: showFullComments['zfluGSJjmKE']}">
                        Editing reel
                     </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/Carolyn_Lopez__N7yUbgvRSy-1rODeQc-d_Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/CarolynLopez">   
                  <h3>
                     Dylan Lopez
                     <span>New York Video Editor in </span>
                     <span class="location">Brooklyn, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a freelance video editor as well as freelance camera operator. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="130184076" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/521942764_1280.jpg)"></div>
                     <img class="play" alt="Here is my reel. These are images I have shot and edited." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '130184076')"
                        ng-class="{full: showFullComments['130184076']}">
                        Here is my reel. These are images I have shot and edited.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best New York Video Editor for your project</span>
               <a href="/start"><div class="button">Connect with New York Video Editors</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/BenSharif__pdFXmEswSkeXqtlqWOhrrQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/BenSharif">   
                  <h3>
                     Ben Sharif
                     <span>New York Video Editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a freelance editor with 7+ years of experience and a passion for visual storytelling. My biggest assets are the meticulous attention I pay to organization and all detials within any given video, and my efficiency in turning in professional videos in a timely fashion. I am extremely proficient with Premiere Pro, Final Cut Pro 7, Adobe Media Encoder, Excel, etc. and have a basic knowledge of Avid, Final Cut Pro X, After Effects, Photoshop.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="106251219" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/489299240_1280.jpg)"></div>
                     <img class="play" alt="A short documentary I directed and edited about Juan Pablo, Jofre, a world renowned Argentinian musician and his unusual instrument, the bandoneón" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '106251219')"
                        ng-class="{full: showFullComments['106251219']}">
                        A short documentary I directed and edited about Juan Pablo, Jofre, a world renowned Argentinian musician and his unusual instrument, the bandoneón
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="95321809" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/475342777_1280.jpg)"></div>
                     <img class="play" alt="A video I edited for the kickstarter campaign for my NYU thesis film" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '95321809')"
                        ng-class="{full: showFullComments['95321809']}">
                        A video I edited for the kickstarter campaign for my NYU thesis film
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="110334791" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/494546249_1280.jpg)"></div>
                     <img class="play" alt="A spec promo for the 2014-15 NBA regular season I edited using highlights, interviews and other various clips found on youtube" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '110334791')"
                        ng-class="{full: showFullComments['110334791']}">
                        A spec promo for the 2014-15 NBA regular season I edited using highlights, interviews and other various clips found on youtube
                     </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/FadeInCreative__u4ett7fVTy6PQuoUDHwTNw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/FadeInCreative">   
                  <h3>
                     Fade In: Creative
                     <span>New York Video Editor in </span>
                     <span class="location">Morristown, NJ, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Filmmakers Matt Cori, Dan Davis, and
Dan Fabrizio have been collaborating since 2003.  Collectively, they’ve produced a wide range of programs including commercials, documentaries, promotional videos, interactive training videos, educational and independent films.  The clients these programs have been produced for are equally as diverse – ranging from non-profit organizations, to government agencies, and featuring companies in the retail, publishing, energy, education, insurance, fashion, and healthcare industries.  These projects have taken Matt and Dan-squared not only across America, but all over the world with productions done in over 23 countries.  
Find out more at fadeincreative.com and to see more samples, please visit vimeo.com/fadeincreative.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="79685713" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/455448500_1280.jpg)"></div>
                     <img class="play" alt="HAZAN MOTORWORKS (Award-Winning) Meet Max Hazan. Since he was young he&#39;s been fascinated with putting things together - especially motorcycles.  Max Hazan builds custom motorcycles -- by hand.  HAZAN MOTORWORKS is the proud recipient of 2 2014 Telly Awards! Winner of the Bronze Award for Best Documentary and Best Editing." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '79685713')"
                        ng-class="{full: showFullComments['79685713']}">
                        HAZAN MOTORWORKS (Award-Winning) Meet Max Hazan. Since he was young he&#39;s been fascinated with putting things together - especially motorcycles.  Max Hazan builds custom motorcycles -- by hand.  HAZAN MOTORWORKS is the proud recipient of 2 2014 Telly Awards! Winner of the Bronze Award for Best Documentary and Best Editing.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="99723456" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/480995010_1280.jpg)"></div>
                     <img class="play" alt="“Too Good:” The Story of TOLANI (Award-Winning) Located on the Upper West Side of Manhattan, Tolani is slang that means “Too Good” in South African.  This film is the story of TOLANI...Winner of 2 2014 Davey Awards (The Gold Award for Online Film &amp; Video Documentary &amp; The Silver Award for Online Film &amp; Video Editing)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '99723456')"
                        ng-class="{full: showFullComments['99723456']}">
                        “Too Good:” The Story of TOLANI (Award-Winning) Located on the Upper West Side of Manhattan, Tolani is slang that means “Too Good” in South African.  This film is the story of TOLANI...Winner of 2 2014 Davey Awards (The Gold Award for Online Film &amp; Video Documentary &amp; The Silver Award for Online Film &amp; Video Editing)
                     </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>
