Insta360 ONE X2 360 Camera with Touchscreen - 5.7K30 360 Video, Front Steady Cam Mode, 18MP 360 Photo + InstaPano | Bundle Includes Invisible Selfie Stick (120cm) & 128GB Memory Card (3 Items)

$10.54
$389.99
-97%
Title:  Default Title
Quantity

Description

Brand Insta360
Connectivity Technology USB
Flash Memory Type Micro SD
Color Black
Special Feature H.265 Encoding
Screen Size 2.4 Inches
Optical Zoom 1 x
Camcorder type Action Camera
Model Name Insta360 ONE X2
Video Capture Resolution 5.7K

  • 360 5.7K VIDEO + 2.7K STEADY CAM: The Insta360 ONE X2 is latest 360 camera packed with a multitude of new features. Based off the popular ONE X form factor, the new ONE X2 is outfitted with Super 5.7K 360 video resolution & H.265 encoding with an advanced AI-driven image processing algorithm preserving the highest level of detail for a 360 camera in this class. With new features like Steady Cam mode, Multiview, Pureshot and more the ONE X2 is ready for your next-level of creativity.
  • PREMIUM 4-MIC 360 AUDIO: The ONE X2 is truly vlog-ready, featuring a 4-mic stereo processing with integrated wind noise reduction - the best quality audio from Insta360 yet. In addition the ONE X2 is also compatible with any external microphone using a 3.5mm mic input (requires USB-C to 3.5mm adapter sold separate) and can be paired with the ever popular Apple AirPods for a wireless audio input (feature to be released via firmware update).
  • POWERFUL DOWNLOAD FREE EDITING: With 360° preview & playback, the Insta360 ONE X2 app is truly a game changer - a full editing room that allows you to EDIT DIRECTLY from the ONE X2 without having to download footage to your smartphone and use up precious storage space. With AI-powered editing tools, editing footage on your iOS or Android smartphone has never been easier. Be sure to check the smartphone phone recommended device list for compatibility.
  • IPX8 WATERPROOF: When fully assembled in the mounting bracket, the Insta360 ONE X2 is rated to IPX8 - waterproof up to 5 meters (16.4ft). So whether you are poolside or out on a rainy-day ride, the ONE X2 can handle it. Optional dive cases for the dual-lens 360 Mod (up to 30m) and 4K Mod (up to 60m) are available and sold separate.
  • IN THE BOX: x1 - Insta360 ONE X2 360 Camera, x1 - Insta360 Invisible Selfie Stick 120cm (long version), x1 - 1630mAh Battery, x1 - 128GB Extreme microSDXC V30 Memory Card, x1 - Charging Cable (USB), x1 - Protective Pouch, x1 - Warranty Card, x1 - Quickstart Guide & x1 - EVO Gimbals Microfiber Cleaning Cloth


PURESHOT

PureShot enhances the dynamic range of your low-light photos, while reducing noise and preserving detail. Achieve in a tap what used to take multiple bracketed shots.

LIVE STREAM & WEBCAM

Go live in 360 degrees to Facebook and YouTube. Or use webcam mode to connect to Zoom or any of your other favorite conferencing platforms.

4-MIC 360° AUDIO

ONE X2 uses four mics to locate and hone in on your voice no matter how you hold the camera. A new smart wind-reduction algorithm means you only get the audio you want.

TOUCHSCREEN & BATTERY

Preview your shot in 360 with ONE X2's ultra-bright touchscreen. And keep shooting for longer with a 1630 mAh battery—55% bigger than ONE X's.

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.