Motion X500 | Surround Sound Bluetooth Speaker (2024)

Motion X500 | Surround Sound Bluetooth Speaker (1)
Motion X500 | Surround Sound Bluetooth Speaker (2)
Motion X500 | Surround Sound Bluetooth Speaker (3)
Motion X500 | Surround Sound Bluetooth Speaker (4)
Motion X500 | Surround Sound Bluetooth Speaker (5)
Motion X500 | Surround Sound Bluetooth Speaker (6)
Motion X500 | Surround Sound Bluetooth Speaker (7)
Motion X500 | Surround Sound Bluetooth Speaker (8)
Motion X500 | Surround Sound Bluetooth Speaker (9)
Motion X500 | Surround Sound Bluetooth Speaker (10)
Motion X500 | Surround Sound Bluetooth Speaker (11)
Motion X500 | Surround Sound Bluetooth Speaker (12)
Motion X500 | Surround Sound Bluetooth Speaker (13)

The World’s Most Portable Spatial Audio Speaker

  • Immersive Spatial Audio:3 drivers deliver sound all around you, so you'll feel like your favorite artist is right there in front of you, every time you press play.
  • 3X More Detail:Motion X500 features Wireless Hi-Res certified sound, which lets you hear your favorite songs as they were meant to be heard.
  • 3 Fresh Finishes to Match Any Style:Get quality sound in a color you love with a choice of three finishes: Black Deluxe, Pink Punch, and Glitzy Blue.
  • Great Sound, Portable Size:Motion X500 portable Bluetooth speaker lets you take immersive spatial audio with 3X more detail wherever you go.
  • Fully Waterproof:With IPX7 protection, you can enjoy worry-free listening by the pool, at the beach, or even if it's raining.

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; }})

Free Gift

Motion X500 | Surround Sound Bluetooth Speaker (15)

Product Overview

Motion X500 | Surround Sound Bluetooth Speaker (16)

P3 Earbuds

79,99€

  • Incredible Sound Loved By 20 Million+ People
  • Pocket-Sized Pop of Color:P3 noise cancelling earbuds come in 5 eye-catching colors to pair with your personal style. And the ultra-compact case fits effortlessly in small bags or pockets.
  • Fueled By The Beat:P3 noise cancelling earbuds’ thumping sound is produced by custom 11mm composite drivers. Activate BassUp mode in the app to further intensify bass in real-time.
  • Multi-Mode Noise Cancelling: Sync the noise cancelling to your location for an optimized experience. Transport, Outdoor, and Indoor modes are each tailored to block out irritating background noises in each environment.
  • Enhanced Call Performance:P3 noise cancelling earbuds have 6 microphones and an exclusive algorithm to tune out background noises. Your voice will be heard clearly on calls, video chats, livestreams, and more.

Free

79,99€

169,99€

Motion X500 | Surround Sound Bluetooth Speaker (17)

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.

Motion X500 | Surround Sound Bluetooth Speaker

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

  • Immersive Spatial Audio:3 drivers deliver sound all around you, so you'll feel like your favorite artist is right there in front of you, every time you press play.
  • 3X More Detail:Motion X500 features Wireless Hi-Res certified sound, which lets you hear your favorite songs as they were meant to be heard.
  • 3 Fresh Finishes to Match Any Style:Get quality sound in a color you love with a choice of three finishes: Black Deluxe, Pink Punch, and Glitzy Blue.
  • Great Sound, Portable Size:Motion X500 portable Bluetooth speaker lets you take immersive spatial audio with 3X more detail wherever you go.
  • Fully Waterproof:With IPX7 protection, you can enjoy worry-free listening by the pool, at the beach, or even if it's raining.

Order Support

Fast Shipping

30-Day Money-Back Guarantee

Hassle-Free Warranty

Lifetime Customer Support

Delivery & Payment

Motion X500 | Surround Sound Bluetooth Speaker (19)

Motion X500 | Surround Sound Bluetooth Speaker (2024)

FAQs

Motion X500 | Surround Sound Bluetooth Speaker? ›

The Anker Soundcore Motion Plus is a fairly small speaker that's well-suited for outdoor use. It has a very long battery life, and it's rated IPX7 for water resistance, although we don't currently test for this. It can also get quite loud, though there are some compression artifacts at max volume.

How loud is Soundcore motion? ›

The Anker Soundcore Motion Plus is a fairly small speaker that's well-suited for outdoor use. It has a very long battery life, and it's rated IPX7 for water resistance, although we don't currently test for this. It can also get quite loud, though there are some compression artifacts at max volume.

How do I pair Soundcore motion with Bluetooth? ›

Press and hold the Bluetooth button on both speakers for 2 seconds until the light flashes white. 4. Wait for 5 to 8 seconds, and you will hear sound. When the speakers are successfully paired together, the primary speaker will have one steady blue light while the one with a steady white light is the secondary speaker.

Does Soundcore Motion Plus have microphone? ›

The Anker Soundcore Motion+ has a microphone located next to the “BassUp” button on the top of the speaker, which you can use to answer calls without your phone.

Does Soundcore motion boom have a microphone? ›

Just Open and Use: Record with the wireless lavalier microphone right away with an embedded touchscreen to customize your settings.

Does Soundcore have good sound quality? ›

The Soundcore Motion 300 is Anker's answer to that Bose speaker. Around the same size as the Bose, it doesn't sound quite as good, but it sounds impressive for its compact size and costs only $80. As a result, we've awarded it a CNET Editors' Choice as a strong value pick in the portable Bluetooth speaker category.

Is Soundcore worth it? ›

Overall, they're an excellent value and well worth your attention if you're on a budget. If you want more accurate sound out of the box, Audio-Technica's $79.99 ATH-M20xBT headphones are a fine alternative, though they lack noise cancellation and higher-end codec options.

Does Soundcore motion have aux input? ›

The soundcore Motion X600 speaker supports both Bluetooth mode and AUX mode. Please note that Motion X600 is compatible with 3-pin AUX cables. If the AUX cable does not have 3 pins, there may not be any sound output.

Can I pair two different Soundcore speakers? ›

Stereo pairing only works between 2 speakers at most, and you would need to pair two identical speakers at the same time to create a stereo sound that distinguishes the L (left) and the R (right) channel separately.

How do I connect my Soundcore Bluetooth speaker to my TV? ›

To connect Soundcore infini with a TV via Bluetooth, please follow these steps: Step 1: Turn on the soundbar. Step 2: Tap the Bluetooth button on the remote control to enter Bluetooth pairing mode. Step 3: Set the TV audio source to Bluetooth mode (find in Settings>Audio).

Is soundcore Motion Plus worth it? ›

Motion+ is a champion in its size category by delivering great bass response and exceptional mids and highs … Guys, I highly recommend this product. The shimmer on the high-end from those tweeters makes me love it more even after 4 years …

How many watts is soundcore motion? ›

Two 30W woofers and passive radiators offer powerful and immersive sound, while two 10W tweeters let you hear every detail of your song in crystal-clear clarity.

How does soundcore speaker work? ›

Bluetooth Mode With this speaker, you can enjoy music through your Bluetooth-enabled devices. Each time you power on your Soundcore speaker, it will automatically connect to your last connected device if available within the Bluetooth range. If not, press the Bluetooth button to enter Bluetooth pairing mode.

Where is the microphone on Soundcore? ›

Some models may have the mic on the wire that connects the headphones to the device, while others may have the mic built into the bottom of ear cup itself. soundcore wireless headphones with microphones are built-in and can pick up your voice. You don't have to worry about the quality of your call.

What is a boom mic? ›

A boom microphone – often just called a 'boom mic' – is a microphone which is placed over your subjects during a shoot, picking up the audio like a regular, handheld mic would. Using a boom mic means your subjects can act 'naturally' without holding a mic.

What is the difference between a mic and a boom mic? ›

A Boom mic is more suitable when you need to capture sound from a distance, as it is capable of picking up sound from a greater distance. In contrast, a Lapel mic is designed to capture sound from a closer range, so it's a better choice for recording audio up close.

Is the Soundcore speaker loud? ›

soundcore Bluetooth speakers are equipped with up to 103 high dB levels and a professional stereo sound system, allowing you to play songs at maximum volume with ultra-low distortion, not to mention crystal clear audio, which brings you unforgettable music feast.

How many watts is Soundcore Motion+? ›

30 Watts

Why is Soundcore volume so low? ›

It could be because of the speaker's battery, the device connected with the speaker, the audio source, and so on. If your Soundcore 3's volume is too low, please try these steps: Confirm that Soundcore 3 is fully charged. Reset Soundcore 3 by holding the Bluetooth and Vol+ buttons at the same time for 5-10 seconds.

How loud is Anker Soundcore Motion Boom Plus? ›

Epic Outdoor Sound: 80W booming sound is delivered by two 30W woofers and 10W tweeters, while real-time intensified bass can be heard with Soundcore's proprietary BassUp technology. To improve treble performance of Motion Boom Plus outdoor speaker, titanium drivers ensure an all-around epic sound.

Top Articles
Latest Posts
Article information

Author: Sen. Ignacio Ratke

Last Updated:

Views: 5903

Rating: 4.6 / 5 (56 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Sen. Ignacio Ratke

Birthday: 1999-05-27

Address: Apt. 171 8116 Bailey Via, Roberthaven, GA 58289

Phone: +2585395768220

Job: Lead Liaison

Hobby: Lockpicking, LARPing, Lego building, Lapidary, Macrame, Book restoration, Bodybuilding

Introduction: My name is Sen. Ignacio Ratke, I am a adventurous, zealous, outstanding, agreeable, precious, excited, gifted person who loves writing and wants to share my knowledge and understanding with you.