(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 breeze_prefetch = {"local_url":"https://gomixapp.com","ignore_remote_prefetch":"1","ignore_list":["/cart/","/checkout/","/my-account/","https://gomixapp.co.il/(.)/u05d4u05d8u05d5u05e4u05e1-u05e0u05e9u05dcu05d7-u05d1u05d4u05e6u05dcu05d7u05d4/","wp-admin","wp-login.php"]};
//# sourceURL=breeze-prefetch-js-extra
Traditional libraries (Soundtrack Your Brand, Mood Media) charge a monthly subscription fee for the catalog and additionally require separate royalty payments to ACUM and the Israeli Federation of Phonograms, according to ACUM business rates.
AI music for businesses on the GoMixApp platform is delivered with full ownership of the files by the business, and therefore there is no royalty obligation under ACUM’s standard tariff track (a track designated for protected works in the organization’s catalog).
Typical annual savings for a single-branch business range between 60% and 85%, with most of the gap coming from eliminating ACUM royalties rather than from subscription fees alone.
In addition to ownership and cost, AI music enables personal customization of the playlist to brand identity through a Hebrew-language prompt, something traditional libraries do not offer.
Business owners in Israel who play AI music for businesses make three decisions in one stroke. That is, ownership of the files instead of monthly licensing, significantly lower annual cost, and full flexibility in tailoring the sound to the business’s identity. The following guide compares GoMixApp to the three common alternatives in Israel – Soundtrack Your Brand, Mood Media, and . Accordingly, the comparison runs across six commercial axes. In addition, it clarifies the difference between ACUM’s standard licensing track and the full ownership track for a new composition.
What is a traditional licensed music library?
A traditional commercial music library is a service that acquires public-performance rights to music from artists, record labels, and producers. As a result, it provides businesses access to a large catalog in exchange for a fixed monthly payment. The three main players in this market are as follows. First, Soundtrack Your Brand is a Swedish company that began as a commercial spin-off of Spotify for businesses. In addition, Mood Media is the veteran American corporation operating systems in hundreds of thousands of businesses worldwide. In summary, is the veteran local player in Israel providing music packages to chains, restaurants, shops, and hotels.
The economic model of these libraries is based on three cumulative payment layers. The first layer is the monthly subscription fee to the library itself, typically ranging between 90 and 300 shekels per branch per month in Israel. The second layer is the public licensing fees paid directly to ACUM (the Israeli Association of Composers, Authors, and Publishers) and to the Israeli Federation of Phonograms. Accordingly, they are calculated based on the business tariff published by ACUM and updated annually. A third layer exists in certain cases of dedicated licensing for international artists who are not directly represented by ACUM. That is, organizations similar to ASCAP and BMI in the U.S. or PRS for Music in the UK.
It is important to understand that this model is a never-ending licensing model. Even after 5 years of regular payments, the business does not acquire ownership of any music file and cannot continue playing the playlist after the contract ends. The moment the contract ends, the library becomes inaccessible and the business must seek an alternative solution or revert to personal staff music, which constitutes Copyright Law infringement in a commercial environment. This is why business owners are frustrated with this model and are looking for alternatives, and this is exactly the gap where AI music for businesses enters the picture. Detailed background on the structure of the Israeli tariff is available in our dedicated guide on how much an ACUM license costs for a cafe.
What is AI music for businesses?
Want music tailored to your business, without royalties?
The GoMixApp business music system is built for this. AI creates playlists tailored to genre, time of day, and the in-store customer experience.
AI music is generated from waveforms using advanced models.
AI from the cloud versus traditional music licensing.
AI music for businesses is a new category that matured during 2024 and became a full commercial alternative in 2026. Instead of acquiring rights to use existing material, generative AI engines produce an entirely new composition from scratch. That is, the creation is performed based on a verbal prompt describing the desired atmosphere, style, tempo, and emotional character. Prominent players in the category include Lyria from Google DeepMind, Soundverse, Wondera, Mubert, and Beatoven. In addition, in Israel, GoMixApp operates and specializes in solutions for local businesses with a full Hebrew interface and a direct connection to a dedicated streamer.
The substantive difference is that compositions created by AI are new works that are not derivatives of protected material in ACUM’s catalog. Pursuant to the GoMixApp terms of use, the files are delivered in full ownership of the business after their creation. Since this is an original work that is not registered in ACUM’s catalog of works or in any equivalent royalty organization, there is no payment obligation under the standard tariff track designated for protected works. This is a contractual and commercial position by GoMixApp, and not a broad legal claim of “legal exemption.” Therefore, if in the future you want individualized advice tailored to your business, it is recommended to consult a copyright attorney.
In addition, advanced systems allow the business to receive a full playlist of 50 or 100 songs personally tailored to its brand identity. At the same time, there is control over the duration, segment structure, and transitions between quiet and energetic songs depending on the time of day. As a result, automatic management of different listening zones in a multi-space business is obtained. AI for a cafe in the morning hours sounds completely different from AI for a cafe in the afternoon hours, and the transitions can be programmed in advance. Additional examples of lobby and reception scenarios appear in the guide background music playlists for the lobby.
Cost comparison: GoMixApp vs. Soundtrack Your Brand, Mood Media and
Four business music alternatives, an overview.
The following table compares the four main providers in the Israeli market across six commercial axes. That is, axes that affect total cost in the first year and over the next five years. GoMixApp and Soundtrack Your Brand prices are publicly published; Mood Media and are quote-based pricing since they do not publish public price lists. ACUM business rates are published by ACUM based on business size, hours of operation, and listening area. Accordingly, they typically range between 80 and 450 shekels per month for a single business.
GoMixApp and Soundtrack Your Brand prices are publicly published and accurate as of May 2026. Mood Media and do not publish a public price list in Israel and operate on the basis of an individual quote. ACUM rates are based on an official business tariff and are calculated according to business size and hours of operation.
Quality comparison: Does AI sound professional in 2026?
The quality question was the main counter-argument of traditional libraries until 2024. However, in 2026, the gap has closed almost completely. According to our customer feedback, professionals in production and sound design examined the output of music for businesses. As a result, they reported that in many cases it is difficult to distinguish between compositions created by the engine and professional studio productions across the variety of genres tested.
The strengths of business music system music in 2026 are four. First, a coherent and consistent sound throughout an entire playlist. In addition, precise emotional matching by prompt (light, energetic, romantic, calm). At the same time, automatic refresh capability at the touch of a button, in contrast to libraries that curate a static catalog. In summary, support for niche genres that traditional libraries do not always cover (for example, modern Middle Eastern lounge, Mediterranean acoustic, or minimalist electronic for clinics).
The limitations that still exist are mainly two. The first: the GoMixApp package does not produce performances by famous artists. If a cafe wants to play Adele, Beyonce, or Shlomo Artzi, it will not get that from an AI engine. The second: at special events such as a Shabbat eve, holidays, or very specific concepts, the sense of familiarity from popular tracks may give an advantage to the customer experience. Therefore, in those cases a traditional library or a hybrid combination is the right choice.
The ownership model: why AI flips the rules
The GoMixApp player runs on mobile and desktop.
The most significant difference between the two models is not in price and not in quality, but in the very structure of ownership. In a traditional library, the entire arrangement is licensing. You pay for a temporary right of use, and the moment you stop paying, the right expires. If the library changes the terms of use, raises the price by 30%, or decides to remove a certain artist from the catalog, there is nothing you can do. The playlist you cultivated for years can disappear overnight.
In contrast, under the GoMixApp AI model, the files created for you are in your full ownership. After creation, you can download the files, store them in the cloud or on physical drives, and continue to play them permanently even if you stop the subscription to the creating platform. This is real ownership of a digital asset, just like your product photos, logo, or marketing materials. The files enter the business’s file repository and are available for unlimited reuse.
The business significance is enormous: if in three years you want to switch to another provider, run a different listening system, or simply cut costs, you remain with your music library. There is no dependency on the service provider, no risk of aggressive price increases on renewed contracts, and no shackle of a service package pulling you in. This is royalty-free music in the broad and full sense of the term, in the contractual ownership track offered to customers of GoMixApp business music.
Genre on demand: the advantage of a Hebrew prompt
The most interesting capability of AI music for businesses is the ability to describe the desired atmosphere in words. As a result, you get a playlist that expresses that description in practice. In a traditional library, you choose from 50 predefined playlists (Lounge Cafe, Modern Pop, Easy Listening, Latino Mix, etc.). In contrast, in an AI system you open a text field and write: “Calm morning jazz at 100 BPM for a Tel Aviv cafe with a light urban atmosphere, piano solos, no trumpet and no vocals.” Accordingly, the system generates a playlist that fits this description exactly.
This capability allows businesses to tailor the musical experience to their specific target audience in an unprecedented way. A young fashion store for teens can define “energetic indie-pop with strong bass at 128 BPM.” In addition, a relaxation-treatment spa can define “atmospheric ambient with strings and a synthetic carpet, without a defined tempo.” At the same time, a chef restaurant can define “modern jazz with bossa nova influences, mainly a piano quartet with vibraphone.” In summary, all of these are situations that a traditional library simply cannot cover accurately.
Beyond that, AI enables dynamic playlist processing throughout the day. You can define in advance that one genre plays in the morning hours (07:00 to 11:00). In addition, a second genre plays at lunchtime hours (11:00 to 15:00). In summary, a third genre plays in the late evening hours (21:00 to 23:00). The transitions are automatic, smooth, and require no staff intervention. This is a solution that until 2024 required a dedicated music manager or a commercial design team at high costs.
Real-world examples: businesses in Israel that moved to AI
In the past year, we have seen Israeli businesses from various sectors making the transition from a traditional library model to an AI model. A boutique cafe in Tel Aviv reported savings of approximately 1,200 shekels per month after the transition. As a result, the main reason is the cancellation of a subscription to a commercial library and the cancellation of the separate monthly ACUM payment. Therefore, the ratio between the AI subscription fees and the savings on royalties is approximately 1 to 4 in favor of the transition.
A jewelry store in a mall in Jerusalem found value mainly in the personalization capability. That is, the store team changed the playlist according to the dominant target audience in the morning hours (professional customers and tourists) versus the afternoon hours (families and young people). As a result, an experience more tailored than the homogeneity of a fixed playlist was created. A boutique hotel in Eilat used customized ambient genres that create a unique atmosphere in the lobby, in the open air, and in the spa rooms. In addition, each area received its own musical signature, with no extra payment for multi-zone management that would have been required in a traditional library.
When to choose a traditional library and when to choose AI?
Despite the clear advantages of AI, there are scenarios in which a traditional library is still the right choice. The main criterion is the need for well-known tracks. Retro-style bars play popular songs from the 80s and 90s. In addition, fitness studios need a current hit that charges energy. At the same time, theme stores such as music and home design shops want to show affiliation with contemporary pop culture. Therefore, all of these need licensed music, and that is a purpose that a traditional library delivers seamlessly.
In contrast, if your main needs are operational cost savings, personalization, full ownership of the library, and elimination of royalty payments to ACUM, then AI is the right choice. That is, most businesses in this category are cafes, modern restaurants, spas, clinics, luxury establishments, coworking spaces, boutique stores, and galleries. In summary, these are businesses for which an appropriate atmosphere is much more important than a specific track.
A hybrid model is also becoming popular. You can use AI as the main fixed playlist, and maintain a basic subscription to a traditional library only for special events or for a narrow portion of operating hours that require popular tracks. This approach saves costs while preserving flexibility.
But what about YouTube?
A common question is whether you can simply play music from YouTube instead of paying a library or switching to AI. The short answer is no. That is, playing YouTube in a commercial business violates Google’s terms of service and also the Israeli Copyright Law, even if the subscription is a personal YouTube Premium. Google does indeed offer a dedicated commercial license through YouTube Music for Business. However, it is more expensive and complex than Soundtrack Your Brand in many cases. In addition, it still does not resolve the obligation to pay ACUM for public performance. For a detailed guide to the three legal alternatives (Soundtrack ACUM, royalty-free library, AI), see the complete guide to YouTube playback laws in business 2026.
Frequently Asked Questions
What is the difference between AI and a commercial playlist?
A commercial playlist in a traditional library contains existing tracks by known artists for which the library has acquired usage rights. AI generates new compositions from scratch based on your prompt. In a commercial playlist, you choose from a catalog; in AI, you describe the atmosphere and the system creates it. In terms of ownership, a commercial playlist is licensing that ends with the contract’s termination, while AI works are delivered in your full ownership under the GoMixApp terms of use.
Does AI sound professional in 2026?
Yes. The 2026 generation of musical AI engines such as Lyria from Google, Soundverse, Wondera, and Beatoven produces compositions at professional studio quality. According to our customer feedback, industry professionals who reviewed the output reported that it is difficult to distinguish between high-quality AI music and studio productions. The strength is in sound coherence and emotional fit; the only limitation is that there are no famous artists in the output.
Is the library updated?
Yes. In AI systems, you can refresh the playlist whenever you want, add new songs at the touch of a button, or request a brand new playlist for a special promotion or seasonal change. The refresh does not require an additional fee in standard packages and can be performed many times a month. In addition, the AI engines themselves improve over time and quality rises even without action on your part.
Is there full ownership of the music?
Yes. Under the GoMixApp model, the files created for your business are delivered in your full ownership after creation, in accordance with the terms of use. You can download them, store them, and play them in perpetuity even if you stop the subscription. Since this is an original work that is not registered in the catalog of ACUM or an equivalent royalty organization, there is no payment obligation to ACUM in the standard tariff track. This is the substantive difference from traditional libraries, where the model is licensing that ends the moment you stop paying.
How does it compare in price?
Annual savings when moving from a traditional library to AI typically range between 60% and 85% for a single-branch business. In a multi-branch business, the savings compound. AI subscription fees at GoMixApp are 350 NIS excluding VAT one-time for the streamer and 70 NIS excluding VAT per month (with 10% off on an annual subscription), versus 290 to 450 shekels at traditional libraries (Soundtrack Your Brand) or quote-based pricing at Mood Media and . In addition, you save on ACUM payments that can reach hundreds of shekels per month per business under the business tariff. Over 5 years, the savings reach tens of thousands of shekels per branch.
Is AI completely exempt from payment to ACUM?
This is not a “legal exemption” but rather a commercial fact: ACUM’s standard business tariff applies to the performance of works registered in the ACUM database. AI works created for a business on the GoMixApp platform are new works not registered in this database, and therefore the standard ACUM collection track does not apply to them. In any specific case requiring legal clarification, it is recommended to consult a copyright attorney, since the state of the law in the AI space continues to evolve.
What is the expected monthly cost to ACUM for a typical business?
The ACUM business tariff is calculated by business size, area, and hours of operation. According to the business tariff published by ACUM, a single medium-sized cafe (up to 100 seats) typically pays between 150 and 300 shekels per month; a fashion store will pay between 80 and 200 shekels per month; a chef restaurant or hotel will typically pay over 350 shekels. These are payments that are added to the commercial library subscription fees and are completely eliminated upon transitioning to AI.
How do you transition from an existing service to GoMixApp?
The transition includes three stages. First, purchasing the business music system package (dedicated streamer + monthly AI subscription). Second, jointly building a Hebrew prompt with our team based on business identity, audience type, and hours of operation. Third, installing the streamer on premises and activating the playlist. In parallel, you can cancel the subscription to the previous library and update ACUM that the business has moved to original AI works. The entire process typically takes two to three weeks.
Can you play YouTube instead of AI or a library?
No. Playing personal YouTube or YouTube Premium in a commercial business violates Google’s terms of service and the Copyright Law. Google offers a dedicated commercial license through YouTube Music for Business, but it does not resolve the obligation to pay ACUM. For a detailed guide to the three legal alternatives (Soundtrack with ACUM, royalty-free library, AI), see the complete guide to YouTube playback laws in business.
Summary
The choice between AI music for businesses and a traditional library from Soundtrack Your Brand, Mood Media, or is a choice between two commercial models. That is, a traditional library offers access to an existing catalog in exchange for ongoing monthly licensing plus an ACUM tariff. In contrast, AI offers the creation of a new composition for the business with full ownership of the files, without the standard ACUM tariff track. In addition, for most businesses in Israel (cafes, restaurants, spas, boutique stores, hotels, galleries, and clinics), the commercial advantages of AI outweigh the advantages of access to popular tracks. On the other hand, for businesses that do need known tracks (retro bars, fitness studios, pop-culture stores), a hybrid model sometimes provides the optimal solution. In summary, the first step is to examine your current total cost and compare it to the ownership track of the managed business music guide.
Sources (References)
ACUM – Business Tariff – public-performance license rates for commercial businesses in Israel.
The information in this article is general only, does not constitute legal advice, and does not replace individualized advice from a lawyer. Questions regarding music licensing for a business should be referred to an attorney who specializes in intellectual property. ACUM rates, YouTube’s terms of service, and commercial music library rates are subject to change; the information is accurate as of May 2026.
Soundtrack Your Brand(R) is a trademark of Soundtrack Your Brand Ltd. Mood Media(R) is a trademark of Mood Media Corporation. YouTube(R) is a trademark of Google LLC. ACUM operates under the Copyright Law 5768-2007 as the recognized collective management organization in Israel. These trademarks are mentioned for the purposes of objective comparison only; GoMixApp is not affiliated with these companies.
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