<!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 | Videopixie</title>
   <meta name="description" content="Videographers">
   <link rel="stylesheet" href="/st/css/creator_list.css"/>
   
   <script>
   
      var angularTemplate = '';
      var allProfiles = [];
   
   </script>
   

      
   <link href='//fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
   <link href='//fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
   
   <script  src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.min.js"></script>
   <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular-animate.min.js"></script>
   
   <script>
      window.SES={};
      SES.is_dev_enviro = false;
      SES.coupon_unavailable = false;

      var vpModule = angular.module('vpModule', ['ngAnimate',]);
       
   </script>
   
  
   
   <script src="/st/build/vjs.4.5.min.js"></script>
   
   <!--
      <script type="text/javascript" src="/st/build/vjs-extra.concat.js"></script>
   -->
   <script  src="/st/build/vjs-extra.min.js"></script>
   
   <script  src="/st/js/o/common.js"></script>
   <script  src="/st/js/c/VPController.js"></script>
   <script  src="/st/js/c/DirectivesCommon.js"></script>
   <script  src="/st/js/c/MediaModalController.js"></script>
   <script  src="/st/js/c/EditorProfileController.js"></script>
   <script>
      
   var log = VPL('HomePageController');
      
   
   vpModule.controller('HomePageController', ['$scope', 'comm', '$http', 
      function($scope, comm, $http){
      
         $scope.mediaClick = function(id, evt, _options, size){
         
            log.d('mediaClick', _options);

            var content = $(evt.currentTarget).children('.about').eq(0).html()
            var options = _options || {}
            
            comm.broadcast(VP.SHOW_MEDIA,{
               mode: (content ? VP.SIDEBAR_MODES.HTML_MODE : VP.SIDEBAR_MODES.ASSET_MODE),
               htmlSidebarContent: content,
               mediaData: {
                  bucket: options.bucket || "our.s3.videopixie.com/examples/",
                  provider: options.provider || "",
                  provider_id: id,
                  file_extension: 'mp4', 
                  hasWebm: true,
                  overlays: options.overlays || null,
                  format: options.format || null
               },
               size: size
            });
         };
         
         $scope.homepageVideo = function(id,evt){
         
            $scope.mediaClick(id, evt, {
               bucket: 'our.s3.videopixie.com/video/',
               format: '704p'
            },
            {
               width: 1024,
               height: 576,
               media_width: 1024,
               media_height: 576
            });
         }
         
         
         $scope.$watch('MediaModal',function(isPlaying){
         
            window.isPlayingVideo = !!isPlaying;
         });
         
         
         $scope.registerNew = function(){
         
            var path = '/register/new';
            
            if (!$scope.registerNewEmailAddress || $scope.registerNewEmailAddress.length < 3){
               return;
            }
            
            var data = {
               email_address: $scope.registerNewEmailAddress,
               type_context: SES.type_context || ''
            };
            
            $scope.registerNewPending = true;
            $scope.registerNewErrorMsg = null;
           
            $http.post(path, data).then(
               function registerNewSuccess(response){
                  log.d('SUCCESS', path);
                  $scope.registerNewComplete = true;
                  $scope.registerNewPending = false;
               },
               function registerNewError(response){
                  log.d('ERROR', path, response);
                  $scope.registerNewErrorMsg = response.data.error.human;
                  $scope.registerNewPending = false;
               }
            );
            
         
         }

         
         
      }]);
      
      
      
      $(document).ready(function(){
         $('.click-proxy').click(function(evt){
         
            var id = $(evt.currentTarget).attr('click-proxy');
            //console.log('click-proxy', id);
            $('#'+id).triggerHandler('click');
            
         });
         
         (function(d, s, id) {
           var js, fjs = d.getElementsByTagName(s)[0];
           if (d.getElementById(id)) return;
           js = d.createElement(s); js.id = id;
           js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=257876044244230";
           fjs.parentNode.insertBefore(js, fjs);
         }(document, 'script', 'facebook-jssdk'));
      
      });

   </script>

   
   <!-- start Mixpanel -->
   <script type="text/javascript">
    (function(c,a){window.mixpanel=a;var b,d,h,e;b=c.createElement("script");
    b.type="text/javascript";b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+
    '//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';d=c.getElementsByTagName("script")[0];
    d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){
    var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(
    Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?g=a[f]=[]:
    f="mixpanel";g.people=g.people||[];h=['disable','track','track_pageview','track_links',
    'track_forms','register','register_once','unregister','identify','alias','name_tag',
    'set_config','people.set','people.increment','people.track_charge','people.append'];
    for(e=0;e<h.length;e++)d(g,h[e]);a._i.push([b,c,f])};a.__SV=1.2;})(document,window.mixpanel||[]);
    mixpanel.init("");
   </script>
   <!-- end Mixpanel -->
   
   
   <script type="text/javascript" src="/st/js/v/ses_mixpanel.js"></script>
   
   <!--[if lt IE 7.]>
      <script defer type="text/javascript" src="st/pngfix.js"></script>
   <![endif]-->
   
   <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

      ga('create', 'UA-42918769-1', 'videopixie.com');
      ga('require', 'displayfeatures');
      ga('send', 'pageview');
      
      var referrerCookieName = 'vpFirstReferrer';
      if (!readCookie(referrerCookieName)){
         var ref = document.referrer || 'empty';
         createCookie(referrerCookieName , ref ,365*2);
      }
   </script>
  
   
   
   <script  src="/st/js/nm/VideoCreators.js"></script>
   <link href='https://fonts.googleapis.com/css?family=Open+Sans:400italic' rel='stylesheet' type='text/css'>

   

  
</head>
<body class="VP"  ng-controller="HomePageController">
   
   <div id="header">
      <a href="/"><img id="logo" src="/st/images/logo_text_and_pixie.png" alt="Videopixie"></a>
      <a id="phone" href="tel:1 800 510 6570">1 (800) 510-6570</a>
      
      
      
         
         
         
         
      
      
      
      <a class="right-link" href="/pricing">Pricing</a>
      <a class="right-link" href="/video-school">Video School</a>
      <a class="right-link browse-link browse-link-first" href="/videographers">Videographers</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-animators">Animators</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-editors">Browse:&nbsp; Video editors</a>
      
   </div>
   
   
   


   <div id="hero" 
      >
   
      <h1>Best Seattle Videographers For Hire</h1>
      <h2>Videopixie helps you hire the best Seattle videographers.</h2>
      
      <div class="buttonWrapper">
         <a href="/start"><div class="button">Start getting quotes today</div></a>
      </div>
      
   </div>
   
   <div id="relatedWrapper">
      
   </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/Story_&amp;_Age__mHqn1xG6QTCJWE7Dt3FD0Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/storyandage">   
                  <h3>
                     Story & Age
                     <span>Seattle videographer in </span>
                     <span class="location">Seattle, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Founder of Story &amp; Age, Kristina Krug is an award-winning videographer/photographer. Her stories spread across a varity of mediums - from food to legacy pieces. 
www.storyandage.com</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="108407640" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/492078996_640.jpg)"></div>
                     <img class="play" alt="Wall of Fire: A ChefSteps Story" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '108407640')"
                        ng-class="{full: showFullComments['108407640']}">
                        Wall of Fire: A ChefSteps Story
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="127290736" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/518021735_640.jpg)"></div>
                     <img class="play" alt="Espresso Defined" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '127290736')"
                        ng-class="{full: showFullComments['127290736']}">
                        Espresso Defined
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="108180024" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/491948333_640.jpg)"></div>
                     <img class="play" alt="Why We Cook" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '108180024')"
                        ng-class="{full: showFullComments['108180024']}">
                        Why We Cook
                     </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/B47Studios__1FkgPOy0RB2ogtahEQv3jg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/B47Studios">   
                  <h3>
                     B47 Studios
                     <span>Seattle videographer in </span>
                     <span class="location">Seattle, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">B47 Studios is a creative video production company specializing in developing projects and content that come together at the intersection of entertainment and learning. Not only does this include case studies, webcast, promotional video but also series development, application development and experiences related to video content.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="101541287" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/483333162_640.jpg)"></div>
                     <img class="play" alt="Pure Food Kids Foundation promo spot for digital campaign" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '101541287')"
                        ng-class="{full: showFullComments['101541287']}">
                        Pure Food Kids Foundation promo spot for digital campaign
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="BpkOuLp2Alw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/BpkOuLp2Alw/0.jpg)"></div>
                     <img class="play" alt="Death Cab for Cutie, Passenger Seat" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'BpkOuLp2Alw')"
                        ng-class="{full: showFullComments['BpkOuLp2Alw']}">
                        Death Cab for Cutie, Passenger Seat
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="119876921" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/507657974_640.jpg)"></div>
                     <img class="play" alt="Teenie Banana Disco" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '119876921')"
                        ng-class="{full: showFullComments['119876921']}">
                        Teenie Banana Disco
                     </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/SparkwoksMedia__ve3T4hGMSgSjGYW6HpHrjw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/sparkworks">   
                  <h3>
                     Sparkworks Media
                     <span>Seattle videographer in </span>
                     <span class="location">Seattle, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Sparkworks Media produces animated and live-action storytelling videos for corporate clients.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="93679625" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/473757361_640.jpg)"></div>
                     <img class="play" alt="After the strategy meetings, the scripts and storyboards, production, editing and graphics, the project simply needs to look good. Here&#39;s a short sample of our work. See more at www.sparkworksmedia.com" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '93679625')"
                        ng-class="{full: showFullComments['93679625']}">
                        After the strategy meetings, the scripts and storyboards, production, editing and graphics, the project simply needs to look good. Here&#39;s a short sample of our work. See more at www.sparkworksmedia.com
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="130582843" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/522500235_640.jpg)"></div>
                     <img class="play" alt="At Sparkworks, we produce a LOT of whiteboard videos. So many that we decided to make one of our own to describe why this is such a popular style for corporate video production. From whiteboard to general explainer videos, we have the tools and talent to get it done." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '130582843')"
                        ng-class="{full: showFullComments['130582843']}">
                        At Sparkworks, we produce a LOT of whiteboard videos. So many that we decided to make one of our own to describe why this is such a popular style for corporate video production. From whiteboard to general explainer videos, we have the tools and talent to get it done.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="42365855" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/293910861_640.jpg)"></div>
                     <img class="play" alt="Visualize your business in 3D with animation and motion graphics from Sparkworks Media. We combine Cinema4D and After Effects for visualizations of technology, architecture, complex processes, logos and games. If you can think of it, we can make it real on screen for corporate, broadcast, or film." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '42365855')"
                        ng-class="{full: showFullComments['42365855']}">
                        Visualize your business in 3D with animation and motion graphics from Sparkworks Media. We combine Cinema4D and After Effects for visualizations of technology, architecture, complex processes, logos and games. If you can think of it, we can make it real on screen for corporate, broadcast, or film.
                     </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 Seattle 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/Matthew_Laeng__r3Ef6ZakRoeCOVdyHid_Ag.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MatthewLaeng">   
                  <h3>
                     Matthew Laeng
                     <span>Seattle videographer in </span>
                     <span class="location">Seattle, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I enjoy making films that create some type of emotional impact the audience can relate to - whether it be through the characters, the visuals, or most importantly, the story.  

I also enjoy making commercials that are interesting, memorable, and make the audience feel something. 

http://www.matthewlaeng.com/</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="rkAsfjYCgnk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/rkAsfjYCgnk/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'rkAsfjYCgnk')"
                        ng-class="{full: showFullComments['rkAsfjYCgnk']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="VkpwC3-Mlo4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/VkpwC3-Mlo4/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'VkpwC3-Mlo4')"
                        ng-class="{full: showFullComments['VkpwC3-Mlo4']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="6tHvYvzdc4c" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/6tHvYvzdc4c/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '6tHvYvzdc4c')"
                        ng-class="{full: showFullComments['6tHvYvzdc4c']}">
                        
                     </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/Yoyostring_Creative__ikToD3w6TdmVRIUpm_-imA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/yoyostringcreative">   
                  <h3>
                     Yoyostring Creative
                     <span>Seattle videographer in </span>
                     <span class="location">Seattle, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I can do that!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="108967344" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/492815218_640.jpg)"></div>
                     <img class="play" alt="Bush School Promo" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '108967344')"
                        ng-class="{full: showFullComments['108967344']}">
                        Bush School Promo
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="117016438" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/503573418_640.jpg)"></div>
                     <img class="play" alt="Casmir Audio Fix 2" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '117016438')"
                        ng-class="{full: showFullComments['117016438']}">
                        Casmir Audio Fix 2
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="103527111" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/489487804_640.jpg)"></div>
                     <img class="play" alt="Two Step Final 720P" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '103527111')"
                        ng-class="{full: showFullComments['103527111']}">
                        Two Step Final 720P
                     </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/DanielHuie__QlfanVtbR9GzNITq4O2FOA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/DanielHuie">   
                  <h3>
                     Daniel Huie
                     <span>Seattle videographer in </span>
                     <span class="location">Seattle, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a visual storyteller.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="kVLadC7_Gg4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/kVLadC7_Gg4/0.jpg)"></div>
                     <img class="play" alt="Filmed and edited the video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'kVLadC7_Gg4')"
                        ng-class="{full: showFullComments['kVLadC7_Gg4']}">
                        Filmed and edited the video
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="2ygXNOOPifw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/2ygXNOOPifw/0.jpg)"></div>
                     <img class="play" alt="Filmed and edited the video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '2ygXNOOPifw')"
                        ng-class="{full: showFullComments['2ygXNOOPifw']}">
                        Filmed and edited the video
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="nDYro9_9hmU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/nDYro9_9hmU/0.jpg)"></div>
                     <img class="play" alt="Produced and edited the video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'nDYro9_9hmU')"
                        ng-class="{full: showFullComments['nDYro9_9hmU']}">
                        Produced and edited the video
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Seattle 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/GageAllen__VnvJ3ZQtSui7lTPo75mqNA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/GageAllen">   
                  <h3>
                     Gage Allen
                     <span>Seattle videographer in </span>
                     <span class="location">Bellingham, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a professional video game trailer/media producer! I have worked with game developers around the world by creating professional video game trailers, cinematics, screenshots, and more for their PC, Console, and Mobile Games!

As a video editor, producer, writer, director, animator, VFX artist, motion graphics artist, sound designer, voice over director, gameplay capture artist, and cinematographer, I accurately portray a game or video atmosphere in a visually appealing way to an audience. 

Need a professional piece of media for your game or project?
www.gageallen.com

Read the numerous recommendations and testimonials I have received here: www.gageallen.com/testimonials</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="178109568" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/585648537_1280.jpg)"></div>
                     <img class="play" alt="Gage Allen - Video Game Media Reel   Services Offered: Video Editor, Director, Producer, Writer, Gameplay Capture Artist, Motion Graphics Artist, Animator, Sound Designer, Voice Over Director, VFX Artist, Cinematographer, Colorist, and more." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '178109568')"
                        ng-class="{full: showFullComments['178109568']}">
                        Gage Allen - Video Game Media Reel   Services Offered: Video Editor, Director, Producer, Writer, Gameplay Capture Artist, Motion Graphics Artist, Animator, Sound Designer, Voice Over Director, VFX Artist, Cinematographer, Colorist, and more.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="JyF8giluMtI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/JyF8giluMtI/maxresdefault.jpg)"></div>
                     <img class="play" alt="Tenebrae - Official Opening Cinematic   - Video Editor, Animator, Video Game Trailer Creator, Director, Voice Over Director, Sound Designer, VFX Artist, Producer, Motion Graphics Artist." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'JyF8giluMtI')"
                        ng-class="{full: showFullComments['JyF8giluMtI']}">
                        Tenebrae - Official Opening Cinematic   - Video Editor, Animator, Video Game Trailer Creator, Director, Voice Over Director, Sound Designer, VFX Artist, Producer, Motion Graphics Artist.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="4CgQsRMiXvE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/4CgQsRMiXvE/maxresdefault.jpg)"></div>
                     <img class="play" alt="The True Fallout Community - Official Trailer   - Video Editor, Writer, Motion Graphics Artist, Sound Designer, Video Game Trailer Creator" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '4CgQsRMiXvE')"
                        ng-class="{full: showFullComments['4CgQsRMiXvE']}">
                        The True Fallout Community - Official Trailer   - Video Editor, Writer, Motion Graphics Artist, Sound Designer, Video Game Trailer Creator
                     </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>Seattle 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 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/JilesONeal__5vyoQ5fuSb-RsUJF-PfazA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JilesONeal">   
                  <h3>
                     Jiles O'Neal
                     <span>Seattle videographer in </span>
                     <span class="location">Bremerton, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a skilled Videographer, Video Editor and Music Creator with over 10 years combined experience in media arts.

Videography: I have shot various music videos and promotional pieces. I shoot live events such as concerts, weddings and festivals.

Editing: I have edited many music videos, promotional pieces and live events. I have cut over music and narration. I have provided color correction, transitions, effects and titles.


Music Creation: I write and record music of all genres. I have produced background music, jingles and original songs.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="zUq3S-LBKdw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/zUq3S-LBKdw/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'zUq3S-LBKdw')"
                        ng-class="{full: showFullComments['zUq3S-LBKdw']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="kTBWsulcNWg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/kTBWsulcNWg/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'kTBWsulcNWg')"
                        ng-class="{full: showFullComments['kTBWsulcNWg']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Seattle videographer for your project</span>
               <a href="/start"><div class="button">Connect with Seattle 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/John_Robertson__5YTXsoiHTum_kLCLN10wVw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JohnRobertson">   
                  <h3>
                     John Robertson
                     <span>Seattle videographer in </span>
                     <span class="location">Seattle, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Very experienced video filmmaker, director, cameraman and editor.  Professional communicator - verbally, visually and in writing.  I make your message stand out from the crowd - I tell beautiful and compelling stories in clear, interesting and easy to grasp language and imagery.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="6-UToMk4Tyw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/6-UToMk4Tyw/hqdefault.jpg)"></div>
                     <img class="play" alt="Crowd-funding video designed to raise funds for a medically oriented non-profit." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '6-UToMk4Tyw')"
                        ng-class="{full: showFullComments['6-UToMk4Tyw']}">
                        Crowd-funding video designed to raise funds for a medically oriented non-profit.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="ZDq3V-66GgA" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/ZDq3V-66GgA/maxresdefault.jpg)"></div>
                     <img class="play" alt="A donor-engagement video for a non-profit in the Greater Seattle area." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'ZDq3V-66GgA')"
                        ng-class="{full: showFullComments['ZDq3V-66GgA']}">
                        A donor-engagement video for a non-profit in the Greater Seattle area.
                     </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/AnthonyRowe__xV0GSyaERdaMcoDEIw4uOQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/AnthonyRowe">   
                  <h3>
                     Anthony Rowe
                     <span>Seattle videographer in </span>
                     <span class="location">Seattle, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">ANTHONY ROWE
Anthony Rowe&#39;s passion for cinematography began at an early age. In high school, as an aggressive inline skater, he captured many hours of video tape before realizing there was a way to break down and edit the material. Through editing, his passion for video grew and his desire to visually create a story through a lens became reality.
To further his artistic abilities, he enrolled in the video production program at the Art Institute of Seattle. There, he established a networking base and mastered new video skills and techniques.
Since, he has worked on diverse projects, such as live events, weddings, music videos, concerts, product promos, real estate videos and cooperate productions. He is also a camera operator for various sports teams, including the Seattle Mariners, University of Washington Athletics, high school sports and more. 
Anthony loves taking on different projects and interacting with new people. His goal is to always achieve, have fun and never stop learning.

www.anthonyrowefilms.com</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="153653188" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/559254232_1280.jpg)"></div>
                     <img class="play" alt="Here is my highlight reel 2015 // part 1. Enjoy!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '153653188')"
                        ng-class="{full: showFullComments['153653188']}">
                        Here is my highlight reel 2015 // part 1. Enjoy!
                     </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/DrewNakashima__kExc1imWTwOnLhOnkZI8aQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/DrewNakashima">   
                  <h3>
                     Drew Nakashima
                     <span>Seattle videographer in </span>
                     <span class="location">Seattle, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Video Media Specialist, Photographer, Foodie, Craft Beer Junkie, DJ &amp; Music Lover</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="144593086" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/542466351_1280.jpg)"></div>
                     <img class="play" alt="Editing Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '144593086')"
                        ng-class="{full: showFullComments['144593086']}">
                        Editing Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="144593882" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/542466900_1280.jpg)"></div>
                     <img class="play" alt="Editor for 3D Printer Expo Recap Highlight Video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '144593882')"
                        ng-class="{full: showFullComments['144593882']}">
                        Editor for 3D Printer Expo Recap Highlight Video.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="174456442" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/581354119_1280.jpg)"></div>
                     <img class="play" alt="Editor &amp; Visual FX for Rich Kids Clothing Brand recap highlight video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '174456442')"
                        ng-class="{full: showFullComments['174456442']}">
                        Editor &amp; Visual FX for Rich Kids Clothing Brand recap highlight video.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Creators are ready to bid on your project</span>
               <a href="/start"><div class="button">Get quotes from Seattle 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/JoelWinter__CM5z_dv9Q_m_DHdcQZls0w.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JoelWinter">   
                  <h3>
                     Joel Winter
                     <span>Seattle videographer in </span>
                     <span class="location">Seattle, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a Seattle based freelance videographer with shooting and broadcasting video experience in a multitude of different countries around the world for a variety of different people, productions, and projects.  Some of these projects have included: New York, London, Paris, and Milan fashion weeks, a pilot show for a television series in Dubai, pro card tournaments in Netherlands, Japan, Ireland, and the U.S., various show segments and news coverage for broadcast in Japan, and more.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="119618217" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/507097378_640.jpg)"></div>
                     <img class="play" alt="Demo Reel 2014" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '119618217')"
                        ng-class="{full: showFullComments['119618217']}">
                        Demo Reel 2014
                     </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/VictorAntonio__EYAAqal8RRewngnPa-1ZDQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/VictorAntonio">   
                  <h3>
                     Victor-Antonio
                     <span>Seattle videographer in </span>
                     <span class="location">Lynnwood, Washington, EE. UU.</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Stop Motion is the island on the horizon, but on the day to day post production, video editing, and motion graphics are the wind in my sales.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="AIKusa3GtSk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/AIKusa3GtSk/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'AIKusa3GtSk')"
                        ng-class="{full: showFullComments['AIKusa3GtSk']}">
                        
                     </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/Rakesh_Malik__ys7EACyyR5OZM1MiYvIv0A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/RakeshMalik">   
                  <h3>
                     Rakesh Malik
                     <span>Seattle videographer in </span>
                     <span class="location">Seattle, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I bring the visual power of fine art photography to film.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="EN4s01Rzl4o" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/EN4s01Rzl4o/hqdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'EN4s01Rzl4o')"
                        ng-class="{full: showFullComments['EN4s01Rzl4o']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="r1WiOaIg8zs" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/r1WiOaIg8zs/maxresdefault.jpg)"></div>
                     <img class="play" alt="A sampling of some of our nature footage." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'r1WiOaIg8zs')"
                        ng-class="{full: showFullComments['r1WiOaIg8zs']}">
                        A sampling of some of our nature footage.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="AF9p5J6oq_M" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/AF9p5J6oq_M/maxresdefault.jpg)"></div>
                     <img class="play" alt="A music video for Greg Ruby&#39;s &quot;Scofflaw&quot;" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'AF9p5J6oq_M')"
                        ng-class="{full: showFullComments['AF9p5J6oq_M']}">
                        A music video for Greg Ruby&#39;s &quot;Scofflaw&quot;
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Seattle 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/NorthernPeakProductions__giJykL6PTGuByqIZ2TY5Rg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/NorthernPeakProductions">   
                  <h3>
                     Northern Peak Productions
                     <span>Seattle videographer in </span>
                     <span class="location">Sultan, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Northern Peak Productions is a Seattle based film production company. Brad Green and Brian Harmon started filming together in 2007 and are pursuing careers in film. Brian is a recent graduate from Biola University with a bachelor&#39;s degree in Cinema and Media Arts and Brad is producing commercials and documentaries in Seattle.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="130795282" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/522786913_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '130795282')"
                        ng-class="{full: showFullComments['130795282']}">
                        
                     </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/NateHansonPilothouseFilmsLLC__kCEnlaYUQI6GHEV7eMqmkA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/NateHansonPilothouseFilmsLLC">   
                  <h3>
                     Nate Hanson - Pilothouse Films, LLC
                     <span>Seattle videographer in </span>
                     <span class="location">Anacortes, WA 98221, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m the owner/operator of Pilothouse Films - a video production and motion graphics company located in Anacortes, Washington, founded in 2009. 

I have worked with clients across the United States and around the world  from the UK to Singapore, producing everything from fully-animated commercials, to live action &quot;how-to&quot; videos.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="69941902" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/461706782_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '69941902')"
                        ng-class="{full: showFullComments['69941902']}">
                        
                     </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/LouaiMunajim__Ge4bgIZ6R02zrk4ip9oiEA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/LouaiMunajim">   
                  <h3>
                     Lou Munajim
                     <span>Seattle videographer in </span>
                     <span class="location">Victoria, BC, Canada</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">An accomplished Animator, Videographer, Video Editor and Motion Graphics designer.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="6lbfuSP3ZxM" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/6lbfuSP3ZxM/maxresdefault.jpg)"></div>
                     <img class="play" alt="Demonstrating drawing style. Animation. Motion Graphics. Animated the cape, hand drawn, to properly represent a bulge earlier in the wave. Effects include particle CC, blurring to accentuate the weather and lens flare." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '6lbfuSP3ZxM')"
                        ng-class="{full: showFullComments['6lbfuSP3ZxM']}">
                        Demonstrating drawing style. Animation. Motion Graphics. Animated the cape, hand drawn, to properly represent a bulge earlier in the wave. Effects include particle CC, blurring to accentuate the weather and lens flare.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="gc4p0O6T1XU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/gc4p0O6T1XU/maxresdefault.jpg)"></div>
                     <img class="play" alt="I am showing the clip halfway through at the point I came on to add all the graphics and text. Had to maintain the same style as was used before. talking head" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'gc4p0O6T1XU')"
                        ng-class="{full: showFullComments['gc4p0O6T1XU']}">
                        I am showing the clip halfway through at the point I came on to add all the graphics and text. Had to maintain the same style as was used before. talking head
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="xVDXHTwacXM" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/xVDXHTwacXM/maxresdefault.jpg)"></div>
                     <img class="play" alt="Created the illustrations, backgrounds, created the theme and animated the character and objects. motion graphics, character animation, illustrations" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'xVDXHTwacXM')"
                        ng-class="{full: showFullComments['xVDXHTwacXM']}">
                        Created the illustrations, backgrounds, created the theme and animated the character and objects. motion graphics, character animation, illustrations
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Seattle videographer for your project</span>
               <a href="/start"><div class="button">Connect with Seattle 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/Jared_Philbrick__g0IgngX9R-Kpu2Qk98RsmA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JaredPhilbrick">   
                  <h3>
                     Jared Philbrick
                     <span>Seattle videographer in </span>
                     <span class="location">Aberdeen, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">i&#39;m on it I can edit, direct, and i&#39;m an amateur voice actor if you need me to edit anything or direct then i&#39;m your guy just don&#39;t make me do motion graphics I&#39;m terrible at that.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="OU1TcMYRAAw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/OU1TcMYRAAw/0.jpg)"></div>
                     <img class="play" alt="This is what i can do in AE and im vary proud of it and it shows my creativity." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'OU1TcMYRAAw')"
                        ng-class="{full: showFullComments['OU1TcMYRAAw']}">
                        This is what i can do in AE and im vary proud of it and it shows my creativity.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="eGlxqDctIJA" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/eGlxqDctIJA/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'eGlxqDctIJA')"
                        ng-class="{full: showFullComments['eGlxqDctIJA']}">
                        
                     </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/PlayerOneTrailers__ytofrwGkRtOIaJSR8xY09Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/PlayerOneTrailers">   
                  <h3>
                     Player One Trailers
                     <span>Seattle videographer in </span>
                     <span class="location">Bellingham, WA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Hello! We&#39;re Player One Trailers. We create professional video game trailers, cinematics, developer diares, live-action promos, and more for game developers across the globe on their PC , Console, and Mobile games!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="180847591" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/589207508_1280.jpg)"></div>
                     <img class="play" alt="The Official Launch Video for Player One Trailers.   |     We make professional Video Game Trailers, Cinematics, Developer Diaries, and Live-Action Promos!   Services we offer - Directing, Writing, Video Editing, Motion Graphics, Logo Animation, Gameplay Capture, Voice overs, Cinematography, Live-Action Production Management, Sound Design, Concept Development, Animation, and more!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '180847591')"
                        ng-class="{full: showFullComments['180847591']}">
                        The Official Launch Video for Player One Trailers.   |     We make professional Video Game Trailers, Cinematics, Developer Diaries, and Live-Action Promos!   Services we offer - Directing, Writing, Video Editing, Motion Graphics, Logo Animation, Gameplay Capture, Voice overs, Cinematography, Live-Action Production Management, Sound Design, Concept Development, Animation, and more!
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="JyF8giluMtI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/JyF8giluMtI/maxresdefault.jpg)"></div>
                     <img class="play" alt="Tenebrae: Twilight of The Gods - Official Opening Cinematic (Xbox One/PC)  |     Our Role - Video Editing, Sound Design, Voice Overs, VFX, Motion Graphics, Logo Animation, Cinematography, Animation, Cinematics Development, and Video Game Trailer development." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'JyF8giluMtI')"
                        ng-class="{full: showFullComments['JyF8giluMtI']}">
                        Tenebrae: Twilight of The Gods - Official Opening Cinematic (Xbox One/PC)  |     Our Role - Video Editing, Sound Design, Voice Overs, VFX, Motion Graphics, Logo Animation, Cinematography, Animation, Cinematics Development, and Video Game Trailer development.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Gsh7jszoY5Y" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/Gsh7jszoY5Y/maxresdefault.jpg)"></div>
                     <img class="play" alt="Metris Soccer - Official Trailer (PS4/Xbox One/PC)  |     Our Role - Concept Design, Video Editing, Sound Design, Gameplay Capture, VFX, Motion Graphics, Logo Animation, Music, Cinematography, and Video Game Trailer development." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Gsh7jszoY5Y')"
                        ng-class="{full: showFullComments['Gsh7jszoY5Y']}">
                        Metris Soccer - Official Trailer (PS4/Xbox One/PC)  |     Our Role - Concept Design, Video Editing, Sound Design, Gameplay Capture, VFX, Motion Graphics, Logo Animation, Music, Cinematography, and Video Game Trailer development.
                     </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>
