<!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>Top 20 Videographers in Florida | Videopixie</title>
   <meta name="description" content="Here is a selection of the best videographers and video production companies in Florida">
   <link rel="stylesheet" href="/st/css/creator_list.css"/>
   
   <script>
   
      var angularTemplate = '';
      var allProfiles = [];
   
   </script>
   

      
   <link href='//fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
   <link href='//fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
   
   <script  src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.min.js"></script>
   <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular-animate.min.js"></script>
   
   <script>
      window.SES={};
      SES.is_dev_enviro = false;
      SES.coupon_unavailable = false;

      var vpModule = angular.module('vpModule', ['ngAnimate',]);
       
   </script>
   
  
   
   <script src="/st/build/vjs.4.5.min.js"></script>
   
   <!--
      <script type="text/javascript" src="/st/build/vjs-extra.concat.js"></script>
   -->
   <script  src="/st/build/vjs-extra.min.js"></script>
   
   <script  src="/st/js/o/common.js"></script>
   <script  src="/st/js/c/VPController.js"></script>
   <script  src="/st/js/c/DirectivesCommon.js"></script>
   <script  src="/st/js/c/MediaModalController.js"></script>
   <script  src="/st/js/c/EditorProfileController.js"></script>
   <script>
      
   var log = VPL('HomePageController');
      
   
   vpModule.controller('HomePageController', ['$scope', 'comm', '$http', 
      function($scope, comm, $http){
      
         $scope.mediaClick = function(id, evt, _options, size){
         
            log.d('mediaClick', _options);

            var content = $(evt.currentTarget).children('.about').eq(0).html()
            var options = _options || {}
            
            comm.broadcast(VP.SHOW_MEDIA,{
               mode: (content ? VP.SIDEBAR_MODES.HTML_MODE : VP.SIDEBAR_MODES.ASSET_MODE),
               htmlSidebarContent: content,
               mediaData: {
                  bucket: options.bucket || "our.s3.videopixie.com/examples/",
                  provider: options.provider || "",
                  provider_id: id,
                  file_extension: 'mp4', 
                  hasWebm: true,
                  overlays: options.overlays || null,
                  format: options.format || null
               },
               size: size
            });
         };
         
         $scope.homepageVideo = function(id,evt){
         
            $scope.mediaClick(id, evt, {
               bucket: 'our.s3.videopixie.com/video/',
               format: '704p'
            },
            {
               width: 1024,
               height: 576,
               media_width: 1024,
               media_height: 576
            });
         }
         
         
         $scope.$watch('MediaModal',function(isPlaying){
         
            window.isPlayingVideo = !!isPlaying;
         });
         
         
         $scope.registerNew = function(){
         
            var path = '/register/new';
            
            if (!$scope.registerNewEmailAddress || $scope.registerNewEmailAddress.length < 3){
               return;
            }
            
            var data = {
               email_address: $scope.registerNewEmailAddress,
               type_context: SES.type_context || ''
            };
            
            $scope.registerNewPending = true;
            $scope.registerNewErrorMsg = null;
           
            $http.post(path, data).then(
               function registerNewSuccess(response){
                  log.d('SUCCESS', path);
                  $scope.registerNewComplete = true;
                  $scope.registerNewPending = false;
               },
               function registerNewError(response){
                  log.d('ERROR', path, response);
                  $scope.registerNewErrorMsg = response.data.error.human;
                  $scope.registerNewPending = false;
               }
            );
            
         
         }

         
         
      }]);
      
      
      
      $(document).ready(function(){
         $('.click-proxy').click(function(evt){
         
            var id = $(evt.currentTarget).attr('click-proxy');
            //console.log('click-proxy', id);
            $('#'+id).triggerHandler('click');
            
         });
         
         (function(d, s, id) {
           var js, fjs = d.getElementsByTagName(s)[0];
           if (d.getElementById(id)) return;
           js = d.createElement(s); js.id = id;
           js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=257876044244230";
           fjs.parentNode.insertBefore(js, fjs);
         }(document, 'script', 'facebook-jssdk'));
      
      });

   </script>

   
   <!-- start Mixpanel -->
   <script type="text/javascript">
    (function(c,a){window.mixpanel=a;var b,d,h,e;b=c.createElement("script");
    b.type="text/javascript";b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+
    '//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';d=c.getElementsByTagName("script")[0];
    d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){
    var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(
    Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?g=a[f]=[]:
    f="mixpanel";g.people=g.people||[];h=['disable','track','track_pageview','track_links',
    'track_forms','register','register_once','unregister','identify','alias','name_tag',
    'set_config','people.set','people.increment','people.track_charge','people.append'];
    for(e=0;e<h.length;e++)d(g,h[e]);a._i.push([b,c,f])};a.__SV=1.2;})(document,window.mixpanel||[]);
    mixpanel.init("");
   </script>
   <!-- end Mixpanel -->
   
   
   <script type="text/javascript" src="/st/js/v/ses_mixpanel.js"></script>
   
   <!--[if lt IE 7.]>
      <script defer type="text/javascript" src="st/pngfix.js"></script>
   <![endif]-->
   
   <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

      ga('create', 'UA-42918769-1', 'videopixie.com');
      ga('require', 'displayfeatures');
      ga('send', 'pageview');
      
      var referrerCookieName = 'vpFirstReferrer';
      if (!readCookie(referrerCookieName)){
         var ref = document.referrer || 'empty';
         createCookie(referrerCookieName , ref ,365*2);
      }
   </script>
  
   
   
   <script  src="/st/js/nm/VideoCreators.js"></script>
   <link href='https://fonts.googleapis.com/css?family=Open+Sans:400italic' rel='stylesheet' type='text/css'>

   

  
</head>
<body class="VP"  ng-controller="HomePageController">
   
   <div id="header">
      <a href="/"><img id="logo" src="/st/images/logo_text_and_pixie.png" alt="Videopixie"></a>
      <a id="phone" href="tel:1 800 510 6570">1 (800) 510-6570</a>
      
      
      
         
         
         
         
      
      
      
      <a class="right-link" href="/pricing">Pricing</a>
      <a class="right-link" href="/video-school">Video School</a>
      <a class="right-link browse-link browse-link-first" href="/videographers">Videographers</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-animators">Animators</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-editors">Browse:&nbsp; Video editors</a>
      
   </div>
   
   
   


   <div id="hero" 
      >
   
      <h1>Top 20 Videographers in Florida</h1>
      <h2>Videopixie helps you hire the best Florida 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/ADJUSTVideoProduction__F0PZYYevTGGdToCctX4iPw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/AlexJopsonFedotov">   
                  <h3>
                     AD.JUST Video Production
                     <span>Florida videographer in </span>
                     <span class="location">Florida, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">AD.JUST VIDEO PRODUCTION -  A BOUTIQUE EUROPEAN STYLE VIDEO PRODUCTION STUDIO 
AD.JUST is the full service Orlando video production company delivering a unique style to video marketing products. 
We follow trends in design and visual communications.
We approach each project with a fresh, comprehensive and sophisticated manner to deliver one-of-the kind, outstanding video.
AD.JUST is always trying new techniques, tricks, and devices to get a perfect modern look for our video products.
We have an extensive marketing background to make promotional videos work hard to meet and exceed client’s goals.
We don&#39;t do replicate, we make art. It&#39;s not just a video, it is visual communication, where efficiency is a must!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="162787826" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/566100904_1280.jpg)"></div>
                     <img class="play" alt="Ad.Just Video Production Showreel&#39;16" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '162787826')"
                        ng-class="{full: showFullComments['162787826']}">
                        Ad.Just Video Production Showreel&#39;16
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="129731084" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/521328307_640.jpg)"></div>
                     <img class="play" alt="Mobile application funny commercial" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '129731084')"
                        ng-class="{full: showFullComments['129731084']}">
                        Mobile application funny commercial
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="155488018" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/556259139_1280.jpg)"></div>
                     <img class="play" alt="Travellers TV Show Pitch video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '155488018')"
                        ng-class="{full: showFullComments['155488018']}">
                        Travellers TV Show Pitch 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/.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/CRUXSTARTroyDovey">   
                  <h3>
                     CRUXSTAR - Troy Dovey
                     <span>Florida videographer in </span>
                     <span class="location">Florida, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">CREATIVE DIRECTION, FILMS/VIDEOS, CORPORATE VIDEOS, MUSIC VIDEOS, COMMERCIALS, ART &amp; GRAPHIC DESIGN, MUSIC PRODUCTION,
RIES, VOICEOVERS, PHOTOGRAPHY and MORE  www.cruxstar.com</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="mI5cTktY_jY" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/mI5cTktY_jY/0.jpg)"></div>
                     <img class="play" alt="CRUXSTAR - Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'mI5cTktY_jY')"
                        ng-class="{full: showFullComments['mI5cTktY_jY']}">
                        CRUXSTAR - Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="3AqICpYaJKs" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/3AqICpYaJKs/0.jpg)"></div>
                     <img class="play" alt="Sephora Filmercial" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '3AqICpYaJKs')"
                        ng-class="{full: showFullComments['3AqICpYaJKs']}">
                        Sephora Filmercial
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="gk9WW4qpmoA" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/gk9WW4qpmoA/0.jpg)"></div>
                     <img class="play" alt="DOS MADERAS RUM Filmercial" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'gk9WW4qpmoA')"
                        ng-class="{full: showFullComments['gk9WW4qpmoA']}">
                        DOS MADERAS RUM Filmercial
                     </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/Jared_Hess__SjZNaWYrQyqz4d5A_1nczA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/jaredhess">   
                  <h3>
                     Jared Hess
                     <span>Florida videographer in </span>
                     <span class="location">Orlando, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I have 10 years experience in the indie film and television industry.  I have the equipment, knowledge and experience to create an ideal look for your project.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="119873168" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(None)"></div>
                     <img class="play" alt="In Focus with Chris Honeycutt" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '119873168')"
                        ng-class="{full: showFullComments['119873168']}">
                        In Focus with Chris Honeycutt
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="126291333" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(None)"></div>
                     <img class="play" alt="LC Davis Bellator Feature" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '126291333')"
                        ng-class="{full: showFullComments['126291333']}">
                        LC Davis Bellator Feature
                     </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 Florida 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/Ally_H__nXb5glP7SWCuGGq_PkhrEw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/allyh">   
                  <h3>
                     Ally H
                     <span>Florida videographer in </span>
                     <span class="location">Orlando, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;ve worked in video editing, motion graphics, graphic design, and video production for over 10 years. In that time I have worked a wide variety of clients including but not limited to attorneys, professional athletes, businesses, music production studios, non-profits, personal accounts, and artists. My well-rounded experience and skills allows me to offer my clients a wide-variety of services.

In 2014, a video that I did with the Rethink Homelessness campaign in Orlando, Cardboard Stories gained over 6 million views on Youtube and was written about in over 500 online publications including People.com, HLNtv, and The Huffington Post. It was also shared on major social media platforms such as George Takei, Upworthy, Amy Poeler&#39;s Smart Girls, and Viral Nova.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="ExMQ5fffzc8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/ExMQ5fffzc8/maxresdefault.jpg)"></div>
                     <img class="play" alt="Tegile video. Editing &amp; Color Correction" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'ExMQ5fffzc8')"
                        ng-class="{full: showFullComments['ExMQ5fffzc8']}">
                        Tegile video. Editing &amp; Color Correction
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="NW0ZjWV2ZPk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/NW0ZjWV2ZPk/0.jpg)"></div>
                     <img class="play" alt="This is a project I did for SkillShare.com. I shot and edited all of the footage and audio in this video. Music is stock." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'NW0ZjWV2ZPk')"
                        ng-class="{full: showFullComments['NW0ZjWV2ZPk']}">
                        This is a project I did for SkillShare.com. I shot and edited all of the footage and audio in this video. Music is stock.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="THxtcWNw3QA" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/THxtcWNw3QA/0.jpg)"></div>
                     <img class="play" alt="Shot, edited and created with a partner at Rethink Homelessness" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'THxtcWNw3QA')"
                        ng-class="{full: showFullComments['THxtcWNw3QA']}">
                        Shot, edited and created with a partner at Rethink Homelessness
                     </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/JosueVelez__LUkrZzroSlKuBOmEYDWbPQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JosueVelez">   
                  <h3>
                     Josue Velez
                     <span>Florida videographer in </span>
                     <span class="location">Orlando, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Hello, I am Josue Velez a freelance Videographer/Editor who has a passion for producing stories through Film.I believe in  capturing those detailed moments and telling your story and what makes your journey unique.Looking Forward to work with you!

Wedding Demo #1
https://vimeo.com/149179890

Wedding Demo #2
https://vimeo.com/144028505</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="wtB2ZX0MkQs" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/wtB2ZX0MkQs/maxresdefault.jpg)"></div>
                     <img class="play" alt="&quot;Keep  On Fighting &quot; Music Video   Teaser" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'wtB2ZX0MkQs')"
                        ng-class="{full: showFullComments['wtB2ZX0MkQs']}">
                        &quot;Keep  On Fighting &quot; Music Video   Teaser
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="niAxsxPTh-w" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/niAxsxPTh-w/maxresdefault.jpg)"></div>
                     <img class="play" alt="Music Video- La Gnete Pide" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'niAxsxPTh-w')"
                        ng-class="{full: showFullComments['niAxsxPTh-w']}">
                        Music Video- La Gnete Pide
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="149179890" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/548329445_1280.jpg)"></div>
                     <img class="play" alt="Amber + Alekxander Wedding Trailer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '149179890')"
                        ng-class="{full: showFullComments['149179890']}">
                        Amber + Alekxander Wedding Trailer
                     </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/Thomas_Morgan__9zKz8SvHRROGolWEdv9MNw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ThomasMorgan">   
                  <h3>
                     Thomas Morgan
                     <span>Florida videographer in </span>
                     <span class="location">Orlando, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am very versatile and can see your project through from concept to completion.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="73479853" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/447590444_640.jpg)"></div>
                     <img class="play" alt="Produced a television commercial for a local haunted attraction. The client needed a commercial that would not only set the tone for the specific theme of the attraction for that year, but also deliver all of the necessary advertising information within both a 30 second and 15 second spot. I saw this project through from concept to completion handling all aspects of the production." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '73479853')"
                        ng-class="{full: showFullComments['73479853']}">
                        Produced a television commercial for a local haunted attraction. The client needed a commercial that would not only set the tone for the specific theme of the attraction for that year, but also deliver all of the necessary advertising information within both a 30 second and 15 second spot. I saw this project through from concept to completion handling all aspects of the production.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="136543647" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/531092851_640.jpg)"></div>
                     <img class="play" alt="An industrial promotional video produced for client." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '136543647')"
                        ng-class="{full: showFullComments['136543647']}">
                        An industrial promotional video produced for client.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="130327022" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/522159983_640.jpg)"></div>
                     <img class="play" alt="Corporate trade show promotional video." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '130327022')"
                        ng-class="{full: showFullComments['130327022']}">
                        Corporate trade show promotional video.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Florida 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/SimonXander__WS6CsBEKSSKk4gZzK14wJg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/SimonXander">   
                  <h3>
                     Simon Xander
                     <span>Florida videographer in </span>
                     <span class="location">Savannah, GA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Writer. Director. Editor.
http://simonxander.com/</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="134680932" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/542574711_1280.jpg)"></div>
                     <img class="play" alt="A mash up of the things I&#39;ve made in one way or another; it&#39;s like show and tell." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '134680932')"
                        ng-class="{full: showFullComments['134680932']}">
                        A mash up of the things I&#39;ve made in one way or another; it&#39;s like show and tell.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="155235282" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/555944311_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '155235282')"
                        ng-class="{full: showFullComments['155235282']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="152108259" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/552013546_1280.jpg)"></div>
                     <img class="play" alt="Director and editor. Cinematographer on select footage." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '152108259')"
                        ng-class="{full: showFullComments['152108259']}">
                        Director and editor. Cinematographer on select footage.
                     </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/Kyler_Wagner__sKkOa8hkSu2io3XKRy3-Uw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/kylerwagner">   
                  <h3>
                     Kyler Wagner
                     <span>Florida videographer in </span>
                     <span class="location">Florida, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Well if you need any help making a video I can definitely help. I know how to edit videos pretty well and I have some of my own camera gear if you need any shooting done. Just let me know!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="N3lq8xto6N4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/N3lq8xto6N4/0.jpg)"></div>
                     <img class="play" alt="Corrin Campbell and TJ Staudacher Interview" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'N3lq8xto6N4')"
                        ng-class="{full: showFullComments['N3lq8xto6N4']}">
                        Corrin Campbell and TJ Staudacher Interview
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="GOyqMbDdHg0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/GOyqMbDdHg0/0.jpg)"></div>
                     <img class="play" alt="Lands&#39; End 3D Printer Contest Entry" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'GOyqMbDdHg0')"
                        ng-class="{full: showFullComments['GOyqMbDdHg0']}">
                        Lands&#39; End 3D Printer Contest Entry
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="gZKn6WmOoc4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/gZKn6WmOoc4/0.jpg)"></div>
                     <img class="play" alt="Wedding Teaser Video (Post Production: Editing)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'gZKn6WmOoc4')"
                        ng-class="{full: showFullComments['gZKn6WmOoc4']}">
                        Wedding Teaser Video (Post Production: Editing)
                     </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/EdRoyMedia__joXFj5CbSFSXKXtprd09Bg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/EdRoyMedia">   
                  <h3>
                     Ed Roy Media
                     <span>Florida videographer in </span>
                     <span class="location">Jacksonville, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I ask about the target audience, length of video, bells and whistles and general budget and style they are looking for!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="rPk4SIaWx2E" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/rPk4SIaWx2E/0.jpg)"></div>
                     <img class="play" alt="AT&amp;T" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'rPk4SIaWx2E')"
                        ng-class="{full: showFullComments['rPk4SIaWx2E']}">
                        AT&amp;T
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="LHcH8dpsHAQ" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/LHcH8dpsHAQ/0.jpg)"></div>
                     <img class="play" alt="Mini-infomerical" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'LHcH8dpsHAQ')"
                        ng-class="{full: showFullComments['LHcH8dpsHAQ']}">
                        Mini-infomerical
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="En5N8TVLWX4" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/En5N8TVLWX4/0.jpg)"></div>
                     <img class="play" alt="Music Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'En5N8TVLWX4')"
                        ng-class="{full: showFullComments['En5N8TVLWX4']}">
                        Music Video
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Florida videographer for your project</span>
               <a href="/start"><div class="button">Connect with Florida 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/EdRoy__lT6sorPwTjq9OiIO2-zgOg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/EdRoy">   
                  <h3>
                     Ed Roy
                     <span>Florida videographer in </span>
                     <span class="location">Jacksonville, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Professional Video Production</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="rPk4SIaWx2E" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/rPk4SIaWx2E/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'rPk4SIaWx2E')"
                        ng-class="{full: showFullComments['rPk4SIaWx2E']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="LHcH8dpsHAQ" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/LHcH8dpsHAQ/0.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'LHcH8dpsHAQ')"
                        ng-class="{full: showFullComments['LHcH8dpsHAQ']}">
                        
                     </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/0090-jared-boice.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/jaredboice">   
                  <h3>
                     Jared Boice
                     <span>Florida videographer in </span>
                     <span class="location">St Augustine, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">My name is Jared Joseph Boice and I am a video-editor, producer, and Digital Media Specialist with a Bachelor&#39;s Degree in Electronic Media from the University of North Florida. I offer services in Video Editing, Social Media Marketing, Motion Graphics and Kinetic Typography Design, Motion Tracking and Effects Compositing, Research and Development, Script Writing, Producing Persuasive Content, and High-Definition Camera Operation. I am available for hire for both short-term and long-term projects. I run the gamut from music videos and marketing videos to sports demos, events, weddings, documentaries and film.

Having a home-office with little to no overhead allows me to offer video-editing rates that are extremely competitive. I can work with any budget to meet your needs. And, in addition to most other widely accepted forms of payment, I accept Bitcoin. 


In addition to receiving an RIAA certified platinum record for my video-production efforts on the viral video, “Wop (Official Version) feat. Flo Rida”, I have also edited footage featuring the Florida Governor in an award winning PSA as well as produced marketing pieces for The Florida Motion Picture Industry, The St. John’s River Alliance and other small-businesses and non-profits throughout the state.  

Please consider me for your next video project.  I would serve you well and enjoy the experience.

Sincerely,

Jared Joseph Boice
</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="2234af31-9183-4280-ab6c-33c55ca917d1" vp-provider="videopixie">
                     <div class="reel-thumbnail" style="background-image: url(https://s3.amazonaws.com/s3.sellstage.com/2234af31-9183-4280-ab6c-33c55ca917d1_120h.jpg)"></div>
                     <img class="play" alt="Wedding video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '2234af31-9183-4280-ab6c-33c55ca917d1')"
                        ng-class="{full: showFullComments['2234af31-9183-4280-ab6c-33c55ca917d1']}">
                        Wedding video
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="2c4ca229-fdf2-4da0-b03e-d21fdd47817d" vp-provider="videopixie">
                     <div class="reel-thumbnail" style="background-image: url(https://s3.amazonaws.com/s3.sellstage.com/2c4ca229-fdf2-4da0-b03e-d21fdd47817d_120h.jpg)"></div>
                     <img class="play" alt="Wedding video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '2c4ca229-fdf2-4da0-b03e-d21fdd47817d')"
                        ng-class="{full: showFullComments['2c4ca229-fdf2-4da0-b03e-d21fdd47817d']}">
                        Wedding video
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="uR7ynJdH5bw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/uR7ynJdH5bw/0.jpg)"></div>
                     <img class="play" alt="a semi-comprehensive project that showcases most of the video projects I played a major role on between 2007 and 2014." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'uR7ynJdH5bw')"
                        ng-class="{full: showFullComments['uR7ynJdH5bw']}">
                        a semi-comprehensive project that showcases most of the video projects I played a major role on between 2007 and 2014.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/JayceHill__t1Awmgy3QCq_X084MkLsog.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JayceHill856">   
                  <h3>
                     Jayce Hill
                     <span>Florida videographer in </span>
                     <span class="location">Florida, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Hey I enjoy making videos really that&#39;s all there is to it. Getting paid for it is even better!

https://vimeo.com/user34751174</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="150479103" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/549968202_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '150479103')"
                        ng-class="{full: showFullComments['150479103']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="150183844" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/549592428_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '150183844')"
                        ng-class="{full: showFullComments['150183844']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="136660503" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/531259467_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '136660503')"
                        ng-class="{full: showFullComments['136660503']}">
                        
                     </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 Florida 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/MisaelReyesjr__FF7KwY7TRH6OIGVWh__YoA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MisaelReyesjr">   
                  <h3>
                     Misael Reyes jr
                     <span>Florida videographer in </span>
                     <span class="location">Kissimmee, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a Kissimmee, FL based Film, Video, Music and Audio production studio. My career began when I was 12 years old, I was the lead drummer for a jazz band in Brentwood, NY and I decided to take videos of the bands performance. Since then I dedicated my life to music and videos.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="jMD9cLTydc0" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/jMD9cLTydc0/0.jpg)"></div>
                     <img class="play" alt="My Demo Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'jMD9cLTydc0')"
                        ng-class="{full: showFullComments['jMD9cLTydc0']}">
                        My Demo Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="XC6CbDEAgOE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/XC6CbDEAgOE/0.jpg)"></div>
                     <img class="play" alt="Broadcast" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'XC6CbDEAgOE')"
                        ng-class="{full: showFullComments['XC6CbDEAgOE']}">
                        Broadcast
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="wsodvceYZf8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/wsodvceYZf8/0.jpg)"></div>
                     <img class="play" alt="Wedding Film Trailer" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'wsodvceYZf8')"
                        ng-class="{full: showFullComments['wsodvceYZf8']}">
                        Wedding Film Trailer
                     </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/MAZZAPPEALFILMS__MspGQrynTLSUIyib-gbtRw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/mazzappealfilms">   
                  <h3>
                     MAZZ APPEAL FILMS
                     <span>Florida videographer in </span>
                     <span class="location">Tampa, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">My name is Joseph A. Mazzaferro, owner/CEO of the award winning, full-service ,video production company, &quot;Mazz Appeal Films&quot;. We are a U.S. based company that offers international services for video editing. Professionally I&#39;ve been filming/editing feature films, commercials, music videos, and corporate events for over ten years. I&#39;ve worked on thousands of projects with clients from former U.S. Presidents, to stars like Robin Williams, Tom Hanks, Bill Cosby, David Blaine, Chelsea Lately, Leonardo DiCaprio, and many more, which can be viewed on the projects page of my website.

    We&#39;ve shot, edited and produced commercials for clients like The Hard Rock Casino, Home Shopping Network, Macy&#39;s, L&#39;Oreal, Mountain Dew, Grammy nominated singer/song writer Sarah Jarosz and many more. We specialize in all aspects of video/editing/motion graphics. We guarantee fast reliable services and allow you to make any changes to your video before your purchase. 

Occupying &quot;Mazz Appeal&quot; for your project guarantees your project is done professionally and in a timely manner.

Website info, links to portfolio videos, and reels are listed below. 

Joseph A. Mazzaferro
Owner/CEO
MAZZ APPEAL LLC.
MAZZ APPEAL FILMS
email.:   moviemazz@gmail.com 
My Website:   www.mazzappeal.com
My Website Projects Page:   http://www.mazzappeal.com/projects.html</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="I2GRKjEZSIM" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/I2GRKjEZSIM/maxresdefault.jpg)"></div>
                     <img class="play" alt="The real &quot;Wolf of Wall Street&quot; Jordan Belfort - Intro Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'I2GRKjEZSIM')"
                        ng-class="{full: showFullComments['I2GRKjEZSIM']}">
                        The real &quot;Wolf of Wall Street&quot; Jordan Belfort - Intro Video
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="115041736" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/500937056_1280.jpg)"></div>
                     <img class="play" alt="Hard Rock Casino" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '115041736')"
                        ng-class="{full: showFullComments['115041736']}">
                        Hard Rock Casino
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120061930" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/526849718_1280.jpg)"></div>
                     <img class="play" alt="Grammy Award Nominated Singer Sarah Jarosz Music Video" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120061930')"
                        ng-class="{full: showFullComments['120061930']}">
                        Grammy Award Nominated Singer Sarah Jarosz Music 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/MosesVega__K6mi9fAhQq-CDlzbzbiERA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/MosesVega">   
                  <h3>
                     Moses Vega
                     <span>Florida videographer in </span>
                     <span class="location">Tampa, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am currently a freelance videographer and editor with 7 years of experience in the field. My favorite type of video jobs are music videos and short films. I  also love shooting events and then editing them into fast-paced video montages set to music.

Some of my recent work includes being  the assistant DP for the video produced for\ Wild 94.1 &#39;s Wildsplash event in Tampa, Florida. I was also the assistant DP for 99.5, filming their Fun &amp; Country event in Clearwater, FL.I enjoy trying new things and am open to exploring other areas of video work as well. In addition, I have done short film work and interviews. I get such a thrill out of recording and editing beautiful video and audio! I am willing to do my best work each and every time to make my clients happy.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="126493995" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/544641823_1280.jpg)"></div>
                     <img class="play" alt="My role in this project was DP and editor - The music was selected by the client." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '126493995')"
                        ng-class="{full: showFullComments['126493995']}">
                        My role in this project was DP and editor - The music was selected by the client.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="cyRSkRtPeeA" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/cyRSkRtPeeA/maxresdefault.jpg)"></div>
                     <img class="play" alt="My role on this project was assistant editor &amp; DP." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'cyRSkRtPeeA')"
                        ng-class="{full: showFullComments['cyRSkRtPeeA']}">
                        My role on this project was assistant editor &amp; DP.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented Florida 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/Advertising__KG6QFLDzRmKIAJRkAbz5tQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/Advertising">   
                  <h3>
                     #Advertising
                     <span>Florida videographer in </span>
                     <span class="location">Tampa, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Hello! I am the founder of #Advertising, a video production company that prides itself on prompt, high-quality videos.  

My team can do anything from 2-D animated explainer videos, to sophisticated CGI rendering. It is all about the budget you have for your production.  I started my career as a creative writer, then branched off, using my storytelling abilities in marketing and branding. 

Over the course of my ten plus years in marketing, I have created presentations, videos, graphics, articles, and more for corporations, investors, small businesses, and individuals alike.  

 After 10 years of helping others grow their start-ups into successful companies, I decided it was time to start my own. That is how #Advertising was born. I have discovered that the true secret to advertising is making an emotional connection to your audience. 

So I work hard to ensure every project has a memorable emotional impact.  I also believe that no customer should leave unsatisfied. That is why I guarantee all of my projects. My team and I won&#39;t stop until you have exactly what you want!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="O5i6pRo49cw" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/O5i6pRo49cw/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'O5i6pRo49cw')"
                        ng-class="{full: showFullComments['O5i6pRo49cw']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="kcumWSL3yzo" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/kcumWSL3yzo/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'kcumWSL3yzo')"
                        ng-class="{full: showFullComments['kcumWSL3yzo']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="yufP2pq_MeM" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/yufP2pq_MeM/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'yufP2pq_MeM')"
                        ng-class="{full: showFullComments['yufP2pq_MeM']}">
                        
                     </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/StyleCityMusicInc__7-WB7IfBRWOB3lDj--tZ8Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/StyleCityMusicInc">   
                  <h3>
                     Style-City Music, Inc.
                     <span>Florida videographer in </span>
                     <span class="location">St. Petersburg, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Event Videography for weddings, corporate events, live performances, commercials, camera operators, editors available for your event.

Video Production Services for live events

Style-City Music is a film production company.

My service includes the following:

* Film and television production
* RED Scarlet 4K digital cinema camera /JVC GY-HM710U broadcast camera
* Music videos, short films, commercials, live music events, stage productions, live dance and corporate video sporting events

live events, corporate, dance performances, stage performances, sporting events, music videos, live music performances, television commercials and Internet promos. weddings.

Raw Footage Only (Package #1)
•	1 HD Camera
•	1 Cinematographer
•	6 Hours $895
•	8 Hours $995
•	10 Hours $1095

Raw Footage Packages Include:
•	1 Wireless Lavaliere Mic for Vows &amp; Speeches
•	Audio Mixed and Optimized
•	HD Digital Delivery of Unedited Raw Footage*
-Shipped 2-3 weeks after your wedding. 

Additional Raw Footage Options Include: 
•	TV Playable Raw Footage DVD - add $50
•	Camera Source Files on Hard Drive – add $150
Edit it yourself

*Edited films are not available with Go Raw


Basic Edited Video (Package #2)
1 camera operator
•	2 HD Cameras
•	1 Cinematographer
•	6 Hours $1295
•	8 Hours $1395
•	10 Hours $1495

Premium Edited Video (Package #3)
Our Most Popular Package (2 camera operators)
•	2 HD Cameras
•	2 Cinematographers
•	6 Hours $2150
•	8 Hours $2350
•	10 Hours $2550

Cinematic Packages Include: 
•	HD Cinematic Film Trailer - 3 to 5 minutes*
•	HD Digital Delivery of Unedited Raw Footage* -Shipped 2-3 weeks after your wedding.
•	1 Round of Revisions to HD Cinematic Film Trailer
•	2 Wireless Lavaliere Mics for Vows &amp; Speeches

Additional Cinematic Options Include: 
•	3 TV Playable DVDs w/ Film Trailer – add $50
•	TV Playable Raw Footage DVD – add $50
•	Long Form Edited Cinematic Film – add $200
30 to 90 minutes - *Best for Elite only*
•	Camera Source Files Delivered on Hard Drive – add $350 Edit it yourself

Additional Booking Notes
My equipment includes the following:

* RED Scarlet 4K
* Scarlet-X (Brain only)
* DSMC AL Canon mount
* REDmote
* Pro battery module (quad)
* Module adaptor
* DSMC 1.8&quot; SSD side module
* RED touch 5.0&quot; LCD
* RED ARM 5&quot;
* REDMAG 1.8&quot; SSD - 64GB
* RED Station REDMAG 1.8&quot;
* (four) REDVolt Batteries
* RED QUAD Charger
* DSMC Travel Charger
* Camtree Shoulder mount Rig for RED Scarlet
* Camtree Professional Matte Box
* Canon EF 100mm f/2 USM medium telephoto
* Canon EF 35mm f/2 wide angle
* Canon EF 50mm f/1.4 USM medium telephoto
* Canon EF-S 18-200mm f/3.5-5.6 IS zoom
* Canon EF 50mm f/2.5 compact macro
* Wooden Camera Easy Top Cheese Plate
* Wooden Camera A-box for Scarlet

My camera equipment (camera model, tripod, etc.) are the following:

* JVC GY-HM710U ENG Camera card based
* JVC mini Action Camera with goggle/bike/and miscellaneous mounts
* Davis and Sanford Fluid Head Tripod FM-18 with dolly wheels
* Davis And Sanford Angled tripod rugged 8&#39; crane arm
* Bescor 500 watt light kit LED two lights 250w each with battery packs
* Bescor 1000 watt light kit LED two lights 500 watts each with battery packs
* two 350w halogen lights with soft boxes and barn doors
1000w traditional umbrella light kit 2 umbrellas plus back light
camera mount LED light
* (two) Audio-Technica mic with desktop stand
* Rode shotgun mic with boom pole and blimp wind reduction system
* camera rain cover
* miscellaneous lens filters

Bio
My background in film/video production includes being a video editor for WMOR, and TBCN, I am familiar with editing on Adobe Premiere, Final Cut, and Avid. Also my skills include being a camera operator for live and studio productions.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="Oq5vk4MQjgA" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/Oq5vk4MQjgA/hqdefault.jpg)"></div>
                     <img class="play" alt="Live Music Example" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'Oq5vk4MQjgA')"
                        ng-class="{full: showFullComments['Oq5vk4MQjgA']}">
                        Live Music Example
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="UwOyaQZfjiI" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/UwOyaQZfjiI/maxresdefault.jpg)"></div>
                     <img class="play" alt="Dance/Theater Example" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'UwOyaQZfjiI')"
                        ng-class="{full: showFullComments['UwOyaQZfjiI']}">
                        Dance/Theater Example
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="NlwZuJVSHSk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/NlwZuJVSHSk/hqdefault.jpg)"></div>
                     <img class="play" alt="Corporate video Promo" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'NlwZuJVSHSk')"
                        ng-class="{full: showFullComments['NlwZuJVSHSk']}">
                        Corporate video Promo
                     </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/Juan_M._Fernandez__rkEtaw-cSU2o62r7OzOW-g.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JuanMFernandez">   
                  <h3>
                     Juan M. Fernandez
                     <span>Florida videographer in </span>
                     <span class="location">Georgia, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I can create commercials, film videos, edit videos, animate 3D characters, design logos, animate logos, do company profiles, and much more.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="47202483" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/328716149_640.jpg)"></div>
                     <img class="play" alt="(All rights go to The Good Sound &amp; Rana Furniture. I worked with them to make this commercial. This is for a non-profit video to be used to portrait my skills. Thank you and enjoy.) In this video the programs that were used are: Autodesk Maya, Apple Motion 4, Final cut pro 7, Photoshop, Illustrator. I started off with using basic shapes from Motion to get an idea of what was needed to represent that 4th of July feel to the commercial. Using the script as a guide, I followed along and animated all the objects and lighting to give it a dynamic look as well as moving the cameras to keep it the commercial interesting in different angles. I used Maya to animate the frog&#39;s movements and applied the principles of animation to make it fluent. I used Photoshop to make the prices and banners inside the pictures to portrait the prices and information. Illustrator was used to make the gradients and colors for the circle price tag. Everything else was animated/created through Motion." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '47202483')"
                        ng-class="{full: showFullComments['47202483']}">
                        (All rights go to The Good Sound &amp; Rana Furniture. I worked with them to make this commercial. This is for a non-profit video to be used to portrait my skills. Thank you and enjoy.) In this video the programs that were used are: Autodesk Maya, Apple Motion 4, Final cut pro 7, Photoshop, Illustrator. I started off with using basic shapes from Motion to get an idea of what was needed to represent that 4th of July feel to the commercial. Using the script as a guide, I followed along and animated all the objects and lighting to give it a dynamic look as well as moving the cameras to keep it the commercial interesting in different angles. I used Maya to animate the frog&#39;s movements and applied the principles of animation to make it fluent. I used Photoshop to make the prices and banners inside the pictures to portrait the prices and information. Illustrator was used to make the gradients and colors for the circle price tag. Everything else was animated/created through Motion.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="47202485" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/328717085_640.jpg)"></div>
                     <img class="play" alt="(All rights go to The Good Sound &amp; Rana Furniture. I worked with them to make this commercial. This is for a non-profit video to be used to portrait my skills. Thank you and enjoy.) In this video the programs that were used are: Apple Motion 4, Final cut pro 7, Photoshop, Illustrator. I started off with using basic shapes from Motion to get an idea of what was needed to represent that Memorial Day feel to the commercial. I animated all the objects and lighting to give it a dynamic look as well as moving the cameras to keep it the commercial interesting in different angles. I used Photoshop to make the prices and banners inside the pictures to portrait the prices and information. Illustrator was used to make the gradients and colors for the banners with a touch of opacity. Everything else was animated/created through Motion playing with the scale, move, and rotate xyz." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '47202485')"
                        ng-class="{full: showFullComments['47202485']}">
                        (All rights go to The Good Sound &amp; Rana Furniture. I worked with them to make this commercial. This is for a non-profit video to be used to portrait my skills. Thank you and enjoy.) In this video the programs that were used are: Apple Motion 4, Final cut pro 7, Photoshop, Illustrator. I started off with using basic shapes from Motion to get an idea of what was needed to represent that Memorial Day feel to the commercial. I animated all the objects and lighting to give it a dynamic look as well as moving the cameras to keep it the commercial interesting in different angles. I used Photoshop to make the prices and banners inside the pictures to portrait the prices and information. Illustrator was used to make the gradients and colors for the banners with a touch of opacity. Everything else was animated/created through Motion playing with the scale, move, and rotate xyz.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="47202486" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/328711021_640.jpg)"></div>
                     <img class="play" alt="(All rights go to The Good Sound &amp; Rana Furniture. I worked with them to make this commercial. This is for a non-profit video to be used to portrait my skills. Thank you and enjoy.) In this video the programs that were used are: Autodesk Maya, Apple Motion 4, Final cut pro 7, Photoshop, Illustrator. This spot was made using a real model with a green screen. We filmed the model and then filmed the background down in Miami beach. Later, all the shots were compiled and color corrected to make it look as natural as possible through Final Cut. Afterwards, I used Maya to animate 2 versions of the frog, one talking and one laying down next to the model. All of the objects during the offer section was made through Photoshop and animated through Motion. The overall result is what you see now." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '47202486')"
                        ng-class="{full: showFullComments['47202486']}">
                        (All rights go to The Good Sound &amp; Rana Furniture. I worked with them to make this commercial. This is for a non-profit video to be used to portrait my skills. Thank you and enjoy.) In this video the programs that were used are: Autodesk Maya, Apple Motion 4, Final cut pro 7, Photoshop, Illustrator. This spot was made using a real model with a green screen. We filmed the model and then filmed the background down in Miami beach. Later, all the shots were compiled and color corrected to make it look as natural as possible through Final Cut. Afterwards, I used Maya to animate 2 versions of the frog, one talking and one laying down next to the model. All of the objects during the offer section was made through Photoshop and animated through Motion. The overall result is what you see now.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best Florida videographer for your project</span>
               <a href="/start"><div class="button">Connect with Florida 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/AndyLaViola__CWV2_d6mR5-U_RvhX9W0xQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/AndyLaViola">   
                  <h3>
                     Andy LaViola
                     <span>Florida videographer in </span>
                     <span class="location">Savannah, GA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I&#39;m a videographer, photographer, editor and writer.  I love what I do.  Since 1992 I have been creating effective communication tools for my clients.  The technology has changed, but the need has not, businesses need to communicate and I can help them do just that.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="yfsycNWj5lQ" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/yfsycNWj5lQ/hqdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'yfsycNWj5lQ')"
                        ng-class="{full: showFullComments['yfsycNWj5lQ']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="kJXpYd54GqY" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/kJXpYd54GqY/hqdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'kJXpYd54GqY')"
                        ng-class="{full: showFullComments['kJXpYd54GqY']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="fsKxgM8UhG8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/fsKxgM8UhG8/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'fsKxgM8UhG8')"
                        ng-class="{full: showFullComments['fsKxgM8UhG8']}">
                        
                     </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/ScottDavis__J53EPl_HTQ68N4zJjMCiyA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ScottDavis">   
                  <h3>
                     Scott Davis
                     <span>Florida videographer in </span>
                     <span class="location">Port Charlotte, FL, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I enjoy creating videos. I like to shoot video but I think my strength lies in editing.

I spent six years in the U.S. Army as a Print Journalist/Photographer and cross trained into video. I found I loved making videos and have been learning ever since. 

Since getting out of the Army, I&#39;ve been going to school full time and working full time, but I&#39;ve missed shooting and editing so now I&#39;m back at it!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="zcAFIVC1i1I" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/zcAFIVC1i1I/hqdefault.jpg)"></div>
                     <img class="play" alt="This is pre H4n Zoom digital recorder and Audio-Technica at875 r shotgun mic. The first scene were the woman is talking is the only scene I didn&#39;t shoot." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'zcAFIVC1i1I')"
                        ng-class="{full: showFullComments['zcAFIVC1i1I']}">
                        This is pre H4n Zoom digital recorder and Audio-Technica at875 r shotgun mic. The first scene were the woman is talking is the only scene I didn&#39;t shoot.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="NdcHloFQ1ps" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/NdcHloFQ1ps/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'NdcHloFQ1ps')"
                        ng-class="{full: showFullComments['NdcHloFQ1ps']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="2rNCDv0oglg" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/2rNCDv0oglg/maxresdefault.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '2rNCDv0oglg')"
                        ng-class="{full: showFullComments['2rNCDv0oglg']}">
                        
                     </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>
