<!DOCTYPE html>
<html  ng-app="vpModule" ng-controller="VPController">
<head>
   <meta charset="utf-8"/>
   <meta name="viewport" content="width=1200">
   <meta name="msvalidate.01" content="AF86D6C94D0294C6DCFF4C02777B9787" />
   
   <link rel="stylesheet" href="/st/css/main.css">
   <link rel="stylesheet" href="/st/css/common.css">
   
   <link rel="stylesheet" href="https://vjs.zencdn.net/4.5/video-js.css">
   
   <script  src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
   <script  src="/st/js/o/easing.js"></script>
   
   <link rel="apple-touch-icon" sizes="57x57" href="/st/fav/apple-touch-icon-57x57.png">
   <link rel="apple-touch-icon" sizes="114x114" href="/st/fav/apple-touch-icon-114x114.png">
   <link rel="apple-touch-icon" sizes="72x72" href="/st/fav/apple-touch-icon-72x72.png">
   <link rel="apple-touch-icon" sizes="144x144" href="/st/fav/apple-touch-icon-144x144.png">
   <link rel="apple-touch-icon" sizes="60x60" href="/st/fav/apple-touch-icon-60x60.png">
   <link rel="apple-touch-icon" sizes="120x120" href="/st/fav/apple-touch-icon-120x120.png">
   <link rel="apple-touch-icon" sizes="76x76" href="/st/fav/apple-touch-icon-76x76.png">
   <link rel="apple-touch-icon" sizes="152x152" href="/st/fav/apple-touch-icon-152x152.png">
   <meta name="apple-mobile-web-app-title" content="Videopixie">
   <link rel="icon" type="image/png" href="/st/fav/favicon-196x196.png" sizes="196x196">
   <link rel="icon" type="image/png" href="/st/fav/favicon-160x160.png" sizes="160x160">
   <link rel="icon" type="image/png" href="/st/fav/favicon-96x96.png" sizes="96x96">
   <link rel="icon" type="image/png" href="/st/fav/favicon-16x16.png" sizes="16x16">
   <link rel="icon" type="image/png" href="/st/fav/favicon-32x32.png" sizes="32x32">
   <meta name="msapplication-TileColor" content="#ffffff">
   <meta name="msapplication-TileImage" content="/st/fav/mstile-144x144.png">
   <meta name="application-name" content="Videopixie">
   
   
   
   <title>Best San Francisco Videographers | Videopixie</title>
   <meta name="description" content="San Francisco 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 San Francisco Videographers For Hire</h1>
      <h2>Videopixie helps you hire the best San Francisco 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/GlassMarker__zUZ5UKc7RkCHXVMZwjj8yw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/GlassMarker">   
                  <h3>
                     Glass & Marker
                     <span>San Francisco videographer in </span>
                     <span class="location">Oakland, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Glass &amp; Marker specializes in storytelling by creating strategic visual content that is tailored to meet the exact needs of our clients. Our goal is to help brands - large and small - reach people emotionally, through beautiful cinematography, polished visual effects, and slick animation.  It doesn’t matter if it&#39;s a crowdfunding video, an internal corporate animation, or an IPO roadshow video, G&amp;M can do it all, and do it all well.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="143780710" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/541456027_1280.jpg)"></div>
                     <img class="play" alt="Just a few examples of some animations we&#39;ve done." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '143780710')"
                        ng-class="{full: showFullComments['143780710']}">
                        Just a few examples of some animations we&#39;ve done.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="117945977" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/530544757_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '117945977')"
                        ng-class="{full: showFullComments['117945977']}">
                        
                     </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/BokehInc__yBCK9e7tQd2dTMn29CYROw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/BokehInc">   
                  <h3>
                     Bokeh Inc.
                     <span>San Francisco videographer in </span>
                     <span class="location">San Mateo, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Bokeh is a full-service creative agency driven by the belief that properly executed storytelling through visual media plays a fundamental role in creating honest and immersive connections and experiences with users, consumers, partners, and clientele. We believe that developing strong strategies for design, content, and social media help shape and reinforce engaging narratives that define a brand or product&#39;s identity.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="139534551" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/535748115_640.jpg)"></div>
                     <img class="play" alt="Bokeh Demo Reel - 2015" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '139534551')"
                        ng-class="{full: showFullComments['139534551']}">
                        Bokeh Demo Reel - 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/Picturelab/Transvideo_Studios__BDJMjEI7TwuJHQDQBEb2bg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/picturelab">   
                  <h3>
                     Picturelab/Transvideo Studios
                     <span>San Francisco videographer in </span>
                     <span class="location">Mountain View, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Picturelab is the creative &amp; design department of Silicon Valley’s largest film/video production company: Transvideo Studios. Since opening our doors in 1981 we’ve produced more than 10,000 videos, yielding more than 200 million hits. Creating explainer and overview videos, television commercials, integrated videos and documentaries. We’ve worked with some of the most exciting and innovative organizations on the face of the earth like Google, Facebook, Microsoft and NASA. And we’ve helped a bunch of start-ups become big names in their own right… like Box and Mint. We’ve created work that’s made a difference, and helped organizations grow and succeed.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="127867220" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/518804143_1280.jpg)"></div>
                     <img class="play" alt="Picturelab Remix 2015: Seven years of smarts and magic." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '127867220')"
                        ng-class="{full: showFullComments['127867220']}">
                        Picturelab Remix 2015: Seven years of smarts and magic.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="157623860" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/558942377_1280.jpg)"></div>
                     <img class="play" alt="Transvideo Studios 2016 Demo Reel.  Live action, animation, dreams realized." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '157623860')"
                        ng-class="{full: showFullComments['157623860']}">
                        Transvideo Studios 2016 Demo Reel.  Live action, animation, dreams realized.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="41945534" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/290821850_640.jpg)"></div>
                     <img class="play" alt="Thumbtack Overview" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '41945534')"
                        ng-class="{full: showFullComments['41945534']}">
                        Thumbtack Overview
                     </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 San Francisco 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/Camp_Creative__FX_GzBanT9Cri5HoZWgd9A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/campcreative">   
                  <h3>
                     Camp Creative
                     <span>San Francisco videographer in </span>
                     <span class="location">Berkeley, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Camp Creative is a full service marketing communications agency. We have been producing award winning digital media for Bay Area technology companies since 1999. Our client list includes the leaders in their respective markets, Cisco, Google, Yahoo, Deloitte, Equinix and HP.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="74171804" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/487392679_640.jpg)"></div>
                     <img class="play" alt="Meet the Community Partnerships Program" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '74171804')"
                        ng-class="{full: showFullComments['74171804']}">
                        Meet the Community Partnerships Program
                     </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/Studio_B_Films_Production___LWwBj4WWSpCnclumXxXTCw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/studiobfilmsproduction">   
                  <h3>
                     Studio B Films Production 
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco Bay Area, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Since 1992, Studio B Films has partnered with our clients to communicate their messages with a clear, creative and bold voice. Located in a beautiful loft space in Berkeley, CA just 20 minutes away from San Francisco, Studio B Films is known not only for its quality, but also for its approachability.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="85495162" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/462936916_640.jpg)"></div>
                     <img class="play" alt="Studio B Films 2014 Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '85495162')"
                        ng-class="{full: showFullComments['85495162']}">
                        Studio B Films 2014 Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="65318253" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/463299701_640.jpg)"></div>
                     <img class="play" alt="Nuage" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '65318253')"
                        ng-class="{full: showFullComments['65318253']}">
                        Nuage
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="108520761" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/492229028_640.jpg)"></div>
                     <img class="play" alt="ADOBE - ECHOSIGN" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '108520761')"
                        ng-class="{full: showFullComments['108520761']}">
                        ADOBE - ECHOSIGN
                     </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/French_Press_Films__V91yZdi4Q3y8HYww8x8A3A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/frenchpressfilms">   
                  <h3>
                     French Press Films
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco Bay Area, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">French Press is a lean, scalable video production company with a strong network of professional filmmakers that we trust and work with repeatedly.

Relationships are the core of our business and we don’t think of projects as one-offs. We consider our clients on-going partners.

We collaborate using a thorough creative process to craft engaging stories and deliver top-quality, cinematic video that moves people.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="108438436" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/492120299_640.jpg)"></div>
                     <img class="play" alt="Plastc, &quot;Experience Plastc&quot;" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '108438436')"
                        ng-class="{full: showFullComments['108438436']}">
                        Plastc, &quot;Experience Plastc&quot;
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="65922943" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/437390180_640.jpg)"></div>
                     <img class="play" alt="Healthline, &quot;Condition 360: Severe Allergies - Brielle Book&quot;" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '65922943')"
                        ng-class="{full: showFullComments['65922943']}">
                        Healthline, &quot;Condition 360: Severe Allergies - Brielle Book&quot;
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="58756039" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/407990661_640.jpg)"></div>
                     <img class="play" alt="Uber - &quot;Everyone&#39;s Private Driver&quot;" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '58756039')"
                        ng-class="{full: showFullComments['58756039']}">
                        Uber - &quot;Everyone&#39;s Private Driver&quot;
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented San Francisco 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/SutroStudios__-oypg0CnTAm9ETMzqpYEJQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/SutroStudios">   
                  <h3>
                     Sutro Studios
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Professional filmmakers, DPs, and editors, color grading artists with close to twenty years of film industry experience, and multiple credits in Academy-Award winning films. Please check out http://sutrostudios.com for more.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="5jW0V3lL-pE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/5jW0V3lL-pE/maxresdefault.jpg)"></div>
                     <img class="play" alt="Sutro Studios reel for 2016, showcasing some of our favorite work over the last three years in documentary, crowdfunding projects, startup videos, online marketing campaigns, and more." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '5jW0V3lL-pE')"
                        ng-class="{full: showFullComments['5jW0V3lL-pE']}">
                        Sutro Studios reel for 2016, showcasing some of our favorite work over the last three years in documentary, crowdfunding projects, startup videos, online marketing campaigns, and more.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="M3am35oGriU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/M3am35oGriU/maxresdefault.jpg)"></div>
                     <img class="play" alt="Fashion marketing video for House of Borel, a San Francisco-based fashion brand of luxury handbags." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'M3am35oGriU')"
                        ng-class="{full: showFullComments['M3am35oGriU']}">
                        Fashion marketing video for House of Borel, a San Francisco-based fashion brand of luxury handbags.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="56601540" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/391917454_1280.jpg)"></div>
                     <img class="play" alt="Crowdfunding Kickaster campaign for GUSTIN jeans. Became a staff pick, and the most successful fashion Kickstarter campaign ever at the time." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '56601540')"
                        ng-class="{full: showFullComments['56601540']}">
                        Crowdfunding Kickaster campaign for GUSTIN jeans. Became a staff pick, and the most successful fashion Kickstarter campaign ever at the time.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/IQvideography___TfNhz0mS_aGZE9_d5X73A.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/iqvideography">   
                  <h3>
                     IQvideography
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">IQvideography is a boutique studio established in 2006 in San Francisco. Our main focus is wedding and events. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="101951288" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/483853084_640.jpg)"></div>
                     <img class="play" alt="Litsa and Jonas at Annadel Estate Winery Santa Rosa [ Wedding ]" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '101951288')"
                        ng-class="{full: showFullComments['101951288']}">
                        Litsa and Jonas at Annadel Estate Winery Santa Rosa [ Wedding ]
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="96852753" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/477035213_640.jpg)"></div>
                     <img class="play" alt="Mika &amp; Neil  [ Wedding ]" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '96852753')"
                        ng-class="{full: showFullComments['96852753']}">
                        Mika &amp; Neil  [ Wedding ]
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="46170672" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/487527641_640.jpg)"></div>
                     <img class="play" alt="Paula &amp; Chris at The Bently Reserve [ Wedding ]" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '46170672')"
                        ng-class="{full: showFullComments['46170672']}">
                        Paula &amp; Chris at The Bently Reserve [ Wedding ]
                     </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/HEROTEAM__nK5gZzrcQimZB2TrnIRl3g.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/HEROTEAM">   
                  <h3>
                     HERO TEAM
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We can make it works!
www.heroteam.co</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="eDKNTK2YxoU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/eDKNTK2YxoU/sddefault.jpg)"></div>
                     <img class="play" alt="Enjoy our video reel :) www.heroteam.co" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'eDKNTK2YxoU')"
                        ng-class="{full: showFullComments['eDKNTK2YxoU']}">
                        Enjoy our video reel :) www.heroteam.co
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="lNsN1WWpgW4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/lNsN1WWpgW4/maxresdefault.jpg)"></div>
                     <img class="play" alt="Enjoy our motion graphic and animation video reel :) www.heroteam.co" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'lNsN1WWpgW4')"
                        ng-class="{full: showFullComments['lNsN1WWpgW4']}">
                        Enjoy our motion graphic and animation video reel :) www.heroteam.co
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="9-vCp0FOzwg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/9-vCp0FOzwg/sddefault.jpg)"></div>
                     <img class="play" alt="Enjoy our training videos reel :) www.heroteam.co" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '9-vCp0FOzwg')"
                        ng-class="{full: showFullComments['9-vCp0FOzwg']}">
                        Enjoy our training videos reel :) www.heroteam.co
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best San Francisco videographer for your project</span>
               <a href="/start"><div class="button">Connect with San Francisco 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/ChristineBeggs__beZXPWjQTdWwHKiic-POrw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ChristineBeggs">   
                  <h3>
                     Christine Beggs
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Ripples Edge Media is a San Francisco video production company having raised over $1,000,000 to date for startup and social impact clients through our crowdfunding videos. Creativity is the air we breathe and making ideas happen, our every day work. EMAIL C.BEGGS@RIPPLESEDGEMEDIA.COM.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="136816810" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/534811131_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '136816810')"
                        ng-class="{full: showFullComments['136816810']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="82169508" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/504314735_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '82169508')"
                        ng-class="{full: showFullComments['82169508']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="149257220" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/548487561_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '149257220')"
                        ng-class="{full: showFullComments['149257220']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Noisy_Savage__lpGUxSAISH2jx32EfXvIpQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/noisysavage">   
                  <h3>
                     Noisy Savage
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are a group of 3 freelancers specializing in interviews, promos, and story telling. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="101055028" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/482739686_640.jpg)"></div>
                     <img class="play" alt="DJ TechTools - FX Transitions DJ Performance Tutorial" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '101055028')"
                        ng-class="{full: showFullComments['101055028']}">
                        DJ TechTools - FX Transitions DJ Performance Tutorial
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="85895790" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/464009010_640.jpg)"></div>
                     <img class="play" alt="Thomas Geoghegan • Fifth Sonata for Classical Guitar - Vivace" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '85895790')"
                        ng-class="{full: showFullComments['85895790']}">
                        Thomas Geoghegan • Fifth Sonata for Classical Guitar - Vivace
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="85787102" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/463228667_640.jpg)"></div>
                     <img class="play" alt="Pyramind - Rock and Acoustic Program" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '85787102')"
                        ng-class="{full: showFullComments['85787102']}">
                        Pyramind - Rock and Acoustic Program
                     </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/Rebel_Unit_Media___yW3CLcppSXKUaQapsAtlNw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/rebelunitmedia">   
                  <h3>
                     Rebel Unit Media 
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Your Company has a great product. Our Company has great ideas. Together we can make something awesome!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="153442403" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/553728641_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '153442403')"
                        ng-class="{full: showFullComments['153442403']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="89443055" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/468195444_640.jpg)"></div>
                     <img class="play" alt="LiveRamp" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '89443055')"
                        ng-class="{full: showFullComments['89443055']}">
                        LiveRamp
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="87621984" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/465753355_640.jpg)"></div>
                     <img class="play" alt="FlameStower" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '87621984')"
                        ng-class="{full: showFullComments['87621984']}">
                        FlameStower
                     </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 San Francisco 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/Grigory_Rudko__3rV0mDykTM--xH3wvypgAw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/grigoryrudko">   
                  <h3>
                     Grigory Rudko
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">9 years of experience. 
Have worked with VICE, Conde Nast, Forbes, BBC etc. 
Hold M.A. in documentary film production and another M.A. in photography. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="pA4H2LX2n1w" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/pA4H2LX2n1w/maxresdefault.jpg)"></div>
                     <img class="play" alt="Trucker Path  We asked truckers what they love about trucking...  Producer,  cameraman" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'pA4H2LX2n1w')"
                        ng-class="{full: showFullComments['pA4H2LX2n1w']}">
                        Trucker Path  We asked truckers what they love about trucking...  Producer,  cameraman
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="mxlS-GD18CU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/mxlS-GD18CU/0.jpg)"></div>
                     <img class="play" alt="Video Preview for PANDADOC" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'mxlS-GD18CU')"
                        ng-class="{full: showFullComments['mxlS-GD18CU']}">
                        Video Preview for PANDADOC
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="bXXGYwNe1uo" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/bXXGYwNe1uo/0.jpg)"></div>
                     <img class="play" alt="Client Tales for QUOTEROLLER" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'bXXGYwNe1uo')"
                        ng-class="{full: showFullComments['bXXGYwNe1uo']}">
                        Client Tales for QUOTEROLLER
                     </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/0109-hifi-3d.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/hifi3d">   
                  <h3>
                     Hifi 3D
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Jon Dorfman is an Emmy award-winning vfx artist. He has worked with many of the top commercial effects houses in New York, creating a wide variety of work for clients such as Coca Cola, HBO, MTV, IBM, Rockstar Games, Microsoft, HP, Verizon and AT&amp;T. He recently won a 2012 Emmy award for his vfx work on HBO&#39;s Boardwalk Empire.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="46775617" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/383786831_640.jpg)"></div>
                     <img class="play" alt="HiFi 3D Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '46775617')"
                        ng-class="{full: showFullComments['46775617']}">
                        HiFi 3D Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="68228385" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/440457392_640.jpg)"></div>
                     <img class="play" alt="Chumash" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '68228385')"
                        ng-class="{full: showFullComments['68228385']}">
                        Chumash
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="37248029" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/255856557_640.jpg)"></div>
                     <img class="play" alt="Nike Flyknit" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '37248029')"
                        ng-class="{full: showFullComments['37248029']}">
                        Nike Flyknit
                     </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/LAtelierMarketing__OxM7Hyk-TV2agoFTAhlplw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/LAtelierMarketing">   
                  <h3>
                     LAtelier Marketing
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We are not just technical video creators, we are a marketing team ready to help you build an authentic story. We love working with companies, products, and people that innovate. Our specialty is in the exciting fields of Ai, robotics, and the internet of things.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="162459137" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/564919750_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '162459137')"
                        ng-class="{full: showFullComments['162459137']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="150148020" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/549603945_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '150148020')"
                        ng-class="{full: showFullComments['150148020']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="6EXDQLMRq7Y" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/6EXDQLMRq7Y/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '6EXDQLMRq7Y')"
                        ng-class="{full: showFullComments['6EXDQLMRq7Y']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented San Francisco 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/Videobot__qU9Pl3SaSciCPlDkXjvPqQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/videobot">   
                  <h3>
                     Videobot
                     <span>San Francisco videographer in </span>
                     <span class="location">Monterey, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Videobot helps companies build out their YouTube Channels, Smart TV, Social Media, and Mobile platforms. We produce product videos, web commercials, branded content.  We accomplish this through great storytelling and exceptional video content production to reflect the professionalism of your brand.  </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="104774672" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/487419823_640.jpg)"></div>
                     <img class="play" alt="Videobot Montage" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '104774672')"
                        ng-class="{full: showFullComments['104774672']}">
                        Videobot Montage
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="97076358" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/477321835_640.jpg)"></div>
                     <img class="play" alt="Dolce &amp; Gabbana - Beverly Hills" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '97076358')"
                        ng-class="{full: showFullComments['97076358']}">
                        Dolce &amp; Gabbana - Beverly Hills
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="98842820" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/479697159_640.jpg)"></div>
                     <img class="play" alt="Polo Ralph Lauren" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '98842820')"
                        ng-class="{full: showFullComments['98842820']}">
                        Polo Ralph Lauren
                     </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/RomyRandev__vxeTXXKgTXOhdlqoQAfnBw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/RomyRandev">   
                  <h3>
                     Romy Randev
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">A video director and editor with over 10 years of experience in the video production industry. I&#39;ve directed, shot and edited short films, music, Kickstarter, product videos and much more.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="151863552" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/551708458_1280.jpg)"></div>
                     <img class="play" alt="PixiKits are a set of toys that teach young children the basics of engineering. I helped write the script with the client and then traveled to Denver, CO to shoot the footage. I also edited the final video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '151863552')"
                        ng-class="{full: showFullComments['151863552']}">
                        PixiKits are a set of toys that teach young children the basics of engineering. I helped write the script with the client and then traveled to Denver, CO to shoot the footage. I also edited the final video.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="140701224" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/542044306_640.jpg)"></div>
                     <img class="play" alt="I shot and edited this crowdfunding video for Snickerdoodle, a single-board computer. This video helped raise over $110K." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '140701224')"
                        ng-class="{full: showFullComments['140701224']}">
                        I shot and edited this crowdfunding video for Snickerdoodle, a single-board computer. This video helped raise over $110K.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="134030054" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/527309272_640.jpg)"></div>
                     <img class="play" alt="An amazing interactive light board by Hero Design. I shot and edited this video. It has since been seen over 200K times and was posted to a large number of design blogs including DesignBoom, Gizmodo, Fast Company and many more." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '134030054')"
                        ng-class="{full: showFullComments['134030054']}">
                        An amazing interactive light board by Hero Design. I shot and edited this video. It has since been seen over 200K times and was posted to a large number of design blogs including DesignBoom, Gizmodo, Fast Company and many more.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/Fetch">   
                  <h3>
                     Fetch
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Mobile marketing and advertising agency with offices in London, Berlin, San Francisco and Hong Kong</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="QYrL9Q6HSRg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/QYrL9Q6HSRg/maxresdefault.jpg)"></div>
                     <img class="play" alt="One of the best examples of live action game trailer we&#39;ve seen.  Expertly directed and produced by Fetch.    Are you with Fetch?  register your account to connect with game developers.  Just email us at human@videopixie.com it&#39;s free." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'QYrL9Q6HSRg')"
                        ng-class="{full: showFullComments['QYrL9Q6HSRg']}">
                        One of the best examples of live action game trailer we&#39;ve seen.  Expertly directed and produced by Fetch.    Are you with Fetch?  register your account to connect with game developers.  Just email us at human@videopixie.com it&#39;s free.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120714622" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508645780_1280.jpg)"></div>
                     <img class="play" alt="Fetch nailed it with this promotional trailer for Pocket Gems.  Short, sweet, and memorable.    Are you Fetch?  make sure to register your account to connect with client.  Email human@videopixie.com, it&#39;s free and we&#39;ll set you up in no time." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120714622')"
                        ng-class="{full: showFullComments['120714622']}">
                        Fetch nailed it with this promotional trailer for Pocket Gems.  Short, sweet, and memorable.    Are you Fetch?  make sure to register your account to connect with client.  Email human@videopixie.com, it&#39;s free and we&#39;ll set you up in no time.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120714627" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508645773_1280.jpg)"></div>
                     <img class="play" alt="Spoooooky app promo for Fright Fight.  Or how to set the tone for a game in under 30s.    Are you Fetch?  please register your account to connect with game devs.  It&#39;s free, just email human@videopixie.com" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120714627')"
                        ng-class="{full: showFullComments['120714627']}">
                        Spoooooky app promo for Fright Fight.  Or how to set the tone for a game in under 30s.    Are you Fetch?  please register your account to connect with game devs.  It&#39;s free, just email human@videopixie.com
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best San Francisco videographer for your project</span>
               <a href="/start"><div class="button">Connect with San Francisco 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/0019-kit-larson.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/kitlarson">   
                  <h3>
                     Kit Larson
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Given the title of &quot;MacGyver,&quot;, Kit has been one of Videopixie&#39;s earliest and most reliable curators. A film student with a focus in communications, Kit is very good at gaining a clear understanding from his clients, and is very efficient in meeting deadlines to a T. 

At only age 22, Kit has extensive training and experience with editing software Final Cut Pro 7 and Adobe After Effects.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="momX2OH0KVg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/momX2OH0KVg/0.jpg)"></div>
                     <img class="play" alt="Made purely out of inspiration and in one day completely. This is an example of my ability to creatively structure a video .. as well as my ability to create the sense of &quot;real time&quot; with only one camera." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'momX2OH0KVg')"
                        ng-class="{full: showFullComments['momX2OH0KVg']}">
                        Made purely out of inspiration and in one day completely. This is an example of my ability to creatively structure a video .. as well as my ability to create the sense of &quot;real time&quot; with only one camera.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="JBYhxsPJONo" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/JBYhxsPJONo/0.jpg)"></div>
                     <img class="play" alt="Our Occupation.  Tags:  Documentary, Motion Graphics." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'JBYhxsPJONo')"
                        ng-class="{full: showFullComments['JBYhxsPJONo']}">
                        Our Occupation.  Tags:  Documentary, Motion Graphics.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="5UARDSSVyBE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/5UARDSSVyBE/0.jpg)"></div>
                     <img class="play" alt="Always A Warrior  Personal Project. Responsible for concept, filming, editing, script." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '5UARDSSVyBE')"
                        ng-class="{full: showFullComments['5UARDSSVyBE']}">
                        Always A Warrior  Personal Project. Responsible for concept, filming, editing, script.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/0089-marco-antonelli.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/marcoantonelli">   
                  <h3>
                     Marco Antonelli
                     <span>San Francisco videographer in </span>
                     <span class="location">San Francisco, CA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">
My name is Marco Antonelli.
I am a freelance filmmaker from Italy, based in San Francisco.
I have lots of experience in corporate videos, events, music videos and live music shoots, documentaries.
My cinematography set up is ideal for fast moving run and gun shooting.
My gear comprehend a Canon 5d Mark 3 with Zeiss contax primes + 70-200 f4, professional double system audio equipment (recorder + shotgun + lavs), hdmi monitor, shoulder rig.
I can provide 2 cameras. 
I can shoot Raw video with Magic Lantern.
I use Premiere pro CS6 for editing, Resolve for grading, AE for graphics.
</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="mJ0fxeuw_y0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/mJ0fxeuw_y0/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'mJ0fxeuw_y0')"
                        ng-class="{full: showFullComments['mJ0fxeuw_y0']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="hI4dStk16MU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/hI4dStk16MU/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'hI4dStk16MU')"
                        ng-class="{full: showFullComments['hI4dStk16MU']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="119023734" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/506595811_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '119023734')"
                        ng-class="{full: showFullComments['119023734']}">
                        
                     </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>
