Soundcore by Anker Life P2 Mini True Wireless Earbuds, 10mm Drivers with Big Bass, Custom EQ, Bluetooth 5.2, 32H Playtime, USB-C for Fast Charging, Tiny Size for Commute, Work (Renewed)

$19.59
$34.99
-44%
Color:  Black
Quantity
people are viewing this right now

Description

Brand Soundcore
Color Black
Ear Placement In Ear
Form Factor In Ear
Noise Control Sound Isolation

  • Incredible Sound Loved By 20 Million+ People
  • Stunning Sound -Life P2 Mini true wireless earbuds have oversized triple-layer 10mm drivers that deliver sound with boosted bass.
  • 3 EQ Modes -Soundcore Signature, the default EQ, delivers well-balanced sound, while Bass Booster enhances bass-heavy music, and Podcast makes voices stand out clearly. To switch to a different mode, quickly press the right earbud 3 times. You will hear a tone for each successful switch.
  • Featherweight Fit -The tiny true wireless earbuds weigh just 0.16oz (4.4g), which is 10% lighter than standard earbuds. They’re so small and light that they feel practically weightless in your ears.

Headphones Jack usb
Model Name language _ tag
Connectivity Technology Wireless, Wired
Wireless Communication Technology Bluetooth
Age Range (Description) Adult
Material Plastic
Specific Uses For Product Music
Charging Time 32 Hours
Compatible Devices [Broad Range]
Control Type Media Control
Cable Feature Without Cable
Item Weight 0.13 Pounds
Water Resistance Level Water Resistant
Frequency Range 20 Hz - 20,000 Hz
Unit Count 1 Count
Control Method Touch
Number of Items 1
Battery Life 8 Hours
Audio Driver Type Dynamic Driver
Bluetooth Range 10 Meters
Bluetooth Version 5.2
Carrying Case Weight 1 Ounces
Audio Driver Size 10 Millimeters
Earpiece Shape Rounded Tip
Is Autographed No
UPC 656942438656
Global Trade Identification Number 00656942438656
Manufacturer Anker
Product Dimensions 2.56 x 2.09 x 1.34 inches
Item Weight 2.08 ounces
ASIN B09J4MHQH8
Item model number A3944011-F0
Batteries 1 Lithium Polymer batteries required. (included)
Customer Reviews

4.3 out of 5 stars
Best Sellers Rank #52,194 in Electronics ()
#209 in
#3,235 in
Date First Available October 30, 2021

3 EQ Modes

Switch between Soundcore Signature, Bass Booster, and Podcast modes depending on what you’re listening to. Quick tap the right earbud 3 times to change the mode in an instant. You will hear a tone for each successful switch.

Bluetooth 5.2

Equipped with the latest Bluetooth technology for an ultra-stable connection.

One Step Pairing

The moment you open the charging case, Life P2 Mini’s true wireless earbuds immediately enter pairing mode.

Compact Case with 32 Hours of Power

Don’t be fooled! The charging case may be smaller than a sticky note, but it’s got enough power to charge the earbuds 4 times before it needs recharging itself.

Tiny, Lightweight Earbuds

Weighing just 0.16oz (4.4g), Life P2 Mini true wireless earbuds feel virtually weightless as they sit comfortably and securely in your ears.

Single Earbud Mode

Sometimes, you just want to use one earbud. Simply remove an earbud from the charging case, shut the lid, and start listening.

Incredible Sound Loved By 20 Million+ People

Model Number: A3944

10mm Oversized Drivers: The triple layer drivers deliver clear sound with boosted bass.

3 EQ Modes: Soundcore Signature, Bass Booster, and Podcast modes tailor the sound profile to what you’re listening to. You will hear a tone for each successful switch.

Compact and Comfortable: Life P2 Mini true wireless earbuds weigh just 0.16oz (4.4g) each for an ultra-lightweight fit, and the compact charging case easily fits in small pockets and bags.

Extended Playtime: Enjoy 8 hours of playtime from a single charge. The charging case holds up to 32 hours of extra power so you can top up your earbuds on the go.

AI-Enhanced Microphones: Be heard clearly thanks to Life P2 Mini’s built-in microphones with AI-enhanced voice pick up.

Fast Charging: A speedy 10-minute charge gives you an hour of playtime.

IPX5 Water-Resistant: The music doesn’t stop even if it rains thanks to Life P2 Mini true wireless earbuds’ IPX5-rated protection.

One-Step Pairing: Open the charging case and Life P2 Mini true wireless earbuds will automatically enter pairing mode.

Single Earbud Mode: Want more awareness of your surroundings or extend playtime even further? Simply remove one of the earbuds from the charging case, shut the lid, and the earbud will enter Single Earbud mode.

Note: Before pairing for the first time, be sure to remove the sticker on the earbuds and put them back in the case to power on.

Specifications:

Impedance: 16Ω

Driver (Full Range): 2 x 10mm

Frequency Response: 20Hz-20kHz

What You Get:

Life P2 Mini true wireless earbuds

Charging case

XS/S/M/L/XL eartips

USB-C cable

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