<!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>Videographers For Hire | Videopixie</title>
   <meta name="description" content="Check out the top 20 Videographers on Videopixie and some of their work">
   <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" 
      
      style = "background-image: url('https://s3.amazonaws.com/our.s3.videopixie.com/hero/videographer_hero.jpg');"
      >
   
      <h1>Best Videographers For Hire</h1>
      <h2>Videopixie helps you hire the best videographers.</h2>
      
      <div class="buttonWrapper">
         <a href="/start"><div class="button">Start getting quotes today</div></a>
      </div>
      
   </div>
   
   <div id="relatedWrapper">
      
      <a class="related" href="/san-francisco-videographers">San Francisco Videographers</a>
      
      <a class="related" href="/los-angeles-videographers">Los Angeles Videographers</a>
      
      <a class="related" href="/new-york-videographers">New York Videographers</a>
      
      <a class="related" href="/seattle-videographers">Seattle Videographers</a>
      
      <a class="related" href="/chicago-videographers">Chicago Videographers</a>
      
      <a class="related" href="/florida-videographers">Florida Videographers</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/Picturelab/Transvideo_Studios__BDJMjEI7TwuJHQDQBEb2bg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/picturelab">   
                  <h3>
                     Picturelab/Transvideo Studios
                     <span>videographer in </span>
                     <span class="location">Mountain View, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Picturelab is the creative &amp; design department of Silicon Valley’s largest film/video production company: Transvideo Studios. Since opening our doors in 1981 we’ve produced more than 10,000 videos, yielding more than 200 million hits. Creating explainer and overview videos, television commercials, integrated videos and documentaries. We’ve worked with some of the most exciting and innovative organizations on the face of the earth like Google, Facebook, Microsoft and NASA. And we’ve helped a bunch of start-ups become big names in their own right… like Box and Mint. We’ve created work that’s made a difference, and helped organizations grow and succeed.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="110506094" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/494781912_640.jpg)"></div>
                     <img class="play" alt="Introducing the Poynt Smart Terminal.  Directed, filmed and edited by Picturelab" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '110506094')"
                        ng-class="{full: showFullComments['110506094']}">
                        Introducing the Poynt Smart Terminal.  Directed, filmed and edited by Picturelab
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="41945534" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/290821850_640.jpg)"></div>
                     <img class="play" alt="Thumbtack Overview that we directed, produced, filmed and edited." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '41945534')"
                        ng-class="{full: showFullComments['41945534']}">
                        Thumbtack Overview that we directed, produced, filmed and edited.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="41378240" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/286540973_640.jpg)"></div>
                     <img class="play" alt="Stitcher Overview.  Roles: Director, Videographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '41378240')"
                        ng-class="{full: showFullComments['41378240']}">
                        Stitcher Overview.  Roles: Director, Videographer, Editor
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Riposte__xb9EFzIwROKMTeYUuxJjPA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/riposte">   
                  <h3>
                     Riposte
                     <span>videographer in </span>
                     <span class="location">Denver, CO, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Riposte is a content production company specializing in physical production, creative editorial, and visual effects.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="63753408" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/434165831_640.jpg)"></div>
                     <img class="play" alt="Joy and Energy.  Beautiful cinematography in this video, custom score and seamless editing that convey the simple moments of everyday life." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '63753408')"
                        ng-class="{full: showFullComments['63753408']}">
                        Joy and Energy.  Beautiful cinematography in this video, custom score and seamless editing that convey the simple moments of everyday life.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="92544399" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/474304556_640.jpg)"></div>
                     <img class="play" alt="Verizon Wireless &quot;Business Devices&quot;. We ran the entire production, from direction, to casting, filming and post." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '92544399')"
                        ng-class="{full: showFullComments['92544399']}">
                        Verizon Wireless &quot;Business Devices&quot;. We ran the entire production, from direction, to casting, filming and post.
                     </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/Nick_Paonessa__Kw93CuZGQ5Ksas9EUXtUPg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/lowercaseprods">   
                  <h3>
                     Lowercase Prods
                     <span>videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Our production company specializes in short, dynamic digital videos for brands, people and projects we find interesting. As you can see from our portfolio, all of our work has a film aesthetic and it&#39;s always in HD. We love to bring out the personality of the subject we work with to tell their respective story, which makes each video unique. From a production standpoint we work extremely fast. We run a fun, easy-going production and once we have the footage, the rate at which we deliver the first cut is unmatched. Clients are thrilled with our turnover rate. Please review the sample videos as they will demonstrate the quality and character of our work. This bid is ballpark figure. We&#39;ll only really know what it will cost, once we determine a number of factors through all 3 stages of this project: pre-production, production &amp; post production. If you have any questions at all please feel free to contact us.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="41614783" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/288348906_640.jpg)"></div>
                     <img class="play" alt="The Lumière Butchers. Produced, Directed, Filmed and Edited by Lowercase Productions" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '41614783')"
                        ng-class="{full: showFullComments['41614783']}">
                        The Lumière Butchers. Produced, Directed, Filmed and Edited by Lowercase Productions
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="ui5m-r2FQUk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/ui5m-r2FQUk/0.jpg)"></div>
                     <img class="play" alt="More Than Stores - Episode 1 - Fiore Market Cafe. Filmed and Edited by Lowercase Prods" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'ui5m-r2FQUk')"
                        ng-class="{full: showFullComments['ui5m-r2FQUk']}">
                        More Than Stores - Episode 1 - Fiore Market Cafe. Filmed and Edited by Lowercase Prods
                     </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 videographers</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/Silver_Style_Pictures__pcT_7m_7T-C5v3fPLouFLw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/silverstylepictures">   
                  <h3>
                     Silver Style Pictures
                     <span>videographer in </span>
                     <span class="location">Red Bank, NJ, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">An innovative film and video production company based in Red Bank, New Jersey. We live on the east coast, but we work everywhere. 

Our work is a collection of feature &amp; short length films, television programming, commercials, music videos, branded media and original music. 

We work alongside our clients to see their vision is met, surpassed and beyond.</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/Zangs_Films__hzMlXq6NRJ6FtgB5pQeiQA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/zangsfilms">   
                  <h3>
                     Zangs Films
                     <span>videographer in </span>
                     <span class="location">Portland, OR, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">While working as a designer, Octave started shooting snowboarding and surfing in Europe, which led him to have his work showcased in renown publications. In mid-2014, when the opportunity presented itself, he took the leap and moved to California to create his own film production company. He is also an experienced music producer.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="109460436" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/493418796_640.jpg)"></div>
                     <img class="play" alt="One Summer Swell with Pat Towersey Roles: Director, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '109460436')"
                        ng-class="{full: showFullComments['109460436']}">
                        One Summer Swell with Pat Towersey Roles: Director, Cinematographer, Editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="123624870" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/513027149_640.jpg)"></div>
                     <img class="play" alt="The Deepest Valley.  Roles: Director, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '123624870')"
                        ng-class="{full: showFullComments['123624870']}">
                        The Deepest Valley.  Roles: Director, Cinematographer, Editor
                     </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/Noisy_Savage__lpGUxSAISH2jx32EfXvIpQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/noisysavage">   
                  <h3>
                     Noisy Savage
                     <span>videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are a group of 3 freelancers specializing in interviews, promos, and story telling. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="101055028" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/482739686_640.jpg)"></div>
                     <img class="play" alt="DJ TechTools - FX Transitions DJ Performance Tutorial. Filmed and Edited by Noisy Savage" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '101055028')"
                        ng-class="{full: showFullComments['101055028']}">
                        DJ TechTools - FX Transitions DJ Performance Tutorial. Filmed and Edited by Noisy Savage
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="85782338" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/463213141_640.jpg)"></div>
                     <img class="play" alt="THE STAGES OF SLEEP @ The Brick and Mortar - Music video filmed and edited by Noisy Savage includes live event recordings." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '85782338')"
                        ng-class="{full: showFullComments['85782338']}">
                        THE STAGES OF SLEEP @ The Brick and Mortar - Music video filmed and edited by Noisy Savage includes live event recordings.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="121325134" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/509526010_640.jpg)"></div>
                     <img class="play" alt="Noisy Savage Showreel - Cinematographer, Editor, Director" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '121325134')"
                        ng-class="{full: showFullComments['121325134']}">
                        Noisy Savage Showreel - Cinematographer, Editor, Director
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented videographers 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/Charlie_Cole__XIjskhh8QRGt6MWqm_PhBQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/charliecole">   
                  <h3>
                     Charlie Cole
                     <span>videographer 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="112329654" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/497544316_640.jpg)"></div>
                     <img class="play" alt="Cinematography Reel 2014 - Charlie Cole" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '112329654')"
                        ng-class="{full: showFullComments['112329654']}">
                        Cinematography Reel 2014 - Charlie Cole
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="81772985" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/499780881_640.jpg)"></div>
                     <img class="play" alt="Waterfall trailer, by master cinematographer Charlie Cole" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '81772985')"
                        ng-class="{full: showFullComments['81772985']}">
                        Waterfall trailer, by master cinematographer Charlie Cole
                     </p>
                  </div>
                  
                  
               
                  <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/Loqey__ldpon8JzSXaCHM4zEvRrEw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/loqey">   
                  <h3>
                     Loqey
                     <span>videographer in </span>
                     <span class="location">Kansas City, MO, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are incredibly good at what we do.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Ibh124RrPkw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/Ibh124RrPkw/0.jpg)"></div>
                     <img class="play" alt="Instead Of Beating Your Cat...  My team oversaw production, direction, videography, editing..." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Ibh124RrPkw')"
                        ng-class="{full: showFullComments['Ibh124RrPkw']}">
                        Instead Of Beating Your Cat...  My team oversaw production, direction, videography, editing...
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Ns8vR6o5-fU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/Ns8vR6o5-fU/0.jpg)"></div>
                     <img class="play" alt="Angela (in 4k)- The Revolutionary Smart TV From Independa.  Produced by Loqey, filmed in 4K" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Ns8vR6o5-fU')"
                        ng-class="{full: showFullComments['Ns8vR6o5-fU']}">
                        Angela (in 4k)- The Revolutionary Smart TV From Independa.  Produced by Loqey, filmed in 4K
                     </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/RandoMartins__FErghpziSF2LTj8FowbQdg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/randomartins">   
                  <h3>
                     Rando Martins
                     <span>videographer in </span>
                     <span class="location">Hartford, CT, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a freelance DP and editor specializing in timelapse and hyperlapse.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="93090351" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/474181711_640.jpg)"></div>
                     <img class="play" alt="Sky Walkers.  Roles: Videographer, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '93090351')"
                        ng-class="{full: showFullComments['93090351']}">
                        Sky Walkers.  Roles: Videographer, Cinematographer, Editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="113771170" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/499244140_640.jpg)"></div>
                     <img class="play" alt="Rando | Demo Reel 4K.  Roles: Videographer, Cinematographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '113771170')"
                        ng-class="{full: showFullComments['113771170']}">
                        Rando | Demo Reel 4K.  Roles: Videographer, Cinematographer, Editor
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best videographer for your project</span>
               <a href="/start"><div class="button">Connect with videographers</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/Tin_Squid_Studios__WBnL83rwTnyfS6nUiMMOqg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/tinsquidstudios">   
                  <h3>
                     Tin Squid Studios
                     <span>videographer in </span>
                     <span class="location">Chicago, IL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Tin Squid Studios is a media production company committed to making your brand come alive. We believe video is the most powerful way to tell a story, communicate an idea, or sell a product. We are passionate about film and would love to work with you to create an excellent video that engages your audience and builds a lasting impression.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="70048177" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/465197542_640.jpg)"></div>
                     <img class="play" alt="Tin Squid Reel.  Roles - videographer, editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '70048177')"
                        ng-class="{full: showFullComments['70048177']}">
                        Tin Squid Reel.  Roles - videographer, editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="86323112" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/465198037_640.jpg)"></div>
                     <img class="play" alt="Christian Art Gifts - PROMO 2014. Roles: Director, Videographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '86323112')"
                        ng-class="{full: showFullComments['86323112']}">
                        Christian Art Gifts - PROMO 2014. Roles: Director, Videographer, Editor
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="77188537" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/452302118_640.jpg)"></div>
                     <img class="play" alt="Matt + Lacey  // Highlight Film - Roles: Videographer, Editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '77188537')"
                        ng-class="{full: showFullComments['77188537']}">
                        Matt + Lacey  // Highlight Film - Roles: Videographer, Editor
                     </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/Adam_Wiltgen__1hn8IGdSQ5ePK-Xr956SqQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/dundeedigital">   
                  <h3>
                     Dundee Digital
                     <span>videographer in </span>
                     <span class="location">Omaha, NE, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">From pre to post production and everything in between.  </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="57174709" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/472058842_640.jpg)"></div>
                     <img class="play" alt="Dundee Digital&#39;s reel, where we highlight our work with awesome clients and our skills in videography, direction and editing." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '57174709')"
                        ng-class="{full: showFullComments['57174709']}">
                        Dundee Digital&#39;s reel, where we highlight our work with awesome clients and our skills in videography, direction and editing.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="116188051" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/502462735_640.jpg)"></div>
                     <img class="play" alt="Jerry Ryan - Clothing &amp; Sportswear.  Roles: direction, videography, editing" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '116188051')"
                        ng-class="{full: showFullComments['116188051']}">
                        Jerry Ryan - Clothing &amp; Sportswear.  Roles: direction, videography, editing
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="112958835" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/498115683_640.jpg)"></div>
                     <img class="play" alt="Kendrick and Kenyatta - Roles: videographer, editor" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '112958835')"
                        ng-class="{full: showFullComments['112958835']}">
                        Kendrick and Kenyatta - Roles: videographer, editor
                     </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/Ioana_Vasile__Nyo3_KXsT1W_HThqy3783w.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ioanavasile">   
                  <h3>
                     Ioana Vasile
                     <span>videographer in </span>
                     <span class="location">Los Angeles, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Specializing in movies, series, commercials and corporate videos.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="0HNB06n14PU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/0HNB06n14PU/0.jpg)"></div>
                     <img class="play" alt="Monster Jack - The Horrible Hollow Head.  Role: cinematographer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '0HNB06n14PU')"
                        ng-class="{full: showFullComments['0HNB06n14PU']}">
                        Monster Jack - The Horrible Hollow Head.  Role: cinematographer
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="H2mp7Kpn5vA" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/H2mp7Kpn5vA/0.jpg)"></div>
                     <img class="play" alt="ORLY&#39;s Choose Your Color, Change Your World.  I was the director of photography on this production." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'H2mp7Kpn5vA')"
                        ng-class="{full: showFullComments['H2mp7Kpn5vA']}">
                        ORLY&#39;s Choose Your Color, Change Your World.  I was the director of photography on this production.
                     </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 videographers</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/Josh_Eisenfeld__JzOCNZ2kSrGIJowCKNCgOg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/josheisenfeld">   
                  <h3>
                     4TWELVE Pictures
                     <span>videographer in </span>
                     <span class="location">Pittsburgh, PA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I like to edit videos, but I love to make films.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120706452" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508693825_640.jpg)"></div>
                     <img class="play" alt="Our companies Demo-Reel. Director, cinematographer, motion graphics, editor, visual FX" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120706452')"
                        ng-class="{full: showFullComments['120706452']}">
                        Our companies Demo-Reel. Director, cinematographer, motion graphics, editor, visual FX
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="116981650" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/509026474_640.jpg)"></div>
                     <img class="play" alt="Commercial for Walbum, a picture sharing phone app. Roles: Director, Cinematographer, Editor, Color Grading" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '116981650')"
                        ng-class="{full: showFullComments['116981650']}">
                        Commercial for Walbum, a picture sharing phone app. Roles: Director, Cinematographer, Editor, Color Grading
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="vpVwD7VydeE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/vpVwD7VydeE/0.jpg)"></div>
                     <img class="play" alt="Music/Lyric video for singer/songwriter Dylan Reynolds, broadcasted on VEVO.  Produced, directed, filmed, edited and animated." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'vpVwD7VydeE')"
                        ng-class="{full: showFullComments['vpVwD7VydeE']}">
                        Music/Lyric video for singer/songwriter Dylan Reynolds, broadcasted on VEVO.  Produced, directed, filmed, edited and animated.
                     </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/IQvideography___TfNhz0mS_aGZE9_d5X73A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/iqvideography">   
                  <h3>
                     IQvideography
                     <span>videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">IQvideography is a boutique studio established in 2006 in San Francisco. Our main focus is wedding and events. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="96852753" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/477035213_640.jpg)"></div>
                     <img class="play" alt="Mika &amp; Neil  [ Wedding ]. We bring the highest standards in cinematography to capture your wedding day." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '96852753')"
                        ng-class="{full: showFullComments['96852753']}">
                        Mika &amp; Neil  [ Wedding ]. We bring the highest standards in cinematography to capture your wedding day.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="46170672" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/487527641_640.jpg)"></div>
                     <img class="play" alt="Paula &amp; Chris at The Bently Reserve [ Wedding ].   We specialize in beautiful cinematography for weddings." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '46170672')"
                        ng-class="{full: showFullComments['46170672']}">
                        Paula &amp; Chris at The Bently Reserve [ Wedding ].   We specialize in beautiful cinematography for weddings.
                     </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/Grigory_Rudko__3rV0mDykTM--xH3wvypgAw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/grigoryrudko">   
                  <h3>
                     Grigory Rudko
                     <span>videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">9 years of experience. 
Have worked with VICE, Conde Nast, Forbes, BBC etc. 
Hold M.A. in documentary film production and another M.A. in photography. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="mxlS-GD18CU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/mxlS-GD18CU/0.jpg)"></div>
                     <img class="play" alt="Video Preview for PANDADOC.  We were in charge of direction, production, videography, editing, and motion graphics" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'mxlS-GD18CU')"
                        ng-class="{full: showFullComments['mxlS-GD18CU']}">
                        Video Preview for PANDADOC.  We were in charge of direction, production, videography, editing, and motion graphics
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="bXXGYwNe1uo" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/bXXGYwNe1uo/0.jpg)"></div>
                     <img class="play" alt="Client Tales for QUOTEROLLER. Filmed and edited." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'bXXGYwNe1uo')"
                        ng-class="{full: showFullComments['bXXGYwNe1uo']}">
                        Client Tales for QUOTEROLLER. Filmed and edited.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="vEER4Ghf62A" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/vEER4Ghf62A/0.jpg)"></div>
                     <img class="play" alt="Client Tales for BACKBLAZE.  Filmed and edited by my team." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'vEER4Ghf62A')"
                        ng-class="{full: showFullComments['vEER4Ghf62A']}">
                        Client Tales for BACKBLAZE.  Filmed and edited by my team.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented videographers 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/MishlerStudio__beJqNoYGQgq_1IpwDoxCig.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MishlerStudio">   
                  <h3>
                     Mishler Studio
                     <span>videographer in </span>
                     <span class="location">Manhattan, New York, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Born and raised in the outskirts of NYC (okay, New Jersey), former varsity wrestling sensation at Ridgewood High School and captain (well, co-captain) of forty Wombats at Skidmore College, David retired his singlet and tossed in his ultimate frisbee to work 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 based in NYC.</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="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/GarrettParker__GBrptldkQPenaWn-KFv2uw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/GarrettParker">   
                  <h3>
                     Garrett Parker
                     <span>videographer in </span>
                     <span class="location">Seattle, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">My specialty is post production, but I have a good foundation in all aspects of producing video. Before going freelance I was the video marketing lead at a small video game publisher, working on projects from concept all the way through screen capture or filming, editing, music selection, sound design, and motion graphic design.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="62457068" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/432352842_640.jpg)"></div>
                     <img class="play" alt="This music video was a collaboration between cinematographer Tyler Kalberg and myself. I developed the concept, Tyler directed and shot it, and then I edited the result." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '62457068')"
                        ng-class="{full: showFullComments['62457068']}">
                        This music video was a collaboration between cinematographer Tyler Kalberg and myself. I developed the concept, Tyler directed and shot it, and then I edited the result.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="95049309" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/474927172_640.jpg)"></div>
                     <img class="play" alt="This Lexus ad was shot with an unapproved license plate, so I was hired to hide it. I composited elements from the grill and body over the front and back plates and tracked them onto the car." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '95049309')"
                        ng-class="{full: showFullComments['95049309']}">
                        This Lexus ad was shot with an unapproved license plate, so I was hired to hide it. I composited elements from the grill and body over the front and back plates and tracked them onto the car.
                     </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/LottiDotti__QiCVhJbaSW67eX03MbEJDQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/CoryCross">   
                  <h3>
                     Lotti Dotti
                     <span>videographer in </span>
                     <span class="location">Harrisburg, PA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Filmmaker, DP, Director, Traveler, Explorer, Tao</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="134166277" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/528455263_640.jpg)"></div>
                     <img class="play" alt="I was the filmmaker for this commercial shot in Guyana with Guyana&#39;s top runner Cleveland Forde.   I chose to shoot this in 4k, on the Sony FS7.  I was in charge of concept development, directing, cinematographer, cam op, editing, color grading. July 2015" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '134166277')"
                        ng-class="{full: showFullComments['134166277']}">
                        I was the filmmaker for this commercial shot in Guyana with Guyana&#39;s top runner Cleveland Forde.   I chose to shoot this in 4k, on the Sony FS7.  I was in charge of concept development, directing, cinematographer, cam op, editing, color grading. July 2015
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="130827969" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/523395215_640.jpg)"></div>
                     <img class="play" alt="I was the filmmaker for this project, done for Hogan and Herr.  Filmed in 4k on the Sony FS7.  June 2015" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '130827969')"
                        ng-class="{full: showFullComments['130827969']}">
                        I was the filmmaker for this project, done for Hogan and Herr.  Filmed in 4k on the Sony FS7.  June 2015
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best videographer for your project</span>
               <a href="/start"><div class="button">Connect with videographers</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/Anthony_Peacock__FxzY1BK7S5iLuHRnrRqQaQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/monarchcinema">   
                  <h3>
                     Monarch Cinema
                     <span>videographer in </span>
                     <span class="location">Buffalo, NY, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Video is a great medium that I very much enjoy. Enough so to make a career out of it.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="124173370" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/513831824_640.jpg)"></div>
                     <img class="play" alt="Andy Comes Home from Haiti, Meets His New Family! | Buffalo Videography" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '124173370')"
                        ng-class="{full: showFullComments['124173370']}">
                        Andy Comes Home from Haiti, Meets His New Family! | Buffalo Videography
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="122548772" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/511572667_640.jpg)"></div>
                     <img class="play" alt="ROC the Shot Workshop!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '122548772')"
                        ng-class="{full: showFullComments['122548772']}">
                        ROC the Shot Workshop!
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="115906853" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/503159582_640.jpg)"></div>
                     <img class="play" alt="Buffalo Electric Tower | New Years Eve 2014 | Caitlin Koch Live.  Filmed and edited by Monarch Cinema" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '115906853')"
                        ng-class="{full: showFullComments['115906853']}">
                        Buffalo Electric Tower | New Years Eve 2014 | Caitlin Koch Live.  Filmed and edited by Monarch Cinema
                     </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/0089-marco-antonelli.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/marcoantonelli">   
                  <h3>
                     Marco Antonelli
                     <span>videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">
My name is Marco Antonelli.
I am a freelance filmmaker from Italy, based in San Francisco.
I have lots of experience in corporate videos, events, music videos and live music shoots, documentaries.
My cinematography set up is ideal for fast moving run and gun shooting.
My gear comprehend a Canon 5d Mark 3 with Zeiss contax primes + 70-200 f4, professional double system audio equipment (recorder + shotgun + lavs), hdmi monitor, shoulder rig.
I can provide 2 cameras. 
I can shoot Raw video with Magic Lantern.
I use Premiere pro CS6 for editing, Resolve for grading, AE for graphics.
</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="69257829" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/441974555_640.jpg)"></div>
                     <img class="play" alt="TVOT Hackathon Overview.  Filmed and edited in the Bay Area" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '69257829')"
                        ng-class="{full: showFullComments['69257829']}">
                        TVOT Hackathon Overview.  Filmed and edited in the Bay Area
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="ce85ad44-e2d0-47a5-b27d-95063f8da1f6" vp-provider="videopixie">
                     <div class="reel-thumbnail" style="background-image: url(https://s3.amazonaws.com/s3.sellstage.com/ce85ad44-e2d0-47a5-b27d-95063f8da1f6_120h.jpg)"></div>
                     <img class="play" alt="Interview of Orange Fab participants (Season 2).  Filmed and edited in San Francisco." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'ce85ad44-e2d0-47a5-b27d-95063f8da1f6')"
                        ng-class="{full: showFullComments['ce85ad44-e2d0-47a5-b27d-95063f8da1f6']}">
                        Interview of Orange Fab participants (Season 2).  Filmed and edited in San Francisco.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="dw1XJu9lzdg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/dw1XJu9lzdg/0.jpg)"></div>
                     <img class="play" alt="Presentation video for 1-Page.  Filmed and edited in San Francisco." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'dw1XJu9lzdg')"
                        ng-class="{full: showFullComments['dw1XJu9lzdg']}">
                        Presentation video for 1-Page.  Filmed and edited in San Francisco.
                     </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>
