iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC
iFi audio ZEN One Signature DAC

iFi audio ZEN One Signature DAC

Price
$0.00
$519.00
Save  $-519.00
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: Audio Electronics(3C)
SKU: IFI.ZEN.ONE.SIG

ONE to rule your home audio
Only DAC you'll need (Bluetooth + USB + S/PDIF)

ZEN One Signature
Our ZEN One Signature takes the DAC stage from the ZEN DAC V2, adds S/PDIF inputs (optical and coaxial) alongside the USB port, stirs in Bluetooth technology from the ZEN Blue V2 and seasons the pot with Signature-grade circuit enhancements to create a delicious audio brew.

The result? The ZEN One Signature is a pure DAC (no built-in headphone amp and volume control) that serves as a home audio hub for all your digital devices, from smartphones and tablets to PCs and Macs, disc players and audio servers to TVs and games consoles.

Home Hub DAC
The ZEN One Signature is the first ZEN DAC to support all hi-res: DSD256, PCM384, MQA384kHz, Bluetooth 96KHz.
• 96kHz Hi-Res Bluetooth: LDAC, HWA/LHDC, aptX Adaptive/HD/LL, AAC
• USB audio using 16 Core 2000MIPS XMOS low latency microcontroller (MQA decoder)
• Fully balanced 4.4mm output

HD Bluetooth
The next-generation HD Bluetooth technology in the ZEN One Signature ensures the best sound from every source. Extensive high-definition codec support – aptX HD, aptX Adaptive, LDAC and HWA/LHDC. High-gain antenna delivers extended Bluetooth range. You’ll love it.

Discerning Digital
The ZEN One Signature offers the following to transform home music enjoyment:
• True Native hi-res DAC – supports 32-bit/384kHz PCM and fully native DSD
• Powerful 16-core XMOS processor – performs full MQA decoding (to 384kHz)
• Upgraded GMT femto-precision clock and customised digital filter eradicate jitter and other forms of digital distortion
• Optical and coaxial S/PDIF digital outputs support 32-bit/192kHz PCM and MQA

Awesome Analogue
Balanced circuitry is what the ZEN series is famed for. The ZEN One Signature continues the tradition:
• Balanced circuit design with Signature - grade circuit components delivers ultra-low distortion and exceptional sonic purity
• 4mm Balanced and RCA single-ended analogue outputs - connect to an integrated amp, preamp, headphone amp or active speakers

Signature Special
The Signature series always includes extra special additions:
• Low-jitter femto clock crystal provides >20dB performance
• 16 Core 2000MIPS XMOS low-latency microcontroller – 4x more processing power
• C0G capacitors – high-linearity, excellent temperature/frequency characteristics
• MELF resistors – high-precision and low-noise
• Taiyo Yuden and Murata inductors – low-impedance power supply rails
• High-gain antenna for extended range

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.