Motion X600 | Enceinte sans fil haute qualité sonore (2024)

Motion X600 | Enceinte sans fil haute qualité sonore (1)
Motion X600 | Enceinte sans fil haute qualité sonore (2)
Motion X600 | Enceinte sans fil haute qualité sonore (3)
Motion X600 | Enceinte sans fil haute qualité sonore (4)
Motion X600 | Enceinte sans fil haute qualité sonore (5)
Motion X600 | Enceinte sans fil haute qualité sonore (6)
Motion X600 | Enceinte sans fil haute qualité sonore (7)
Motion X600 | Enceinte sans fil haute qualité sonore (8)
Motion X600 | Enceinte sans fil haute qualité sonore (9)
Motion X600 | Enceinte sans fil haute qualité sonore (10)
Motion X600 | Enceinte sans fil haute qualité sonore (11)
Motion X600 | Enceinte sans fil haute qualité sonore (12)
Motion X600 | Enceinte sans fil haute qualité sonore (13)
Motion X600 | Enceinte sans fil haute qualité sonore (14)
Motion X600 | Enceinte sans fil haute qualité sonore (15)
Motion X600 | Enceinte sans fil haute qualité sonore (16)
  • Audio spatial immersif: inspiré de l'acoustique des théâtres, le Motion X600 dispose de 5 haut-parleurs et de 5amplificateurs qui sont disposés de manière à diffuser le son tout autour de vous. Chaque fois que vous appuyez sur le bouton de lecture, vous avez l'impression d'être dans la même pièce que votre artiste préféré.
  • Un son de 50W qui remplit la pièce: que vous fassiez une fête ou que vous écoutiez simplement vos morceaux préférés, le son de 50W remplira n'importe quel espace d'un son riche et de haute qualité qui donne vie à la musique.
  • Emportez de la musique immersive n'importe où: portable et léger, le Motion X600 est facile à transporter d'une pièce à l'autre pour transformer n'importe quelle partie de votre maison en un espace d'écoute immersif.
  • Durée de lecture de 12 heures: Continuez à écouter de la musique et des podcasts pendant plusieurs jours de suite, sans vous soucier de décharger la batterie.
  • Entièrement étanche: avec protection étanche IPX7 pour que vous puissiez simplement vous détendre et écouter sans vous tracasser si vous mouillez l'enceinte.

2. Puis-je utiliser plusieurs codes de réduction ?

Non. Les codes de réduction ne peuvent pas être combinés. Un seul code peut être appliqué par commande.

3. Pourquoi mon code de réduction est-il invalide ?

1) Le code de réduction ne s'applique pas aux articles spécifiques que vous souhaitez acheter

2) Le code de réduction n'a pas été entré correctement

3) Le code de réduction a expiré

4) Le code de réduction ne provient pas du site officiel de soundcore.

Si vous avez des questions, n'hésitez pas à contacter notre service client: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(`Économisez ${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('Dépêchez-vous ! L'offre se termine bientôt'); } else if (days === 1) { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`${days} Jour ${hours}:${minutes}:${seconds}`); } else if (days === 0) { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`Aujourd'hui ${hours}:${minutes}:${seconds}`); } else { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`${days} Les Jours ${hours}:${minutes}:${seconds}`); } } }, 1000); } else { // 展示折扣模块 $('.couponWrapper').show(); $('.DiscountMark').show(); // 展示倒计时 $('#timeOutTxt').css('display', 'none'); $('#timeTxt').css('display', 'inline-block'); $('#timeTxt').html('Dépêchez-vous ! L'offre se termine bientôt'); } 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(`Économisez ${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(`Économisez ${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; }})

199,99€

Envoyez-moi un e-mail lorsque disponible

Laissez votre adresse e-mail et nous vous informerons lorsque le produit sera de nouveau en stock.

Motion X600 | Enceinte sans fil haute qualité sonore

(Facultatif) Rejoignez notre liste de diffusion Soundcore pour recevoir des offres spéciales et bien plus encore

  • Audio spatial immersif: inspiré de l'acoustique des théâtres, le Motion X600 dispose de 5 haut-parleurs et de 5amplificateurs qui sont disposés de manière à diffuser le son tout autour de vous. Chaque fois que vous appuyez sur le bouton de lecture, vous avez l'impression d'être dans la même pièce que votre artiste préféré.
  • Un son de 50W qui remplit la pièce: que vous fassiez une fête ou que vous écoutiez simplement vos morceaux préférés, le son de 50W remplira n'importe quel espace d'un son riche et de haute qualité qui donne vie à la musique.
  • Emportez de la musique immersive n'importe où: portable et léger, le Motion X600 est facile à transporter d'une pièce à l'autre pour transformer n'importe quelle partie de votre maison en un espace d'écoute immersif.
  • Durée de lecture de 12 heures: Continuez à écouter de la musique et des podcasts pendant plusieurs jours de suite, sans vous soucier de décharger la batterie.
  • Entièrement étanche: avec protection étanche IPX7 pour que vous puissiez simplement vous détendre et écouter sans vous tracasser si vous mouillez l'enceinte.

Motion X600 | Enceinte sans fil haute qualité sonore

"; } 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_A3130061": ""}`; var description = json_s ? JSON.parse(json_s) : {}; var variant_description = description[`description_${sku}`]; if (variant_description) { const txt = variant_description; const $target = $('.product-7714751938738 .product__information .description'); const dom = $target.html(txt).text(); $target.html(dom); } else { $('.product-7714751938738 .product__information .description').html(`
    • Audio spatial immersif: inspiré de l'acoustique des théâtres, le Motion X600 dispose de 5 haut-parleurs et de 5amplificateurs qui sont disposés de manière à diffuser le son tout autour de vous. Chaque fois que vous appuyez sur le bouton de lecture, vous avez l'impression d'être dans la même pièce que votre artiste préféré.
    • Un son de 50W qui remplit la pièce: que vous fassiez une fête ou que vous écoutiez simplement vos morceaux préférés, le son de 50W remplira n'importe quel espace d'un son riche et de haute qualité qui donne vie à la musique.
    • Emportez de la musique immersive n'importe où: portable et léger, le Motion X600 est facile à transporter d'une pièce à l'autre pour transformer n'importe quelle partie de votre maison en un espace d'écoute immersif.
    • Durée de lecture de 12 heures: Continuez à écouter de la musique et des podcasts pendant plusieurs jours de suite, sans vous soucier de décharger la batterie.
    • Entièrement étanche: avec protection étanche IPX7 pour que vous puissiez simplement vous détendre et écouter sans vous tracasser si vous mouillez l'enceinte.
    `); } } render_description(`A3130061`); $('.product-form-container .swatch_options .swatch-element').on('click', function() { var sku = $(this).data('sku'); render_description(sku); var $product = $('.product-7714751938738'); var $productForm = $('.product_form, .shopify-product-form', $product); var JSONData = $productForm.data('product'); 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'); } }) })

    Motion X600 | Enceinte sans fil haute qualité sonore (19)

    Motion X600 | Enceinte sans fil haute qualité sonore (20)

    Motion X600 | Enceinte sans fil haute qualité sonore (21)

    Motion X600 | Enceinte sans fil haute qualité sonore (22)

    Motion X600 | Enceinte sans fil haute qualité sonore (23)

    Plongez dans la musique

    Le son se diffuse verticalement et horizontalement pour remplir n'importe quel espace.

    Motion X600 | Enceinte sans fil haute qualité sonore (24)

    Motion X600 | Enceinte sans fil haute qualité sonore (25)

    Un son qui vous entoure

    Un pilote audio orienté vers le haut crée une scène sonore multidimensionnelle.

    Motion X600 | Enceinte sans fil haute qualité sonore (26)

    Motion X600 | Enceinte sans fil haute qualité sonore (27)

    Entendez chaque détail

    Le DSP haut de gamme offre un son 8 fois meilleur* que nos enceintes précédentes.

    • Plongez dans la musique
    • Un son qui vous entoure
    • Entendez chaque détail

    Plongez dans la musique

    Le son se diffuse verticalement et horizontalement pour remplir n'importe quel espace.

    Un son qui vous entoure

    Un pilote audio orienté vers le haut crée une scène sonore multidimensionnelle.

    Entendez chaque détail

    Le DSP haut de gamme offre un son 8 fois meilleur* que nos enceintes précédentes.

    Motion X600 | Enceinte sans fil haute qualité sonore (28)

    Motion X600 | Enceinte sans fil haute qualité sonore (29)

    Motion X600 | Enceinte sans fil haute qualité sonore (30)

    • Plongez dans la musique
    • Un son qui vous entoure
    • Entendez chaque détail

    Motion X600 | Enceinte sans fil haute qualité sonore (31)

    Motion X600 | Enceinte sans fil haute qualité sonore (32)

    Motion X600 | Enceinte sans fil haute qualité sonore (35)

    Motion X600 | Enceinte sans fil haute qualité sonore (36)

    Égaliseur personnalisable

    Trouvez le son qui vous convient d'un simple mouvement du doigt.

    • Audio haute résolution
    • Entendez chaque détail
    • Égaliseur personnalisable

    Égaliseur personnalisable

    Trouvez le son qui vous convient d'un simple mouvement du doigt.

    Motion X600 | Enceinte sans fil haute qualité sonore (37)

    Motion X600 | Enceinte sans fil haute qualité sonore (38)

    Motion X600 | Enceinte sans fil haute qualité sonore (39)

    • Audio haute résolution
    • Entendez chaque détail
    • Égaliseur personnalisable

    Motion X600 | Enceinte sans fil haute qualité sonore (40)

    Motion X600 | Enceinte sans fil haute qualité sonore (41)

    Écoutez plus longtemps

    Profitez de 12 heures de musique non-stop à partir d'une seule charge.

    Motion X600 | Enceinte sans fil haute qualité sonore (42)

    Motion X600 | Enceinte sans fil haute qualité sonore (43)

    Étanchéité IPX7

    Ne laissez pas un peu d'eau s'interposer entre vous et vos morceaux préférés.

    Motion X600 | Enceinte sans fil haute qualité sonore (44)

    Motion X600 | Enceinte sans fil haute qualité sonore (45)

    Son remplissant la pièce

    La sortie de 50 W est suffisamment puissante pour s'adapter à n'importe quel espace.

    • Écoutez plus longtemps
    • Étanchéité IPX7
    • Son remplissant la pièce

    Écoutez plus longtemps

    Profitez de 12 heures de musique non-stop à partir d'une seule charge.

    Étanchéité IPX7

    Ne laissez pas un peu d'eau s'interposer entre vous et vos morceaux préférés.

    Son remplissant la pièce

    La sortie de 50 W est suffisamment puissante pour s'adapter à n'importe quel espace.

    Motion X600 | Enceinte sans fil haute qualité sonore (46)

    Motion X600 | Enceinte sans fil haute qualité sonore (47)

    Motion X600 | Enceinte sans fil haute qualité sonore (48)

    • Écoutez plus longtemps
    • Étanchéité IPX7
    • Son remplissant la pièce

    Motion X600 | Enceinte sans fil haute qualité sonore (49)

    Poignée en aluminium

    La poignée en aluminium présente une conception rainurée tactile pour une prise en main confortable.

    Pilote orienté vers le haut

    Un pilote orienté vers le haut remplit n'importe quel espace avec du son pour vous envahir de musique.

    Grille 3D

    La conception distinctive en treillis métallique apporte une sensation robuste et industrielle à n'importe quel espace.

    Motion X600 | Enceinte sans fil haute qualité sonore (50)

    Motion X600 | Enceinte sans fil haute qualité sonore (51)

    Motion X600 | Enceinte sans fil haute qualité sonore (52)

    Poignée en aluminium

    La poignée en aluminium présente une conception rainurée tactile pour une prise en main confortable.

    Pilote orienté vers le haut

    Un pilote orienté vers le haut remplit n'importe quel espace avec du son pour vous envahir de musique.

    Grille 3D

    La conception distinctive en treillis métallique apporte une sensation robuste et industrielle à n'importe quel espace.

    FAQ

    • General
    • App Related
    • Spatial Audio Related
    • LDAC Related
    • Bluetooth Related
    • EQ Related
    • Documents & Drivers
    • What's in the box?

      Motion X600 Speaker
      60 cm USB-C to C Cable
      Safety Card
      Quick Start Guide

      Note: Aux cable and wall charger are not included!

    • How long does it take to charge Motion X600?

      It takes around 6 hours to charge with a certified 5V/3A wall charger.

    • How do I reset Motion X600?

      Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.

    • Is Motion X600 waterproof?

      Motion X600 supports IPX7 waterproofing, but before submerging it in water, it is necessary to ensure that the waterproof cover on the back is securely fastened.

    • Why is the power button recessed?

      The recessed design make it easy to use the button in low-light and dark environments.

    • Does Motion X600 have a built-in microphone?

      Yes.

    • Can I get stereo sound when using one Motion X600?

      Yes, you can get the stereo sound with single Motion X600 speaker. The left side plays left channel, the right side plays right channel.

    • Why is the battery life less than 12 hours?

      12-hour battery life is based on measurements taken at 1/4 power and with Bass Mode off. The actual battery life may vary depending on factors such as the type of content being played, custom EQ settings, and volume level.

    • Where can I download the soundcore app?

      Download the soundcore app from Google Play, the Apple App Store, or by scanning the QR code below, then you can experience the full range of Motion X600's features, including:

      1. Customizable EQ
      Customize the Pro EQ to get the sound you want for any style of music. You can also share your customized EQ with friends.

      2. LDAC Mode
      Use the app to switch to LDAC mode (only available on Android 8.0 and above).
      Motion X600 | Enceinte sans fil haute qualité sonore (53)

    • How do I turn off Motion X600's voice prompts?

      1. Connect your device to Motion X600.
      2. Download and open the soundcore app.
      3. Press the top right corner to access more options.
      4. Turn off voice prompts.

    • How do I update Motion X600's firmware?

      1. Download the soundcore app.
      2. Pair Motion X600 with the soundcore app, then press Update Firmware.
      3. Do not use your phone while the firmware is updating, except if you've set the soundcore app to run in the background.
      4. Motion X600 will restart automatically after updating successfully.

    • Does spatial audio require a specific music format?

      No.

    • What is spatial audio and how do I turn it on?

      Spatial audio places sound all around you to create an immersive listening experience. Simply press the Spatial Audio button to turn on.

    • What is LDAC?

      LDAC is a Bluetooth encoding format that can transmit 3 times the amount of data of ordinary Bluetooth SBC.

      Note:LDAC only works on devices running Android 8.0 or above, it doesn't works on iPhone devices.

    • How do I use LDAC?

      On a device powered by Android 8.0 or above, do the following:
      1. Open the soundcore app.
      2. Go to the Settings
      3. Click on Sound Mode
      4. Select Preferred Audio Quality and switch to LDAC codec.

      Notes:
      • It takes about 10 seconds to switch audio codecs. You may be required to update the speaker's firmware if available. Do not use the app or speaker while updating.
      • LDAC provides higher quality sound but increases power consumption and reduces playtime.
      • Enable LDAC in a low-interference environment to ensure a stable Bluetooth connection.

    • Why do some devices experience interrupted sound when using the LDAC function?

      After enabling LDAC, your device will default to adaptive bit rate mode. Generally, there won't be any sound interruptions, however, if Android users turn on developer mode and select LDAC 990 kbps playback, sound may slightly cut in and out.

      If you would like to select 990 kbps LDAC, we recommend following these steps:

      1. Turn off Wi-Fi on your Android device.
      2. Turn off any extra Bluetooth and Wi-Fi devices in the room.
      3. Connect your Android device to Motion X600 via Bluetooth and switch to 990 kbps.
      4. Keep the distance between the Android device and Motion X600 within 0.5 m (1.6 ft).
      5. Play local music files.

    • How can I TWS pair two Motion X600 speakers at the same time?

      Method 1.
      1. Speaker 1 and Speaker 2: Long press the power button to start both speakers.
      2. Speaker 1: Hold the Bluetooth button until the button light flashes white.
      3. Speaker 2: Hold the Bluetooth button until the button light flashes white.
      4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.
      5. The master speaker is the one with the blue light.
      6. Use the master speaker to pair with your device.

      Method 2.
      1. Long press the power button to start both speakers
      2. Connect either speaker with your Bluetooth device.
      3. On both speakers, press and hold the Bluetooth button for at least 2seconds to enter TWS pairing mode.
      4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.

      Note: To exit TWS mode, hold the Bluetooth button for at least 2 seconds.

    • How does stereo sound work during TWS pairing?

      When you have two Motion X600 speakers paired at the same time, the master speaker supports left channel and sky channel(if the spatial audio is turned on), while the secondary speaker supports right channel and sky channel(if the spatial audio is turned on).

    • I can't detect Motion X600 via Bluetooth. What should I do?

      1. Fully charge the speaker.
      2.Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.
      3. Turn your device and your device's Bluetooth off and on.
      4. Clear all pairing records on your device.
      5. Restart your speaker and reconnect to it.
      6. Try the speaker with different devices if possible.

    • How do I use the EQ?

      Open the soundcore app and go to Equalizer > Custom > Full-Band. Then click any dot to expand the corresponding frequency band, long press the dot and drag to customize the frequency.

    • Can I increase the bass on my Motion X600?

      You can download the soundcore app and pair the speaker with soundcore app to enhance the bass via the EQ. The audio source quality might also affect the performance of the bass. Try using high-quality audio files or streaming services.

    • How can I share a custom EQ?

      1. Download the soundcore app.
      2. Pair Motion X600 with the soundcore app.
      3. Click Equalizer.
      4. Click the share button in the upper right corner, then click Copy Link or QR Code. You can choose an app to share the link or the QR Code with your friends.

      Note: To use the sharing function, you need to log in to your soundcore account first.

    • How do I import a custom EQ that someone has shared with me?

      Method 1: Copy the Link (Note: The link must be the EQ link of Motion X600 generated in the soundcore App)
      Open the soundcore app and pair with Motion X600, then copy the EQ link, the link will automatically be detected and you will be asked whether or not your want to import it.
      Click "Yes" and then click "Import".

      Method 2: Scan the QR Code
      Open the soundcore app and pair with Motion X600.
      Go to Equalizer > Add > Scan Code for EQ. Then scan the QR code your friend shared with you and click "Import".

    • QSG

      A3130-QSG

      2023-05-08

    • Manual

      A3130-Manual

      2023-05-08

    • Declaration of Conformity

      A3130-EU DOC

      2024-02-29T03:01:40Z

    • General

      • What's in the box?

        Motion X600 Speaker
        60 cm USB-C to C Cable
        Safety Card
        Quick Start Guide

        Note: Aux cable and wall charger are not included!

      • How long does it take to charge Motion X600?

        It takes around 6 hours to charge with a certified 5V/3A wall charger.

      • How do I reset Motion X600?

        Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.

      • Is Motion X600 waterproof?

        Motion X600 supports IPX7 waterproofing, but before submerging it in water, it is necessary to ensure that the waterproof cover on the back is securely fastened.

      • Why is the power button recessed?

        The recessed design make it easy to use the button in low-light and dark environments.

      • Does Motion X600 have a built-in microphone?

        Yes.

      • Can I get stereo sound when using one Motion X600?

        Yes, you can get the stereo sound with single Motion X600 speaker. The left side plays left channel, the right side plays right channel.

      • Why is the battery life less than 12 hours?

        12-hour battery life is based on measurements taken at 1/4 power and with Bass Mode off. The actual battery life may vary depending on factors such as the type of content being played, custom EQ settings, and volume level.

    • App Related

      • Where can I download the soundcore app?

        Download the soundcore app from Google Play, the Apple App Store, or by scanning the QR code below, then you can experience the full range of Motion X600's features, including:

        1. Customizable EQ
        Customize the Pro EQ to get the sound you want for any style of music. You can also share your customized EQ with friends.

        2. LDAC Mode
        Use the app to switch to LDAC mode (only available on Android 8.0 and above).
        Motion X600 | Enceinte sans fil haute qualité sonore (54)

      • How do I turn off Motion X600's voice prompts?

        1. Connect your device to Motion X600.
        2. Download and open the soundcore app.
        3. Press the top right corner to access more options.
        4. Turn off voice prompts.

      • How do I update Motion X600's firmware?

        1. Download the soundcore app.
        2. Pair Motion X600 with the soundcore app, then press Update Firmware.
        3. Do not use your phone while the firmware is updating, except if you've set the soundcore app to run in the background.
        4. Motion X600 will restart automatically after updating successfully.

    • Spatial Audio Related

      • Does spatial audio require a specific music format?

        No.

      • What is spatial audio and how do I turn it on?

        Spatial audio places sound all around you to create an immersive listening experience. Simply press the Spatial Audio button to turn on.

    • LDAC Related

      • What is LDAC?

        LDAC is a Bluetooth encoding format that can transmit 3 times the amount of data of ordinary Bluetooth SBC.

        Note:LDAC only works on devices running Android 8.0 or above, it doesn't works on iPhone devices.

      • How do I use LDAC?

        On a device powered by Android 8.0 or above, do the following:
        1. Open the soundcore app.
        2. Go to the Settings
        3. Click on Sound Mode
        4. Select Preferred Audio Quality and switch to LDAC codec.

        Notes:
        • It takes about 10 seconds to switch audio codecs. You may be required to update the speaker's firmware if available. Do not use the app or speaker while updating.
        • LDAC provides higher quality sound but increases power consumption and reduces playtime.
        • Enable LDAC in a low-interference environment to ensure a stable Bluetooth connection.

      • Why do some devices experience interrupted sound when using the LDAC function?

        After enabling LDAC, your device will default to adaptive bit rate mode. Generally, there won't be any sound interruptions, however, if Android users turn on developer mode and select LDAC 990 kbps playback, sound may slightly cut in and out.

        If you would like to select 990 kbps LDAC, we recommend following these steps:

        1. Turn off Wi-Fi on your Android device.
        2. Turn off any extra Bluetooth and Wi-Fi devices in the room.
        3. Connect your Android device to Motion X600 via Bluetooth and switch to 990 kbps.
        4. Keep the distance between the Android device and Motion X600 within 0.5 m (1.6 ft).
        5. Play local music files.

    • Bluetooth Related

      • How can I TWS pair two Motion X600 speakers at the same time?

        Method 1.
        1. Speaker 1 and Speaker 2: Long press the power button to start both speakers.
        2. Speaker 1: Hold the Bluetooth button until the button light flashes white.
        3. Speaker 2: Hold the Bluetooth button until the button light flashes white.
        4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.
        5. The master speaker is the one with the blue light.
        6. Use the master speaker to pair with your device.

        Method 2.
        1. Long press the power button to start both speakers
        2. Connect either speaker with your Bluetooth device.
        3. On both speakers, press and hold the Bluetooth button for at least 2seconds to enter TWS pairing mode.
        4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.

        Note: To exit TWS mode, hold the Bluetooth button for at least 2 seconds.

      • How does stereo sound work during TWS pairing?

        When you have two Motion X600 speakers paired at the same time, the master speaker supports left channel and sky channel(if the spatial audio is turned on), while the secondary speaker supports right channel and sky channel(if the spatial audio is turned on).

      • I can't detect Motion X600 via Bluetooth. What should I do?

        1. Fully charge the speaker.
        2.Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.
        3. Turn your device and your device's Bluetooth off and on.
        4. Clear all pairing records on your device.
        5. Restart your speaker and reconnect to it.
        6. Try the speaker with different devices if possible.

    • EQ Related

      • How do I use the EQ?

        Open the soundcore app and go to Equalizer > Custom > Full-Band. Then click any dot to expand the corresponding frequency band, long press the dot and drag to customize the frequency.

      • Can I increase the bass on my Motion X600?

        You can download the soundcore app and pair the speaker with soundcore app to enhance the bass via the EQ. The audio source quality might also affect the performance of the bass. Try using high-quality audio files or streaming services.

      • How can I share a custom EQ?

        1. Download the soundcore app.
        2. Pair Motion X600 with the soundcore app.
        3. Click Equalizer.
        4. Click the share button in the upper right corner, then click Copy Link or QR Code. You can choose an app to share the link or the QR Code with your friends.

        Note: To use the sharing function, you need to log in to your soundcore account first.

      • How do I import a custom EQ that someone has shared with me?

        Method 1: Copy the Link (Note: The link must be the EQ link of Motion X600 generated in the soundcore App)
        Open the soundcore app and pair with Motion X600, then copy the EQ link, the link will automatically be detected and you will be asked whether or not your want to import it.
        Click "Yes" and then click "Import".

        Method 2: Scan the QR Code
        Open the soundcore app and pair with Motion X600.
        Go to Equalizer > Add > Scan Code for EQ. Then scan the QR code your friend shared with you and click "Import".

    • Documents & Drivers

      • QSG

        A3130-QSG

        2023-05-08

      • Manual

        A3130-Manual

        2023-05-08

      • Declaration of Conformity

        A3130-EU DOC

        2024-02-29T03:01:40Z

    • General
    • App Related
    • Spatial Audio Related
    • LDAC Related
    • Bluetooth Related
    • EQ Related
    • Documents & Drivers
    • What's in the box?

      Motion X600 Speaker
      60 cm USB-C to C Cable
      Safety Card
      Quick Start Guide

      Note: Aux cable and wall charger are not included!

    • How long does it take to charge Motion X600?

      It takes around 6 hours to charge with a certified 5V/3A wall charger.

    • How do I reset Motion X600?

      Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.

    • Is Motion X600 waterproof?

      Motion X600 supports IPX7 waterproofing, but before submerging it in water, it is necessary to ensure that the waterproof cover on the back is securely fastened.

    • Why is the power button recessed?

      The recessed design make it easy to use the button in low-light and dark environments.

    • Does Motion X600 have a built-in microphone?

      Yes.

    • Can I get stereo sound when using one Motion X600?

      Yes, you can get the stereo sound with single Motion X600 speaker. The left side plays left channel, the right side plays right channel.

    • Why is the battery life less than 12 hours?

      12-hour battery life is based on measurements taken at 1/4 power and with Bass Mode off. The actual battery life may vary depending on factors such as the type of content being played, custom EQ settings, and volume level.

    • Where can I download the soundcore app?

      Download the soundcore app from Google Play, the Apple App Store, or by scanning the QR code below, then you can experience the full range of Motion X600's features, including:

      1. Customizable EQ
      Customize the Pro EQ to get the sound you want for any style of music. You can also share your customized EQ with friends.

      2. LDAC Mode
      Use the app to switch to LDAC mode (only available on Android 8.0 and above).
      Motion X600 | Enceinte sans fil haute qualité sonore (55)

    • How do I turn off Motion X600's voice prompts?

      1. Connect your device to Motion X600.
      2. Download and open the soundcore app.
      3. Press the top right corner to access more options.
      4. Turn off voice prompts.

    • How do I update Motion X600's firmware?

      1. Download the soundcore app.
      2. Pair Motion X600 with the soundcore app, then press Update Firmware.
      3. Do not use your phone while the firmware is updating, except if you've set the soundcore app to run in the background.
      4. Motion X600 will restart automatically after updating successfully.

    • Does spatial audio require a specific music format?

      No.

    • What is spatial audio and how do I turn it on?

      Spatial audio places sound all around you to create an immersive listening experience. Simply press the Spatial Audio button to turn on.

    • What is LDAC?

      LDAC is a Bluetooth encoding format that can transmit 3 times the amount of data of ordinary Bluetooth SBC.

      Note:LDAC only works on devices running Android 8.0 or above, it doesn't works on iPhone devices.

    • How do I use LDAC?

      On a device powered by Android 8.0 or above, do the following:
      1. Open the soundcore app.
      2. Go to the Settings
      3. Click on Sound Mode
      4. Select Preferred Audio Quality and switch to LDAC codec.

      Notes:
      • It takes about 10 seconds to switch audio codecs. You may be required to update the speaker's firmware if available. Do not use the app or speaker while updating.
      • LDAC provides higher quality sound but increases power consumption and reduces playtime.
      • Enable LDAC in a low-interference environment to ensure a stable Bluetooth connection.

    • Why do some devices experience interrupted sound when using the LDAC function?

      After enabling LDAC, your device will default to adaptive bit rate mode. Generally, there won't be any sound interruptions, however, if Android users turn on developer mode and select LDAC 990 kbps playback, sound may slightly cut in and out.

      If you would like to select 990 kbps LDAC, we recommend following these steps:

      1. Turn off Wi-Fi on your Android device.
      2. Turn off any extra Bluetooth and Wi-Fi devices in the room.
      3. Connect your Android device to Motion X600 via Bluetooth and switch to 990 kbps.
      4. Keep the distance between the Android device and Motion X600 within 0.5 m (1.6 ft).
      5. Play local music files.

    • How can I TWS pair two Motion X600 speakers at the same time?

      Method 1.
      1. Speaker 1 and Speaker 2: Long press the power button to start both speakers.
      2. Speaker 1: Hold the Bluetooth button until the button light flashes white.
      3. Speaker 2: Hold the Bluetooth button until the button light flashes white.
      4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.
      5. The master speaker is the one with the blue light.
      6. Use the master speaker to pair with your device.

      Method 2.
      1. Long press the power button to start both speakers
      2. Connect either speaker with your Bluetooth device.
      3. On both speakers, press and hold the Bluetooth button for at least 2seconds to enter TWS pairing mode.
      4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.

      Note: To exit TWS mode, hold the Bluetooth button for at least 2 seconds.

    • How does stereo sound work during TWS pairing?

      When you have two Motion X600 speakers paired at the same time, the master speaker supports left channel and sky channel(if the spatial audio is turned on), while the secondary speaker supports right channel and sky channel(if the spatial audio is turned on).

    • I can't detect Motion X600 via Bluetooth. What should I do?

      1. Fully charge the speaker.
      2.Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.
      3. Turn your device and your device's Bluetooth off and on.
      4. Clear all pairing records on your device.
      5. Restart your speaker and reconnect to it.
      6. Try the speaker with different devices if possible.

    • How do I use the EQ?

      Open the soundcore app and go to Equalizer > Custom > Full-Band. Then click any dot to expand the corresponding frequency band, long press the dot and drag to customize the frequency.

    • Can I increase the bass on my Motion X600?

      You can download the soundcore app and pair the speaker with soundcore app to enhance the bass via the EQ. The audio source quality might also affect the performance of the bass. Try using high-quality audio files or streaming services.

    • How can I share a custom EQ?

      1. Download the soundcore app.
      2. Pair Motion X600 with the soundcore app.
      3. Click Equalizer.
      4. Click the share button in the upper right corner, then click Copy Link or QR Code. You can choose an app to share the link or the QR Code with your friends.

      Note: To use the sharing function, you need to log in to your soundcore account first.

    • How do I import a custom EQ that someone has shared with me?

      Method 1: Copy the Link (Note: The link must be the EQ link of Motion X600 generated in the soundcore App)
      Open the soundcore app and pair with Motion X600, then copy the EQ link, the link will automatically be detected and you will be asked whether or not your want to import it.
      Click "Yes" and then click "Import".

      Method 2: Scan the QR Code
      Open the soundcore app and pair with Motion X600.
      Go to Equalizer > Add > Scan Code for EQ. Then scan the QR code your friend shared with you and click "Import".

    • QSG

      A3130-QSG

      2023-05-08

    • Manual

      A3130-Manual

      2023-05-08

    • Declaration of Conformity

      A3130-EU DOC

      2024-02-29T03:01:40Z

    • General

      • What's in the box?

        Motion X600 Speaker
        60 cm USB-C to C Cable
        Safety Card
        Quick Start Guide

        Note: Aux cable and wall charger are not included!

      • How long does it take to charge Motion X600?

        It takes around 6 hours to charge with a certified 5V/3A wall charger.

      • How do I reset Motion X600?

        Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.

      • Is Motion X600 waterproof?

        Motion X600 supports IPX7 waterproofing, but before submerging it in water, it is necessary to ensure that the waterproof cover on the back is securely fastened.

      • Why is the power button recessed?

        The recessed design make it easy to use the button in low-light and dark environments.

      • Does Motion X600 have a built-in microphone?

        Yes.

      • Can I get stereo sound when using one Motion X600?

        Yes, you can get the stereo sound with single Motion X600 speaker. The left side plays left channel, the right side plays right channel.

      • Why is the battery life less than 12 hours?

        12-hour battery life is based on measurements taken at 1/4 power and with Bass Mode off. The actual battery life may vary depending on factors such as the type of content being played, custom EQ settings, and volume level.

    • App Related

      • Where can I download the soundcore app?

        Download the soundcore app from Google Play, the Apple App Store, or by scanning the QR code below, then you can experience the full range of Motion X600's features, including:

        1. Customizable EQ
        Customize the Pro EQ to get the sound you want for any style of music. You can also share your customized EQ with friends.

        2. LDAC Mode
        Use the app to switch to LDAC mode (only available on Android 8.0 and above).
        Motion X600 | Enceinte sans fil haute qualité sonore (56)

      • How do I turn off Motion X600's voice prompts?

        1. Connect your device to Motion X600.
        2. Download and open the soundcore app.
        3. Press the top right corner to access more options.
        4. Turn off voice prompts.

      • How do I update Motion X600's firmware?

        1. Download the soundcore app.
        2. Pair Motion X600 with the soundcore app, then press Update Firmware.
        3. Do not use your phone while the firmware is updating, except if you've set the soundcore app to run in the background.
        4. Motion X600 will restart automatically after updating successfully.

    • Spatial Audio Related

      • Does spatial audio require a specific music format?

        No.

      • What is spatial audio and how do I turn it on?

        Spatial audio places sound all around you to create an immersive listening experience. Simply press the Spatial Audio button to turn on.

    • LDAC Related

      • What is LDAC?

        LDAC is a Bluetooth encoding format that can transmit 3 times the amount of data of ordinary Bluetooth SBC.

        Note:LDAC only works on devices running Android 8.0 or above, it doesn't works on iPhone devices.

      • How do I use LDAC?

        On a device powered by Android 8.0 or above, do the following:
        1. Open the soundcore app.
        2. Go to the Settings
        3. Click on Sound Mode
        4. Select Preferred Audio Quality and switch to LDAC codec.

        Notes:
        • It takes about 10 seconds to switch audio codecs. You may be required to update the speaker's firmware if available. Do not use the app or speaker while updating.
        • LDAC provides higher quality sound but increases power consumption and reduces playtime.
        • Enable LDAC in a low-interference environment to ensure a stable Bluetooth connection.

      • Why do some devices experience interrupted sound when using the LDAC function?

        After enabling LDAC, your device will default to adaptive bit rate mode. Generally, there won't be any sound interruptions, however, if Android users turn on developer mode and select LDAC 990 kbps playback, sound may slightly cut in and out.

        If you would like to select 990 kbps LDAC, we recommend following these steps:

        1. Turn off Wi-Fi on your Android device.
        2. Turn off any extra Bluetooth and Wi-Fi devices in the room.
        3. Connect your Android device to Motion X600 via Bluetooth and switch to 990 kbps.
        4. Keep the distance between the Android device and Motion X600 within 0.5 m (1.6 ft).
        5. Play local music files.

    • Bluetooth Related

      • How can I TWS pair two Motion X600 speakers at the same time?

        Method 1.
        1. Speaker 1 and Speaker 2: Long press the power button to start both speakers.
        2. Speaker 1: Hold the Bluetooth button until the button light flashes white.
        3. Speaker 2: Hold the Bluetooth button until the button light flashes white.
        4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.
        5. The master speaker is the one with the blue light.
        6. Use the master speaker to pair with your device.

        Method 2.
        1. Long press the power button to start both speakers
        2. Connect either speaker with your Bluetooth device.
        3. On both speakers, press and hold the Bluetooth button for at least 2seconds to enter TWS pairing mode.
        4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.

        Note: To exit TWS mode, hold the Bluetooth button for at least 2 seconds.

      • How does stereo sound work during TWS pairing?

        When you have two Motion X600 speakers paired at the same time, the master speaker supports left channel and sky channel(if the spatial audio is turned on), while the secondary speaker supports right channel and sky channel(if the spatial audio is turned on).

      • I can't detect Motion X600 via Bluetooth. What should I do?

        1. Fully charge the speaker.
        2.Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.
        3. Turn your device and your device's Bluetooth off and on.
        4. Clear all pairing records on your device.
        5. Restart your speaker and reconnect to it.
        6. Try the speaker with different devices if possible.

    • EQ Related

      • How do I use the EQ?

        Open the soundcore app and go to Equalizer > Custom > Full-Band. Then click any dot to expand the corresponding frequency band, long press the dot and drag to customize the frequency.

      • Can I increase the bass on my Motion X600?

        You can download the soundcore app and pair the speaker with soundcore app to enhance the bass via the EQ. The audio source quality might also affect the performance of the bass. Try using high-quality audio files or streaming services.

      • How can I share a custom EQ?

        1. Download the soundcore app.
        2. Pair Motion X600 with the soundcore app.
        3. Click Equalizer.
        4. Click the share button in the upper right corner, then click Copy Link or QR Code. You can choose an app to share the link or the QR Code with your friends.

        Note: To use the sharing function, you need to log in to your soundcore account first.

      • How do I import a custom EQ that someone has shared with me?

        Method 1: Copy the Link (Note: The link must be the EQ link of Motion X600 generated in the soundcore App)
        Open the soundcore app and pair with Motion X600, then copy the EQ link, the link will automatically be detected and you will be asked whether or not your want to import it.
        Click "Yes" and then click "Import".

        Method 2: Scan the QR Code
        Open the soundcore app and pair with Motion X600.
        Go to Equalizer > Add > Scan Code for EQ. Then scan the QR code your friend shared with you and click "Import".

    • Documents & Drivers

      • QSG

        A3130-QSG

        2023-05-08

      • Manual

        A3130-Manual

        2023-05-08

      • Declaration of Conformity

        A3130-EU DOC

        2024-02-29T03:01:40Z

    Motion X600 | Enceinte sans fil haute qualité sonore (57)

    Motion X600 | Enceinte sans fil haute qualité sonore (2024)
    Top Articles
    Latest Posts
    Article information

    Author: Tyson Zemlak

    Last Updated:

    Views: 5453

    Rating: 4.2 / 5 (63 voted)

    Reviews: 94% of readers found this page helpful

    Author information

    Name: Tyson Zemlak

    Birthday: 1992-03-17

    Address: Apt. 662 96191 Quigley Dam, Kubview, MA 42013

    Phone: +441678032891

    Job: Community-Services Orchestrator

    Hobby: Coffee roasting, Calligraphy, Metalworking, Fashion, Vehicle restoration, Shopping, Photography

    Introduction: My name is Tyson Zemlak, I am a excited, light, sparkling, super, open, fair, magnificent person who loves writing and wants to share my knowledge and understanding with you.