Space Q45 | Long-Lasting Noise Cancelling Headphones (2024)

Space Q45 | Long-Lasting Noise Cancelling Headphones (1)
Space Q45 | Long-Lasting Noise Cancelling Headphones (2)
Space Q45 | Long-Lasting Noise Cancelling Headphones (3)
Space Q45 | Long-Lasting Noise Cancelling Headphones (4)
Space Q45 | Long-Lasting Noise Cancelling Headphones (5)
Space Q45 | Long-Lasting Noise Cancelling Headphones (6)
Space Q45 | Long-Lasting Noise Cancelling Headphones (7)
Space Q45 | Long-Lasting Noise Cancelling Headphones (8)
Space Q45 | Long-Lasting Noise Cancelling Headphones (9)
Space Q45 | Long-Lasting Noise Cancelling Headphones (10)
Space Q45 | Long-Lasting Noise Cancelling Headphones (11)
Space Q45 | Long-Lasting Noise Cancelling Headphones (12)
Space Q45 | Long-Lasting Noise Cancelling Headphones (13)
Space Q45 | Long-Lasting Noise Cancelling Headphones (14)

All-New Noise Cancelling Headphones with 50-Hour Playtime

  • Upgraded noise cancelling system reduces noise by up to 98%
  • Make every space your own with adaptive noise cancelling
  • Ultra-long 50-hour playtime for travel
  • Sound with exceptional detail
  • Secure and comfortable fit
  • TCO Certified: For Better Sustainability

Model Number: A3040

2. Can I redeem multiple discount codes?

No. Discount codes cannot be combined.Only one code can be applied per order.

3. Why is my discount code invalid?

1) The discount code is not applicable to the specific items you want to buy

2) The discount code wasn't entered correctly

3) The discount code has expired

4) The discount code is not from soundcore's official website

If you have any questions,please feel free to reach out to our customer service team:service@soundcore.com

"); } function getMemberOrQuerySaving({price, sku, codeSave = 0}) { const memberDiscount = ShopMetafields.discountMember const memberWeekDiscount = ShopMetafields.discountMemberWeek const memberJoined = sessionStorage.getItem('memberJoined') const memberDiscountFromScript = ShopMetafields.scriptDiscountMember const queryDiscount = ShopMetafields.discountQuery const queryDiscountFromScript = ShopMetafields.scriptDiscountQuery let save; let withBundleOrGift = $('.product-free-gift').length || $('.product-bundle').length if (withBundleOrGift) { return save } if ( memberDiscount?.active && Boolean("") && !memberDiscountFromScript?.excludeSkus?.includes(sku) ) { const memberSave = new Decimal(price).times(memberDiscount.discount); save = new Decimal(codeSave).plus(memberSave).toNumber(); }else if(memberWeekDiscount?.active && Boolean("") && memberJoined){ // start_ai_generated const memberSave = new Decimal(price).times(memberWeekDiscount.discount); save = new Decimal(codeSave).plus(memberSave).toNumber(); // end_ai_generated } else if ( queryDiscount?.active && !queryDiscountFromScript?.excludeSkus?.includes(sku) ) { const queryValue = getQueryVariable(queryDiscount.queryKey); if (queryValue == queryDiscount.queryValue) { const querySave = new Decimal(queryDiscount.discount).times(price); save = new Decimal(codeSave).plus(querySave).toNumber(); } } return save } function showDiscountBox(sku) { if (couponsData[sku] && couponsData[sku][0]) { let currentData = couponsData[sku][0]; ShowCode(currentData); if (window.GsapScrollTrigger) ScrollTrigger.refresh() } else { const memberOrQuerySaving = getMemberOrQuerySaving({ price: jsVariant.price, sku, }); if(memberOrQuerySaving > 0){ if ($('.product-marketing-module .product__marketing_module_coupon').length) { if ($('.product-marketing-module .product__marketing_module_coupon').data("show_discounts") === 'false') { return } } $('.sale.savings').text(`You Save: ${Shopify.formatMoney(memberOrQuerySaving)}`) } $('.couponWrapper').hide(); $('.DiscountMark').hide(); } } function ShowCode(data) { // 展示code文案 $('#couponCode').text(data.title); copyCodeTxt = data.title; // 展示折扣数值 let DiscountTxt; let DiscountedPrice; let savePrice; let price = jsVariant.price; let savingsAfterDrop = Number($('.price-container').data('savings') || 0); let currentPriceAfterDrop = Number($('.price-container').data('current-price') || 0) price = currentPriceAfterDrop || price let codeMoney = 0 if (data.value_type === "fixed_amount") { DiscountTxt = data.value_style; DiscountedPrice = Shopify.formatMoney(price + Number(data.value) * 100) savePrice = Math.abs(data.value) * 100 codeMoney = Math.abs(data.value) } else if (data.value_type === "percentage") { const savePriceValue = price * Math.abs(Number(data.value) / 100) DiscountTxt = Math.abs(parseInt(data.value)) + "%"; DiscountedPrice = Shopify.formatMoney(price - savePriceValue); savePrice = savePriceValue; }; $('.couponWrapper').data('code-money', codeMoney) $('#DiscountTxt').text(DiscountTxt); $('#DiscountMarkTxt').text(DiscountTxt); // 失效时间判断 let endsTime = data.ends_at ? new Date(data.ends_at).valueOf() : null; if (endsTime) { timeLine = setInterval(function() { nowTime = new Date().getTime(); let distance = endsTime - nowTime; if (distance < 0) { clearInterval(timeLine); $('.couponWrapper').hide(); $('.DiscountMark').hide(); $('.product__information .modal_price .salePrice').remove(); $('.product__information .current_price').removeClass("UnderscorePrice"); } else { // 展示折扣模块 $('.couponWrapper').show(); $('.DiscountMark').show(); // 展示倒计时 let days = Math.floor(distance / (1000 * 60 * 60 * 24)); let hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); let minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); let seconds = Math.floor((distance % (1000 * 60)) / 1000); if(days >= 7) { $('#timeOutTxt').css('display', 'none'); $('#timeTxt').css('display', 'inline-block'); $('#timeTxt').html('Hurry! Sale Ends soon.'); } else if (days === 1) { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`${days} Day ${hours}:${minutes}:${seconds}`); } else if (days === 0) { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`Today ${hours}:${minutes}:${seconds}`); } else { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`${days} Days ${hours}:${minutes}:${seconds}`); } } }, 1000); } else { // 展示折扣模块 $('.couponWrapper').show(); $('.DiscountMark').show(); // 展示倒计时 $('#timeOutTxt').css('display', 'none'); $('#timeTxt').css('display', 'inline-block'); $('#timeTxt').html('Hurry! Sale Ends soon.'); } const memberOrQuerySaving = getMemberOrQuerySaving({ price: new Decimal(price).minus(savePrice), codeSave: savePrice, sku: data.sku, }); if ($('.product-marketing-module .product__marketing_module_coupon').length) { if (!$('.product-marketing-module .product__marketing_module_coupon').data("show_discounts")) { return } } if(memberOrQuerySaving > 0) { $('.sale.savings').text(`You Save: ${Shopify.formatMoney(Math.floor(memberOrQuerySaving))}`) } else if (!savingsAfterDrop) { if ($('.product__information .modal_price .salePrice').length == 0 || $('.product__information .current_price .salePrice').text() != DiscountedPrice) { $('.sale.savings').text(`You Save: ${Shopify.formatMoney(Math.floor(savePrice))}`) } } } function copyCouponCode() { execCoy(copyCodeTxt); $('.copyTextReplace').show(); $('.copyText').hide(); setInterval(function(){ $('.copyTextReplace').hide(); $('.copyText').show(); }, 3000); } function execCoy(text) { const input = document.createElement('INPUT'); input.style.opacity = 0; input.style.position = 'absolute'; input.style.left = '-100000px'; document.body.appendChild(input); input.value = text; input.select(); input.setSelectionRange(0, text.length); document.execCommand('copy'); document.body.removeChild(input); return true; }})

$149.99

Space Q45 | Long-Lasting Noise Cancelling Headphones (15)

soundcore guarantees that we will refund you the difference if you find a lower price on the soundcore website within 30 days of your purchase.

Your purchase must have been made within the last 30 days. You must email us a screenshot of the lower price. The refund is only applicable during the promotional period.

Email me when available

Leave your email address and we will notify you when the product is back in stock.

Space Q45 | Long-Lasting Noise Cancelling Headphones

(Optional) Join our soundcore email list to get special offers and more.

  • Upgraded noise cancelling system reduces noise by up to 98%
  • Make every space your own with adaptive noise cancelling
  • Ultra-long 50-hour playtime for travel
  • Sound with exceptional detail
  • Secure and comfortable fit
  • TCO Certified: For Better Sustainability

Order Support

Fast, Free Shipping

30-Day Money-Back Guarantee

Hassle-Free Warranty

Lifetime Customer Support

Delivery & Payment

Space Q45 | Long-Lasting Noise Cancelling Headphones (18)

Space Q45 | Long-Lasting Noise Cancelling Headphones

"; } const vLink = `/products/${vSkuHandle}` return `
  • `; }).join(''); if (custom_variants.sku.indexOf(sku) > -1) { $('.custom_variants').html(`${curColor}
      ${dom}
    `); $('.custom_variants').removeClass('swap--visible'); } $(".advantage-nav li").on("click", function() { var index = $(this).index(); $(this).addClass("active").siblings().removeClass("active"); $(".info_iconList").eq(index).fadeIn().siblings().hide(); }); $('.icon_list_item').click(function() { const modalContent = $(this).data('txtmodel') openTxtModal(`${modalContent}`) }); function render_description (sku) { var json_s = `{"description_A3040011": ""}`; var description = json_s ? JSON.parse(json_s) : {}; var variant_description = description[`description_${sku}`]; if (variant_description) { const txt = variant_description; const $target = $('.product-7364813160638 .product__information .description'); const dom = $target.html(txt).text(); $target.html(dom); } else { $('.product-7364813160638 .product__information .description').html(`
    • Upgraded noise cancelling system reduces noise by up to 98%
    • Make every space your own with adaptive noise cancelling
    • Ultra-long 50-hour playtime for travel
    • Sound with exceptional detail
    • Secure and comfortable fit
    • TCO Certified: For Better Sustainability
    `); } } render_description(`A3040011`); $('.product-form-container .swatch_options .swatch-element').on('click', function() { var sku = $(this).data('sku'); render_description(sku); var $product = $('.product-7364813160638'); var $productForm = $('.product_form, .shopify-product-form', $product); var JSONData = $productForm.data('product'); var affirm_price = JSONData.variants.find(v => (v.sku === sku)).price; $('.product__information .affirm-as-low-as').attr('data-amount', affirm_price); affirm.ui.refresh(); var available = JSONData.variants.some(v => { if (v.sku === sku) return v.available && v.price != 999999999; return false; }) if (available) { $('.out-stock-notify').css('display', 'none'); $('.out-stock-pop').css('display', 'none'); $('.notify-btn').css('display', 'none'); } else { $('.out-stock-notify').removeClass('swap--visible'); $('.out-stock-notify').css('display', 'block'); $('.out-stock-pop').css('display', 'block'); $('.notify-btn').css('display', 'block'); } }) })

    Space Q45 | Long-Lasting Noise Cancelling Headphones (20) Space Q45 | Long-Lasting Noise Cancelling Headphones (21)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (22)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (23)

    Upgraded Noise Cancelling

    The ultra-wide, 3-stage noise cancelling system targets and blocks out noises precisely.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (24)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (25)

    2× Stronger

    Create personal space wherever you are, with soundcore's upgraded noise cancelling technology.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (26)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (27)

    Adaptive Noise Cancelling

    Space Q45's noise cancelling automatically adapts based on the noise from your surroundings.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (28)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (29)

    Adjustable Ambient Sound

    Use the app to choose from 5 levels of transparency and noise cancelling for ultimate customization.

    • Upgraded Noise Cancelling
    • Boosted Performance
    • Smarter Noise Cancelling
    • Enhanced Awareness

    Upgraded Noise Cancelling

    The ultra-wide, 3-stage noise cancelling system targets and blocks out noises precisely.

    2× Stronger

    Create personal space wherever you are, with soundcore's upgraded noise cancelling technology.

    Adaptive Noise Cancelling

    Space Q45's noise cancelling automatically adapts based on the noise from your surroundings.

    Adjustable Ambient Sound

    Use the app to choose from 5 levels of transparency and noise cancelling for ultimate customization.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (30)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (31)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (32)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (33)

    • Upgraded Noise Cancelling
    • Boosted Performance
    • Smarter Noise Cancelling
    • Enhanced Awareness

    Space Q45 | Long-Lasting Noise Cancelling Headphones (34)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (35)

    Ideal for Traveling

    Enjoy up to 50 hours of playtime in ANC mode and up to 65 hours in standard mode.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (36)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (37)

    Never Compromise on Sound

    Pioneering double-layer diaphragm drivers produce clear, bright sound with strong bass.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (38)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (39)

    Gold Standard of Sound

    LDAC transfers 3× more detail than standard Bluetooth codecs for a detail-rich listening experience.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (42)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (43)

    Crystal Clear Calls

    Be heard in crystal-clear clarity as two mics and an AI algorithm detect and amplify your voice.

    • 50-Hour Playtime
    • Detail-Rich Sound
    • Hi-Res Wireless Sound
    • soundcore App
    • AI-Enhanced Calls

    Ideal for Traveling

    Enjoy up to 50 hours of playtime in ANC mode and up to 65 hours in standard mode.

    Never Compromise on Sound

    Pioneering double-layer diaphragm drivers produce clear, bright sound with strong bass.

    Gold Standard of Sound

    LDAC transfers 3× more detail than standard Bluetooth codecs for a detail-rich listening experience.

    Personalized Listening

    Make Space Q45 yours with adjustable EQ, customizable controls, and more in the easy-to-use app.

    Crystal Clear Calls

    Be heard in crystal-clear clarity as two mics and an AI algorithm detect and amplify your voice.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (44)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (45)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (46)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (47)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (48)

    • 50-Hour Playtime
    • Detail-Rich Sound
    • Hi-Res Wireless Sound
    • soundcore App
    • AI-Enhanced Calls

    Space Q45 | Long-Lasting Noise Cancelling Headphones (49)

    Aluminum Alloy Hinges

    The hinges can rotate and are foldable for convenient storage.

    Seamless Sliding Design

    For a streamlined design and smooth extension to fit different sized heads.

    Ultra-Soft Earcups

    Made from skin-friendly materials, the earcups have bouncy cushioning and a wider inner diameter to comfortably fit around your ears.

    Refined Design

    Rock your Space Q45 in style with earcups featuring smooth curves, a matte finish, and pops of detail from the mirror-finish highlights.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (50)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (51)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (52)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (53)

    Aluminum Alloy Hinges

    The hinges can rotate and are foldable for convenient storage.

    Seamless Sliding Design

    For a streamlined design and smooth extension to fit different sized heads.

    Ultra-Soft Earcups

    Made from skin-friendly materials, the earcups have bouncy cushioning and a wider inner diameter to comfortably fit around your ears.

    Refined Design

    Rock your Space Q45 in style with earcups featuring smooth curves, a matte finish, and pops of detail from the mirror-finish highlights.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (54)

    Dual Connection

    Stay connected to two devices with Bluetooth 5.3 and multipoint connection. Instantly switch between music, calls, videos, and more on different devices hassle-free to save you time and effort.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (55)

    Product Dimensions

    Length: 161mm / 6.3in

    Height: 190mm / 7.5in

    Wide: 88mm / 3.5in

    Compare soundcore Headphones

    Space Q45 | Long-Lasting Noise Cancelling Headphones (56) Space Q45 | Long-Lasting Noise Cancelling Headphones (57) Space Q45 | Long-Lasting Noise Cancelling Headphones (58) Space Q45 | Long-Lasting Noise Cancelling Headphones (59)
    Space Q45 Life Q35 Life Q30 Life Q20
    Sound Hi-Res Wireless, Hi-Res, LDAC Hi-Res Wireless, Hi-Res, LDAC Hi-Res, customized EQ Hi-Res, BassUp, dual EQ modes
    Active Noise Cancellation Adaptive ANC Hybrid ANC with multiple modes Hybrid ANC with multiple modes Hybrid ANC
    Playtime 65H (ANC off), 50H (ANC on) 60H (ANC off), 40H (ANC on) 60H (ANC off), 40H (ANC on) 60H (ANC off), 40H (ANC on)
    Fast Charging 5 mins = 4 hours 5 mins = 4 hours 5 mins = 4 hours 5 mins = 4 hours
    Connectivity Bluetooth 5.3, AUX Bluetooth 5, AUX with mic, NFC Bluetooth 5, AUX, NFC Bluetooth 5, AUX
    Calls 2 mics with AI algorithm 2 mics with AI algorithm 2 mics Single mic
    Charging Port USB-C USB-C USB-C Micro-USB
    soundcore App
    Recommended For Travel, flight, train, commute Travel, flight, train, commute Travel, flight, train, commute Travel, flight, train, commute

    FAQ

    • Charging
    • Bluetooth
    • Sound
    • ANC
    • Mic
    • Operation
    • Documents & Drivers
    • How long does it to fully charge Space Q45?

      It takes around 2 hours to fully charge Space Q45 headphones in a normal indoor environment, but charging may take a little longer in low temperatures.

    • What is Space Q45's playtime with a full charge?

      - Playtime with active noise cancelling off: 65 hours at 60% volume
      - Playtime with active noise cancelling on: 50 hours at 60% volume
      - A 5-minute charge gives you 4 hours of listening

      Note: The playing time may vary slightly based on the music content. If you use the headphones to make/receive a call, the playtime will be reduced as the microphone consumes more power than when listening to music.

    • Can I use Space Q45 while they're charging?

      No, Space Q45 cannot be used while charging.

    • What should I do if Space Q45 cannot hold a charge, doesn't power on, or cannot be fully charged?

      1. Try a different wall charger (it's best to use a 5V charger) and cable to charge the headphones for at least 24 hours no matter if the indicator is on or off.
      2. Make sure the wall charger and cable you're using work correctly with other devices.
      3. Reset Space Q45 by holding down the power button and Volume+ for 5 seconds.

    • What should I do if Space Q45's battery discharges quickly?

      1. Try a different wall charger (it's best to use a 5V charger) and cable to charge the headphones for at least 24 hours no matter if the indicator is on or off.
      2. Make sure the wall charger and cable you're using work correctly with other devices.
      3. After fully charging Space Q45, test the playtime again at 60% volume.

    • What Bluetooth codecs does Space Q45 support?

      Space Q45 supports AAC, SBC, and LDAC.

    • What should I do if any of the following problems occur?
      - Cannot pair or reconnect with my device.
      - Cannot detect Space Q45 on the Bluetooth device.

      1. Restart the Bluetooth device, forget all the pairing records on your device, and turn off Bluetooth.
      2. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      3. Turn on the Bluetooth of your device and search for soundcore Space Q45 and pair.
      4. Test your Space Q45 with a different Bluetooth device to see if the problem still persists.

    • How do I pair Space Q45 with a second Bluetooth device, and how do I activate multipoint connection?

      1. Pair Space Q45 headphones with the first Bluetooth device.
      2. Double click the Power button so that Space Q45 enters the pairing status again. The LED will flash blue.
      3. Select "soundcore Space Q45" in the Bluetooth device list of the second device. The headset will be paired with the second device. The indicator will be steady blue for 3 seconds, then turn off.

    • How do I pair with a different Bluetooth device when Space Q45 is already paired to two Bluetooth devices?

      If soundcore Space Q45 is already connected to two Bluetooth devices, double-clicking the power button cannot make them enter pairing status. If you still need to pair a new device to Space Q45, there are two ways to do it:
      1. You need to manually disconnect a connected device, so that the headset will directly enter the pairing status.
      2. You can view the connection status and connected device history in the soundcore app. You can manually disconnect one of the devices and then connect a new device in the app.

    • What should I do if Space Q45 disconnects or the sound is interrupted?

      This doesn't necessarily mean there is an issue with the headphones. The issue could be with the Bluetooth connection, the connected device, or the environment. Bluetooth signals may be affected by obstructions such as walls, pillars, home appliances, Wi-Fi, and more. To ensure a stable connection, we recommend avoiding such obstructions.

      To fix this issue, please try the following:

      1. "Forget" Space Q45 in your device's Bluetooth history.
      2. Fully charge Space Q45 and hold the Power and Volume+ buttons at the same time for 5 seconds to reset. The indicator will flash red 3 times. This confirms that the reset is successful.
      3. Check Space Q45 by listening to downloaded music/video.
      4. Check Space Q45 with another Bluetooth device in a different environment to see if it works well.
      5. Try to turn off the Bluetooth Codec SBC and turn on AAC.

    • What should I do if there is an audio delay?

      There will always be a very small delay between wireless headphones and Bluetooth devices due to the limitation of Bluetooth technology. Normally, it will not be noticeable and will not affect your experience. Noticeable delays can be related to the true wireless earbuds, the connected device, audio source, app, and network.

      To locate the issue, try the following:

      1. "Forget" Space Q45 in your device's Bluetooth history and restart your Bluetooth device.
      2. Reset Space Q45 by holding down the Power and Volume+ buttons for 5 seconds.
      3. Test Space Q45 with a different Bluetooth device, app, and downloaded music/video to see if the problem still persists or not.
      4. Ensure there are no physical objects hindering the Bluetooth connection from Space Q45 to the device they're connected to (such as a doorway or wall).

    • What should I do if one side of Space Q45 does not emit any sound or the sound is lower on one side?

      1. Fully charge Space Q45 and restart your Bluetooth device.
      2. Reset the headphones by holding down the Power and Volume+ buttons for 5 seconds.
      3. Press the NC button to switch Space Q45 to other modes (noise cancelling/normal/transparency) to see if the problem still persists or not.
      4. Try using Space Q45 with another device.
      5. Use Space Q45 in wired mode to see if it works.
      6. Make sure that the sound setting of your Bluetooth device is not skewed to one side.

    • What should I do if I hear background noises or screeching sounds?

      1. "Forget" Space Q45 in your device's Bluetooth history and restart your device.
      2. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      3. Test these headphones with a different Bluetooth device and audio sources.
      4. Press the NC button to switch Space Q45 to other modes (noise cancelling/normal/transparency) to see if the problem still persists or not.
      5. Try Space Q45 in a different environment. Does this issue persists on a busy street or on a quiet environment?
      6. Upgrade the firmware to the latest version via the soundcore app.

    • What should I do if the sound quality is poor in Bluetooth mode?

      1. Make sure you're wearing Space Q45 in the correct position so that they create a tight seal. This will enhance the sound quality and noise cancellation effect.
      2. Try different types of music and make sure the input audio source has no distortion or noise.
      3. Try different EQ modes on the soundcore app and customize the EQ to your preference.
      4. If you're using an Android phone that supports LDAC, turn it on and see if it helps.
      5. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.

    • What should I do if the sound quality is poor in wired mode?

      1. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      2. Try different types of music and make sure the input audio source quality has no distortion or noise.
      3. Try using the AUX cable with your other devices to see if there's a problem with it.
      4. Use another AUX cable to connect to Space Q45 headphones to see if it works.

    • What should I do if there are interruptions when listening in LDAC mode or multipoint mode?

      1. Bluetooth signals may be influenced by obstructions, such as walls, pillars, home appliances, Wi-Fi, and more. To ensure a stable connection, we recommend avoiding such obstructions.
      2. "Forget" the headphones in your device's Bluetooth history. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      3. Test Space Q45 with a different Bluetooth device and audio sources.
      4. Upgrade the firmware to the latest version via the soundcore app.
      5. Please note, LDAC mode is disabled when using multipoint connection because of the Bluetooth transmission limit.

    • What's the differences between Adaptive Noise Cancelling and Custom Noise Cancelling?

      Adaptive Noise Cancelling: Automatically adapts to the best noise reduction effect according to the level of noise in your surroundings.
      Custom Noise Cancelling: There are 5 levels of noise reduction. The higher the noise reduction level, the stronger the low frequency noise reduction effect.

    • What should I do if Space Q45's noise cancellation performance is poor?

      1. Make sure you're wearing the left and right ear cups on the correct side of your head. Adjust the sliders on the headband so that the ear cups cover your ears and are not blocked by hair.
      2. Make sure you are using noise cancelling mode and select Level 5 noise canceling on the soundcore app.
      3. Test Space Q45 in different environments to see if it affects the performance.

      Note: Space Q45's noise cancelling detect and cancels out a wide range of low and mid-frequency noises such as cars and airplane engines, but they cannot cancel all the noise around us. Human voices can be reduced but can not be completely eliminated.

    • How do I use Space Q45 to make/receive a call when connected to a computer?

      For Windows computers, use the following steps:
      1. System settings:
      Output settings: soundcore Space Q45 Stereo
      Input settings: soundcore Space Q45 Hands-Free AG Audio
      2. Call software settings:
      Mic and speaker options: soundcore Space Q45 Hands-Free AG Audio

      For Mac computers, use the following steps:
      1. System Preferences > Sound > Output > Select "soundcore Space Q45 Stereo"
      System Preferences > Sound > Input > Select "soundcore Space Q45 Hands-Free AG Audio"
      2. Call software settings:
      Mic and speaker options: soundcore Space Q45 Hands-Free AG Audio

    • What should I do if Space Q45 has a low microphone volume?

      1. Make sure you wear Space Q45 correctly and avoid wearing the left and right ear cups on the wrong sides since the microphone is located in the right front of the right ear cup.
      2. Choose Space Q45 as the microphone output on the connected device.
      3. "Forget" Space Q45 in your device's Bluetooth history and reset by holding down the Power and Volume+ buttons for 5 seconds, and then re-pair.
      4. Test Space Q45 with a different Bluetooth device in a different environment to see if it makes any difference.
      5. If you make a call via an app, please try using your phone to make a call instead to see if the problem still persists.
      6. Upgrade the firmware to the latest version via the soundcore app.

    • What should I do if the microphone picks up surrounding noise during calls?

      1. "Forget" Space Q45 in your device's Bluetooth history and restart your Bluetooth device.
      2. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      3. Use noise cancelling mode while making calls to see if it helps.
      4. Try testing Space Q45 with a different Bluetooth device in a different environment to see if it makes any difference.
      5. Upgrade the firmware to the latest version via the soundcore app.

    • How do I connect Space Q45 to the soundcore app?

      1. Download the soundcore app from the app Store or Google Play.
      2. Pair Space Q45 with your phone.
      3. Open the soundcore app, and go to Add Devices > Headphones. The app will identify your device, and you can press "Space Q45" to connect it.

    • What should I do if Space Q45 can not be found in the soundcore app?

      1. Forget the pairing record on your phone, and hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      2. Pair Space Q45 with your phone.
      3. Open the soundcore app, and go to Add Devices > Headphones. The app will identify your device and you can press "Space Q45" to connect it.
      4. If you cannot find Space Q45, select "Don't See Your Device" at the bottom and go to Space series > Space Q45.
      5. If you still cannot find Space Q45 in the list, please update the app to the latest version or uninstall then reinstall the app.

      Note:
      - The soundcore app can only be opened on one Bluetooth device, and it cannot be opened when the iPhone is on call status.
      - Currently, the soundcore app is only available on phones.

    • How do I activate voice assistants like Siri?

      Press the Play/Pause button twice.

    • What do the different LED indicators mean?

      Charging: Steady red
      Fully charged: Off

      Power on: Flashes white 3 times quickly, then turns on
      Power off: Flashes white 3 times quickly, then turns off

      In pairing mode: Flash blue quickly
      When connected: Steady blue for 3 seconds, then turns off
      Out of Bluetooth connection range (waiting to reconnect): Flash blue slowly

      Bluetooth and charging indicators: On left ear cup
      Reset: Flashes red slowly 3 times

    • How do I turn Space Q45 on/off?

      Press the Power button for 2 seconds to turn Space Q45 on and off.

    • How do I adjust the volume?

      Press the Volume +/- buttons to adjust the volume.

    • How do I switch between ANC, Normal, and Transparency modes?

      Method 1: Press NC button
      Press the "NC" button to cycle between the modes. The order is: Noise Cancelling (default) > Transparency > Normal.

      Method 2: soundcore app
      Manually switch between the three modes and customize the level of noise cancelling and transparency.

      Note: On the soundcore app, you can also customize the button functions by going to "Controls".

    • How do I go to the previous/next song?

      - Long press the Volume+ button for 2 seconds to go to the next song.
      - Long press the Volume- button for 2 seconds to go to the previous song.

    • How do I reset Space Q45?

      Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.

    • How do I turn LDAC on/off?

      1. Pair Space Q45 headphones to your phone and then connect to the soundcore app.
      2. Go to Settings > Sound Mode > Preferred Audio Quality (LDAC) to turn on.

    • How do I turn Wind Noise Reduction on/off?

      1. Pair Space Q45 headphones to your phone and then connect to the soundcore app.
      2. Go to Settings > Wind Noise Reduction to turn on.

    • How do I turn Prompt Tone on/off?

      1. Pair Space Q45 with your phone and then connect to the soundcore app.
      2. Go to Settings > Prompt Tone to turn off.

    • How do I activate noise cancelling when connected via an AUX cable?

      When the AUX cable is plugged into Space Q45, you can short press the NC button to activate noise canceling.

    • What should I do if the firmware update fails?

      Try the following tips:
      - Don't upgrade the firmware when there are other sources of interference around. If it fails, try to upgrade it again.
      - Uninstall and reinstall the soundcore app.
      - Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      - Try to upgrade the firmware using another device.

    • How should I look after Space Q45?

      1. Do not leave Space Q45 unused for a long time. We recommend that you use Space Q45 at least once a month.
      2. Try charging Space Q45 before the battery drains completely or is lower than 20%.
      3. Space Q45 should be stored in a clean, dry area, and placed in a box or bag to avoid excessive external damage.
      4. The ear pads and headband pads should be cleaned frequently.
      5. Long-term storage after sweating will cause the leather to become moldy and discolored. It is recommended to clean it with a cotton cloth after use.

    • Charging

      • How long does it to fully charge Space Q45?

        It takes around 2 hours to fully charge Space Q45 headphones in a normal indoor environment, but charging may take a little longer in low temperatures.

      • What is Space Q45's playtime with a full charge?

        - Playtime with active noise cancelling off: 65 hours at 60% volume
        - Playtime with active noise cancelling on: 50 hours at 60% volume
        - A 5-minute charge gives you 4 hours of listening

        Note: The playing time may vary slightly based on the music content. If you use the headphones to make/receive a call, the playtime will be reduced as the microphone consumes more power than when listening to music.

      • Can I use Space Q45 while they're charging?

        No, Space Q45 cannot be used while charging.

      • What should I do if Space Q45 cannot hold a charge, doesn't power on, or cannot be fully charged?

        1. Try a different wall charger (it's best to use a 5V charger) and cable to charge the headphones for at least 24 hours no matter if the indicator is on or off.
        2. Make sure the wall charger and cable you're using work correctly with other devices.
        3. Reset Space Q45 by holding down the power button and Volume+ for 5 seconds.

      • What should I do if Space Q45's battery discharges quickly?

        1. Try a different wall charger (it's best to use a 5V charger) and cable to charge the headphones for at least 24 hours no matter if the indicator is on or off.
        2. Make sure the wall charger and cable you're using work correctly with other devices.
        3. After fully charging Space Q45, test the playtime again at 60% volume.

    • Bluetooth

      • What Bluetooth codecs does Space Q45 support?

        Space Q45 supports AAC, SBC, and LDAC.

      • What should I do if any of the following problems occur?
        - Cannot pair or reconnect with my device.
        - Cannot detect Space Q45 on the Bluetooth device.

        1. Restart the Bluetooth device, forget all the pairing records on your device, and turn off Bluetooth.
        2. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        3. Turn on the Bluetooth of your device and search for soundcore Space Q45 and pair.
        4. Test your Space Q45 with a different Bluetooth device to see if the problem still persists.

      • How do I pair Space Q45 with a second Bluetooth device, and how do I activate multipoint connection?

        1. Pair Space Q45 headphones with the first Bluetooth device.
        2. Double click the Power button so that Space Q45 enters the pairing status again. The LED will flash blue.
        3. Select "soundcore Space Q45" in the Bluetooth device list of the second device. The headset will be paired with the second device. The indicator will be steady blue for 3 seconds, then turn off.

      • How do I pair with a different Bluetooth device when Space Q45 is already paired to two Bluetooth devices?

        If soundcore Space Q45 is already connected to two Bluetooth devices, double-clicking the power button cannot make them enter pairing status. If you still need to pair a new device to Space Q45, there are two ways to do it:
        1. You need to manually disconnect a connected device, so that the headset will directly enter the pairing status.
        2. You can view the connection status and connected device history in the soundcore app. You can manually disconnect one of the devices and then connect a new device in the app.

      • What should I do if Space Q45 disconnects or the sound is interrupted?

        This doesn't necessarily mean there is an issue with the headphones. The issue could be with the Bluetooth connection, the connected device, or the environment. Bluetooth signals may be affected by obstructions such as walls, pillars, home appliances, Wi-Fi, and more. To ensure a stable connection, we recommend avoiding such obstructions.

        To fix this issue, please try the following:

        1. "Forget" Space Q45 in your device's Bluetooth history.
        2. Fully charge Space Q45 and hold the Power and Volume+ buttons at the same time for 5 seconds to reset. The indicator will flash red 3 times. This confirms that the reset is successful.
        3. Check Space Q45 by listening to downloaded music/video.
        4. Check Space Q45 with another Bluetooth device in a different environment to see if it works well.
        5. Try to turn off the Bluetooth Codec SBC and turn on AAC.

      • What should I do if there is an audio delay?

        There will always be a very small delay between wireless headphones and Bluetooth devices due to the limitation of Bluetooth technology. Normally, it will not be noticeable and will not affect your experience. Noticeable delays can be related to the true wireless earbuds, the connected device, audio source, app, and network.

        To locate the issue, try the following:

        1. "Forget" Space Q45 in your device's Bluetooth history and restart your Bluetooth device.
        2. Reset Space Q45 by holding down the Power and Volume+ buttons for 5 seconds.
        3. Test Space Q45 with a different Bluetooth device, app, and downloaded music/video to see if the problem still persists or not.
        4. Ensure there are no physical objects hindering the Bluetooth connection from Space Q45 to the device they're connected to (such as a doorway or wall).

    • Sound

      • What should I do if one side of Space Q45 does not emit any sound or the sound is lower on one side?

        1. Fully charge Space Q45 and restart your Bluetooth device.
        2. Reset the headphones by holding down the Power and Volume+ buttons for 5 seconds.
        3. Press the NC button to switch Space Q45 to other modes (noise cancelling/normal/transparency) to see if the problem still persists or not.
        4. Try using Space Q45 with another device.
        5. Use Space Q45 in wired mode to see if it works.
        6. Make sure that the sound setting of your Bluetooth device is not skewed to one side.

      • What should I do if I hear background noises or screeching sounds?

        1. "Forget" Space Q45 in your device's Bluetooth history and restart your device.
        2. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        3. Test these headphones with a different Bluetooth device and audio sources.
        4. Press the NC button to switch Space Q45 to other modes (noise cancelling/normal/transparency) to see if the problem still persists or not.
        5. Try Space Q45 in a different environment. Does this issue persists on a busy street or on a quiet environment?
        6. Upgrade the firmware to the latest version via the soundcore app.

      • What should I do if the sound quality is poor in Bluetooth mode?

        1. Make sure you're wearing Space Q45 in the correct position so that they create a tight seal. This will enhance the sound quality and noise cancellation effect.
        2. Try different types of music and make sure the input audio source has no distortion or noise.
        3. Try different EQ modes on the soundcore app and customize the EQ to your preference.
        4. If you're using an Android phone that supports LDAC, turn it on and see if it helps.
        5. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.

      • What should I do if the sound quality is poor in wired mode?

        1. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        2. Try different types of music and make sure the input audio source quality has no distortion or noise.
        3. Try using the AUX cable with your other devices to see if there's a problem with it.
        4. Use another AUX cable to connect to Space Q45 headphones to see if it works.

      • What should I do if there are interruptions when listening in LDAC mode or multipoint mode?

        1. Bluetooth signals may be influenced by obstructions, such as walls, pillars, home appliances, Wi-Fi, and more. To ensure a stable connection, we recommend avoiding such obstructions.
        2. "Forget" the headphones in your device's Bluetooth history. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        3. Test Space Q45 with a different Bluetooth device and audio sources.
        4. Upgrade the firmware to the latest version via the soundcore app.
        5. Please note, LDAC mode is disabled when using multipoint connection because of the Bluetooth transmission limit.

    • ANC

      • What's the differences between Adaptive Noise Cancelling and Custom Noise Cancelling?

        Adaptive Noise Cancelling: Automatically adapts to the best noise reduction effect according to the level of noise in your surroundings.
        Custom Noise Cancelling: There are 5 levels of noise reduction. The higher the noise reduction level, the stronger the low frequency noise reduction effect.

      • What should I do if Space Q45's noise cancellation performance is poor?

        1. Make sure you're wearing the left and right ear cups on the correct side of your head. Adjust the sliders on the headband so that the ear cups cover your ears and are not blocked by hair.
        2. Make sure you are using noise cancelling mode and select Level 5 noise canceling on the soundcore app.
        3. Test Space Q45 in different environments to see if it affects the performance.

        Note: Space Q45's noise cancelling detect and cancels out a wide range of low and mid-frequency noises such as cars and airplane engines, but they cannot cancel all the noise around us. Human voices can be reduced but can not be completely eliminated.

    • Mic

      • How do I use Space Q45 to make/receive a call when connected to a computer?

        For Windows computers, use the following steps:
        1. System settings:
        Output settings: soundcore Space Q45 Stereo
        Input settings: soundcore Space Q45 Hands-Free AG Audio
        2. Call software settings:
        Mic and speaker options: soundcore Space Q45 Hands-Free AG Audio

        For Mac computers, use the following steps:
        1. System Preferences > Sound > Output > Select "soundcore Space Q45 Stereo"
        System Preferences > Sound > Input > Select "soundcore Space Q45 Hands-Free AG Audio"
        2. Call software settings:
        Mic and speaker options: soundcore Space Q45 Hands-Free AG Audio

      • What should I do if Space Q45 has a low microphone volume?

        1. Make sure you wear Space Q45 correctly and avoid wearing the left and right ear cups on the wrong sides since the microphone is located in the right front of the right ear cup.
        2. Choose Space Q45 as the microphone output on the connected device.
        3. "Forget" Space Q45 in your device's Bluetooth history and reset by holding down the Power and Volume+ buttons for 5 seconds, and then re-pair.
        4. Test Space Q45 with a different Bluetooth device in a different environment to see if it makes any difference.
        5. If you make a call via an app, please try using your phone to make a call instead to see if the problem still persists.
        6. Upgrade the firmware to the latest version via the soundcore app.

      • What should I do if the microphone picks up surrounding noise during calls?

        1. "Forget" Space Q45 in your device's Bluetooth history and restart your Bluetooth device.
        2. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        3. Use noise cancelling mode while making calls to see if it helps.
        4. Try testing Space Q45 with a different Bluetooth device in a different environment to see if it makes any difference.
        5. Upgrade the firmware to the latest version via the soundcore app.

    • Operation

      • How do I connect Space Q45 to the soundcore app?

        1. Download the soundcore app from the app Store or Google Play.
        2. Pair Space Q45 with your phone.
        3. Open the soundcore app, and go to Add Devices > Headphones. The app will identify your device, and you can press "Space Q45" to connect it.

      • What should I do if Space Q45 can not be found in the soundcore app?

        1. Forget the pairing record on your phone, and hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        2. Pair Space Q45 with your phone.
        3. Open the soundcore app, and go to Add Devices > Headphones. The app will identify your device and you can press "Space Q45" to connect it.
        4. If you cannot find Space Q45, select "Don't See Your Device" at the bottom and go to Space series > Space Q45.
        5. If you still cannot find Space Q45 in the list, please update the app to the latest version or uninstall then reinstall the app.

        Note:
        - The soundcore app can only be opened on one Bluetooth device, and it cannot be opened when the iPhone is on call status.
        - Currently, the soundcore app is only available on phones.

      • How do I activate voice assistants like Siri?

        Press the Play/Pause button twice.

      • What do the different LED indicators mean?

        Charging: Steady red
        Fully charged: Off

        Power on: Flashes white 3 times quickly, then turns on
        Power off: Flashes white 3 times quickly, then turns off

        In pairing mode: Flash blue quickly
        When connected: Steady blue for 3 seconds, then turns off
        Out of Bluetooth connection range (waiting to reconnect): Flash blue slowly

        Bluetooth and charging indicators: On left ear cup
        Reset: Flashes red slowly 3 times

      • How do I turn Space Q45 on/off?

        Press the Power button for 2 seconds to turn Space Q45 on and off.

      • How do I adjust the volume?

        Press the Volume +/- buttons to adjust the volume.

      • How do I switch between ANC, Normal, and Transparency modes?

        Method 1: Press NC button
        Press the "NC" button to cycle between the modes. The order is: Noise Cancelling (default) > Transparency > Normal.

        Method 2: soundcore app
        Manually switch between the three modes and customize the level of noise cancelling and transparency.

        Note: On the soundcore app, you can also customize the button functions by going to "Controls".

      • How do I go to the previous/next song?

        - Long press the Volume+ button for 2 seconds to go to the next song.
        - Long press the Volume- button for 2 seconds to go to the previous song.

      • How do I reset Space Q45?

        Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.

      • How do I turn LDAC on/off?

        1. Pair Space Q45 headphones to your phone and then connect to the soundcore app.
        2. Go to Settings > Sound Mode > Preferred Audio Quality (LDAC) to turn on.

      • How do I turn Wind Noise Reduction on/off?

        1. Pair Space Q45 headphones to your phone and then connect to the soundcore app.
        2. Go to Settings > Wind Noise Reduction to turn on.

      • How do I turn Prompt Tone on/off?

        1. Pair Space Q45 with your phone and then connect to the soundcore app.
        2. Go to Settings > Prompt Tone to turn off.

      • How do I activate noise cancelling when connected via an AUX cable?

        When the AUX cable is plugged into Space Q45, you can short press the NC button to activate noise canceling.

      • What should I do if the firmware update fails?

        Try the following tips:
        - Don't upgrade the firmware when there are other sources of interference around. If it fails, try to upgrade it again.
        - Uninstall and reinstall the soundcore app.
        - Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        - Try to upgrade the firmware using another device.

      • How should I look after Space Q45?

        1. Do not leave Space Q45 unused for a long time. We recommend that you use Space Q45 at least once a month.
        2. Try charging Space Q45 before the battery drains completely or is lower than 20%.
        3. Space Q45 should be stored in a clean, dry area, and placed in a box or bag to avoid excessive external damage.
        4. The ear pads and headband pads should be cleaned frequently.
        5. Long-term storage after sweating will cause the leather to become moldy and discolored. It is recommended to clean it with a cotton cloth after use.

    • Documents & Drivers

      • Declaration of Conformity

        A3040-EU UKCA DOC

        2022-10-27

    • Charging
    • Bluetooth
    • Sound
    • ANC
    • Mic
    • Operation
    • Documents & Drivers
    • How long does it to fully charge Space Q45?

      It takes around 2 hours to fully charge Space Q45 headphones in a normal indoor environment, but charging may take a little longer in low temperatures.

    • What is Space Q45's playtime with a full charge?

      - Playtime with active noise cancelling off: 65 hours at 60% volume
      - Playtime with active noise cancelling on: 50 hours at 60% volume
      - A 5-minute charge gives you 4 hours of listening

      Note: The playing time may vary slightly based on the music content. If you use the headphones to make/receive a call, the playtime will be reduced as the microphone consumes more power than when listening to music.

    • Can I use Space Q45 while they're charging?

      No, Space Q45 cannot be used while charging.

    • What should I do if Space Q45 cannot hold a charge, doesn't power on, or cannot be fully charged?

      1. Try a different wall charger (it's best to use a 5V charger) and cable to charge the headphones for at least 24 hours no matter if the indicator is on or off.
      2. Make sure the wall charger and cable you're using work correctly with other devices.
      3. Reset Space Q45 by holding down the power button and Volume+ for 5 seconds.

    • What should I do if Space Q45's battery discharges quickly?

      1. Try a different wall charger (it's best to use a 5V charger) and cable to charge the headphones for at least 24 hours no matter if the indicator is on or off.
      2. Make sure the wall charger and cable you're using work correctly with other devices.
      3. After fully charging Space Q45, test the playtime again at 60% volume.

    • What Bluetooth codecs does Space Q45 support?

      Space Q45 supports AAC, SBC, and LDAC.

    • What should I do if any of the following problems occur?
      - Cannot pair or reconnect with my device.
      - Cannot detect Space Q45 on the Bluetooth device.

      1. Restart the Bluetooth device, forget all the pairing records on your device, and turn off Bluetooth.
      2. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      3. Turn on the Bluetooth of your device and search for soundcore Space Q45 and pair.
      4. Test your Space Q45 with a different Bluetooth device to see if the problem still persists.

    • How do I pair Space Q45 with a second Bluetooth device, and how do I activate multipoint connection?

      1. Pair Space Q45 headphones with the first Bluetooth device.
      2. Double click the Power button so that Space Q45 enters the pairing status again. The LED will flash blue.
      3. Select "soundcore Space Q45" in the Bluetooth device list of the second device. The headset will be paired with the second device. The indicator will be steady blue for 3 seconds, then turn off.

    • How do I pair with a different Bluetooth device when Space Q45 is already paired to two Bluetooth devices?

      If soundcore Space Q45 is already connected to two Bluetooth devices, double-clicking the power button cannot make them enter pairing status. If you still need to pair a new device to Space Q45, there are two ways to do it:
      1. You need to manually disconnect a connected device, so that the headset will directly enter the pairing status.
      2. You can view the connection status and connected device history in the soundcore app. You can manually disconnect one of the devices and then connect a new device in the app.

    • What should I do if Space Q45 disconnects or the sound is interrupted?

      This doesn't necessarily mean there is an issue with the headphones. The issue could be with the Bluetooth connection, the connected device, or the environment. Bluetooth signals may be affected by obstructions such as walls, pillars, home appliances, Wi-Fi, and more. To ensure a stable connection, we recommend avoiding such obstructions.

      To fix this issue, please try the following:

      1. "Forget" Space Q45 in your device's Bluetooth history.
      2. Fully charge Space Q45 and hold the Power and Volume+ buttons at the same time for 5 seconds to reset. The indicator will flash red 3 times. This confirms that the reset is successful.
      3. Check Space Q45 by listening to downloaded music/video.
      4. Check Space Q45 with another Bluetooth device in a different environment to see if it works well.
      5. Try to turn off the Bluetooth Codec SBC and turn on AAC.

    • What should I do if there is an audio delay?

      There will always be a very small delay between wireless headphones and Bluetooth devices due to the limitation of Bluetooth technology. Normally, it will not be noticeable and will not affect your experience. Noticeable delays can be related to the true wireless earbuds, the connected device, audio source, app, and network.

      To locate the issue, try the following:

      1. "Forget" Space Q45 in your device's Bluetooth history and restart your Bluetooth device.
      2. Reset Space Q45 by holding down the Power and Volume+ buttons for 5 seconds.
      3. Test Space Q45 with a different Bluetooth device, app, and downloaded music/video to see if the problem still persists or not.
      4. Ensure there are no physical objects hindering the Bluetooth connection from Space Q45 to the device they're connected to (such as a doorway or wall).

    • What should I do if one side of Space Q45 does not emit any sound or the sound is lower on one side?

      1. Fully charge Space Q45 and restart your Bluetooth device.
      2. Reset the headphones by holding down the Power and Volume+ buttons for 5 seconds.
      3. Press the NC button to switch Space Q45 to other modes (noise cancelling/normal/transparency) to see if the problem still persists or not.
      4. Try using Space Q45 with another device.
      5. Use Space Q45 in wired mode to see if it works.
      6. Make sure that the sound setting of your Bluetooth device is not skewed to one side.

    • What should I do if I hear background noises or screeching sounds?

      1. "Forget" Space Q45 in your device's Bluetooth history and restart your device.
      2. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      3. Test these headphones with a different Bluetooth device and audio sources.
      4. Press the NC button to switch Space Q45 to other modes (noise cancelling/normal/transparency) to see if the problem still persists or not.
      5. Try Space Q45 in a different environment. Does this issue persists on a busy street or on a quiet environment?
      6. Upgrade the firmware to the latest version via the soundcore app.

    • What should I do if the sound quality is poor in Bluetooth mode?

      1. Make sure you're wearing Space Q45 in the correct position so that they create a tight seal. This will enhance the sound quality and noise cancellation effect.
      2. Try different types of music and make sure the input audio source has no distortion or noise.
      3. Try different EQ modes on the soundcore app and customize the EQ to your preference.
      4. If you're using an Android phone that supports LDAC, turn it on and see if it helps.
      5. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.

    • What should I do if the sound quality is poor in wired mode?

      1. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      2. Try different types of music and make sure the input audio source quality has no distortion or noise.
      3. Try using the AUX cable with your other devices to see if there's a problem with it.
      4. Use another AUX cable to connect to Space Q45 headphones to see if it works.

    • What should I do if there are interruptions when listening in LDAC mode or multipoint mode?

      1. Bluetooth signals may be influenced by obstructions, such as walls, pillars, home appliances, Wi-Fi, and more. To ensure a stable connection, we recommend avoiding such obstructions.
      2. "Forget" the headphones in your device's Bluetooth history. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      3. Test Space Q45 with a different Bluetooth device and audio sources.
      4. Upgrade the firmware to the latest version via the soundcore app.
      5. Please note, LDAC mode is disabled when using multipoint connection because of the Bluetooth transmission limit.

    • What's the differences between Adaptive Noise Cancelling and Custom Noise Cancelling?

      Adaptive Noise Cancelling: Automatically adapts to the best noise reduction effect according to the level of noise in your surroundings.
      Custom Noise Cancelling: There are 5 levels of noise reduction. The higher the noise reduction level, the stronger the low frequency noise reduction effect.

    • What should I do if Space Q45's noise cancellation performance is poor?

      1. Make sure you're wearing the left and right ear cups on the correct side of your head. Adjust the sliders on the headband so that the ear cups cover your ears and are not blocked by hair.
      2. Make sure you are using noise cancelling mode and select Level 5 noise canceling on the soundcore app.
      3. Test Space Q45 in different environments to see if it affects the performance.

      Note: Space Q45's noise cancelling detect and cancels out a wide range of low and mid-frequency noises such as cars and airplane engines, but they cannot cancel all the noise around us. Human voices can be reduced but can not be completely eliminated.

    • How do I use Space Q45 to make/receive a call when connected to a computer?

      For Windows computers, use the following steps:
      1. System settings:
      Output settings: soundcore Space Q45 Stereo
      Input settings: soundcore Space Q45 Hands-Free AG Audio
      2. Call software settings:
      Mic and speaker options: soundcore Space Q45 Hands-Free AG Audio

      For Mac computers, use the following steps:
      1. System Preferences > Sound > Output > Select "soundcore Space Q45 Stereo"
      System Preferences > Sound > Input > Select "soundcore Space Q45 Hands-Free AG Audio"
      2. Call software settings:
      Mic and speaker options: soundcore Space Q45 Hands-Free AG Audio

    • What should I do if Space Q45 has a low microphone volume?

      1. Make sure you wear Space Q45 correctly and avoid wearing the left and right ear cups on the wrong sides since the microphone is located in the right front of the right ear cup.
      2. Choose Space Q45 as the microphone output on the connected device.
      3. "Forget" Space Q45 in your device's Bluetooth history and reset by holding down the Power and Volume+ buttons for 5 seconds, and then re-pair.
      4. Test Space Q45 with a different Bluetooth device in a different environment to see if it makes any difference.
      5. If you make a call via an app, please try using your phone to make a call instead to see if the problem still persists.
      6. Upgrade the firmware to the latest version via the soundcore app.

    • What should I do if the microphone picks up surrounding noise during calls?

      1. "Forget" Space Q45 in your device's Bluetooth history and restart your Bluetooth device.
      2. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      3. Use noise cancelling mode while making calls to see if it helps.
      4. Try testing Space Q45 with a different Bluetooth device in a different environment to see if it makes any difference.
      5. Upgrade the firmware to the latest version via the soundcore app.

    • How do I connect Space Q45 to the soundcore app?

      1. Download the soundcore app from the app Store or Google Play.
      2. Pair Space Q45 with your phone.
      3. Open the soundcore app, and go to Add Devices > Headphones. The app will identify your device, and you can press "Space Q45" to connect it.

    • What should I do if Space Q45 can not be found in the soundcore app?

      1. Forget the pairing record on your phone, and hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      2. Pair Space Q45 with your phone.
      3. Open the soundcore app, and go to Add Devices > Headphones. The app will identify your device and you can press "Space Q45" to connect it.
      4. If you cannot find Space Q45, select "Don't See Your Device" at the bottom and go to Space series > Space Q45.
      5. If you still cannot find Space Q45 in the list, please update the app to the latest version or uninstall then reinstall the app.

      Note:
      - The soundcore app can only be opened on one Bluetooth device, and it cannot be opened when the iPhone is on call status.
      - Currently, the soundcore app is only available on phones.

    • How do I activate voice assistants like Siri?

      Press the Play/Pause button twice.

    • What do the different LED indicators mean?

      Charging: Steady red
      Fully charged: Off

      Power on: Flashes white 3 times quickly, then turns on
      Power off: Flashes white 3 times quickly, then turns off

      In pairing mode: Flash blue quickly
      When connected: Steady blue for 3 seconds, then turns off
      Out of Bluetooth connection range (waiting to reconnect): Flash blue slowly

      Bluetooth and charging indicators: On left ear cup
      Reset: Flashes red slowly 3 times

    • How do I turn Space Q45 on/off?

      Press the Power button for 2 seconds to turn Space Q45 on and off.

    • How do I adjust the volume?

      Press the Volume +/- buttons to adjust the volume.

    • How do I switch between ANC, Normal, and Transparency modes?

      Method 1: Press NC button
      Press the "NC" button to cycle between the modes. The order is: Noise Cancelling (default) > Transparency > Normal.

      Method 2: soundcore app
      Manually switch between the three modes and customize the level of noise cancelling and transparency.

      Note: On the soundcore app, you can also customize the button functions by going to "Controls".

    • How do I go to the previous/next song?

      - Long press the Volume+ button for 2 seconds to go to the next song.
      - Long press the Volume- button for 2 seconds to go to the previous song.

    • How do I reset Space Q45?

      Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.

    • How do I turn LDAC on/off?

      1. Pair Space Q45 headphones to your phone and then connect to the soundcore app.
      2. Go to Settings > Sound Mode > Preferred Audio Quality (LDAC) to turn on.

    • How do I turn Wind Noise Reduction on/off?

      1. Pair Space Q45 headphones to your phone and then connect to the soundcore app.
      2. Go to Settings > Wind Noise Reduction to turn on.

    • How do I turn Prompt Tone on/off?

      1. Pair Space Q45 with your phone and then connect to the soundcore app.
      2. Go to Settings > Prompt Tone to turn off.

    • How do I activate noise cancelling when connected via an AUX cable?

      When the AUX cable is plugged into Space Q45, you can short press the NC button to activate noise canceling.

    • What should I do if the firmware update fails?

      Try the following tips:
      - Don't upgrade the firmware when there are other sources of interference around. If it fails, try to upgrade it again.
      - Uninstall and reinstall the soundcore app.
      - Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
      - Try to upgrade the firmware using another device.

    • How should I look after Space Q45?

      1. Do not leave Space Q45 unused for a long time. We recommend that you use Space Q45 at least once a month.
      2. Try charging Space Q45 before the battery drains completely or is lower than 20%.
      3. Space Q45 should be stored in a clean, dry area, and placed in a box or bag to avoid excessive external damage.
      4. The ear pads and headband pads should be cleaned frequently.
      5. Long-term storage after sweating will cause the leather to become moldy and discolored. It is recommended to clean it with a cotton cloth after use.

    • Declaration of Conformity

      A3040-EU UKCA DOC

      2022-10-27

    • Charging

      • How long does it to fully charge Space Q45?

        It takes around 2 hours to fully charge Space Q45 headphones in a normal indoor environment, but charging may take a little longer in low temperatures.

      • What is Space Q45's playtime with a full charge?

        - Playtime with active noise cancelling off: 65 hours at 60% volume
        - Playtime with active noise cancelling on: 50 hours at 60% volume
        - A 5-minute charge gives you 4 hours of listening

        Note: The playing time may vary slightly based on the music content. If you use the headphones to make/receive a call, the playtime will be reduced as the microphone consumes more power than when listening to music.

      • Can I use Space Q45 while they're charging?

        No, Space Q45 cannot be used while charging.

      • What should I do if Space Q45 cannot hold a charge, doesn't power on, or cannot be fully charged?

        1. Try a different wall charger (it's best to use a 5V charger) and cable to charge the headphones for at least 24 hours no matter if the indicator is on or off.
        2. Make sure the wall charger and cable you're using work correctly with other devices.
        3. Reset Space Q45 by holding down the power button and Volume+ for 5 seconds.

      • What should I do if Space Q45's battery discharges quickly?

        1. Try a different wall charger (it's best to use a 5V charger) and cable to charge the headphones for at least 24 hours no matter if the indicator is on or off.
        2. Make sure the wall charger and cable you're using work correctly with other devices.
        3. After fully charging Space Q45, test the playtime again at 60% volume.

    • Bluetooth

      • What Bluetooth codecs does Space Q45 support?

        Space Q45 supports AAC, SBC, and LDAC.

      • What should I do if any of the following problems occur?
        - Cannot pair or reconnect with my device.
        - Cannot detect Space Q45 on the Bluetooth device.

        1. Restart the Bluetooth device, forget all the pairing records on your device, and turn off Bluetooth.
        2. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        3. Turn on the Bluetooth of your device and search for soundcore Space Q45 and pair.
        4. Test your Space Q45 with a different Bluetooth device to see if the problem still persists.

      • How do I pair Space Q45 with a second Bluetooth device, and how do I activate multipoint connection?

        1. Pair Space Q45 headphones with the first Bluetooth device.
        2. Double click the Power button so that Space Q45 enters the pairing status again. The LED will flash blue.
        3. Select "soundcore Space Q45" in the Bluetooth device list of the second device. The headset will be paired with the second device. The indicator will be steady blue for 3 seconds, then turn off.

      • How do I pair with a different Bluetooth device when Space Q45 is already paired to two Bluetooth devices?

        If soundcore Space Q45 is already connected to two Bluetooth devices, double-clicking the power button cannot make them enter pairing status. If you still need to pair a new device to Space Q45, there are two ways to do it:
        1. You need to manually disconnect a connected device, so that the headset will directly enter the pairing status.
        2. You can view the connection status and connected device history in the soundcore app. You can manually disconnect one of the devices and then connect a new device in the app.

      • What should I do if Space Q45 disconnects or the sound is interrupted?

        This doesn't necessarily mean there is an issue with the headphones. The issue could be with the Bluetooth connection, the connected device, or the environment. Bluetooth signals may be affected by obstructions such as walls, pillars, home appliances, Wi-Fi, and more. To ensure a stable connection, we recommend avoiding such obstructions.

        To fix this issue, please try the following:

        1. "Forget" Space Q45 in your device's Bluetooth history.
        2. Fully charge Space Q45 and hold the Power and Volume+ buttons at the same time for 5 seconds to reset. The indicator will flash red 3 times. This confirms that the reset is successful.
        3. Check Space Q45 by listening to downloaded music/video.
        4. Check Space Q45 with another Bluetooth device in a different environment to see if it works well.
        5. Try to turn off the Bluetooth Codec SBC and turn on AAC.

      • What should I do if there is an audio delay?

        There will always be a very small delay between wireless headphones and Bluetooth devices due to the limitation of Bluetooth technology. Normally, it will not be noticeable and will not affect your experience. Noticeable delays can be related to the true wireless earbuds, the connected device, audio source, app, and network.

        To locate the issue, try the following:

        1. "Forget" Space Q45 in your device's Bluetooth history and restart your Bluetooth device.
        2. Reset Space Q45 by holding down the Power and Volume+ buttons for 5 seconds.
        3. Test Space Q45 with a different Bluetooth device, app, and downloaded music/video to see if the problem still persists or not.
        4. Ensure there are no physical objects hindering the Bluetooth connection from Space Q45 to the device they're connected to (such as a doorway or wall).

    • Sound

      • What should I do if one side of Space Q45 does not emit any sound or the sound is lower on one side?

        1. Fully charge Space Q45 and restart your Bluetooth device.
        2. Reset the headphones by holding down the Power and Volume+ buttons for 5 seconds.
        3. Press the NC button to switch Space Q45 to other modes (noise cancelling/normal/transparency) to see if the problem still persists or not.
        4. Try using Space Q45 with another device.
        5. Use Space Q45 in wired mode to see if it works.
        6. Make sure that the sound setting of your Bluetooth device is not skewed to one side.

      • What should I do if I hear background noises or screeching sounds?

        1. "Forget" Space Q45 in your device's Bluetooth history and restart your device.
        2. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        3. Test these headphones with a different Bluetooth device and audio sources.
        4. Press the NC button to switch Space Q45 to other modes (noise cancelling/normal/transparency) to see if the problem still persists or not.
        5. Try Space Q45 in a different environment. Does this issue persists on a busy street or on a quiet environment?
        6. Upgrade the firmware to the latest version via the soundcore app.

      • What should I do if the sound quality is poor in Bluetooth mode?

        1. Make sure you're wearing Space Q45 in the correct position so that they create a tight seal. This will enhance the sound quality and noise cancellation effect.
        2. Try different types of music and make sure the input audio source has no distortion or noise.
        3. Try different EQ modes on the soundcore app and customize the EQ to your preference.
        4. If you're using an Android phone that supports LDAC, turn it on and see if it helps.
        5. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.

      • What should I do if the sound quality is poor in wired mode?

        1. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        2. Try different types of music and make sure the input audio source quality has no distortion or noise.
        3. Try using the AUX cable with your other devices to see if there's a problem with it.
        4. Use another AUX cable to connect to Space Q45 headphones to see if it works.

      • What should I do if there are interruptions when listening in LDAC mode or multipoint mode?

        1. Bluetooth signals may be influenced by obstructions, such as walls, pillars, home appliances, Wi-Fi, and more. To ensure a stable connection, we recommend avoiding such obstructions.
        2. "Forget" the headphones in your device's Bluetooth history. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        3. Test Space Q45 with a different Bluetooth device and audio sources.
        4. Upgrade the firmware to the latest version via the soundcore app.
        5. Please note, LDAC mode is disabled when using multipoint connection because of the Bluetooth transmission limit.

    • ANC

      • What's the differences between Adaptive Noise Cancelling and Custom Noise Cancelling?

        Adaptive Noise Cancelling: Automatically adapts to the best noise reduction effect according to the level of noise in your surroundings.
        Custom Noise Cancelling: There are 5 levels of noise reduction. The higher the noise reduction level, the stronger the low frequency noise reduction effect.

      • What should I do if Space Q45's noise cancellation performance is poor?

        1. Make sure you're wearing the left and right ear cups on the correct side of your head. Adjust the sliders on the headband so that the ear cups cover your ears and are not blocked by hair.
        2. Make sure you are using noise cancelling mode and select Level 5 noise canceling on the soundcore app.
        3. Test Space Q45 in different environments to see if it affects the performance.

        Note: Space Q45's noise cancelling detect and cancels out a wide range of low and mid-frequency noises such as cars and airplane engines, but they cannot cancel all the noise around us. Human voices can be reduced but can not be completely eliminated.

    • Mic

      • How do I use Space Q45 to make/receive a call when connected to a computer?

        For Windows computers, use the following steps:
        1. System settings:
        Output settings: soundcore Space Q45 Stereo
        Input settings: soundcore Space Q45 Hands-Free AG Audio
        2. Call software settings:
        Mic and speaker options: soundcore Space Q45 Hands-Free AG Audio

        For Mac computers, use the following steps:
        1. System Preferences > Sound > Output > Select "soundcore Space Q45 Stereo"
        System Preferences > Sound > Input > Select "soundcore Space Q45 Hands-Free AG Audio"
        2. Call software settings:
        Mic and speaker options: soundcore Space Q45 Hands-Free AG Audio

      • What should I do if Space Q45 has a low microphone volume?

        1. Make sure you wear Space Q45 correctly and avoid wearing the left and right ear cups on the wrong sides since the microphone is located in the right front of the right ear cup.
        2. Choose Space Q45 as the microphone output on the connected device.
        3. "Forget" Space Q45 in your device's Bluetooth history and reset by holding down the Power and Volume+ buttons for 5 seconds, and then re-pair.
        4. Test Space Q45 with a different Bluetooth device in a different environment to see if it makes any difference.
        5. If you make a call via an app, please try using your phone to make a call instead to see if the problem still persists.
        6. Upgrade the firmware to the latest version via the soundcore app.

      • What should I do if the microphone picks up surrounding noise during calls?

        1. "Forget" Space Q45 in your device's Bluetooth history and restart your Bluetooth device.
        2. Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        3. Use noise cancelling mode while making calls to see if it helps.
        4. Try testing Space Q45 with a different Bluetooth device in a different environment to see if it makes any difference.
        5. Upgrade the firmware to the latest version via the soundcore app.

    • Operation

      • How do I connect Space Q45 to the soundcore app?

        1. Download the soundcore app from the app Store or Google Play.
        2. Pair Space Q45 with your phone.
        3. Open the soundcore app, and go to Add Devices > Headphones. The app will identify your device, and you can press "Space Q45" to connect it.

      • What should I do if Space Q45 can not be found in the soundcore app?

        1. Forget the pairing record on your phone, and hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        2. Pair Space Q45 with your phone.
        3. Open the soundcore app, and go to Add Devices > Headphones. The app will identify your device and you can press "Space Q45" to connect it.
        4. If you cannot find Space Q45, select "Don't See Your Device" at the bottom and go to Space series > Space Q45.
        5. If you still cannot find Space Q45 in the list, please update the app to the latest version or uninstall then reinstall the app.

        Note:
        - The soundcore app can only be opened on one Bluetooth device, and it cannot be opened when the iPhone is on call status.
        - Currently, the soundcore app is only available on phones.

      • How do I activate voice assistants like Siri?

        Press the Play/Pause button twice.

      • What do the different LED indicators mean?

        Charging: Steady red
        Fully charged: Off

        Power on: Flashes white 3 times quickly, then turns on
        Power off: Flashes white 3 times quickly, then turns off

        In pairing mode: Flash blue quickly
        When connected: Steady blue for 3 seconds, then turns off
        Out of Bluetooth connection range (waiting to reconnect): Flash blue slowly

        Bluetooth and charging indicators: On left ear cup
        Reset: Flashes red slowly 3 times

      • How do I turn Space Q45 on/off?

        Press the Power button for 2 seconds to turn Space Q45 on and off.

      • How do I adjust the volume?

        Press the Volume +/- buttons to adjust the volume.

      • How do I switch between ANC, Normal, and Transparency modes?

        Method 1: Press NC button
        Press the "NC" button to cycle between the modes. The order is: Noise Cancelling (default) > Transparency > Normal.

        Method 2: soundcore app
        Manually switch between the three modes and customize the level of noise cancelling and transparency.

        Note: On the soundcore app, you can also customize the button functions by going to "Controls".

      • How do I go to the previous/next song?

        - Long press the Volume+ button for 2 seconds to go to the next song.
        - Long press the Volume- button for 2 seconds to go to the previous song.

      • How do I reset Space Q45?

        Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.

      • How do I turn LDAC on/off?

        1. Pair Space Q45 headphones to your phone and then connect to the soundcore app.
        2. Go to Settings > Sound Mode > Preferred Audio Quality (LDAC) to turn on.

      • How do I turn Wind Noise Reduction on/off?

        1. Pair Space Q45 headphones to your phone and then connect to the soundcore app.
        2. Go to Settings > Wind Noise Reduction to turn on.

      • How do I turn Prompt Tone on/off?

        1. Pair Space Q45 with your phone and then connect to the soundcore app.
        2. Go to Settings > Prompt Tone to turn off.

      • How do I activate noise cancelling when connected via an AUX cable?

        When the AUX cable is plugged into Space Q45, you can short press the NC button to activate noise canceling.

      • What should I do if the firmware update fails?

        Try the following tips:
        - Don't upgrade the firmware when there are other sources of interference around. If it fails, try to upgrade it again.
        - Uninstall and reinstall the soundcore app.
        - Hold the Power and Volume+ buttons at the same time for 5 seconds to reset Space Q45. The indicator will flash red 3 times. This confirms that the reset is successful.
        - Try to upgrade the firmware using another device.

      • How should I look after Space Q45?

        1. Do not leave Space Q45 unused for a long time. We recommend that you use Space Q45 at least once a month.
        2. Try charging Space Q45 before the battery drains completely or is lower than 20%.
        3. Space Q45 should be stored in a clean, dry area, and placed in a box or bag to avoid excessive external damage.
        4. The ear pads and headband pads should be cleaned frequently.
        5. Long-term storage after sweating will cause the leather to become moldy and discolored. It is recommended to clean it with a cotton cloth after use.

    • Documents & Drivers

      • Declaration of Conformity

        A3040-EU UKCA DOC

        2022-10-27

    Customer Reviews

    Based on 364 reviews

    69%

    (250)

    24%

    (87)

    2%

    (9)

    3%

    (10)

    2%

    (8)

    j

    juanguizahiguera@gmail.com

    Great product

    Great product, very comfortable, the hinges are aluminum and very resistant, the ear pads are great, the sound sounds great to us, but the noise cancellation is the best part, it has 3 modes and it works perfect, you can also configure the sounds. parameters

    Space Q45 | Long-Lasting Noise Cancelling Headphones (60) Space Q45 | Long-Lasting Noise Cancelling Headphones (61) Space Q45 | Long-Lasting Noise Cancelling Headphones (62) Space Q45 | Long-Lasting Noise Cancelling Headphones (63) Space Q45 | Long-Lasting Noise Cancelling Headphones (64)

    M

    Munyaradzi zembe

    Best product ever

    Good battery life ⋅ Great sound ⋅ Excellent ANC performance

    Space Q45 | Long-Lasting Noise Cancelling Headphones (65)

    e

    e.n.

    Too big to even work for me

    I like the noise cancelling effect of the headphones; they work really well (when held in place over my ears). I’m a college student who lives next to two bars and it is really loud most nights, but these blocked out a lot of the noise when I tried them.
    But, I can’t even use them due to the size. I included photos of the headphones on my head at the smallest and largest adjustments. Even at the smallest size I can fit my entire hand between my head and the headphones. I have taken product design/industrial design courses, and while I’m impressed by the aesthetics of these headphones, it seems user testing missed the mark. I wouldn’t be surprised if these were designed with only the average male measurements in mind. For reference I am a 5’6” which is larger than the average American woman. I am not an especially small person. There are many people this product just can’t work for.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (66) Space Q45 | Long-Lasting Noise Cancelling Headphones (67)

    M

    Mick Jay

    Great quality

    Sleek design, quality sound

    Space Q45 | Long-Lasting Noise Cancelling Headphones (68)

    A

    An Vo

    Great ANC headphones for the price!

    1. Build quality: It’s a little platic-ish but not the worst. For the price, couldn’t ask for more. The frame feels sturdy, and I scratched it against my wall a few times, still no marks. The foams are comfortable, I have no issue wearing these for hours, and I wear glasses too!
    2. Sound: (subjective) The sound quality is great, I use the ‘Flat’ built-in preset through the app and it sounds amazing. ANC and Transparency modes aren’t the best, but still very good. I use these at the gym and it cut most of the gym music out. Wind noise, howere, is a little annoying (even with the Wind Reduction turnt on in the app). But its is phenomenal for its price.
    3. Cons: carrying case is probably my biggest issue with these. Everytime I put them, I feel like I have to crunch them, but it does comes with a hardcase, so once it’s in, I toss them in my backpack and have no worries about it.
    Overall pretty solid headphones, not XM5 level greatness, but still a very good purchase for me.

    Space Q45 | Long-Lasting Noise Cancelling Headphones (69)

    You may also like

    Space Q45 | Long-Lasting Noise Cancelling Headphones (71)

    Space Q45 | Long-Lasting Noise Cancelling Headphones (2024)
    Top Articles
    Latest Posts
    Article information

    Author: Roderick King

    Last Updated:

    Views: 5698

    Rating: 4 / 5 (51 voted)

    Reviews: 82% of readers found this page helpful

    Author information

    Name: Roderick King

    Birthday: 1997-10-09

    Address: 3782 Madge Knoll, East Dudley, MA 63913

    Phone: +2521695290067

    Job: Customer Sales Coordinator

    Hobby: Gunsmithing, Embroidery, Parkour, Kitesurfing, Rock climbing, Sand art, Beekeeping

    Introduction: My name is Roderick King, I am a cute, splendid, excited, perfect, gentle, funny, vivacious person who loves writing and wants to share my knowledge and understanding with you.