Life Q20 | Over-Ear Headphones with Hybrid ANC (2024)

Experience Immersive Listening with Hybrid ANC and Hi-Res Audio

  • HI-Res Audio: Balanced mid-range tones, crystal-clear highs, and our exclusive BassUp technology with 40 mm audio drivers for deep, intense Hi-Res sound reproduction. Even frequencies of up to 40 kHz are covered.
  • Active Noise Cancellation: Effectively reduces up to 90% of all external noise, such as cars and planes, thanks to its 4 built-in high-sensitivity ANC microphones - ideal for music while travelling or in noisy environments!
  • More Bass: Our exclusive BassUp technology analyses the sound profile in real time and automatically increases low frequencies by 43%. Hear more - feel more!
  • Non-Stop Music: Enjoy 30 hours of wireless playback time in ANC mode or even 60 hours of play time in standard mode! And when you’re in a hurry, your headphones will be charged for 4 hours of music within 5 minutes!
  • Comfort Comes First: The Q20 headphones' velvety soft foam ear pads, integrated in soft leather, give you flexible comfort while the headband's swivel joints find the ideal position for your head shape.
  • TCO Certified:For Better Sustainability.

Model Number: A3025

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 .gift-list .gift-title').length || $('.product-bundle .bundle-list .bundle-title').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('Sale Ends in.'); } 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('Sale Ends in.'); } 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; }})

69,99€

Life Q20 | Over-Ear Headphones with Hybrid ANC (49)

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.

${v.price}

${txt} `; }).join(''); $('.custom_variants_prescription_box').html(`

${MF.options_tit}

    ${dom}

`); $('.custom_variants_prescription').removeClass('swap--visible'); if (MF.show_prescription_txt) { const processDom = MF.process.map((v, i) => { const show = v.icon ? '' : 'swap--visible' return `

  • Life Q20 | Over-Ear Headphones with Hybrid ANC (53) Life Q20 | Over-Ear Headphones with Hybrid ANC (54)

    ${v.tit}

    ${v.desc}

  • ` }).join(''); const processTxtDom = MF.process_txt.map((v, i) => { const show = v.desc ? '' : 'swap--visible' return `

    ${v.tit}
      ${v.list}

    ${v.desc}

    ${v.tips}

    ` }).join(''); $('.prescription_txt').html(`

    ${MF.title}
      ${processDom}

    ${processTxtDom}

    `) $('.prescription_txt').removeClass('swap--visible') } else { $('.prescription_txt').addClass('swap--visible') } if (MF.hideQty == true) { $('.product_quantity, .purchase-details__quantity').addClass('swap--visible') $('.product_swatch').addClass('prescription') } else { $('.product_quantity, .purchase-details__quantity').removeClass('swap--visible') $('.product_swatch').removeClass('prescription') } } $(function() { if (custom_variants_prescription) { if (custom_variants_prescription.data.includes(v => v.sku == sku) > -1) { showPrescriptionBox(custom_variants_prescription.data, 'A3025011', custom_variants_prescription) } } })

    Email me when available

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

    Life Q20 | Over-Ear Headphones with Hybrid ANC

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

    • HI-Res Audio: Balanced mid-range tones, crystal-clear highs, and our exclusive BassUp technology with 40 mm audio drivers for deep, intense Hi-Res sound reproduction. Even frequencies of up to 40 kHz are covered.
    • Active Noise Cancellation: Effectively reduces up to 90% of all external noise, such as cars and planes, thanks to its 4 built-in high-sensitivity ANC microphones - ideal for music while travelling or in noisy environments!
    • More Bass: Our exclusive BassUp technology analyses the sound profile in real time and automatically increases low frequencies by 43%. Hear more - feel more!
    • Non-Stop Music: Enjoy 30 hours of wireless playback time in ANC mode or even 60 hours of play time in standard mode! And when you’re in a hurry, your headphones will be charged for 4 hours of music within 5 minutes!
    • Comfort Comes First: The Q20 headphones' velvety soft foam ear pads, integrated in soft leather, give you flexible comfort while the headband's swivel joints find the ideal position for your head shape.
    • TCO Certified:For Better Sustainability.

    See More

    Life Q20 | Over-Ear Headphones with Hybrid ANC

    Life Q20 | Over-Ear Headphones with Hybrid ANC (2024)

    FAQs

    Life Q20 | Over-Ear Headphones with Hybrid ANC? ›

    The headphones are more comfortable, and their active noise cancelling (ANC) makes them more commute-friendly, alongside their folding design.

    Does the Soundcore Q20 have noise cancellation? ›

    The headphones are more comfortable, and their active noise cancelling (ANC) makes them more commute-friendly, alongside their folding design.

    What is Anker Hybrid ANC? ›

    With hybrid active noise cancelling, background noise is reduced up to 90% to keep you fully immersed in your favorite music, games, or podcasts. Hear the World Around You. Find the ideal sound settings for your ears by switching between 4 EQ modes.

    Is ANC headphones worth buying? ›

    If you have an application which requires headphones, and ambient background noise is an issue, then noise-canceling headphones are appropriate. If you have a circ*mstance in which you need really good electronic earmuffs, then noise-canceling headphones are appropriate.

    What is hybrid active noise cancellation? ›

    By using both external and internal microphones, hybrid ANC is capable of canceling out a wider range of frequencies, providing a more immersive noise-canceling experience. With hybrid ANC, the external microphones capture ambient noise, while the internal microphones pick up the sound that reaches the listener's ears.

    How do I turn on noise Cancelling on Soundcore Q20? ›

    How do I activate noise cancellation mode? Hold the NC button for 1 second to turn it on.

    Is hybrid ANC good? ›

    Hybrid active noise cancellation offers the best of both worlds. As you may have guessed, it combines both feedforward and feedback microphones and processing to cover all the bases. You'll receive the best noise attenuation frequency coverage and the lowest chances of feedback issues with hybrid technology.

    Is ANC better than ear plugs? ›

    Earbuds' active cancellation works best at lower frequencies, like the rumbles of engines on planes or buses. Passive earplugs are less effective in the low-frequency range. Earplugs physically block high-pitched sounds, making them better for crying babies, sharp tools, and other high-frequency noises.

    What's the difference between Soundcore Q20 and Q20i? ›

    Q20i uses USB-C whereas Q20 use Micro-USB to charge. Charge time is the same, battery life is the same. Q20 are a noticeably better build.

    What are the disadvantages of ANC headphones? ›

    Noise cancellation's ability to eliminate ambient sound can also reduce your awareness of your surrounding environment, which could become an issue if you're biking through traffic or in other situations where sound cues keep you safe.

    Is ANC good or bad for your ears? ›

    Active noise-canceling headphones protect your hearing to some degree because, with the blocking of ambient outside noise, you don't have to listen to your music as loud. But that doesn't mean you can't still damage your hearing with noise-canceling headphones.

    Is it bad to wear noise cancelling headphones all day? ›

    No, it's not inherently bad to wear noise cancelling headphones all day, but there are some considerations to keep in mind. Prolonged use, especially at high volumes, can potentially lead to hearing fatigue or even damage. It's crucial to take regular breaks and keep the volume at a safe level.

    Which is better ANC or ENC? ›

    The main difference between ANC and ENC earbuds is their handling of external noise. ANC earbuds cancel entirely out external noise, whereas ENC earbuds only reduce it. ANC earbuds are better at blocking out low-frequency noise, while ENC earbuds are better at reducing high-frequency noise.

    Which type of noise cancellation is best? ›

    Passive noise cancelling headphones are the best for isolating irregular and high-frequency sounds.

    Does ANC work for phone calls? ›

    No. When you are on a call, the microphone activates and ANC and Hearthrough will deactivate. This is intended, as the sidetone then let you hear your voice and be aware of the volume of your voice when you speak.

    Does Soundcore have noise cancellation? ›

    The soundcore ANC headphones, both true wireless earbuds and over-ear headphones, are equipped with two microphones that detect and cancel out noise.

    Is Anker Q20i noise-cancelling? ›

    Reduce Noise By Up to 90%: soundcore Q20i noise cancelling foldable headphones use hybrid active noise cancelling technology to effectively block out sounds in real-time. Hi-Res Certified Audio: Hi-Res certified audio means that you can listen to wireless music of better quality than a CD.

    References

    Top Articles
    Latest Posts
    Article information

    Author: Nicola Considine CPA

    Last Updated:

    Views: 5970

    Rating: 4.9 / 5 (69 voted)

    Reviews: 92% of readers found this page helpful

    Author information

    Name: Nicola Considine CPA

    Birthday: 1993-02-26

    Address: 3809 Clinton Inlet, East Aleisha, UT 46318-2392

    Phone: +2681424145499

    Job: Government Technician

    Hobby: Calligraphy, Lego building, Worldbuilding, Shooting, Bird watching, Shopping, Cooking

    Introduction: My name is Nicola Considine CPA, I am a determined, witty, powerful, brainy, open, smiling, proud person who loves writing and wants to share my knowledge and understanding with you.