Noise Cancelling Headphones 700

$48.00
Color:  Luxe Silver
Quantity

Description

PREMIUM QUIET. BOLD SOUND.

World-class adjustable noise cancellation — with situational awareness for when you want to let the world in. High-fidelity audio with adjustable EQ so you can tune music to your liking. Unrivaled voice pickup for the clearest calls. And protein leather cushions for all-day comfort. It’s everything you demand from wireless Bluetooth headphones — amplified.

Hear what you want, not what you don’t.

Our proprietary active noise cancelling technology uses microphones both inside and outside the earcups to monitor the sounds around you and instantly produce an opposite signal to cancel them out. With adjustable noise cancelling, you can control how much — or how little — of the outside world you hear. Plus, Conversation Mode lets you simultaneously adjust noise cancelling and pause your music for a quick chat.

 HIGH-FIDELITY AUDIO

The experience you deserve

Whether it’s music, videos, or your favorite podcast, get closer to whatever you love with Bose Headphones 700. A combination of exclusive Bose technologies works together to deliver big audio from a small package, sound that stays consistent at any volume, and acoustic noise reduction, which gives you a blank canvas for your music or tuning out the world.

UNRIVALED VOICE PICKUP

Crystal clear calls.For you and them.

Let’s face it, your calls are important. Our revolutionary mic system is engineered for making and taking calls — even in less-than-ideal conditions. Six mics work together to cancel the noise around you so you can hear the caller better, while four mics combine to suppress the most disruptive remaining sound around you so the caller can hear you better. No other headphones today can deliver a performance like this.

SIMPLE TOUCH CONTROLS

Speak, swipe, or tap.

Capacitive touch controls make Headphones 700 easy to use. The right earcup features capacitive touch sensors, so you can manage volume, calls, and music without looking at your phone. Low-profile buttons control the power, noise cancelling presets, and your phone’s default voice assistant, like Siri, or Google Assistant and Alexa — to allow fast and effortless access to music, messages, and information.*

RELIABLE BLUETOOTH CONNECTIVITY

Wireless freedom for multiple devices

Connecting wirelessly to your devices is simple and reliable. Bose Headphones 700 have a Bluetooth range of up to 30 feet and can pair with two devices at once — meaning you can quickly go from listening to a playlist on your phone to taking a conference call on your laptop.

UP TO 20 HOURS BATTERY LIFE

Keep your music playing

Bose Headphones 700 deliver up to 20 hours of wireless play time on a single charge. And if you’re running low, a quick 15-minute charge will provide up to 2 hours so you can keep your favorites playing all day long.

What’s in the box

  • Bose Noise Cancelling Headphones 700
  • Audio cable
  • USB-C charging cable
  • Carrying case
  • Quick start guide

Specification

  • Headphones:8" H x 6.5" W x 2" D (0.56 lbs)
  • Carrying case:8.6" H x 7" W x 2.4" D (6.25 oz)
  • Audio cable:42 in
  • USB cable:20 in
  • Headband: Stainless steel
  • Headband cushion: Ultra-soft gel-like foam covered in color-matched silicone
  • Ear cushions: Soft foam covered in protein leather
  • Earcup covers: Finished with special anti-stick coating for touch gestures
  • Battery life: Up to 20 hours
  • Battery charging time: Up to 2.5 hours
  • Quick 15-minute charge: For up to 3.5 hours
  • Battery charge method: USB-C
  • 8 total microphones
  • 6 microphones for Active Noise Cancelling (ANC)
  • 4 microphones for Voice Pickup (2 are shared with ANC)
  • Bluetooth range: Up to 33 ft (10 m)
  • Bluetooth version: 5.0 (including all headphone profiles)
  • Codec SBC and AAC
  • USB-C on the headphone side
  • USB-A on the source side (but a C-C cable would also work with a C-capable source)
  • 2.5 mm audio cable for the headphone side and a standard 3.5 mm jack for the device side
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.