'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Podcasts:

  • What Is The Best Accessory For Underwater Photography & Video

    What Is The Best Accessory For Underwater Photography & Video? During The Digital Shootout, we asked a panel of the world’s best underwater photographers and videographers this question to get their hot-take responses. Watch our video to see their answers and hear what the Pro's favorite accessories are. Learn more about The Digital Shootout, the world's premier underwater photo and video learning event: https://www.thedigitalshootout.com/ ARTICLE: https://www.backscatter.com/reviews/post/What-Is-The-Best-Accessory-For-Underwater-Photo-Video Watch more from the series: What is the Best Aperture for Underwater Photo and Video? https://www.backscatter.com/reviews/post/What-Is-The-Best-Aperture-For-Underwater-Photo-Video What is the Best Shutter Speed for Underwater Photography & Video?:...

    published: 15 Jul 2024
  • What Is The Best Wide Angle Lens For Underwater Photography & Video?

    What is the best wide angle lens for underwater photo and video? During The Digital Shootout, we asked a panel of the world’s best underwater photographers and videographers this question to get their hot-take responses. Watch our video to see their answers and hear what considerations they make when deciding to shoot photo or video. Learn more about The Digital Shootout, the world's premier underwater photo and video learning event: https://www.thedigitalshootout.com/ ARTICLE: https://www.backscatter.com/reviews/post/What-Is-The-Best-Wide-Lens-For-Underwater-Photo-Video Watch more from the series: What is the Best Aperture for Underwater Photo and Video? https://www.backscatter.com/reviews/post/What-Is-The-Best-Aperture-For-Underwater-Photo-Video What is the Best Shutter Speed for Und...

    published: 10 Jun 2024
  • Backscatter Hybrid Flash - Underwater Strobe Review

    A comprehensive review of the Backscatter Hybrid Flash, Underwater Strobe! If you’re a diving enthusiast or underwater photographer looking to elevate your underwater shots, this is the video for you. In this review, we dive deep into the features, performance, and benefits of the Backscatter Hybrid Flash. We cover everything from the build quality to the lighting performance, providing you with all the information you need to decide if this strobe is right for your underwater photography needs. Check out our full article here: https://bit.ly/Hybrid-Flash-Article More Backscatter Hybrid Flash Guide videos: Hybrid Flash Diffuser Guide https://www.youtube.com/watch?v=ampH6q6eka4&t=56s&ab_channel=BackscatterUnderwaterVideo%26Photo Learning Mode & Pre-Flash Cancellation https://www.youtube...

    published: 30 May 2024
  • Shoot Amazing Underwater Macro with TG-6

    Learn how to shoot amazing underwater macro in the easiest way possible with the Olympus TG-6 and a single light. See our Olympus TG-6 packages: https://www.backscatter.com/brand/Backscatter/department/Compact/product-category/Packages MORE TG-6 CONTENT FROM BACKSCATTER See Why TG-6 is the Easiest Underwater Camera: https://www.backscatter.com/reviews/post/Olympus-TG-6-Review-Easiest-Underwater-Compact-Camera Complete TG-6 underwater camera review: https://www.backscatter.com/reviews/post/Olympus-TG-6-Underwater-Camera-and-Housing-Review Best Underwater Camera Settings for TG-6: https://www.backscatter.com/reviews/post/Olympus-TG-6-Best-Underwater-Camera-Settings How We Shot This Footage: https://www.backscatter.com/reviews/post/Olympus-TG-6-Backscatter-Macro-Wide-4300-Video-Light-De...

    published: 18 Oct 2021
  • Where The $#%&! Do I Put My Strobes? | The Zen of Underwater Strobe Placement

    Have you ever been lining up a shot and wondered "Where the %$#@! do I put my strobes?" Yeah, we have too. The good news is that the answer is easier than you might think! The Zen of Underwater Strobe Placement features Backscatter CEO Jim Decker as he explains his fundamentals, guidelines, and go-to positions to achieve perfect strobe placement for just about any underwater scene. Check out the article for even more info and a downloadable reference sheet: https://www.backscatter.com/reviews/post/How-To-Underwater-Strobe-Flash-Placement

    published: 01 Sep 2020
  • What Is The Best Way To Get Started In Underwater Photography & Video

    What Is The Best Way To Get Started In Underwater Photography & Video? During The Digital Shootout, we asked a panel of the world’s best underwater photographers and videographers this question to get their hot-take responses. Watch our video to see their answers and hear what considerations to make as a new underwater photographer or videographer. Learn more about The Digital Shootout, the world's premier underwater photo and video learning event: https://www.thedigitalshootout.com/ ARTICLE: https://www.backscatter.com/reviews/post/What-Is-The-Best-Way-To-Get-Started-Underwater-Photo-Video Watch more from the series: What is the Best Aperture for Underwater Photo and Video? https://www.backscatter.com/reviews/post/What-Is-The-Best-Aperture-For-Underwater-Photo-Video What is the Best ...

    published: 10 Jul 2024
  • Canon EOS R5 II Underwater Photography First Look

    Here is our first photo dive with the Canon EOS R5 II at Monastery Beach in Carmel California. Check out our first impressions of this highly anticipated successor the popular Canon EOS R5. Pre-order your Canon EOS R5 II now, shipping August 20th. https://www.backscatter.com/Canon-EOS-R5-II-Camera Check out our first review article here: https://www.backscatter.com/reviews/post/Canon-EOS-R5-II-Underwater-Camera-Review 🔔 Like, comment, and subscribe for more underwater photography tips and gear reviews! 🌐 Visit our website for more details: www.backscatter.com 📸 Follow us on social media: Instagram: @backscattervideophoto Facebook: @backscattervideo&photo #CanonR5ii #UnderwaterPhotography #UnderwaterStrobe #DivingGear #PhotographyGear #Diving

    published: 02 Aug 2024
  • Backscatter Macro Wide Video Light MW-4300 | The Best Underwater Video Light

    The Ultimate Compact Video Light for Macro, Wide, and Snooting Check out the complete companion article to this video for more: https://www.backscatter.com/reviews/post/Best-Underwater-Video-Light-Backscatter-Macro-Wide-4300-Video-Light-MW-4300 The Backscatter Macro Wide 4300 Video Light is the ultimate video light for any video or photo shooter. Its compact size is great for travel, its versatile for macro and wide shooters, and offers practical signaling options usable on any dive that goes way beyond a simple SOS pattern. The 4300-lumen wide beam is great for compact camera shooters looking for a small compact light that has a bright output for wide angle video. The 1400-lumen macro beam has been tailor-made for macro video shooters for all levels, from GoPro and compact all the way...

    published: 24 Nov 2020
What Is The Best Accessory For Underwater Photography & Video
5:08

What Is The Best Accessory For Underwater Photography & Video

  • Order:
  • Duration: 5:08
  • Uploaded Date: 15 Jul 2024
  • views: 1226
What Is The Best Accessory For Underwater Photography & Video? During The Digital Shootout, we asked a panel of the world’s best underwater photographers and videographers this question to get their hot-take responses. Watch our video to see their answers and hear what the Pro's favorite accessories are. Learn more about The Digital Shootout, the world's premier underwater photo and video learning event: https://www.thedigitalshootout.com/ ARTICLE: https://www.backscatter.com/reviews/post/What-Is-The-Best-Accessory-For-Underwater-Photo-Video Watch more from the series: What is the Best Aperture for Underwater Photo and Video? https://www.backscatter.com/reviews/post/What-Is-The-Best-Aperture-For-Underwater-Photo-Video What is the Best Shutter Speed for Underwater Photography & Video?: https://www.backscatter.com/reviews/post/What-Is-The-Best-Shutter-Speed-For-Underwater-Photo-Video What is the Best ISO for Underwater Photography & Video?: https://www.backscatter.com/reviews/post/What-Is-The-Best-ISO-For-Underwater-Photo-Video Can You Shoot Photo & Video On The Same Dive? https://www.backscatter.com/reviews/post/Can-You-Shoot-Underwater-Photo-Video-On-The-Same-Dive What Is The Best Wide Lens For Underwater Photo & Video? https://www.backscatter.com/reviews/post/What-Is-The-Best-Wide-Lens-For-Underwater-Photo-Video What Is The Best Macro Lens For Underwater Photo & Video? https://www.youtube.com/watch?v=R-2YOZfxgsA&t=11s What Is The Best Way To Get Started In Underwater Photography & Video https://www.backscatter.com/reviews/post/What-Is-The-Best-Way-To-Get-Started-Underwater-Photo-Video 🔔 Like, comment, and subscribe for more underwater photography tips and gear reviews! 🌐 Visit our website for more details: www.backscatter.com 📸 Follow us on social media: Instagram: @backscattervideophoto Facebook: @backscattervideo&photo #UnderwaterPhotography #UnderwaterLens #PhotographyGear #ScubaDiving
https://wn.com/What_Is_The_Best_Accessory_For_Underwater_Photography_Video
What Is The Best Wide Angle Lens For Underwater Photography & Video?
5:29

What Is The Best Wide Angle Lens For Underwater Photography & Video?

  • Order:
  • Duration: 5:29
  • Uploaded Date: 10 Jun 2024
  • views: 1881
What is the best wide angle lens for underwater photo and video? During The Digital Shootout, we asked a panel of the world’s best underwater photographers and videographers this question to get their hot-take responses. Watch our video to see their answers and hear what considerations they make when deciding to shoot photo or video. Learn more about The Digital Shootout, the world's premier underwater photo and video learning event: https://www.thedigitalshootout.com/ ARTICLE: https://www.backscatter.com/reviews/post/What-Is-The-Best-Wide-Lens-For-Underwater-Photo-Video Watch more from the series: What is the Best Aperture for Underwater Photo and Video? https://www.backscatter.com/reviews/post/What-Is-The-Best-Aperture-For-Underwater-Photo-Video What is the Best Shutter Speed for Underwater Photography & Video?: https://www.backscatter.com/reviews/post/What-Is-The-Best-Shutter-Speed-For-Underwater-Photo-Video What is the Best ISO for Underwater Photography & Video?: https://www.backscatter.com/reviews/post/What-Is-The-Best-ISO-For-Underwater-Photo-Video 🔔 Like, comment, and subscribe for more underwater photography tips and gear reviews! 🌐 Visit our website for more details: www.backscatter.com 📸 Follow us on social media: Instagram: @backscattervideophoto Facebook: @backscattervideo&photo #UnderwaterPhotography #UnderwaterLens #PhotographyGear #ScubaDiving
https://wn.com/What_Is_The_Best_Wide_Angle_Lens_For_Underwater_Photography_Video
Backscatter Hybrid Flash - Underwater Strobe Review
22:24

Backscatter Hybrid Flash - Underwater Strobe Review

  • Order:
  • Duration: 22:24
  • Uploaded Date: 30 May 2024
  • views: 2388
A comprehensive review of the Backscatter Hybrid Flash, Underwater Strobe! If you’re a diving enthusiast or underwater photographer looking to elevate your underwater shots, this is the video for you. In this review, we dive deep into the features, performance, and benefits of the Backscatter Hybrid Flash. We cover everything from the build quality to the lighting performance, providing you with all the information you need to decide if this strobe is right for your underwater photography needs. Check out our full article here: https://bit.ly/Hybrid-Flash-Article More Backscatter Hybrid Flash Guide videos: Hybrid Flash Diffuser Guide https://www.youtube.com/watch?v=ampH6q6eka4&t=56s&ab_channel=BackscatterUnderwaterVideo%26Photo Learning Mode & Pre-Flash Cancellation https://www.youtube.com/watch?v=4F8tMkvT1qM&t=5s&ab_channel=BackscatterUnderwaterVideo%26Photo 📌 Timestamps: 00:00 Intro 01:00 Strobe Walkthrough 05:40 Manual Modem 06:40 Smart Control Modes 07:48 High Speed Sync 08:49 Remote Mode 10:43 SOS Mode 11:24 Video Modem 12:33 Target Lights 13:17 Test Button 13:41 Redefining Flash Power & Guide Number 15:22 Performance: Beam Pattern 16:20 Performance: Color Temperature 18:09 Performance: Recycle Time 19:33 Performance: Flash Duration 20:36 Conclusion 🔔 Like, comment, and subscribe for more underwater photography tips and gear reviews! 🌐 Visit our website for more details: www.backscatter.com 📸 Follow us on social media: Instagram: @backscattervideophoto Facebook: @backscattervideo&photo #BackscatterHybridFlash #UnderwaterPhotography #UnderwaterStrobe #DivingGear #PhotographyGear #Diving
https://wn.com/Backscatter_Hybrid_Flash_Underwater_Strobe_Review
Shoot Amazing Underwater Macro with TG-6
10:14

Shoot Amazing Underwater Macro with TG-6

  • Order:
  • Duration: 10:14
  • Uploaded Date: 18 Oct 2021
  • views: 43142
Learn how to shoot amazing underwater macro in the easiest way possible with the Olympus TG-6 and a single light. See our Olympus TG-6 packages: https://www.backscatter.com/brand/Backscatter/department/Compact/product-category/Packages MORE TG-6 CONTENT FROM BACKSCATTER See Why TG-6 is the Easiest Underwater Camera: https://www.backscatter.com/reviews/post/Olympus-TG-6-Review-Easiest-Underwater-Compact-Camera Complete TG-6 underwater camera review: https://www.backscatter.com/reviews/post/Olympus-TG-6-Underwater-Camera-and-Housing-Review Best Underwater Camera Settings for TG-6: https://www.backscatter.com/reviews/post/Olympus-TG-6-Best-Underwater-Camera-Settings How We Shot This Footage: https://www.backscatter.com/reviews/post/Olympus-TG-6-Backscatter-Macro-Wide-4300-Video-Light-Demo-Reel-How-it-Was-Shot #backscatter #tg6 #underwaterphotography
https://wn.com/Shoot_Amazing_Underwater_Macro_With_Tg_6
Where The $#%&! Do I Put My Strobes? | The Zen of Underwater Strobe Placement
12:31

Where The $#%&! Do I Put My Strobes? | The Zen of Underwater Strobe Placement

  • Order:
  • Duration: 12:31
  • Uploaded Date: 01 Sep 2020
  • views: 13939
Have you ever been lining up a shot and wondered "Where the %$#@! do I put my strobes?" Yeah, we have too. The good news is that the answer is easier than you might think! The Zen of Underwater Strobe Placement features Backscatter CEO Jim Decker as he explains his fundamentals, guidelines, and go-to positions to achieve perfect strobe placement for just about any underwater scene. Check out the article for even more info and a downloadable reference sheet: https://www.backscatter.com/reviews/post/How-To-Underwater-Strobe-Flash-Placement
https://wn.com/Where_The_Do_I_Put_My_Strobes_|_The_Zen_Of_Underwater_Strobe_Placement
What Is The Best Way To Get Started In Underwater Photography & Video
5:53

What Is The Best Way To Get Started In Underwater Photography & Video

  • Order:
  • Duration: 5:53
  • Uploaded Date: 10 Jul 2024
  • views: 1008
What Is The Best Way To Get Started In Underwater Photography & Video? During The Digital Shootout, we asked a panel of the world’s best underwater photographers and videographers this question to get their hot-take responses. Watch our video to see their answers and hear what considerations to make as a new underwater photographer or videographer. Learn more about The Digital Shootout, the world's premier underwater photo and video learning event: https://www.thedigitalshootout.com/ ARTICLE: https://www.backscatter.com/reviews/post/What-Is-The-Best-Way-To-Get-Started-Underwater-Photo-Video Watch more from the series: What is the Best Aperture for Underwater Photo and Video? https://www.backscatter.com/reviews/post/What-Is-The-Best-Aperture-For-Underwater-Photo-Video What is the Best Shutter Speed for Underwater Photography & Video?: https://www.backscatter.com/reviews/post/What-Is-The-Best-Shutter-Speed-For-Underwater-Photo-Video What is the Best ISO for Underwater Photography & Video?: https://www.backscatter.com/reviews/post/What-Is-The-Best-ISO-For-Underwater-Photo-Video Can You Shoot Photo & Video On The Same Dive? https://www.backscatter.com/reviews/post/Can-You-Shoot-Underwater-Photo-Video-On-The-Same-Dive What Is The Best Wide Lens For Underwater Photo & Video? https://www.backscatter.com/reviews/post/What-Is-The-Best-Wide-Lens-For-Underwater-Photo-Video What Is The Best Macro Lens For Underwater Photo & Video? https://www.youtube.com/watch?v=R-2YOZfxgsA&t=11s 🔔 Like, comment, and subscribe for more underwater photography tips and gear reviews! 🌐 Visit our website for more details: www.backscatter.com 📸 Follow us on social media: Instagram: @backscattervideophoto Facebook: @backscattervideo&photo #UnderwaterPhotography #UnderwaterLens #PhotographyGear #ScubaDiving
https://wn.com/What_Is_The_Best_Way_To_Get_Started_In_Underwater_Photography_Video
Canon EOS R5 II Underwater Photography First Look
1:53

Canon EOS R5 II Underwater Photography First Look

  • Order:
  • Duration: 1:53
  • Uploaded Date: 02 Aug 2024
  • views: 618
Here is our first photo dive with the Canon EOS R5 II at Monastery Beach in Carmel California. Check out our first impressions of this highly anticipated successor the popular Canon EOS R5. Pre-order your Canon EOS R5 II now, shipping August 20th. https://www.backscatter.com/Canon-EOS-R5-II-Camera Check out our first review article here: https://www.backscatter.com/reviews/post/Canon-EOS-R5-II-Underwater-Camera-Review 🔔 Like, comment, and subscribe for more underwater photography tips and gear reviews! 🌐 Visit our website for more details: www.backscatter.com 📸 Follow us on social media: Instagram: @backscattervideophoto Facebook: @backscattervideo&photo #CanonR5ii #UnderwaterPhotography #UnderwaterStrobe #DivingGear #PhotographyGear #Diving
https://wn.com/Canon_Eos_R5_Ii_Underwater_Photography_First_Look
Backscatter Macro Wide Video Light MW-4300 | The Best Underwater Video Light
13:43

Backscatter Macro Wide Video Light MW-4300 | The Best Underwater Video Light

  • Order:
  • Duration: 13:43
  • Uploaded Date: 24 Nov 2020
  • views: 14284
The Ultimate Compact Video Light for Macro, Wide, and Snooting Check out the complete companion article to this video for more: https://www.backscatter.com/reviews/post/Best-Underwater-Video-Light-Backscatter-Macro-Wide-4300-Video-Light-MW-4300 The Backscatter Macro Wide 4300 Video Light is the ultimate video light for any video or photo shooter. Its compact size is great for travel, its versatile for macro and wide shooters, and offers practical signaling options usable on any dive that goes way beyond a simple SOS pattern. The 4300-lumen wide beam is great for compact camera shooters looking for a small compact light that has a bright output for wide angle video. The 1400-lumen macro beam has been tailor-made for macro video shooters for all levels, from GoPro and compact all the way to full-frame SLR and cinema. Photographers looking for a focus light have plenty of power, plus a red mode for night time to avoid spooking critters and ruining the shot. Divemasters and guides will love the Alert and Beacon modes to get a diver's attention and to mark off locations on a night dive. Wide angle shots captured with Canon EOS R5. Macro shots captured with Sony A7S III. Jump to a section: 0:00 - Intro/Overview 2:03 - The Ultimate Macro Video Light 6:30 - 4300 Lumens for Wide Angle 6:58 - Calibrated Color Temperature 7:14 - Red Mode for Stealth 7:35 - Alert & Beacon Modes 8:30 - Color Filter System 9:49 - Always Ready with Interchangeable Batteries 10:50 - Double O-Rings & Battery Protection 11:27 - Easy Control Set 11:49 - Conclusion Get your MW-4300 Video Light: https://www.backscatter.com/Backscatter-Macro-Wide-Underwater-Video-Light-MW-4300
https://wn.com/Backscatter_Macro_Wide_Video_Light_Mw_4300_|_The_Best_Underwater_Video_Light
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • What Is The Best Accessory For Underwater Photography & Video
    5:08
    What Is The Best Accessory For Underwater Photography & Videoremove from playlist
  • What Is The Best Wide Angle Lens For Underwater Photography & Video?
    5:29
    What Is The Best Wide Angle Lens For Underwater Photography & Video?remove from playlist
  • Backscatter Hybrid Flash - Underwater Strobe Review
    22:24
    Backscatter Hybrid Flash - Underwater Strobe Reviewremove from playlist
  • Shoot Amazing Underwater Macro with TG-6
    10:14
    Shoot Amazing Underwater Macro with TG-6remove from playlist
  • Where The $#%&! Do I Put My Strobes? | The Zen of Underwater Strobe Placement
    12:31
    Where The $#%&! Do I Put My Strobes? | The Zen of Underwater Strobe Placementremove from playlist
  • What Is The Best Way To Get Started In Underwater Photography & Video
    5:53
    What Is The Best Way To Get Started In Underwater Photography & Videoremove from playlist
  • Canon EOS R5 II Underwater Photography First Look
    1:53
    Canon EOS R5 II Underwater Photography First Lookremove from playlist
  • Backscatter Macro Wide Video Light MW-4300 | The Best Underwater Video Light
    13:43
    Backscatter Macro Wide Video Light MW-4300 | The Best Underwater Video Lightremove from playlist
PLAYLIST TIME: 0:00 / 1:17:15

What Is The Best Accessory For Underwater Photography & Video

What Is The Best Accessory For Underwater Photography & Video? During The Digital Shootout, we asked a panel of the world’s best underwater photographers and videographers this question to get their hot-take responses. Watch our video to see their answers and hear what the Pro's favorite accessories are. Learn more about The Digital Shootout, the world's premier underwater photo and video learning event: https://www.thedigitalshootout.com/ ARTICLE: https://www.backscatter.com/reviews/post/What-Is-The-Best-Accessory-For-Underwater-Photo-Video Watch more from the series: What is the Best Aperture for Underwater Photo and Video? https://www.backscatter.com/reviews/post/What-Is-The-Best-Aperture-For-Underwater-Photo-Video What is the Best Shutter Speed for Underwater Photography & Video?: https://www.backscatter.com/reviews/post/What-Is-The-Best-Shutter-Speed-For-Underwater-Photo-Video What is the Best ISO for Underwater Photography & Video?: https://www.backscatter.com/reviews/post/What-Is-The-Best-ISO-For-Underwater-Photo-Video Can You Shoot Photo & Video On The Same Dive? https://www.backscatter.com/reviews/post/Can-You-Shoot-Underwater-Photo-Video-On-The-Same-Dive What Is The Best Wide Lens For Underwater Photo & Video? https://www.backscatter.com/reviews/post/What-Is-The-Best-Wide-Lens-For-Underwater-Photo-Video What Is The Best Macro Lens For Underwater Photo & Video? https://www.youtube.com/watch?v=R-2YOZfxgsA&t=11s What Is The Best Way To Get Started In Underwater Photography & Video https://www.backscatter.com/reviews/post/What-Is-The-Best-Way-To-Get-Started-Underwater-Photo-Video 🔔 Like, comment, and subscribe for more underwater photography tips and gear reviews! 🌐 Visit our website for more details: www.backscatter.com 📸 Follow us on social media: Instagram: @backscattervideophoto Facebook: @backscattervideo&photo #UnderwaterPhotography #UnderwaterLens #PhotographyGear #ScubaDiving
5:08
What Is The Best Accessory For Underwater Photography & Video
What Is The Best Accessory For Underwater Photography & Video? During The Digital Shootou...
published: 15 Jul 2024
Play in Full Screen
5:29
What Is The Best Wide Angle Lens For Underwater Photography & Video?
What is the best wide angle lens for underwater photo and video? During The Digital Shooto...
published: 10 Jun 2024
Play in Full Screen
22:24
Backscatter Hybrid Flash - Underwater Strobe Review
A comprehensive review of the Backscatter Hybrid Flash, Underwater Strobe! If you’re a div...
published: 30 May 2024
Play in Full Screen
10:14
Shoot Amazing Underwater Macro with TG-6
Learn how to shoot amazing underwater macro in the easiest way possible with the Olympus T...
published: 18 Oct 2021
Play in Full Screen
12:31
Where The $#%&! Do I Put My Strobes? | The Zen of Underwater Strobe Placement
Have you ever been lining up a shot and wondered "Where the %$#@! do I put my strobes?" Ye...
published: 01 Sep 2020
Play in Full Screen
5:53
What Is The Best Way To Get Started In Underwater Photography & Video
What Is The Best Way To Get Started In Underwater Photography & Video? During The Digital...
published: 10 Jul 2024
Play in Full Screen
1:53
Canon EOS R5 II Underwater Photography First Look
Here is our first photo dive with the Canon EOS R5 II at Monastery Beach in Carmel Califor...
published: 02 Aug 2024
Play in Full Screen
13:43
Backscatter Macro Wide Video Light MW-4300 | The Best Underwater Video Light
The Ultimate Compact Video Light for Macro, Wide, and Snooting Check out the complete com...
published: 24 Nov 2020
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×