Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System
Naim Mu-so 2nd Generation Wireless Music System

Naim Mu-so 2nd Generation Wireless Music System

Price
$2,900.00
$1,999.00
Save  $901.00
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: Home Audio Systems(3C)
SKU: 00-019-0052

Compared pricing is from MSRP and not promotional pricing. 1 year warranty. Only available online.

Additional colours available (Peacock, Olive and Terracotta) by purchasing replacement grilles.

The Premium Wireless Speaker Your Music Deserves
Mu-so 2nd Generation is the successor to the multiple award-winning Mu-so wireless music system, re-engineered for class-leading performance, functionality and usability by our experts here in Salisbury, England. Combining our 45 years of hi-fi mastery with the very latest music-streaming technology and premium design quality, this is the ultimate single-box system you and your music deserve. From up to 32bit high-resolution streaming to multiroom music to HDMI TV sound; you’ve never heard it so good from an all-in-one wireless system. Excellence Remastered Almost Everything Has Changed

The Naim Streaming Platform
At the heart of Mu-so 2nd Generation is Naim’s music-streaming platform, developed by 25 engineers over 3 years to offer the very best performance whether playing your own digital music collection, a world of Internet radio, or music streaming services such as TIDAL and Spotify. This acclaimed innovation is uniquely found in Naim music-streaming products, such as its Uniti range and dedicated network players, including the £20,000 flagship ND 555.

DSP - The heart of the System
The all-new multicore Digital Signal Processor (DSP) drives higher performance, providing 2000 MIPS (Million Instructions Per Second) compared to the original Mu-so’s single-core, 150MIPS DSP. You can also hear even more from your music. We have also created a brand new limiter algorithm that keeps each of Mu-so 2nd Generation’s speaker drivers’ movement under control when at high volume levels. The new limiter, by design; is only active at extreme volume levels, and helps to retain the music’s clarity and increase long term reliability.

Enhanced Feature Set
Mu-so 2nd Generation is packed full of game-changing performance, feature and functionality upgrades. Enjoy your music, any way you want.

Optimised Speaker Drivers
Mu-so 2nd Generation’s 450 Watts of music power are joined by improved and highly optimised speaker drivers – a joint development project between Naim and Focal R&D departments. Focal has been creating benchmark acoustic equipment since 1979, and its expertise has taken speaker-driver precision and performance to new levels.

95% Re-engineered
Premium aluminium casing, in a new burnished grey finish. It may look similar outside, but inside Mu-so 2nd Generation, the majority of components have been upgraded to improve performance. The cabinet design has been re-engineered to create 13% more internal volume, enabling bigger, better bass. Both the cabinet bracing and baffle moulding have been redesigned for improved rigidity, which suppresses and controls vibrations. The distinctive heat-sink fins are now more compact, while still being ultra-effective, and continuing to feature Naim patented technology that discreetly incorporates the wi-fi antenna.

Multiroom Music Made Easy With Smart Integration
Mu-so 2nd Generation works brilliantly on its own or as part of a multiroom music set-up. There are three easy ways to make it multiroom:

1 - Combine it with other networked Naim products (including 1st Generation Mu-so and Mu-so Qb) via the updated Naim app
2 - Pair it with other AirPlay 2-compatible wireless speakers via the Apple Home app
3 - Pair it with other Chromecast devices via groups controlled by the Google Home app.

Customisation
Mu-so 2nd Generation’s speaker grille has had a style update. The standard black grille can be easily swapped for one of 3 new colour options – Olive, Terracotta and Peacock - to best suit your taste and décor.

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.