<!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>New York Wedding Editors | Videopixie</title>
   <meta name="description" content="A selection of the best wedding video editors in the greater New York area">
   <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 New York Wedding Editors</h1>
      <h2>Videopixie helps you hire the best Wedding 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="/new-york-videographers">New York Videographers</a>
      
      <a class="related" href="/best-new-york-animation-and-motion-graphics-artists">New York Animators and Motion Graphics Desisgners</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/Charlie_Cole__XIjskhh8QRGt6MWqm_PhBQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/charliecole">   
                  <h3>
                     Charlie Cole
                     <span>New York 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" 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
                     </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/Joseph_Gugliuzza__I003Cjt_QZ6frchA0xKDow.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JosephGugliuzza">   
                  <h3>
                     Joseph Gugliuzza
                     <span>New York editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am first and foremost a storyteller. I am a lover of film, a love of life, a lover of bringing film to life.

From commercials, weddings, trailers, shorts, and documentary films to corporate, and music videos I do it all!

I have spent years perfecting my craft and pride myself on continually growing a filmmaker. I am very meticulous, detail oriented, and I flat out love doing what I do!  As a filmmaker I ensure that finished products reflect strongly not only on myself but on my clients as well! I love working with companies that share my vision for groundbreaking and breathtaking editing.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="111911967" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/496866958_640.jpg)"></div>
                     <img class="play" alt="Wedding Film | New Zealand" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '111911967')"
                        ng-class="{full: showFullComments['111911967']}">
                        Wedding Film | New Zealand
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="119504416" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508256760_640.jpg)"></div>
                     <img class="play" alt="Wedding Film | Paris, France" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '119504416')"
                        ng-class="{full: showFullComments['119504416']}">
                        Wedding Film | Paris, France
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="106714798" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/490000726_640.jpg)"></div>
                     <img class="play" alt="Wedding Film | New Zealand" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '106714798')"
                        ng-class="{full: showFullComments['106714798']}">
                        Wedding Film | New Zealand
                     </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/OneCuteDogProductions__JGRUYN_KRTawfL4vhuibpw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/OneCuteDogProductions">   
                  <h3>
                     One Cute Dog Productions
                     <span>New York editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">With a team whose resumes boast Tony Nominations, Webby Nominations and credits with networks like ABC, NBC, CBS and FOX, One Cute Dog Productions is on the cutting edge of today&#39;s video production landscape. 

Specializing in branded content, One Cute Dog is a full pre- to post - production company that specializes in meeting your needs on time and on budget. Select clients include PediaSure, Thermador and Quicken Loans.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="102538031" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/494186215_1280.jpg)"></div>
                     <img class="play" alt="A lovely Italian couple came to New York for their Honeymoon and asked that we film them in different locations around New York to commemorate their trip.    This video provides a good example of how we would edit a wedding video - upbeat with an emphasis on laughter and humor." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '102538031')"
                        ng-class="{full: showFullComments['102538031']}">
                        A lovely Italian couple came to New York for their Honeymoon and asked that we film them in different locations around New York to commemorate their trip.    This video provides a good example of how we would edit a wedding video - upbeat with an emphasis on laughter and humor.
                     </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 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/TheCubedEffectLLC__R7BM6MQIShiitebhfm0cLQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TheCubedEffectLLC">   
                  <h3>
                     The Cubed Effect, LLC
                     <span>New York editor in </span>
                     <span class="location">Brooklyn, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">A NYC based production company with over 9 years of experience. We have shot and directed numerous music videos, weddings, commercials, short films and documentaries. We value each and every client&#39;s artistic vision; let us make your vision a reality.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="70572078" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/443868345_640.jpg)"></div>
                     <img class="play" alt="Wedding:  Coryne + David" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '70572078')"
                        ng-class="{full: showFullComments['70572078']}">
                        Wedding:  Coryne + David
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="101632242" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/511014556_640.jpg)"></div>
                     <img class="play" alt="Wedding: Sara &amp; Everard" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '101632242')"
                        ng-class="{full: showFullComments['101632242']}">
                        Wedding: Sara &amp; Everard
                     </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/Artlookstudios__VN1ozBfQRh-8EkZivYIJeg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/Artlookstudios774">   
                  <h3>
                     Artlookstudios
                     <span>New York editor in </span>
                     <span class="location">Нью-Йорк, Сполучені Штати Америки</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Hi there, my name Alex and I`m co-owner of photo&amp;video editing/retouching company Artlookstudios. 
 
Our post production company Artlookstudios has been successfully operating for 3 years and is located in Brooklyn New York. 
We are specialized in editing of wedding photos and video. 
In the year we are working more than million photos and about 400-600 wedding videos.
With photos, we use the most recent version of Lightroom and for video editing Adobe Premiere CC (Adobe After Effects, Adobe Audition, Pluraleyes etc). 
you can find some samples below 
Showreel
https://youtu.be/kFSd_Eq5tyo
Highlights
https://drive.google.com/open?id=0B9-cQ74JjeU5aktXLVRTRnVzbDQ 
Tizer
https://drive.google.com/open?id=0B9-cQ74JjeU5cFBqWnoycFVWNEU
each order will be ready in 7-20 days

 We provide quick turnaround time and affordable prices. For wedding video we charge around $300
package included
*Full film 30-180 min
*Highlights 3-5 min
all videos will have: 
1) music that is picked out by the client  
2) intro with client names and company logo. (up to you) 
3) the footage will be cleaned up, basic color corrected and pleasant to watch. If you will need advanced color correction or any it can be discussed.

Meanwhile we understand that when working with a new client it may take a few rounds until we find a style that satisfies you. 
So 2 revisions included and we don&#39;t charge any upfront. 

Feel free to contact me cell: +1 (929) 274 3311 or (347) 221-7023 Alex 
email: artlookstudios@gmai.com 
Hope we can make a lot great projects together!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="kFSd_Eq5tyo" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/kFSd_Eq5tyo/maxresdefault.jpg)"></div>
                     <img class="play" alt="Wedding Showreel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'kFSd_Eq5tyo')"
                        ng-class="{full: showFullComments['kFSd_Eq5tyo']}">
                        Wedding Showreel
                     </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/Luke_Berg__RcAxS5JPRdufOQ8z4YYeiw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/lukeberg">   
                  <h3>
                     Luke Berg
                     <span>New York editor in </span>
                     <span class="location">New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a New York City-based videographer who creates artistic video production of all kinds. I specialize in quality commercials and beautiful and moving wedding videos. After graduating from the University of Central Florida in 2012, I won a film festival, created a commercial for Lenovo Computers, and screened my short film at the 65th annual Cannes Film Festival in France. Let me take my experience and use it to craft a video of your wedding or business. It will be something you will never forget. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="RJ-K66DszkM" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/RJ-K66DszkM/0.jpg)"></div>
                     <img class="play" alt="Rodriguez Wedding" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'RJ-K66DszkM')"
                        ng-class="{full: showFullComments['RJ-K66DszkM']}">
                        Rodriguez Wedding
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="l2jtSIC_rUI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/l2jtSIC_rUI/0.jpg)"></div>
                     <img class="play" alt="Smith Wedding" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'l2jtSIC_rUI')"
                        ng-class="{full: showFullComments['l2jtSIC_rUI']}">
                        Smith Wedding
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented New York 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/PicturePerfectMediaProductions__b0NC18cKRAGZTjZsFtUU_A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/PicturePerfectMediaProductions">   
                  <h3>
                     Picture Perfect Media Productions
                     <span>New York editor in </span>
                     <span class="location">Newark, NJ, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Providing Professional Video and Photography Services. Whether you are looking to create everlasting memories of a special event like a wedding, a graduation, or a ceremony or you&#39;re a business looking to brand your company with profile video and photos for your website, we are your one-stop-shop.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="160353772" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/562322656_1280.jpg)"></div>
                     <img class="play" alt="Wedding Video Montage (Cinematic)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '160353772')"
                        ng-class="{full: showFullComments['160353772']}">
                        Wedding Video Montage (Cinematic)
                     </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/Frank_Dima__6ztvB5RXT6C44mtgLQ2iTA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/frankdima">   
                  <h3>
                     Frank Dima
                     <span>New York editor in </span>
                     <span class="location">Babylon, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;ve been working as a freelance editor since 1998.  The main focus of my work with has been editing corporate industrials and commercials.  I have also edited a number of event videos such as weddings and corporate seminars.  I am fluent on all the major editing platforms.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="GRzIwZIdetY" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/GRzIwZIdetY/maxresdefault.jpg)"></div>
                     <img class="play" alt="This is a trailer for a wedding I edited.   It was shot in Pinehurst, NC.  The ceremony and reception took place at an old horse racing track and fairgrounds." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'GRzIwZIdetY')"
                        ng-class="{full: showFullComments['GRzIwZIdetY']}">
                        This is a trailer for a wedding I edited.   It was shot in Pinehurst, NC.  The ceremony and reception took place at an old horse racing track and fairgrounds.
                     </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/HAKVision__r0-W64dnTxWX53yDwas0hQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/HAKVision">   
                  <h3>
                     HAK Vision
                     <span>New York editor in </span>
                     <span class="location">New Jersey, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">HAK Vision LLC is a Creative Media Video Production company based in the New York City New Jersey area.

With over 15 years of combined experience in film production, cinematography, photography, and marketing, HAK Vision is able to leverage experience, skills and talent to assist clients in planning, and producing their creative projects . Our passion is supplying artistic, engaging, professional quality content, for your film project, product campaign, or brand.

HAK Vision understands the importance of quality content that will engage your target audience and deliver your message. With hands on experience in video production and marketing. HAK Vision will provide you with quality content and assist you in taking your vision to the next level.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="175004707" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/582123673_1280.jpg)"></div>
                     <img class="play" alt="Engagement Wedding Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '175004707')"
                        ng-class="{full: showFullComments['175004707']}">
                        Engagement Wedding Reel
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best New York editor for your project</span>
               <a href="/start"><div class="button">Connect with New York 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/JessicaDotson__Xc_EaBrIQK6AedFZHuLlUQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/jessicadotson">   
                  <h3>
                     Jessica Dotson
                     <span>New York editor in </span>
                     <span class="location">New Jersey, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a film maker and student from Rutgers. I write, direct, and edit my own projects. I would love to help you out with yours! </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="c6be7872-e993-4661-b461-02fabc324aff" vp-provider="videopixie">
                     <div class="reel-thumbnail" style="background-image: url(https://s3.amazonaws.com/s3.sellstage.com/c6be7872-e993-4661-b461-02fabc324aff_120h.jpg)"></div>
                     <img class="play" alt="Wedding highlight - teaser" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'c6be7872-e993-4661-b461-02fabc324aff')"
                        ng-class="{full: showFullComments['c6be7872-e993-4661-b461-02fabc324aff']}">
                        Wedding highlight - teaser
                     </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/BKSProductions__1DCO75N4T3ey70vxdKvJLA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/BKSProductions">   
                  <h3>
                     BKS Productions
                     <span>New York editor in </span>
                     <span class="location">Philadelphia, PA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We, at BKS Productions, take video editing and shooting at a creative, artistic, and cinematic-feel approach exploring different ways to make a video project a story.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="171515151" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/577004463_1280.jpg)"></div>
                     <img class="play" alt="On June 10th, 2016, we had the privilege and honor to shoot a Cambodian wedding ceremony for our good friend, Khoa and his beautiful wife, Angeliya. It was a long but rewarding day as it was our first time experiencing such a rich and amazing ceremony filled with lots of love and laughter. We went for the cinematic look even though we faced harsh sunlight and tight spaces. Congratulations again Khoa and Ange, love always." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '171515151')"
                        ng-class="{full: showFullComments['171515151']}">
                        On June 10th, 2016, we had the privilege and honor to shoot a Cambodian wedding ceremony for our good friend, Khoa and his beautiful wife, Angeliya. It was a long but rewarding day as it was our first time experiencing such a rich and amazing ceremony filled with lots of love and laughter. We went for the cinematic look even though we faced harsh sunlight and tight spaces. Congratulations again Khoa and Ange, love always.
                     </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/ShaunaBannan__e-vEY_lyQsGqO78uay0maw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ShaunaBannan">   
                  <h3>
                     Shauna Bannan
                     <span>New York editor in </span>
                     <span class="location">Philadelphia, PA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">My goal is to create a professionally-edited piece of your memories, ideas and concepts. I&#39;ve made countless wedding films, corporate promos, photo stories and have had several written articles published. I&#39;m a passionate storyteller and strive to create something that&#39;s authentic, clean and styled to represent who you are and what you&#39;d like to see. Feel free to contact me for examples of my work or just to say hello!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="136016094" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/530393361_1280.jpg)"></div>
                     <img class="play" alt="This is a same-day wedding film. As the editor, I was handed (at different times throughout the day) every piece of recorded video from three cameras and given around five hours to create a 3-4 minute video, which was then watched by the wedding party and guests during the wedding reception. All editing, including audio and color-corrections, was done by me." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '136016094')"
                        ng-class="{full: showFullComments['136016094']}">
                        This is a same-day wedding film. As the editor, I was handed (at different times throughout the day) every piece of recorded video from three cameras and given around five hours to create a 3-4 minute video, which was then watched by the wedding party and guests during the wedding reception. All editing, including audio and color-corrections, was done by me.
                     </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 editors</div></a>
            </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>
