(function () {
try {
// AQ-r2 (2026-06-09): respect the explicit-denial sentinel
// written by cookie-consent-harden.js writeATR() on any
// marketing-axis denial (payload.marketing === false; cycle-3 F1).
// Without this gate, the next page navigation re-creates
// gmx_first_touch from the current URL+referrer+utm_*+click_ids,
// silently undoing the reject-all deletion (sweep finding #1).
// The sentinel is cleared the moment the visitor grants
// marketing in the banner (analytics-only grant does NOT
// clear), restoring the writer path on the very next
// page load. Page-cache-safe: the sentinel is a
// browser-resident cookie checked in the inline script, so
// varnish/breeze-served HTML still hits this gate.
if (/(?:^|;\s*)gmx_consent_denied=1(?:;|$)/.test(document.cookie || '')) return;
var CLICK_IDS = ['gclid','fbclid','msclkid','ttclid','wbraid','gbraid','li_fat_id'];
var qs = new URLSearchParams(window.location.search);
var urlClickIdKey = null;
for (var i = 0; i < CLICK_IDS.length; i++) {
if (qs.get(CLICK_IDS[i])) { urlClickIdKey = CLICK_IDS[i]; break; }
}// Parse existing cookie.
var existing = null;
var match = document.cookie.match(/(?:^|;\s*)gmx_first_touch=([^;]+)/);
if (match) {
try { existing = JSON.parse(decodeURIComponent(match[1])); } catch (e) { existing = null; }
}// GWP-273 — referrer-enrichment branch.
// Keep existing unless either (a) URL carries a new click id
// the stored payload lacks (paid click is a higher-value
// signal and upgrades direct/organic), OR (b) the stored
// payload has empty referrer AND the current document.referrer
// is non-empty + external (Safari/ITP/policy-quirk catch:
// first-hit may have missed the referrer; later same-session
// page-loads can recover it).
var existingHasRef = !!(existing && existing.referrer && existing.referrer !== '');
var docRef = document.referrer || '';
var refHost = '';
if (docRef) {
try {
refHost = new URL(docRef).hostname.replace(/^www\./, '').toLowerCase();
} catch (e) { refHost = ''; }
}
var ownHost = (location.host || '').replace(/^www\./, '').toLowerCase();
var currentExternalRef = !!(refHost && refHost !== ownHost);
var canEnrichRef = !!existing && !existingHasRef && currentExternalRef;if (existing) {
if (!urlClickIdKey && !canEnrichRef) return;
if (urlClickIdKey && existing[urlClickIdKey] && !canEnrichRef) return;
}var utm_keys = [
'utm_source','utm_medium','utm_campaign','utm_content','utm_term',
'utm_adgroup','utm_matchtype','utm_network','utm_device','utm_placement'
];
// GWP-273 — merge-preserving base. When enriching an existing
// payload, retain its landing_url + ts + prior click ids /
// utms; only overlay referrer (and any click id appended below
// via the forEach). Branches with/without urlClickIdKey were
// collapsed — both produced the identical Object.assign — the
// click id is added uniformly later.
//
// GWP-273 design choice: "latest external referrer wins" —
// accepted edge case where a user opens a new external tab
// post-empty-first-touch and returns; low-volume, simple, no
// sentinel flag needed.
var data;
if (existing && canEnrichRef) {
data = Object.assign({}, existing, { referrer: docRef });
} else {
data = { landing_url: window.location.href, referrer: docRef, ts: Date.now() };
}
utm_keys.concat(CLICK_IDS).forEach(function (k) {
var v = qs.get(k);
if (v) data[k] = v;
});
// GWP-208 — carry Meta's first-party click-linker cookies (_fbc
// = fb.1.<ts>.<fbclid>, _fbp) into the captured payload so they
// ride the persistent gmx_first_touch cookie cross-page (LP X →
// LP Y) the same way the URL click-ids do. The CF7 hidden-field
// populator copies the whole payload verbatim, so fbc/fbp reach
// the lead even when the form lives on a page without ?fbclid.
var fbcMatch = document.cookie.match(/(?:^|;\s*)_fbc=([^;]+)/);
if (fbcMatch && fbcMatch[1]) data.fbc = decodeURIComponent(fbcMatch[1]);
var fbpMatch = document.cookie.match(/(?:^|;\s*)_fbp=([^;]+)/);
if (fbpMatch && fbpMatch[1]) data.fbp = decodeURIComponent(fbpMatch[1]);
var encoded = encodeURIComponent(JSON.stringify(data));
if (encoded.length > 3800) return;
var expires = new Date(Date.now() + 90 * 864e5).toUTCString(); // GWP-143 C1: match Google Ads 90-day attribution window
var secure = window.location.protocol === 'https:' ? '; Secure' : '';
document.cookie = 'gmx_first_touch=' + encoded + '; Path=/; Expires=' + expires + '; SameSite=Lax' + secure;
} catch (e) {}
})();
/* Meta Pixel base — inline in wp_head so Breeze Delay-All-JS does not defer it; fbevents.js is async-injected (optimizer-invisible). */
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script',
'https://connect.facebook.net/en_US/fbevents.js');/* Symmetric with server GMX_Consent: revoke BEFORE init; cookies/sends held until grant. */
fbq('consent', 'revoke');
fbq('init', '1857131551802431');
fbq('track', 'PageView'); /* queued; flushed to Meta only after consent grant *//* Grant bridge — reads the SAME ATR marketing signal as GMX_Consent.applyConsent(). */
(function () {
function read(name){var m=document.cookie.match('(?:^|; )'+name.replace(/([.*+?^${}()|[\]\\])/g,'\\$1')+'=([^;]*)');return m?decodeURIComponent(m[1]):'';}
function marketingGranted(){
try {
var given = read('atr_cookie_notice_consent_given');
if (!given) return false; // undecided -> stay revoked
var c = JSON.parse(read('atr_cookie_notice_consent') || '{}');
return !!(c.marketing || c.ad_storage === 'granted');
} catch (e) { return false; } // NO-SILENT-OK: parse/read failure degrades gracefully to revoked (consent stays held; no marketing send) — not an error to report.
}
function apply(){ if (marketingGranted()) fbq('consent', 'grant'); }
apply();
document.addEventListener('click', function(ev){
if (ev.target && ev.target.closest && ev.target.closest('[class*="atr-cookie"], #atr-cookie-notice')) setTimeout(apply, 50);
}, true);
window.addEventListener('storage', apply);
})();
var wc_single_product_params = {"i18n_required_rating_text":"Please select a rating","i18n_rating_options":["1 of 5 stars","2 of 5 stars","3 of 5 stars","4 of 5 stars","5 of 5 stars"],"i18n_product_gallery_trigger_text":"View full-screen image gallery","review_rating_required":"yes","flexslider":{"rtl":false,"animation":"slide","smoothHeight":true,"directionNav":false,"controlNav":"thumbnails","slideshow":false,"animationSpeed":500,"animationLoop":false,"allowOneSlide":false},"zoom_enabled":"1","zoom_options":[],"photoswipe_enabled":"1","photoswipe_options":{"shareEl":false,"closeOnScroll":false,"history":false,"hideAnimationDuration":0,"showAnimationDuration":0},"flexslider_enabled":"1"};
//# sourceURL=wc-single-product-js-extra
Industrial Media Player – Digital Signage and Music for Businesses
350.00 ₪ ex. VAT
GoMixApp Industrial Media Player – a reliable solution for digital signage, music systems, and multimedia stations for businesses. Proven thermal durability, Android 11, continuous 24/7 operation. Price: 350 ₪.
Professional Streamer for Digital Signage – Turn Any Screen into a Smart and Reliable Information Station – An Industrial Solution for Continuous Operation
The GoMixApp industrial media player is the reliable solution for businesses in Israel that require content display and music playback 24/7 without stuttering, sudden shutdowns, or overheating. Unlike home players, the device is engineered for busy business environments – retail stores, cafes, restaurants, clubs, office lobbies, and hospitals. Suitable for both digital signage and background music systems..
Why isn’t a home USB streamer enough for a business environment? Consumer sticks suffer from severe overheating when operating continuously behind a hot professional LCD/LED screen, leading to slowness, video stuttering, and even sudden shutdowns. The GoMixApp industrial streamer solves these problems through advanced design and proven thermal durability.
Streamer thermal durability – a critical advantage in a business environment: The ventilated casing and internal heatsink prevent throttling (CPU slowdown due to heat), ensuring full performance even on hot summer days and during continuous operation. This maintains display quality and ensures the content management system operates without interruption.
Automatic Business Continuity (Auto Power On): The streamer resumes operation independently and immediately after any power outage, without the need for a technician or remote control. This ensures continuous and reliable digital signage content management throughout all operating hours.
Advanced Technical Specifications – What does the product include?
Advanced Technical Specifications – What does the product include?
Processing Power: Amlogic S905X4 chip with a quad-core processor (Cortex-A55), including hardware support for AV1 – the advanced video codec providing high image quality at lower bandwidth, direct savings in communication costs for a professional projection system.
Memory and Storage: 4GB RAM (double the market standard) for smooth operation with heavy content, and 32GB/64GB internal storage for saving complete video libraries – content playback even without an active internet connection.
Diverse Connectivity – Wireless Streamer and USB
Diverse Connectivity – Wireless Streamer and USB
Dual-Band WiFi (2.4/5GHz): Flexible wireless streamer for locations without cabling infrastructure, with support for the 802.11ac standard for fast file transfer – suitable for public transport stations and clinics.
Bluetooth 4.x: Connect keyboards, mice, and control accessories for convenient maintenance – includes support for interactive kiosk systems.
USB Streamer Connections: Fast USB 3.0 port for loading content from external drives + an additional USB 2.0 port for full flexibility.
The product includes delivery to the business and professional installation in Israel, including adaptation to the existing network and screen. A true Plug and Play solution that provides complete peace of mind – as of 2026, over 300 companies have chosen GoMixApp solutions for digital signage content management.
The product includes delivery to the business and professional installation in Israel, including adaptation to the existing network and screen. A true Plug and Play solution that provides complete peace of mind – as of 2026, over 300 companies have chosen GoMixApp solutions for digital signage content management.
Customer Testimonials
Pinchas
Home Committee, Ramla
Service:
★★★★★
Product:
★★★★★
Recommendation:
★★★★★
“With the holiday videos, you really hit it out of the park – the residents were truly excited!”
Mor
Academic Institution
Service:
★★★★★
Product:
★★★★★
Recommendation:
★★★★★
“The digital bulletin board looks amazing, and everything works flawlessly!”
Inbar Shmueli
Business Owner
Service:
★★★★★
Product:
★★★★★
Recommendation:
★★★★★
“Personal and professional service, fast response, excellent product, very satisfied”
Who is the product for? Common real-world applications
The solution suits any business that needs to display dynamic content and update it remotely on a professional LCD/LED screen – whether a retail store, shopping mall, cafe, restaurant, office lobby, public transport station, hospital, or clinic. According to digital signage standards the international ones, systems running 24/7 must meet thermal and reliability requirements that only industrial hardware can provide.
Stores and shopping centers – displaying promotions and prices in real time
Cafes and restaurants – a smart digital menu that updates easily
Offices and building lobbies – digital floor signage and guest wayfinding
Public transport stations – schedules and up-to-date information in real time
Hospitals and clinics – patient instructions and institutional messaging
Key Points – Why this is the leading industrial streamer in Israel
The GoMixApp industrial streamer is built around three principles: absolute reliability, high performance, and simple content management. It is the solution chosen by hundreds of businesses in Israel that require a professional projection system that works without ongoing maintenance.
Proven thermal durability – continuous operation with no CPU throttling even in extreme heat
Android 11 with Kiosk Mode – screen lock and built-in enterprise security
Remote signage content management – update content on all screens with a single click
Auto Power On – automatic return to operation after a power outage
Compatibility with high resolutions and multi-screen display – full 4K
USB streamer with 32/64GB storage – playback even without internet
Frequently Asked Questions
What is the difference between a professional digital signage streamer and a home stick?
A professional digital signage streamer is built for thermal durability and continuous 24/7 operation, including a ventilated casing, Auto Power On, and enterprise kiosk mode. A home stick overheats, freezes, and shuts down after just a few hours of continuous operation.
Does the streamer support remote content management?
Yes. Using Android 11 and a compatible signage content management system (CMS), you can update content on all screens remotely with a single click – without needing to physically visit each location.
Which screens and platforms is the streamer compatible with?
The streamer is compatible with any professional LCD/LED screen with an HDMI input. It supports high resolutions including 4K, and multi-screen display – suitable for a professional projector, interactive kiosk, and floor signage.
How much does the professional streamer cost and how is installation done?
The price is only ₪350, including delivery and professional installation at the customer’s site in Israel. The team performs a custom adaptation to the existing network and screen – a true Plug and Play solution.
Is the streamer suitable for public transport stations and hospitals?
Yes. The streamer’s thermal durability and continuous 24/7 operation make it ideal for high-load environments such as public transport stations, hospitals, and clinics that need ongoing, reliable information updates.
Comparison: The industrial streamer vs. other common solutions
Feature
GoMixApp Streamer
Home HDMI Stick
Mini PC
Thermal durability for 24/7 operation
✓Dedicated ventilated casing to prevent throttling
✗Overheats and shuts down after a few hours
✓but significantly larger and more expensive
Auto Power On after a power outage
✓Returns to operation automatically and immediately
✗Requires a manual press or remote control
✓only with a BIOS setting
Enterprise Kiosk Mode
✓Built into Android 11 at no extra cost
✗No built-in support
✓Requires an additional software license
Remote signage content management
✓Remote update to all screens simultaneously
✗Manual physical update on each device
✓Requires complex configuration
Price and total cost
✓₪350 including professional installation in Israel
✗Cheap but with high maintenance costs
✗3–5x more expensive without installation
Support for 4K resolution and multi-screen display
✓Full support including AV1 hardware decode
✗Limited bandwidth and image quality
✓Depends on the graphics card and configuration
Summary – A digital signage solution that works for you
The GoMixApp industrial streamer is the right choice for any business looking for a reliable, durable, and simple-to-operate solution for real-time signage content management. Unlike cheap consumer solutions, it provides proven thermal durability, enterprise kiosk mode, and continuous 24/7 operation – exactly what a professional projection system for a business environment requires. As of 2026, it is the solution chosen by over 300 companies in Israel, from retail stores to hospitals and public transport stations. Last updated: January 2026.
Want to turn any LCD/LED screen into a smart, touch-free information station? Contact us now and the GoMixApp team will tailor the perfect solution for you – including professional installation in Israel and ongoing support.
Part of GoMixApp’s business systems
This streamer is the core hardware of all our business solutions. It comes included with the system and is not sold separately.
Included in both systems:
Music for Business: AI music with no ACUM royalties, customized genres, monthly refresh. ₪70 per month (streamer included, one-time ₪350).
Digital Signage for Business: Remote LED-screen content management, automatic scheduling. Starting at ₪100 per month.
Each system has its own separate monthly subscription; both can be combined on the same streamer.
var wc_add_to_cart_variation_params = {"wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_no_matching_variations_text":"Sorry, no products matched your selection. Please choose a different combination.","i18n_make_a_selection_text":"Please select some product options before adding this product to your cart.","i18n_unavailable_text":"Sorry, this product is unavailable. Please choose a different combination.","i18n_reset_alert_text":"Your selection has been reset. Please select some product options before adding this product to your cart."};
//# sourceURL=wc-add-to-cart-variation-js-extra
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
//# sourceURL=woocommerce-addons-validation-js-extra
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
//# sourceURL=woocommerce-addons-js-extra
var atrCookieNoticeSettings = {"cookieName":"atr_cookie_notice_consent","decisionCookieName":"atr_cookie_notice_consent_given","expiryDays":"365","autoHideDelay":"0","enableDebug":"","siteName":"GoMixApp","isPrivacyPage":"","privacyPolicyUrl":"https://gomixapp.com/privacy-policy/","privacyNoteText":"\ud83d\udca1 You can read this page while deciding about cookies","mode":"simple"};
//# sourceURL=atr-cookie-notice-simple-js-extra
dataLayer.push({"ecommerce":{"currency":"ILS","value":350,"items":[{"item_id":71275,"item_name":"Industrial Media Player – Digital Signage and Music for Businesses","sku":"GMX-STRE-32940-EN","price":350,"stocklevel":null,"stockstatus":"instock","google_business_vertical":"retail","item_category":"Streamers","id":71275}]},"event":"view_item"});
//# sourceURL=gtm4wp-additional-datalayer-pushes-js-after