You must have javascript enabled to use camcorderi.com !

Ricoh WG-M1 Action Camera (Orange)

USD $309.99

Condition : Open box

Free Shipping

{{variant_type_name}} :
eBay
SKU: N/A This site contains affiliate links for which we may be compensated Cameras & Photo / Camcorders

Notify me when the price drops

We will email you if we find a lower price on this product!

Target price (USD) $
1-800-SKYMALL Menu
Ricoh WG-M1 Action Camera (Orange) var Spry; if (!Spry) { Spry = {}; } if (!Spry.Widget) { Spry.Widget = {}; } Spry.Widget.TabbedPanels = function(element, opts) { this.element = this.getElement(element); this.defaultTab = 0; this.bindings = []; this.tabSelectedClass = "TabbedPanelsTabSelected"; this.tabHoverClass = "TabbedPanelsTabHover"; this.tabFocusedClass = "TabbedPanelsTabFocused"; this.panelVisibleClass = "TabbedPanelsContentVisible"; this.focusElement = null; this.hasFocus = false; this.currentTabIndex = 0; this.enableKeyboardNavigation = true; Spry.Widget.TabbedPanels.setOptions(this, opts); if (typeof (this.defaultTab) == "number") { if (this.defaultTab < 0) { this.defaultTab = 0; } else { var count = this.getTabbedPanelCount(); if (this.defaultTab >= count) { this.defaultTab = (count > 1) ? (count - 1) : 0; } } this.defaultTab = this.getTabs()[this.defaultTab]; } if (this.defaultTab) { this.defaultTab = this.getElement(this.defaultTab); } this.attachBehaviors(); }; Spry.Widget.TabbedPanels.prototype.getElement = function(ele) { if (ele && typeof ele == "string") { return document.getElementById(ele); } return ele; }; Spry.Widget.TabbedPanels.prototype.getElementChildren = function(element) { var children = []; var child = element.firstChild; while (child) { if (child.nodeType == 1) { children.push(child); } child = child.nextSibling; } return children; }; Spry.Widget.TabbedPanels.prototype.addClassName = function(ele, className) { if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) != -1)) { return; } ele.className += (ele.className ? " " : "") + className; }; Spry.Widget.TabbedPanels.prototype.removeClassName = function(ele, className) { if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) == -1)) { return; } var arrList = ele.className.split(' '); var classNameUpper = className.toUpperCase(); for (var i = 0; i < arrList.length; i++) { if (arrList[i].toUpperCase() == classNameUpper) { arrList.splice(i, 1); i--; } } ele.className = arrList.join(' '); }; Spry.Widget.TabbedPanels.setOptions = function(obj, optionsObj, ignoreUndefinedProps) { if (!optionsObj) { return; } for (var optionName in optionsObj) { if (ignoreUndefinedProps && optionsObj[optionName] == undefined) { continue; } obj[optionName] = optionsObj[optionName]; } }; Spry.Widget.TabbedPanels.prototype.getTabGroup = function() { if (this.element) { var children = this.getElementChildren(this.element); if (children.length) { return children[0]; } } return null; }; Spry.Widget.TabbedPanels.prototype.getTabs = function() { var tabs = []; var tg = this.getTabGroup(); if (tg) { tabs = this.getElementChildren(tg); } return tabs; }; Spry.Widget.TabbedPanels.prototype.getContentPanelGroup = function() { if (this.element) { var children = this.getElementChildren(this.element); if (children.length > 1) { return children[1]; } } return null; }; Spry.Widget.TabbedPanels.prototype.getContentPanels = function() { var panels = []; var pg = this.getContentPanelGroup(); if (pg) { panels = this.getElementChildren(pg); } return panels; }; Spry.Widget.TabbedPanels.prototype.getIndex = function(ele, arr) { ele = this.getElement(ele); if (ele && arr && arr.length) { for (var i = 0; i < arr.length; i++) { if (ele == arr[i]) { return i; } } } return -1; }; Spry.Widget.TabbedPanels.prototype.getTabIndex = function(ele) { var i = this.getIndex(ele, this.getTabs()); if (i < 0) { i = this.getIndex(ele, this.getContentPanels()); } return i; }; Spry.Widget.TabbedPanels.prototype.getCurrentTabIndex = function() { return this.currentTabIndex; }; Spry.Widget.TabbedPanels.prototype.getTabbedPanelCount = function(ele) { return Math.min(this.getTabs().length, this.getContentPanels().length); }; Spry.Widget.TabbedPanels.addEventListener = function(element, eventType, handler, capture) { try { if (element.addEventListener) { element.addEventListener(eventType, handler, capture); } else if (element.attachEvent) { element.attachEvent("on" + eventType, handler); } } catch (e) { } }; Spry.Widget.TabbedPanels.prototype.onTabClick = function(e, tab) { this.showPanel(tab); }; Spry.Widget.TabbedPanels.prototype.onTabMouseOver = function(e, tab) { this.addClassName(tab, this.tabHoverClass); }; Spry.Widget.TabbedPanels.prototype.onTabMouseOut = function(e, tab) { this.removeClassName(tab, this.tabHoverClass); }; Spry.Widget.TabbedPanels.prototype.onTabFocus = function(e, tab) { this.hasFocus = true; this.addClassName(this.element, this.tabFocusedClass); }; Spry.Widget.TabbedPanels.prototype.onTabBlur = function(e, tab) { this.hasFocus = false; this.removeClassName(this.element, this.tabFocusedClass); }; Spry.Widget.TabbedPanels.ENTER_KEY = 13; Spry.Widget.TabbedPanels.SPACE_KEY = 32; Spry.Widget.TabbedPanels.prototype.onTabKeyDown = function(e, tab) { var key = e.keyCode; if (!this.hasFocus || (key != Spry.Widget.TabbedPanels.ENTER_KEY && key != Spry.Widget.TabbedPanels.SPACE_KEY)) { return true; } this.showPanel(tab); if (e.stopPropagation) { e.stopPropagation(); } if (e.preventDefault) { e.preventDefault(); } return false; }; Spry.Widget.TabbedPanels.prototype.preorderTraversal = function(root, func) { var stopTraversal = false; if (root) { stopTraversal = func(root); if (root.hasChildNodes()) { var child = root.firstChild; while (!stopTraversal && child) { stopTraversal = this.preorderTraversal(child, func); try { child = child.nextSibling; } catch (e) { child = null; } } } } return stopTraversal; }; Spry.Widget.TabbedPanels.prototype.addPanelEventListeners = function(tab, panel) { var self = this; Spry.Widget.TabbedPanels.addEventListener(tab, "click", function(e) { return self.onTabClick(e, tab); }, false); Spry.Widget.TabbedPanels.addEventListener(tab, "mouseover", function(e) { return self.onTabMouseOver(e, tab); }, false); Spry.Widget.TabbedPanels.addEventListener(tab, "mouseout", function(e) { return self.onTabMouseOut(e, tab); }, false); if (this.enableKeyboardNavigation) { var tabIndexEle = null; var tabAnchorEle = null; this.preorderTraversal(tab, function(node) { if (node.nodeType == 1) { var tabIndexAttr = tab.attributes.getNamedItem("tabindex"); if (tabIndexAttr) { tabIndexEle = node; return true; } if (!tabAnchorEle && node.nodeName.toLowerCase() == "a") { tabAnchorEle = node; } } return false; }); if (tabIndexEle) { this.focusElement = tabIndexEle; } else if (tabAnchorEle) { this.focusElement = tabAnchorEle; } if (this.focusElement) { Spry.Widget.TabbedPanels.addEventListener(this.focusElement, "focus", function(e) { return self.onTabFocus(e, tab); }, false); Spry.Widget.TabbedPanels.addEventListener(this.focusElement, "blur", function(e) { return self.onTabBlur(e, tab); }, false); Spry.Widget.TabbedPanels.addEventListener(this.focusElement, "keydown", function(e) { return self.onTabKeyDown(e, tab); }, false); } } }; Spry.Widget.TabbedPanels.prototype.showPanel = function(elementOrIndex) { var tpIndex = -1; if (typeof elementOrIndex == "number") { tpIndex = elementOrIndex; } else { tpIndex = this.getTabIndex(elementOrIndex); } if (!tpIndex < 0 || tpIndex >= this.getTabbedPanelCount()) { return; } var tabs = this.getTabs(); var panels = this.getContentPanels(); var numTabbedPanels = Math.max(tabs.length, panels.length); for (var i = 0; i < numTabbedPanels; i++) { if (i != tpIndex) { if (tabs[i]) { this.removeClassName(tabs[i], this.tabSelectedClass); } if (panels[i]) { this.removeClassName(panels[i], this.panelVisibleClass); panels[i].style.display = "none"; } } } this.addClassName(tabs[tpIndex], this.tabSelectedClass); this.addClassName(panels[tpIndex], this.panelVisibleClass); panels[tpIndex].style.display = "block"; this.currentTabIndex = tpIndex; }; Spry.Widget.TabbedPanels.prototype.attachBehaviors = function(element) { var tabs = this.getTabs(); var panels = this.getContentPanels(); var panelCount = this.getTabbedPanelCount(); for (var i = 0; i < panelCount; i++) this.addPanelEventListeners(tabs[i], panels[i]); this.showPanel(this.defaultTab); }; function swapImage(imageSrc, width, height) { document.GALLERY.src = imageSrc; } function swapImage1(imageSrc, width, height) { document.GALLERY1.src = imageSrc; } var Spry; if (!Spry) { Spry = {}; } if (!Spry.Widget) { Spry.Widget = {}; } Spry.Widget.TabbedPanels = function(element, opts) { this.element = this.getElement(element); this.defaultTab = 0; this.bindings = []; this.tabSelectedClass = "TabbedPanelsTabSelected"; this.tabHoverClass = "TabbedPanelsTabHover"; this.tabFocusedClass = "TabbedPanelsTabFocused"; this.panelVisibleClass = "TabbedPanelsContentVisible"; this.focusElement = null; this.hasFocus = false; this.currentTabIndex = 0; this.enableKeyboardNavigation = true; Spry.Widget.TabbedPanels.setOptions(this, opts); if (typeof (this.defaultTab) == "number") { if (this.defaultTab < 0) { this.defaultTab = 0; } else { var count = this.getTabbedPanelCount(); if (this.defaultTab >= count) { this.defaultTab = (count > 1) ? (count - 1) : 0; } } this.defaultTab = this.getTabs()[this.defaultTab]; } if (this.defaultTab) { this.defaultTab = this.getElement(this.defaultTab); } this.attachBehaviors(); }; Spry.Widget.TabbedPanels.prototype.getElement = function(ele) { if (ele && typeof ele == "string") { return document.getElementById(ele); } return ele; }; Spry.Widget.TabbedPanels.prototype.getElementChildren = function(element) { var children = []; var child = element.firstChild; while (child) { if (child.nodeType == 1) { children.push(child); } child = child.nextSibling; } return children; }; Spry.Widget.TabbedPanels.prototype.addClassName = function(ele, className) { if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) != -1)) { return; } ele.className += (ele.className ? " " : "") + className; }; Spry.Widget.TabbedPanels.prototype.removeClassName = function(ele, className) { if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) == -1)) { return; } var arrList = ele.className.split(' '); var classNameUpper = className.toUpperCase(); for (var i = 0; i < arrList.length; i++) { if (arrList[i].toUpperCase() == classNameUpper) { arrList.splice(i, 1); i--; } } ele.className = arrList.join(' '); }; Spry.Widget.TabbedPanels.setOptions = function(obj, optionsObj, ignoreUndefinedProps) { if (!optionsObj) { return; } for (var optionName in optionsObj) { if (ignoreUndefinedProps && optionsObj[optionName] == undefined) { continue; } obj[optionName] = optionsObj[optionName]; } }; Spry.Widget.TabbedPanels.prototype.getTabGroup = function() { if (this.element) { var children = this.getElementChildren(this.element); if (children.length) { return children[0]; } } return null; }; Spry.Widget.TabbedPanels.prototype.getTabs = function() { var tabs = []; var tg = this.getTabGroup(); if (tg) { tabs = this.getElementChildren(tg); } return tabs; }; Spry.Widget.TabbedPanels.prototype.getContentPanelGroup = function() { if (this.element) { var children = this.getElementChildren(this.element); if (children.length > 1) { return children[1]; } } return null; }; Spry.Widget.TabbedPanels.prototype.getContentPanels = function() { var panels = []; var pg = this.getContentPanelGroup(); if (pg) { panels = this.getElementChildren(pg); } return panels; }; Spry.Widget.TabbedPanels.prototype.getIndex = function(ele, arr) { ele = this.getElement(ele); if (ele && arr && arr.length) { for (var i = 0; i < arr.length; i++) { if (ele == arr[i]) { return i; } } } return -1; }; Spry.Widget.TabbedPanels.prototype.getTabIndex = function(ele) { var i = this.getIndex(ele, this.getTabs()); if (i < 0) { i = this.getIndex(ele, this.getContentPanels()); } return i; }; Spry.Widget.TabbedPanels.prototype.getCurrentTabIndex = function() { return this.currentTabIndex; }; Spry.Widget.TabbedPanels.prototype.getTabbedPanelCount = function(ele) { return Math.min(this.getTabs().length, this.getContentPanels().length); }; Spry.Widget.TabbedPanels.addEventListener = function(element, eventType, handler, capture) { try { if (element.addEventListener) { element.addEventListener(eventType, handler, capture); } else if (element.attachEvent) { element.attachEvent("on" + eventType, handler); } } catch (e) { } }; Spry.Widget.TabbedPanels.prototype.onTabClick = function(e, tab) { this.showPanel(tab); }; Spry.Widget.TabbedPanels.prototype.onTabMouseOver = function(e, tab) { this.addClassName(tab, this.tabHoverClass); }; Spry.Widget.TabbedPanels.prototype.onTabMouseOut = function(e, tab) { this.removeClassName(tab, this.tabHoverClass); }; Spry.Widget.TabbedPanels.prototype.onTabFocus = function(e, tab) { this.hasFocus = true; this.addClassName(this.element, this.tabFocusedClass); }; Spry.Widget.TabbedPanels.prototype.onTabBlur = function(e, tab) { this.hasFocus = false; this.removeClassName(this.element, this.tabFocusedClass); }; Spry.Widget.TabbedPanels.ENTER_KEY = 13; Spry.Widget.TabbedPanels.SPACE_KEY = 32; Spry.Widget.TabbedPanels.prototype.onTabKeyDown = function(e, tab) { var key = e.keyCode; if (!this.hasFocus || (key != Spry.Widget.TabbedPanels.ENTER_KEY && key != Spry.Widget.TabbedPanels.SPACE_KEY)) { return true; } this.showPanel(tab); if (e.stopPropagation) { e.stopPropagation(); } if (e.preventDefault) { e.preventDefault(); } return false; }; Spry.Widget.TabbedPanels.prototype.preorderTraversal = function(root, func) { var stopTraversal = false; if (root) { stopTraversal = func(root); if (root.hasChildNodes()) { var child = root.firstChild; while (!stopTraversal && child) { stopTraversal = this.preorderTraversal(child, func); try { child = child.nextSibling; } catch (e) { child = null; } } } } return stopTraversal; }; Spry.Widget.TabbedPanels.prototype.addPanelEventListeners = function(tab, panel) { var self = this; Spry.Widget.TabbedPanels.addEventListener(tab, "click", function(e) { return self.onTabClick(e, tab); }, false); Spry.Widget.TabbedPanels.addEventListener(tab, "mouseover", function(e) { return self.onTabMouseOver(e, tab); }, false); Spry.Widget.TabbedPanels.addEventListener(tab, "mouseout", function(e) { return self.onTabMouseOut(e, tab); }, false); if (this.enableKeyboardNavigation) { var tabIndexEle = null; var tabAnchorEle = null; this.preorderTraversal(tab, function(node) { if (node.nodeType == 1) { var tabIndexAttr = tab.attributes.getNamedItem("tabindex"); if (tabIndexAttr) { tabIndexEle = node; return true; } if (!tabAnchorEle && node.nodeName.toLowerCase() == "a") { tabAnchorEle = node; } } return false; }); if (tabIndexEle) { this.focusElement = tabIndexEle; } else if (tabAnchorEle) { this.focusElement = tabAnchorEle; } if (this.focusElement) { Spry.Widget.TabbedPanels.addEventListener(this.focusElement, "focus", function(e) { return self.onTabFocus(e, tab); }, false); Spry.Widget.TabbedPanels.addEventListener(this.focusElement, "blur", function(e) { return self.onTabBlur(e, tab); }, false); Spry.Widget.TabbedPanels.addEventListener(this.focusElement, "keydown", function(e) { return self.onTabKeyDown(e, tab); }, false); } } }; Spry.Widget.TabbedPanels.prototype.showPanel = function(elementOrIndex) { var tpIndex = -1; if (typeof elementOrIndex == "number") { tpIndex = elementOrIndex; } else { tpIndex = this.getTabIndex(elementOrIndex); } if (!tpIndex < 0 || tpIndex >= this.getTabbedPanelCount()) { return; } var tabs = this.getTabs(); var panels = this.getContentPanels(); var numTabbedPanels = Math.max(tabs.length, panels.length); for (var i = 0; i < numTabbedPanels; i++) { if (i != tpIndex) { if (tabs[i]) { this.removeClassName(tabs[i], this.tabSelectedClass); } if (panels[i]) { this.removeClassName(panels[i], this.panelVisibleClass); panels[i].style.display = "none"; } } } this.addClassName(tabs[tpIndex], this.tabSelectedClass); this.addClassName(panels[tpIndex], this.panelVisibleClass); panels[tpIndex].style.display = "block"; this.currentTabIndex = tpIndex; }; Spry.Widget.TabbedPanels.prototype.attachBehaviors = function(element) { var tabs = this.getTabs(); var panels = this.getContentPanels(); var panelCount = this.getTabbedPanelCount(); for (var i = 0; i < panelCount; i++) this.addPanelEventListeners(tabs[i], panels[i]); this.showPanel(this.defaultTab); }; function swapImage(imageSrc, width, height) { document.GALLERY.src = imageSrc; } function swapImage1(imageSrc, width, height) { document.GALLERY1.src = imageSrc; } Ricoh WG-M1 Action Camera (Orange)
  • Product Features
  • Specifications
  • In The Box
  • Supports 1080p30 & 720p60 Video
  • Capture 14MP Photos
  • Ultra-Wide Angle Lens
  • Waterproof to , Shockproof up to 6.5'
  • Cold-Resistant Down to 14°F
  • Slow-Motion 120 fps Recording Mode
  • Rugged Design with Large Control Buttons
  • Micro HDMI Output
  • Built-In Wi-Fi Connectivity
  • Flat Adhesive Mount Included
  • Camera Sensor 1/2.3"  CMOS Color Filter RGB Effective Pixels 14,000,000 Optics Focal Length 3 mm 35mm Equivalent Focal Length 16.8 Maximum Aperture f/ 2.8 Lens Elements 6 Focusing Distance 23.6" / - Infinity Angle of View 160° (Still, 4:3) 137° (Movie, 1280x960) Recording Recording Media Internal Flash Memory 100 MB microSD/SDHC Up To 32 GB Video Format High Definition MOV 1920 x 1080p / 30 fps1280 x 960p / 50 fps1280 x 960p / 30 fps 1280 x 720p / 60 fps1280 x 720p / 30 fps Standard Definition MOV 848 x 480p / 120 fps848 x 480p / 60 fps Aspect Ratio 16:9 4:3 Still Image Resolution JPEG: 14 Megapixel, 4320 x 3240 (4:3) JPEG: 10 Megapixel, 4320 x 2432 (16:9) JPEG: 5 Megapixel, 2592 x 1944 (4:3) Channels 2.0-Channel Stereo Audio Format PCM Display Display Type LCD Touchscreen No Screen Size 1.5" Pixel Count 115,000 Features Image Stabilization Digital Shockproof Rating 6.6' / 2.0 m Waterproof Depth Rating 32.8' / 10.0 m (Camera) Dustproof Rating IP6X White Balance Modes Auto Cloudy Daylight Fluorescent Underwater Wi-Fi Yes Tripod Mount 1/4" - 20 Input/Output Connectors Outputs 1x USB 2.0 1x HDMI D (Micro) General Languages Arabic Croatian Czech Danish Dutch English Finnish French German Greek Hindi Hungarian Indonesian Italian Japanese Korean Norwegian Polish Portuguese Russian Simplified Chinese Spanish Swedish Thai Traditional Chinese Turkish Vietnamese System Requirements Windows
  • Vista
  • 7
  • 8
  • USB 2.0 Interface
  • Windows
  • OS X 10.6, 10.7, 10.8, 10.9
  • USB 2.0 Interface
  • Battery Rechargeable Lithium-Ion Battery Pack Charging Method AC Adapter USB Charging Time 3.3 hours Dimensions (WxHxD) 2.6 x 1.7 x 3.5" / 6.6 x 4.3 x excluding protrusions Weight 5.3 oz / 150 g without battery, microSD card, and lens protector 6.7 oz / 190 g Fully loaded
  • Ricoh WG-M1 Action Camera (Orange)
  • DB-65 Li-Ion Rechargeable Battery
  • Power Adapter
  • WG Flat Adhesive Mount
  • USB Cable
  • Lens Protector
  • Underwater Lens Protector
  • Carabiner Strap
  • CD-ROM with Operating Manual
  • Quick Start Guide
  • var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1"); RICWGM1OE
    We accept PayPal
    payments only.
    We can only ship to the address that PayPal verifies and sends to us.
    We reserve the right to cancel your payment, if it does not pass verifications.
    We do not accept paypal payments from accounts outside the usa and canada. Tax:
    We do charge sales tax in NJ state. State taxes will be calculated at checkout. Free Shipping
    only applies to the lower 48 states.
    We ship to the USA & Canada
    only
    We currently do not ship to Alaska, Hawaii, or Puerto Rico. Canada buyers are responsible for all duties, customs charges, and/or brokerage fees. We cannot ship as a gift, or claim as lower value. Please call us to inquire about Canada Express shipping rates.
    Packages ship within 24 hours from valid payment received.
    Packages ship FedEx or UPS with free delivery. Shipments cannot be made to PO Boxes.
    If you would like a faster delivery method, please choose expedited shipping.
    Packages do not ship Saturday or Sunday.
    Our packages are insured and may require a signature. In accordance with PayPal and eBay policies, we cannot reroute your package to a different address or hold your shipment at the local hub for pick up, your order must be delivered to the confirmed PayPal address received with your purchase. We cannot change your address before the order ships. Please do not submit handling instructions in the notes of your order requesting special handling, a specific courier or a change of address, as we will be unable to meet these requests.
    We offer a 30 Day Return Policy
    .
    If your package is damaged in delivery, please call us so we can set up a claim with the carrier.
    All returns must contain all original manufacturer boxes and packaging
    , including packing materials and unfilled warranty card(s).
    If your product is defective, we will exchange
    it for a new unit. The recipient is responsible for all shipping charges to ship the product back. We will pay to ship the new product back to you.
    All returns must have an RMA number. To obtain one, you must call or email our customer service department. If you return or refuse a package, shipping is not refundable.
    Our products are covered by a warranty of 1-year parts and 90-days for labor. If you need more information, please contact our customer service department for warranty info. 6AVE will provide a warranty of 1-year parts and 90-days for labor and defects for new products in any case where the manufacturer will not do so.
    Please be aware that while all items we sell are brand new and never used, there are instances where we deliver the camera body (and box contents) in a box which originally included the camera and the lens. Please be reassured that the package that you received is brand new, never used, and comes with full documentation
    We do not offer price protection if the price of an item that you purchased. Prices do change frequently. All orders are subject to verification before shipment.
    anytime! Protect Your Product With a Consumer Priority Service Warranty Protect Your Product With a Consumer Priority Service Warranty Protect Your Product With a Consumer Priority Service Warranty Protect Your Product With a Consumer Priority Service Warranty Protect Your Product With a Consumer Priority Service Warranty Protect Your Product With a Consumer Priority Service Warranty Protect Your Product With a Consumer Priority Service Warranty Protect Your Product With a Consumer Priority Service Warranty Protect Your Product With a Consumer Priority Service Warranty Protect Your Product With a Consumer Priority Service Warranty Protect Your Product With a Consumer Priority Service Warranty
    SKU : PX08288YW
    PAYMENT & SHIPPING INFORMATION
    Payment Options
    We accept payment via PayPal.
    For large value or wholesale orders, please contact us and request to be connected to our dedicated wholesale team.
    Shipping
    Free ground shipping on all USA orders (excludes Alaska and Hawaii).
    Delivery options and estimated ship times in business days:
    ABOUT US
    Over a quarter century ago, on a 1989 flight from Seattle to Phoenix, the idea for a unique retailer made accessible exclusively to air travelers was born. (These were the days before in-flight WiFi and ebooks.) A year later, SkyMall had arrived! Our first ever catalog was published and distributed to passengers on Eastern Airlines flights, and a cultural institution (that’s us! If we do say so ourselves…) was created. Show More
    Here at SkyMall, we’re different. No, really! We continue to offer air travelers the largest and most unique selection of interesting items, novelty gifts, and genius solutions to everyday problems. But we’re not afraid of growing with the times, too: Our full catalog (and then some!) joined the online shopping game and now we’re even better able to offer customers products and gadgets and tools and devices they once only dreamed of—not to mention more than a handful of items you never realized you needed until now.
    We're proud to work with an awesome team of catalogers, manufacturers, and distributors who have helped us turn SkyMall into what it’s become over the last 25+ years: a hub of ingenuity, imagination, and innovation. Come on in and take a look around at all we have to offer, both in the pages of our iconic in-flight catalog and here in our online store. We’re excited to be your go-to shopping destination for another quarter century and beyond!
    RETURN POLICY
    Our customer service team is happy to assist you with any questions or concerns that you may have regarding your purchase. Please give us a call directly and we will do everything we can to resolve your issue. If for any reason you are not completely satisfied with a product, simply return it within 10 days for all Digital, Video and Wireless Phone products, 30 days for all other products, for a no hassle exchange or return. Please note regarding Electronics products, some require Return Merchandise Authorization (RMA), and some are non-returnable.
    CONTACT US
    Your feedback is important to us.
    Customer satisfaction is our #1 priority. If for any reason you are not 100% satisfied with your purchase, please call our customer service team. We would be happy to assist you. Whether you`re satisfied or not, we encourage you to reach out to us and let us know. We take each and every comment seriously and work upon to improve your online shopping experience. Please Call us @ 1-
    800-SKYMALL
    1-800-7596255

    Returns Accepted for this item if it's within 30 Days

    Ricoh WG-M1 Action Camera (Orange)
    bratz camcorder | camcorder lens filters | camcorder digital | camcorder in store | outdoor camcorder
    See more
    Price type
    IN STOCK OUT STOCK