Life P3i | Hybrid Active Noise Cancelling Earbuds (2024)

Immerse Yourself in Music with Hybrid ANC Technology

  • Incredible Sound Loved by 20 Million+ People
  • Focus On Your Music:soundcore P3i noise cancelling earbuds have hybrid active noise cancelling feature with two microphones on each side that reduces external noise up to 90% so you can stay focused on your music.
  • AI-Enhanced Clear Calls:Get clear calls anywhere you go with 4 dedicated microphones built into the wireless earbuds and a noise-isolating AI algorithm that picks up your voice precisely.
  • Punchy Beats and Customized Sound:Enjoy powerful bass with P3i noise cancelling earbuds' 10mm drivers. Choose your preferred EQ settings from 22 different options and customize your sound profile via the soundcore app.
  • Charge Faster, Listen Longer:P3i noise cancelling earbuds last for 9 hours on a single charge or 36 hours with the compact case. For a quick boost of power when you're on the move, charge for 10 minutes and listen for 2 hours.

Model Number: A3993,A3993L,A3993R

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('Hurry! Christmas 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! Christmas 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; }})

£49.99

Life P3i | Hybrid Active Noise Cancelling Earbuds (29)

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.

Join our Registry, and create your own wish list for gifts now!

${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 P3i | Hybrid Active Noise Cancelling Earbuds (32) Life P3i | Hybrid Active Noise Cancelling Earbuds (33)

    ${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, 'A3993312', custom_variants_prescription) } } })

    Email me when available

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

    Life P3i | Hybrid Active Noise Cancelling Earbuds

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

    • Incredible Sound Loved by 20 Million+ People
    • Focus On Your Music:soundcore P3i noise cancelling earbuds have hybrid active noise cancelling feature with two microphones on each side that reduces external noise up to 90% so you can stay focused on your music.
    • AI-Enhanced Clear Calls:Get clear calls anywhere you go with 4 dedicated microphones built into the wireless earbuds and a noise-isolating AI algorithm that picks up your voice precisely.
    • Punchy Beats and Customized Sound:Enjoy powerful bass with P3i noise cancelling earbuds' 10mm drivers. Choose your preferred EQ settings from 22 different options and customize your sound profile via the soundcore app.
    • Charge Faster, Listen Longer:P3i noise cancelling earbuds last for 9 hours on a single charge or 36 hours with the compact case. For a quick boost of power when you're on the move, charge for 10 minutes and listen for 2 hours.

    See More

    Life P3i | Hybrid Active Noise Cancelling Earbuds

    Life P3i | Hybrid Active Noise Cancelling Earbuds (2024)

    FAQs

    Life P3i | Hybrid Active Noise Cancelling Earbuds? ›

    * price point - you won't find better earbuds at a better price than this. The overall value for what you get is better than ANY other earbuds on the market. * call quality is awesome. Whether you use one in an ear or both, the call quality is loud, clear for both parties involved and effective.

    Is Soundcore Life P3 worth it? ›

    * price point - you won't find better earbuds at a better price than this. The overall value for what you get is better than ANY other earbuds on the market. * call quality is awesome. Whether you use one in an ear or both, the call quality is loud, clear for both parties involved and effective.

    Are Anker P3i good? ›

    The most expensive earbuds have more detail and more bass, but for every day use these are just brilliant. They paired up with my iPhone instantly and I've been able to use them for podcasts, music, calls and more without any issues except a warning that I'm listening at high volume (how else do you listen to rock?).

    What is the difference between Soundcore P3 and P3i? ›

    The newer P3i is better on two points: it has around 6 hours instead of 4,5 hours of battery life with ANC on (9 vs 7 hours with ANC off), and its controls are (even) easier to use and change.

    How long does it take to charge life P3i? ›

    How long does it take to fully charge the earbuds? About 2 hours. How long does it take to fully charge the charging case? About 2 hours.

    Is Soundcore better than AirPods? ›

    The Anker SoundCore Liberty Air 2 Truly Wireless are better true wireless headphones than the Apple AirPods (2nd generation) Truly Wireless. Although the Apple feel better made, the Anker have a noticeably more neutral sound profile, and they pack a lot more accurate bass thanks to their closed-back design.

    Are JBL earbuds better than Soundcore? ›

    While both headphones are comfortable and well-built, the Anker have a significantly better noise isolation performance, and their integrated mic has a better recording quality. However, the JBL have a significantly better battery performance.

    Is Anker better than JBL? ›

    Side-by-Side Comparison

    The Anker is a stereo speaker that gets louder than the JBL. Plus, it offers voice assistants through a paired smartphone, which the JBL lacks. More sound modes and presets are available with the Anker, so you can switch up its sound. That said, the JBL's battery life is a touch longer.

    Is Anker better than Bose? ›

    Anker offers twice as much battery life as Bose

    That's more than the 8 to 10 hours you'll get from our favorite wireless earbuds, the Sony WF-1000XM5. Anker also has the more powerful quick-charging technology: A 10-minute charge supplies 5.5 hours of listening time.

    Is Anker a cheap brand? ›

    ANKER was started as, and still is, a budget company. Some of the items they sell may seem expensive at first but it is because of the quality. Even with their cables, if you compare the cheaper ANKER cables to the competition ANKER almost always comes out on top.

    Is Soundcore P3i waterproof? ›

    Water-Resistant: Equipped with IPX5-rated protection to withstand sweat, rain, and water splashes.

    How many years do Soundcore earbuds last? ›

    With moderate to heavy use, the answer to the question of how long do true wireless earbuds last is, that the lifespan of a wireless earbud is typically between one and two years. You can anticipate your earbuds to remain in good shape for two to three years if you treat them gently.

    What Bluetooth version is Soundcore life P3i? ›

    Quick Charge: Power up your Life P3i noise cancelling earbuds in lesser time with fast charging. A quick 10-minute charge gets you 2 hours of use. Bluetooth 5.2: Advanced Bluetooth technology enables faster transmission speeds and stable connectivity for smooth music playback.

    How long does Soundcore need to charge? ›

    Available for these products
    Product NameCharging Cable TypeCharging Time
    Anker SoundcoreMicro USB cable5 - 6 hours
    Soundcore 2Micro USB cable3 hours
    Soundcore Mini2Micro USB cable2 - 3 hours
    Soundcore Motion QMicro USB cable3.5 hours
    29 more rows

    How long are you supposed to charge a rechargeable? ›

    In general, restoring full power to your rechargeable batteries can take anywhere from one to four hours, although your experience can vary widely based on the physical capacity of your battery pack.

    How long should I charge my rechargeable? ›

    Virtually all intelligent chargers are considered to be 'fast', with typical charge times of 1 to 4 hours depending on the capacity and size of a battery. At this rate of charge there should be no detrimental effect on your rechargeable batteries.

    How long does Soundcore Life P3 last? ›

    Long Playtime, Fast Charging: Get up to 10 hours of battery life on a single charge with a case that extends it to 50 hours. If Life P3 is running low on power, a quick 10-minute charge will give you 4 hours of playtime.

    Which are better Soundcore p2 or P3? ›

    The P3 are more comfortable, and they come with an ANC feature that offers better noise isolation. Unlike their predecessor, they also support the Anker Soundcore app, so you can customize their sound using the graphic EQ and presets as well as adjust their ANC.

    Which is better Life P3 or Liberty Air 2 Pro? ›

    The Anker SoundCore Life P3 Truly Wireless are slightly better than the Anker Soundcore Liberty Air 2 Pro Truly Wireless. The Life P3 are more comfortable, and they have a longer continuous battery life.

    Are Soundcore earbuds worth it? ›

    These are definitely a contender for some of the best affordable noise canceling earbuds based on performance and value. With an IPX4 rating, long battery life, and good ANC, these are worth a go. You might not want to go for a run with them, but otherwise they're decent.

    References

    Top Articles
    Latest Posts
    Article information

    Author: Rob Wisoky

    Last Updated:

    Views: 5700

    Rating: 4.8 / 5 (68 voted)

    Reviews: 83% of readers found this page helpful

    Author information

    Name: Rob Wisoky

    Birthday: 1994-09-30

    Address: 5789 Michel Vista, West Domenic, OR 80464-9452

    Phone: +97313824072371

    Job: Education Orchestrator

    Hobby: Lockpicking, Crocheting, Baton twirling, Video gaming, Jogging, Whittling, Model building

    Introduction: My name is Rob Wisoky, I am a smiling, helpful, encouraging, zealous, energetic, faithful, fantastic person who loves writing and wants to share my knowledge and understanding with you.