Deeege 5-in-1 Chinese Karaoke Machine

2025 NEW Chinese Karaoke Machine
Due to shipping costs, the free soundbar is not available in Hawaii and Canada.
The gift soundbar is shipped separately, and the delivery time will be a few days later
$599.00 $899.00
(Tax included)
18.5-inch 4K high-definition screens
Simplified Chinese, Traditional Chinese, and English interface
Access over 1,000,000 songs via cloud-based music library. Internet connection required
Designed with a simple interface suitable for users of all ages
Ship To:  United States
Storage:  2T(40K~50K Songs)
Style:  Machine+Sound bar
Quantity
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1651799308132').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);
Share the love
(function () { try { const getProduct = () => { const productJson = document.querySelector('#product-json'); if (productJson?.textContent) { return JSON.parse(productJson.textContent); } if (window.jQuery) { const $product = window.jQuery?.(document)?.data('djproduct'); const productData = JSON.parse(JSON.stringify($product || {})); return productData || {}; } return {}; }; const blockDomId = 'pm-block-afterpay-message-1651799308132-16' const placeholderDomId = 'pm-block-afterpay-message-placeholder-1651799308132-16' const badgeTheme = "black-on-mint"; const size = "md"; const shopCurrencyCode = "USD"; const productDetail = getProduct(); let productPrice = productDetail?.selected?.price || 599.00; let settingConfig; const req = { ROOT_URL: (C_SETTINGS && C_SETTINGS.routes && C_SETTINGS.routes.root) || '', post: async (url, data = {}) => { try { const response = await fetch(req.ROOT_URL + url, { method: 'POST', headers: { 'Content-Type': 'application/json', }, ...data, body: JSON.stringify(data.body), }); const result = await response.json(); return result } catch (error) { throw new Error('post request error' + error); } }, get: async (url, data = {}) => { try { const response = await fetch(req.ROOT_URL + url); const result = await response.json(); return result } catch (error) { throw new Error('get request error' + error); } } } const supportLocaleMap = { AU: 'en-AU', NZ: 'en-NZ', US: 'en-US', CA: 'en-CA', GB: 'en-GB', FR: 'fr-FR', IT: 'it-IT', ES: 'es-ES', DE: 'de-DE', } const getPayLaterSetting = () => { return req.post('/api/payment/pay-later-setting', {body: {payment_channel: 'afterpay'}}).then(res => { const result = { ...res, afterpay_currency_locale: supportLocaleMap?.[res?.afterpay_support_country?.[0]] || supportLocaleMap?.US || 'en-US' } return result; }); } const getBlockDom = () => { const blockDOM = document.getElementById(blockDomId); if (!blockDOM) { return; } return blockDOM } function errorHandler() { const blockDOM = getBlockDom(); if (blockDOM) { blockDOM.style.display = 'none'; } } function hasAfterpayMessage() { // 获取目标元素 const targetElement = document.getElementById(placeholderDomId); // 判断目标元素是否有兄弟元素节点 const siblings = Array.from(targetElement.parentNode.children).filter(function (node) { return node.nodeType === Node.ELEMENT_NODE; }); return siblings.length > 1 } function renderAfterpay(data = {}) { const blockDOM = getBlockDom(); if (!blockDOM) { return; } blockDOM.innerHTML = null; const placeholderDOM = document.createElement('div'); placeholderDOM.id = placeholderDomId; placeholderDOM.className = 'pm-display-none' blockDOM.appendChild(placeholderDOM); blockDOM.style.display = 'block'; if (window.Afterpay && typeof Afterpay?.createPlacements === 'function' && !hasAfterpayMessage()) { try { Afterpay.createPlacements({ targetSelector: `#${placeholderDomId}`, attributes: { locale: data.afterpay_currency_locale, currency: data.afterpay_currency, amount: data.productPrice, size: size, badgeTheme: badgeTheme, } }); } catch (e) { console.error('payment-sdk:', e); } } } async function init(data = {}) { const blockDOM = getBlockDom(); if (!blockDOM) { return; } if (!settingConfig) { settingConfig = await getPayLaterSetting(); } if(data?.detail?.selected?.price){ productPrice = data?.detail?.selected?.price; } if ( !settingConfig || !settingConfig.afterpay_promo_msg_enabled || !settingConfig.afterpay_max_amount || !settingConfig.afterpay_min_amount || !settingConfig.afterpay_support_country || shopCurrencyCode !== settingConfig.afterpay_currency || Number(productPrice) <= Number(settingConfig.afterpay_min_amount) || Number(productPrice) > Number(settingConfig.afterpay_max_amount) ) { errorHandler(); return; } const scriptDOM = document.getElementById('pm-afterpay-sdk'); if (!scriptDOM) { window.addEventListener('Afterpay.ready', () => renderAfterpay({ ...settingConfig, productPrice })); const afterpaySDK = document.createElement('script'); afterpaySDK.id = 'pm-afterpay-sdk' afterpaySDK.src = 'https://js.afterpay.com/afterpay-1.x.js'; afterpaySDK.setAttribute('data-analytics-enabled', ''); afterpaySDK.setAttribute('data-min', settingConfig.afterpay_min_amount); afterpaySDK.setAttribute('data-max', settingConfig.afterpay_max_amount); afterpaySDK.async = true; afterpaySDK.onerror = errorHandler; document.body.appendChild(afterpaySDK); } else { renderAfterpay({...settingConfig, productPrice}); } } document.addEventListener('dj.variantChange', init); init(); } catch (e) { console.error('payment-sdk-afterpaymessage:', e) } })()
Description

DEEEGE 5-in-1 vs Competing Products

Feature DEEEGE 5-in-1 Other Similar Products
Song Library ✅ Local North American library, stable and unrestricted ⚠️ KuGou-based library from China, often inaccessible in North America
Screen Size ✅ 18.5” 4K Touchscreen ⚠️ Mostly under 15”, low resolution
Built-in Functions ✅ Fully integrated 5-in-1 system, no external setup required ⚠️ Requires external devices, complex setup
Storage Capacity ✅ 2T / 4T / 8T options available ⚠️ Usually 500GB–1TB, insufficient space
After-Sales Support ✅ U.S. repair center and customer service ⚠️ No North American support, difficult to repair
Shipping ✅ Ships from North America, delivery in 3–7 days ⚠️ Ships from China, expensive and slow
Price & Free Gift ✅ $599 includes bonus $99 Soundbar ⚠️ Similar pricing, no bonus items

🎯 Why Are We Different?

DEEEGE is the official and exclusive distributor in North America
✅ Authorized U.S. service center located in California with full after-sales support
✅ Each machine is rigorously tested for long-term stable use for years
✅ We focus solely on high quality, stability, and long lifespan karaoke systems

We do not engage in price wars or random discounting, because:

🚫 Low price ≠ Real value
🚫 Cheap ≠ Quality
🚫 Others sell price, we deliver long-term reliable experience

Our customers are those who value home entertainment and a premium lifestyle — the very reason we insist on only offering the best.


🛡️ Why Choose Us?

Purchases from our official websites include:

🔹 Chinese site: https://www.deeege.shop
🔹 English site: https://www.deeege.com

DEEEGE is the only official sales channel in North America

  • 📦 Ships from U.S./Canada warehouse, delivered in 3–7 days
  • 🛠️ Professional after-sales center in San Jose, CA (Free return and shipping labels if product issues occur)
  • 🔧 14-day return policy + 1-year warranty + 3-year screen guarantee
  • 💬 Customer service via WeChat / Line / WhatsApp + Video setup support

📌 Beware of low-priced counterfeits. A few dollars saved can lead to costly problems.

This is not just about price — it's about quality, service, and peace of mind.


❌ Products purchased from non-official sites are not eligible for after-sales support. Beware of sellers promoting so-called “outdoor karaoke machines” at low prices, claiming to offer “tens of millions of songs.” The truth:

  • ❌ Songs often come from third-party platforms like KuGou, not owned by the seller
  • ❌ Most songs only function in China — not playable or downloadable in the U.S.
  • ❌ These apps often require additional fees, with highly misleading claims
  • ❌ These products typically lack warranties or customer service — no help if issues arise

📌 All product images and content are original to our team. We reserve the right to pursue legal action against unauthorized use.

🔒 Choosing DEEEGE means choosing reliability and long-term product quality. We're committed to launching even more premium entertainment systems — stay tuned!


🏆 一機在手,家庭KTV立即升級

  • 【海量曲庫,唱遍華語經典】:​預裝曲庫+云端超過100萬首歌曲,秒找懷舊金曲!周杰倫、鄧麗君、Beyond、經典老歌熱歌一網打盡!涵蓋粵語、國語、英語、日語等多種語言,每月自動更新新歌,熱曲永不缺席。
  • 支援簡體中文 / 繁體中文 / 英文三語介面

  • 微信 / App / 語音多方式點歌:微信掃碼點歌、語音搜歌、手機APP遠端控場,長輩也能輕鬆上手!

  • 內建2T/4T/8T超大儲存容量:​搭配超高速硬碟,點歌反應秒速,自由擴充歌單,不怕歌不夠唱。
  • 無線WiFi秒連下載新歌,安裝簡單直連音箱(註:音箱需自備或購買我們的)

  • 18.5吋4K高清觸控螢幕:​電容式觸控,操作流暢,高解析畫面帶來極致視覺享受。
  • 專業混響擴音模組:​內建高級音效處理芯片,還原KTV現場音質,無需外接電腦或混音設備,簡單即插即唱。

  • 標配2支無線麥克風:​雙麥克風混響+專業功放,修音效果媲美KTV!

📦 產品內容物包含:

  • Deeege 5合1卡拉OK主機 x1

  • 無線麥克風 x2

  • HDMI線材 x1

  • AV線材 x1
  • Passive Speaker Cable x1

  • 電源線材 x1

  • LED氣氛燈 x1

  • 咪套 x2
  • 中文使用說明書 x1


選擇 DEEEGE,就是選擇安心、品質與長期陪伴。

DEEEGE 一直以來積極參與華人社區活動,目前已贊助多家長者服務中心與華人社團使用我們的卡拉OK機作為娛樂設備。這不只是信任的體現,更是我們對社會的承諾。

📌 若您是:

  • 華人社團

  • 長者服務中心

  • 僑校、中文學校

  • 其他公益組織或非營利團體

🎁 歡迎聯繫我們,我們樂意提供特別折扣或公益支援,甚至不賺錢或虧本贊助,只為讓更多人能快樂唱歌、聯繫感情,這就是 DEEEGE 的真誠與初心。

贊助CACC Delaware德立華華美聯誼中心作為娛樂K歌設備(2024中國節)

品質認可,北美家庭、社團、餐廳娛樂K歌首選品牌

🎤 五合一中文卡拉OK機 - 樂齡歡唱,共享美好時光!

🎶 支援新澤西州某長者康養中心娛樂設備

Deeege迪格 2024中文点歌机 卡拉Ok机 五合一功放一体卡拉OK点唱机 Chinese karaoke machine description img3Deeege迪格 2024中文点歌机 卡拉Ok机 五合一功放一体卡拉OK点唱机 Chinese karaoke machine description img4

Unboxing and Installation

Deeege-迪格 5-in-1 Chinese Karaoke Machine

Connecting speakers of different sizes

The singing effect depends on speaker size and power

Deeege-迪格 5 in 1 Chinese Karaoke Machine 1  Deeege-迪格 5 in 1 Chinese Karaoke Machine 3 Deeege-迪格 5 in 1 Chinese Karaoke Machine 4 Deeege-迪格 5 in 1 Chinese Karaoke Machine 5 Deeege-迪格 5 in 1 Chinese Karaoke Machine 6 Deeege-迪格 5 in 1 Chinese Karaoke Machine 7 Deeege-迪格 5 in 1 Chinese Karaoke Machine 8 Deeege-迪格 5 in 1 Chinese Karaoke Machine 9 Deeege-迪格 5 in 1 Chinese Karaoke Machine 10 Deeege-迪格 5 in 1 Chinese Karaoke Machine 11Deeege迪格 2024中文点歌机 卡拉Ok机 五合一功放一体卡拉OK点唱机 Chinese karaoke machine description img5Deeege迪格 2024中文点歌机 卡拉Ok机 五合一功放一体卡拉OK点唱机 Chinese karaoke machine description img7Deeege迪格 2024中文点歌机 卡拉Ok机 五合一功放一体卡拉OK点唱机 Chinese karaoke machine description img8Deeege迪格 2024中文点歌机 卡拉Ok机 五合一功放一体卡拉OK点唱机 Chinese karaoke machine description img9Deeege迪格 2024中文点歌机 卡拉Ok机 五合一功放一体卡拉OK点唱机 Chinese karaoke machine description img10Deeege迪格 2024中文点歌机 卡拉Ok机 五合一功放一体卡拉OK点唱机 Chinese karaoke machine description img11Deeege迪格 2024中文点歌机 卡拉Ok机 五合一功放一体卡拉OK点唱机 Chinese karaoke machine description img12Deeege迪格 2024中文点歌机 卡拉Ok机 五合一功放一体卡拉OK点唱机 Chinese karaoke machine description img13Deeege迪格 2024中文点歌机 卡拉Ok机 五合一功放一体卡拉OK点唱机 Chinese karaoke machine description img14Deeege迪格 2024中文点歌机 卡拉Ok机 五合一功放一体卡拉OK点唱机 Chinese karaoke machine description img

Frequently asked questions

I don't see the speaker model I'm using in the installation video, can a karaoke machine be connected?

Can connect! The two included audio cables work with almost any audio device on the market, whether it's home speakers, pro speakers, or sound bars. Even if your audio only has one external interface, you only need to buy a 3.5mm to RCA cable.

Can a TV be used as a speaker/stereo/horn for a karaoke machine?

Can't! The TV connected to the karaoke machine can only play video and sound, but the microphone cannot be used. The HDMI connected to the TV cannot transmit the sound of the microphone. If you want to use the microphone, you must connect an active speaker or a passive speaker through the Audio out interface on the back of the karaoke machine. Or the speaker interface outputs microphone sound.

What does 2T/4T/8T stand for?

It represents the internal storage of the karaoke machine. The 2T can store about 50,000 songs, the 4T can store about 100,000 songs, and the 8T can store about 200,000 songs. Local storage is mainly convenient for singing when you want to sing. Online songs need to be downloaded online to play.

Does a Chinese karaoke machine need an amplifier?

Unnecessary. Both the 5-in-1 and 6-in-1 have built-in power amplifiers and have built-in power amplifier functions. You can set the volume and amplifier function of the song in the settings.

What if there is no song I want to sing?

Deeege Chinese karaoke machine supports network update and download of songs and also supports U disk to import songs. If you can't find the song you want to sing in the local storage of the jukebox or in the online library of 1 million songs, you can download songs and MVs from the Internet, import them to the jukebox for playback and karaoke, or contact us to provide free cloud service for uploading songs, follow-up You can download it for free.

How to guarantee the after-sales service of Chinese karaoke machines?

The machine is guaranteed for one year after the order is placed, and we have a local maintenance point in the United States, and the door-to-door pick-up and maintenance costs incurred will be borne by us.

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.