<!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>Austin Videographers | Videopixie</title>
   <meta name="description" content="A selection of the best Austin Videographers and Video production companies.">
   <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 Austin Videographers For Hire</h1>
      <h2>Videopixie helps you hire the best Austin 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/LottiDotti__aGnl8xUiR7ynsaHUnOtqDw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/CoryCross">   
                  <h3>
                     Lotti Dotti
                     <span>Austin videographer in </span>
                     <span class="location">Austin, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We give you an ensemble of like minded folks who enjoy creating films that add value to one&#39;s story or brand. Acclaimed for their sensitive and thought provoking films with an emphasis on cinematography and story. In every endeavor, they collaborate closely alongside clients to create distinctive, innovative work with a strong identity.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="154521943" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/555148905_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '154521943')"
                        ng-class="{full: showFullComments['154521943']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <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="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/CorlonEvans__AYQkeugOSESjGHu3iuxnnA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/None">   
                  <h3>
                     Corlon Evans
                     <span>Austin videographer in </span>
                     <span class="location">Austin, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Capturing the essence of the moment and remembering the experience for eternity, I thrive in ensuring that no video or photography project loses the magic of history and reflection.
I am experienced in video editor and producer.  My background includes, but is not limited to television broadcasting, video journalism, marketing / advertising and creative media (digital and social). I am highly skilled at completing projects with tight deadlines. Over the years I have been well immersed in a variety of media platforms and tools. I also have strong expertise in development and execution of social media campaigns, which a successful track record in social media ROI and Digital Marketing.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120444877" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508267185_640.jpg)"></div>
                     <img class="play" alt="Business Profile and Commerical" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120444877')"
                        ng-class="{full: showFullComments['120444877']}">
                        Business Profile and Commerical
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="66124671" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/437399086_640.jpg)"></div>
                     <img class="play" alt="Trailer For Public Event" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '66124671')"
                        ng-class="{full: showFullComments['66124671']}">
                        Trailer For Public Event
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="FILHtpWCI9E" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/FILHtpWCI9E/0.jpg)"></div>
                     <img class="play" alt="Digital Marketing Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'FILHtpWCI9E')"
                        ng-class="{full: showFullComments['FILHtpWCI9E']}">
                        Digital Marketing Video
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/MadisonHamburg__aCUsrnMYSVyN5Nmk8FNhrQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MadisonHamburg">   
                  <h3>
                     Madison Hamburg
                     <span>Austin videographer in </span>
                     <span class="location">Austin, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Madison Hamburg is an award winning narrative, commercial and documentary filmmaker whose work focuses on extremely introspective human conflict, as well as quirky, dark comedy.

Madison attended the Savannah College of Art and Design and received a Bachelor of Fine Arts degree in Film and Television.  

Madison&#39;s work has been featured in international film festivals, as well as broadcast television.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="130269792" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/522205433_640.jpg)"></div>
                     <img class="play" alt="A compilation of work from this past year that I wrote/directed/produced/edited" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '130269792')"
                        ng-class="{full: showFullComments['130269792']}">
                        A compilation of work from this past year that I wrote/directed/produced/edited
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="143999885" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/541729481_640.jpg)"></div>
                     <img class="play" alt="A short Bio Video I wrote/directed/edited for the leather goods company, Satchel &amp; Page." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '143999885')"
                        ng-class="{full: showFullComments['143999885']}">
                        A short Bio Video I wrote/directed/edited for the leather goods company, Satchel &amp; Page.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="130269794" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/522063791_640.jpg)"></div>
                     <img class="play" alt="The Trailer to a short film I wrote and directed, that is currently in the festival circuit, winner of multiple awards." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '130269794')"
                        ng-class="{full: showFullComments['130269794']}">
                        The Trailer to a short film I wrote and directed, that is currently in the festival circuit, winner of multiple awards.
                     </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 Austin 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/JackSorokin__mZJ2tKZ8RnOaD2Bw9waGTA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JackSorokin">   
                  <h3>
                     Jack Sorokin
                     <span>Austin videographer in </span>
                     <span class="location">Austin, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I’m an Austin-based photographer and videographer, specializing in intimate portraiture and documentary work. I make beautiful images, but I really love building meaningful connections with my subjects.
These connections are the special ingredient I use for every client, to create imagery that is a authentic and impactful.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="137035847" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/531782972_640.jpg)"></div>
                     <img class="play" alt="2015 Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '137035847')"
                        ng-class="{full: showFullComments['137035847']}">
                        2015 Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="124173340" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/513966478_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '124173340')"
                        ng-class="{full: showFullComments['124173340']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="132780195" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/525716622_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '132780195')"
                        ng-class="{full: showFullComments['132780195']}">
                        
                     </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/CorlonEvans__xsaNPg0kS9CXyLR1RlW6ig.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/CorlonEvans889">   
                  <h3>
                     Corlon Evans
                     <span>Austin videographer in </span>
                     <span class="location">Austin, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am experienced in video editor and producer.  My background includes, but is not limited to television broadcasting, video journalism, marketing / advertising and creative media (digital and social). I am highly skilled at completing projects with tight deadlines. Over the years I have been well immersed in a variety of media platforms and tools. I also have strong expertise in development and execution of social media campaigns, which a successful track record in social media ROI and Digital Marketing.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120444877" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508267185_640.jpg)"></div>
                     <img class="play" alt="Photograper studio Commerical" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120444877')"
                        ng-class="{full: showFullComments['120444877']}">
                        Photograper studio Commerical
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="64199598" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/434754171_640.jpg)"></div>
                     <img class="play" alt="Interview /Recap" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '64199598')"
                        ng-class="{full: showFullComments['64199598']}">
                        Interview /Recap
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="hT_4vq0sCKI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/hT_4vq0sCKI/0.jpg)"></div>
                     <img class="play" alt="Fashion/Event Commercial" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'hT_4vq0sCKI')"
                        ng-class="{full: showFullComments['hT_4vq0sCKI']}">
                        Fashion/Event Commercial
                     </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/PattonJones__n5cmDT_TQumcgVMnkLtZ3g.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/PattonJones">   
                  <h3>
                     Patton Jones
                     <span>Austin videographer in </span>
                     <span class="location">Austin, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I like to eat ice cream, and I really enjoy a nice pair of slacks.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Xf_tRZnXzi8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/Xf_tRZnXzi8/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Xf_tRZnXzi8')"
                        ng-class="{full: showFullComments['Xf_tRZnXzi8']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="9yczvsAzquE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/9yczvsAzquE/sddefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '9yczvsAzquE')"
                        ng-class="{full: showFullComments['9yczvsAzquE']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="STkt-Jlivt8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/STkt-Jlivt8/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'STkt-Jlivt8')"
                        ng-class="{full: showFullComments['STkt-Jlivt8']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Austin 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/AdamMcInnis__8i9qTENKSFmvNGKLb_aBBA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/AdamMcInnis">   
                  <h3>
                     Adam McInnis
                     <span>Austin videographer in </span>
                     <span class="location">Austin, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Director / Multi Media Branding / Music Composer</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="TOj0hO3GPVM" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/TOj0hO3GPVM/maxresdefault.jpg)"></div>
                     <img class="play" alt="Director/Music Composer/Singer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'TOj0hO3GPVM')"
                        ng-class="{full: showFullComments['TOj0hO3GPVM']}">
                        Director/Music Composer/Singer
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="vmyQyK4sxG0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/vmyQyK4sxG0/maxresdefault.jpg)"></div>
                     <img class="play" alt="Music Composer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'vmyQyK4sxG0')"
                        ng-class="{full: showFullComments['vmyQyK4sxG0']}">
                        Music Composer
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="vIYuTWKD3Og" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/vIYuTWKD3Og/maxresdefault.jpg)"></div>
                     <img class="play" alt="Songwriter/Music Composer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'vIYuTWKD3Og')"
                        ng-class="{full: showFullComments['vIYuTWKD3Og']}">
                        Songwriter/Music Composer
                     </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/ChadTreanor__2vSrTeCWQbWLvsPPb6L2cA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ChadTreanor">   
                  <h3>
                     Chad Treanor
                     <span>Austin videographer in </span>
                     <span class="location">The Woodlands, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a writer, producer, director and editor specializing in corporate, commercial &amp; short narrative films. Please send me a message here on VideoPixie or via email at CH4Dtreanor@gmail.com</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="121374400" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/509605056_1280.jpg)"></div>
                     <img class="play" alt="Commercial and corporate reel from 2015." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '121374400')"
                        ng-class="{full: showFullComments['121374400']}">
                        Commercial and corporate reel from 2015.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="34138034" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/232250667_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '34138034')"
                        ng-class="{full: showFullComments['34138034']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="dF9xcWS0Feg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/dF9xcWS0Feg/hqdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'dF9xcWS0Feg')"
                        ng-class="{full: showFullComments['dF9xcWS0Feg']}">
                        
                     </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/Kenzie_delaTorre__iC6R9O42ScSeeG1tmJdkBA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/kenziedelatorre">   
                  <h3>
                     Kenzie delaTorre
                     <span>Austin videographer in </span>
                     <span class="location">Houston, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a videographer and photographer and I love to capture the story and present it in a way that engages the viewer to make an impact in their life.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="B-gzNi6MRwI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/B-gzNi6MRwI/0.jpg)"></div>
                     <img class="play" alt="Hennessey C7 Corvette Runs 200 MPH on Texas Toll Road" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'B-gzNi6MRwI')"
                        ng-class="{full: showFullComments['B-gzNi6MRwI']}">
                        Hennessey C7 Corvette Runs 200 MPH on Texas Toll Road
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="71284004" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/444798373_640.jpg)"></div>
                     <img class="play" alt="Allison and Ben - Wedding Highlight" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '71284004')"
                        ng-class="{full: showFullComments['71284004']}">
                        Allison and Ben - Wedding Highlight
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="nMOAPdfOZV8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/nMOAPdfOZV8/0.jpg)"></div>
                     <img class="play" alt="God Story - Joey Molis" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'nMOAPdfOZV8')"
                        ng-class="{full: showFullComments['nMOAPdfOZV8']}">
                        God Story - Joey Molis
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Austin videographer for your project</span>
               <a href="/start"><div class="button">Connect with Austin 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/AlvinGMorris__VGcuIKm2QWicABD2N0u7vQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/AlvinGMorris">   
                  <h3>
                     Alvin G. Morris
                     <span>Austin videographer in </span>
                     <span class="location">Houston, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a director and editor at Rival Studios based out of Houston, Texas. We are comprised of video professionals with over 30 years combined experience in the narrative, commercial, and music video areas of production. We have a full featured studio, that can tackle any need for HD video up to 6K digital cinema. Editing, compositing, graphics, cinematography, and sound are just a few of the many services we provide.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="8e4zqqrAqWI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/8e4zqqrAqWI/maxresdefault.jpg)"></div>
                     <img class="play" alt="Music Video for &quot;Demon you love&quot; by Daylight Down. Produced by Rival Studios" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '8e4zqqrAqWI')"
                        ng-class="{full: showFullComments['8e4zqqrAqWI']}">
                        Music Video for &quot;Demon you love&quot; by Daylight Down. Produced by Rival Studios
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="130386995" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/522562301_1280.jpg)"></div>
                     <img class="play" alt="Commercial promotional video for &quot;Preferred Shipping&quot; One of DHL&#39;s oldest licensed distributors  for all international shipping needs." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '130386995')"
                        ng-class="{full: showFullComments['130386995']}">
                        Commercial promotional video for &quot;Preferred Shipping&quot; One of DHL&#39;s oldest licensed distributors  for all international shipping needs.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="133619131" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/526886968_1280.jpg)"></div>
                     <img class="play" alt="Music Video for &quot;Unyielding&quot; by Saturate, produced by Rival Studios." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '133619131')"
                        ng-class="{full: showFullComments['133619131']}">
                        Music Video for &quot;Unyielding&quot; by Saturate, produced by Rival Studios.
                     </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/JamesPrice__JqoS_t6VQzSiZlbU2N6gPg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JamesPrice">   
                  <h3>
                     James Price
                     <span>Austin videographer in </span>
                     <span class="location">Houston, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Everything....but weddings.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="1_KQGW1O6tw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/1_KQGW1O6tw/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '1_KQGW1O6tw')"
                        ng-class="{full: showFullComments['1_KQGW1O6tw']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="9vUaJbfULAo" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/9vUaJbfULAo/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '9vUaJbfULAo')"
                        ng-class="{full: showFullComments['9vUaJbfULAo']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="TH634ncAOeY" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/TH634ncAOeY/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'TH634ncAOeY')"
                        ng-class="{full: showFullComments['TH634ncAOeY']}">
                        
                     </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/MikeTurner__jp8vZb9-S8y25T2nYqaUUw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/miketurner">   
                  <h3>
                     Mike Turner
                     <span>Austin videographer in </span>
                     <span class="location">Houston, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I love telling stories, and I love the diversity of stories that I encounter in filmmaking.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="152752924" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/552835016_1280.jpg)"></div>
                     <img class="play" alt="Shot and Edited by Mike Turner" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '152752924')"
                        ng-class="{full: showFullComments['152752924']}">
                        Shot and Edited by Mike Turner
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="104124396" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/486572250_640.jpg)"></div>
                     <img class="play" alt="Marburger Farm Antique Show- Come and See!" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '104124396')"
                        ng-class="{full: showFullComments['104124396']}">
                        Marburger Farm Antique Show- Come and See!
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="102573922" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/484605959_640.jpg)"></div>
                     <img class="play" alt="NEW Lakeside" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '102573922')"
                        ng-class="{full: showFullComments['102573922']}">
                        NEW Lakeside
                     </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 Austin 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/GiovannyPuentes__9uhW3k03TO--U6kekDyB3g.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/GiovannyPuentes">   
                  <h3>
                     Giovanny Puentes
                     <span>Austin videographer in </span>
                     <span class="location">Texas, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m graphic Designer and filmmaker, with high degree of knowledge in graphic communication and management, emphasis on creating projects that involve traditional communication and new technologies.

I enjoy essentially to create ideas, stories, using design and video.

Video and graphic design are really combined today  in all different ways.

My main focus is  to use those as a powerful tool, for tell stories.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="vE7Q_5AGyHc" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/vE7Q_5AGyHc/0.jpg)"></div>
                     <img class="play" alt="Sentydos Digital Agency - Is a group of talented people, that decided to work together to create different  products and solutions for our clients like media interaction, video, animation 3D and 2D....we work creating communication, art and design;  developing and implementing innovation to transmit the message." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'vE7Q_5AGyHc')"
                        ng-class="{full: showFullComments['vE7Q_5AGyHc']}">
                        Sentydos Digital Agency - Is a group of talented people, that decided to work together to create different  products and solutions for our clients like media interaction, video, animation 3D and 2D....we work creating communication, art and design;  developing and implementing innovation to transmit the message.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="nYBIuaumKq0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/nYBIuaumKq0/0.jpg)"></div>
                     <img class="play" alt="Wallsound born as an audiovisual project which intends to show in a closest way bands and musicians from different genres through live sessions, each session pretends to be a bridge between the artist and the fan, sharing the passion for music." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'nYBIuaumKq0')"
                        ng-class="{full: showFullComments['nYBIuaumKq0']}">
                        Wallsound born as an audiovisual project which intends to show in a closest way bands and musicians from different genres through live sessions, each session pretends to be a bridge between the artist and the fan, sharing the passion for music.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="p_Izk12Kn9M" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/p_Izk12Kn9M/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'p_Izk12Kn9M')"
                        ng-class="{full: showFullComments['p_Izk12Kn9M']}">
                        
                     </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/Connor_Brantley__bpxtl7sGSVuX97ZtxS19sw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ConnorBrantley">   
                  <h3>
                     Brantley Strategies
                     <span>Austin videographer in </span>
                     <span class="location">Fort Worth, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Video producer - Fort Worth, TX</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Z2-eS1Wgyso" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/Z2-eS1Wgyso/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Z2-eS1Wgyso')"
                        ng-class="{full: showFullComments['Z2-eS1Wgyso']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="flCobi5PDsM" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/flCobi5PDsM/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'flCobi5PDsM')"
                        ng-class="{full: showFullComments['flCobi5PDsM']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="lmya1FWP69Y" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/lmya1FWP69Y/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'lmya1FWP69Y')"
                        ng-class="{full: showFullComments['lmya1FWP69Y']}">
                        
                     </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/Manchu_Media__PFfpHcUhQ7e7Xo3i3ULMrA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/manchumedia">   
                  <h3>
                     Manchu Media
                     <span>Austin videographer in </span>
                     <span class="location">Dallas, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We  just love helping people with video. From Promotional, commercial, instructional, or recreational! We love getting creative and making beautiful video.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="MHsO3Yhh-Kc" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/MHsO3Yhh-Kc/0.jpg)"></div>
                     <img class="play" alt="Après-Swim Intro Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'MHsO3Yhh-Kc')"
                        ng-class="{full: showFullComments['MHsO3Yhh-Kc']}">
                        Après-Swim Intro Video
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="IEX8jazJ7Yw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/IEX8jazJ7Yw/0.jpg)"></div>
                     <img class="play" alt="Introducing BuddyTag" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'IEX8jazJ7Yw')"
                        ng-class="{full: showFullComments['IEX8jazJ7Yw']}">
                        Introducing BuddyTag
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="BMRHpFKJwio" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/BMRHpFKJwio/0.jpg)"></div>
                     <img class="play" alt="Live Event Sizzle Reel 2014 - www.manchu-media.com" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'BMRHpFKJwio')"
                        ng-class="{full: showFullComments['BMRHpFKJwio']}">
                        Live Event Sizzle Reel 2014 - www.manchu-media.com
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Austin 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/PKIProductions__QAUoWLsERXGWhTr5AwIb6A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/PKIProductions">   
                  <h3>
                     PKI Productions
                     <span>Austin videographer in </span>
                     <span class="location">Dallas, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I own a full service video production company.  I work with kinds of clients, from individuals to large corporations.  I use professional gear and software to provide the highest quality results for my clients.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="6F6viAKwkSI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/6F6viAKwkSI/0.jpg)"></div>
                     <img class="play" alt="Shot and edited this for the city of Wylie." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '6F6viAKwkSI')"
                        ng-class="{full: showFullComments['6F6viAKwkSI']}">
                        Shot and edited this for the city of Wylie.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="0rYe8SE0Qfk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/0rYe8SE0Qfk/0.jpg)"></div>
                     <img class="play" alt="Promo video for a Performing Arts School" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '0rYe8SE0Qfk')"
                        ng-class="{full: showFullComments['0rYe8SE0Qfk']}">
                        Promo video for a Performing Arts School
                     </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/MoonLightPictures__1Ia5HTHuTfOkD5AHTMDVuQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MoonLightPictures">   
                  <h3>
                     MoonLight Pictures
                     <span>Austin videographer in </span>
                     <span class="location">Dallas, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are a digital media power house that specializes in film production, marketing, sound design, and web design based out of Dallas, TX.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="F6sfjpTRPb4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/F6sfjpTRPb4/maxresdefault.jpg)"></div>
                     <img class="play" alt="Did this commercial for a youth football league in the Dallas area." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'F6sfjpTRPb4')"
                        ng-class="{full: showFullComments['F6sfjpTRPb4']}">
                        Did this commercial for a youth football league in the Dallas area.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="LO_q4A8cCqY" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/LO_q4A8cCqY/hqdefault.jpg)"></div>
                     <img class="play" alt="Music Video we did for a competition we entered where we scored 47 out of 50 possible points." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'LO_q4A8cCqY')"
                        ng-class="{full: showFullComments['LO_q4A8cCqY']}">
                        Music Video we did for a competition we entered where we scored 47 out of 50 possible points.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="TMGrWCWz9tY" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/TMGrWCWz9tY/hqdefault.jpg)"></div>
                     <img class="play" alt="Another competition we entered and we were only allowed to use an iPhone that is why the quality sucks. We did however edit the crap out of the video as you can tell no girl can lift that much." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'TMGrWCWz9tY')"
                        ng-class="{full: showFullComments['TMGrWCWz9tY']}">
                        Another competition we entered and we were only allowed to use an iPhone that is why the quality sucks. We did however edit the crap out of the video as you can tell no girl can lift that much.
                     </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/HSHampton__VALWDw6RRBevWLb9SyVyjw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/HSHampton">   
                  <h3>
                     HS Hampton
                     <span>Austin videographer in </span>
                     <span class="location">Dallas, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We specialize in TV commercials, web videos and corporate videos. We handle everything from pre-production and casting to delivering the final edited product. The work speaks for itself. Take a look, get in touch and let&#39;s make your next project a huge success.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="AM6H5L6gbl4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/AM6H5L6gbl4/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'AM6H5L6gbl4')"
                        ng-class="{full: showFullComments['AM6H5L6gbl4']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="L3F0ZSfDa90" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/L3F0ZSfDa90/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'L3F0ZSfDa90')"
                        ng-class="{full: showFullComments['L3F0ZSfDa90']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="IoEFYIsIBa0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/IoEFYIsIBa0/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'IoEFYIsIBa0')"
                        ng-class="{full: showFullComments['IoEFYIsIBa0']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Austin videographer for your project</span>
               <a href="/start"><div class="button">Connect with Austin 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/KlariceMcCarron__WrIsXFQ7RlmuNGrIvzllCQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/KlariceMcCarron">   
                  <h3>
                     Klarice McCarron
                     <span>Austin videographer in </span>
                     <span class="location">Dallas, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a proud alumnus of the University of North Texas, with degrees in Film and Theatrical Performance. 

I simply adore a good story. There is nothing I am more passionate about than the emotions a fantastic story can evoke. There is nothing more magical than the chance to be drawn into a stunning, fantastical world created by someone else, and explore it alongside a group of characters you care about. That is my goal as a filmmaker; to keep that magic alive in my stories.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="103172724" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/485361276_640.jpg)"></div>
                     <img class="play" alt="Reel showing six films I have color corrected and graded. All shot on RED footage. [Music: Chris Blackwell&#39;s &quot;Road to Glory.&quot;]" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '103172724')"
                        ng-class="{full: showFullComments['103172724']}">
                        Reel showing six films I have color corrected and graded. All shot on RED footage. [Music: Chris Blackwell&#39;s &quot;Road to Glory.&quot;]
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="124535204" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/514298898_640.jpg)"></div>
                     <img class="play" alt="A trailer for my short film &quot;Decennial.&quot; Inspired by a post on /r/writingprompts, Decennial tells the story of a society where every ten years, citizens are required to prove to a jury that they are valuable members of society; otherwise, they are executed. This short scene shows the last moments of a man who failed his evaluation, and ran for his life." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '124535204')"
                        ng-class="{full: showFullComments['124535204']}">
                        A trailer for my short film &quot;Decennial.&quot; Inspired by a post on /r/writingprompts, Decennial tells the story of a society where every ten years, citizens are required to prove to a jury that they are valuable members of society; otherwise, they are executed. This short scene shows the last moments of a man who failed his evaluation, and ran for his life.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="140255873" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/536540537_640.jpg)"></div>
                     <img class="play" alt="A video edited to music using stock footage from Pexels and Mazwai.com." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '140255873')"
                        ng-class="{full: showFullComments['140255873']}">
                        A video edited to music using stock footage from Pexels and Mazwai.com.
                     </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/Alberto_Castilleja___UGblFfKqQnS8lCyd7epJsQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/albertocastilleja">   
                  <h3>
                     Alberto Castilleja 
                     <span>Austin videographer in </span>
                     <span class="location">Laredo, TX, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Sure thing, everything is possible. Persistence is the only way  you will become a master at doing something you love. I would love to work with you. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="110510885" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/495108065_640.jpg)"></div>
                     <img class="play" alt="Amor y Vida (cortometraje Mexicano)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '110510885')"
                        ng-class="{full: showFullComments['110510885']}">
                        Amor y Vida (cortometraje Mexicano)
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Of_4xazIos8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/Of_4xazIos8/0.jpg)"></div>
                     <img class="play" alt="Hold Up Wait A Minute (Behind The Scenes) - Antonique Smith" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Of_4xazIos8')"
                        ng-class="{full: showFullComments['Of_4xazIos8']}">
                        Hold Up Wait A Minute (Behind The Scenes) - Antonique Smith
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="IfuhfMib-Uk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/IfuhfMib-Uk/0.jpg)"></div>
                     <img class="play" alt="Chris Crosland – Believe That (Official Music Video)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'IfuhfMib-Uk')"
                        ng-class="{full: showFullComments['IfuhfMib-Uk']}">
                        Chris Crosland – Believe That (Official Music Video)
                     </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>
