• Categories
    • Music Industry News & In-Depth Analysis
    • Information For Musicians
    • Music Tech
    • Entertainment Law
    • Live Concert Industry
    • Pop Culture
  • Sync News
  • Jobs
    • General Manager
    • Record Label Product Manager
    • International Marketing Manager
    • D2C Merchandise Product Manager
    • Musician-Focused Journalist
    • More Jobs
  • Podcasts
  • About Us
    • Contact
    • Advertise
Digital Music News logo
Log In


Lost your password?
Register
Lost your password?


Register


A password will be e-mailed to you.
Search
  • Categories
    • Music Industry News & In-Depth Analysis
    • Information For Musicians
    • Music Tech
    • Entertainment Law
    • Live Concert Industry
    • Pop Culture
  • Sync News
    Related
    • It Took Years for These Music Industry Experts to Learn These Monetization Pro-Tips

      Dylan Smith
      June 4, 2020
      1
    Recent
    • “My Whole Source of Income Just Disappeared” — How Two Musicians Are Dealing With Cancelled Concerts

      Dylan Smith
      September 11, 2020
    • What Does It Take to Succeed In Songwriting? Surprising Lessons from Two Successful Sync Writers

      Dylan Smith
      August 28, 2020
      4
    • How a Movie Score Is Really Made — According to a Top Hollywood Director

      Dylan Smith
      August 14, 2020
      2
    • Want to Get Your Music Heard? It Starts With the Winning Pitch

      Dylan Smith
      July 31, 2020
      3
    • Want Your Music In a Major Gaming Series? Meet the Guys Who Create Their Soundtracks

      Dylan Smith
      July 15, 2020
    • Artist Branding Isn’t Selling Out Anymore — But What’s the New Balance?

      Dylan Smith
      July 1, 2020
      1
  • Jobs
    • General Manager
    • Record Label Product Manager
    • International Marketing Manager
    • D2C Merchandise Product Manager
    • Musician-Focused Journalist
    • More Jobs
  • Podcasts
    Related
    • Meet the Artist Who Is Literally Saving His Fans' Lives — Our Latest Podcast

      Paul Resnikoff
      January 21, 2020
    Recent
    • Meet Lady A, the Black Blues Singer Whose Name Got Taken by Lady Antebellum — Our Latest Podcast

      Paul Resnikoff
      July 18, 2020
      7
    • Spotify Probably Owes You More Money — Here’s How to Get It (Our Latest Podcast)

      Paul Resnikoff
      February 12, 2020
      27
    • How to Game the Billboard Charts (And Why You Shouldn’t) — Our Latest Podcast

      Paul Resnikoff
      January 2, 2020
      2
    • Meet the Single Mom Cellist Who Makes a Living Off Her Music — Our Podcast Interview

      Colin Cohen
      December 18, 2019
      3
    • How to Protect Yourself From the Copyright Trolls — Our Latest Podcast

      Paul Resnikoff
      December 12, 2019
      3
    • Stop Chasing Playlists and Start Building a Music Career — Our Latest Podcast

      Paul Resnikoff
      November 26, 2019
      6
  • About Us
    • Contact
    • Advertise
  • Menu logo
Trending
  • BTS Coming to Fortnite Party Royale With New Music – iPhone Users SOL For Now
  • Amazon Launches New Ad Campaign for HD Music – Does It Matter?
  • The Legal Battle Over YouTube Stream-Rippers Could Go to the Supreme Court
  • Musicians Step Up Their Legal Battle Against New York’s Ticketed Event Ban — “It Is the Definition of Nonsensical”
  • Spotify Employees Demanding Direct Editorial Oversight Over Joe Rogan Podcasts — Before They’re Published
  • Empty Concert Halls In the U.S. Are Being Converted Into Polling Stations
  • How to Get on Spotify Playlists — Try These 16 Proven Tips
  • Fraud In the Music Industry — How Big of a Problem Is This?
  • Swizz Beatz Says Streaming Services Should Pay Artists 50/50: ‘We’re Not Getting Paid Enough’
  • The CEO of ‘Non-Profit’ SoundExchange Makes $1.4 Million a Year
  • What Streaming Music Services Pay (Updated for 2020)
  • What Spotify Paid One Artist in 2018
  1. Home
    1. Music Industry News & In-Depth Analysis
    2. Music Tech
    3. Music Metadata

How AI Solves the Unclaimed Royalties Problem

Stephen Brady
April 2, 2019
4

Artificial Intelligence, or AI, is a subject generating significant attention, both in the music industry and beyond.

The following comes from Stephen Brady, Lead Software Engineer at Exactuals, a proud partner of DMN.

Many fear AI could put jobs at risk, especially considering research shows 45% of occupations could be automated by adapting currently demonstrated technologies.  However, copyright-intensive industries, like music, could benefit from this type of overhaul, and given those industries’ key contributions to the national GDP, it is imperative we work to leverage AI to create an economic landscape that ensures all revenue is collected.

According to the most recent U.S. Census data from 2014, copyright-intensive industries accounted for 5.5% of the total U.S. GDP, up from 4.4% in 2010.  This meaningful percentage would be more significant if not for substantial revenue loss caused by piracy and incorrect or unknown rights attribution.  Despite the general assumption that piracy is declining, antipiracy consulting firm Muso found that visits to music piracy sites were actually up 14.7% in 2017 to 73.9 billion.  In addition, an estimated $1.5 billion in unclaimed music royalties was reported in 2017, according to NOI filings.  Both represent a significant loss of revenue.

In this article, we will focus on the problem of unclaimed royalties and show how Exactuals uses AI to resolve it.

Understanding AI

At the most basic level, algorithms attributing royalties to rights holders are asking questions of equivalence.  This means the program is trying to determine whether or not two entities are the same thing.  For this reason, these types of algorithms are called “entity resolution” algorithms.  Executing this process may sound simple, but can be extremely difficult due to the veracity of the data and the computational complexity required.  The simplest way to perform entity resolution is by measuring the similarity between metadata attributes like “Title” and “Performer,” a process known as “attribute similarity,” and using the results to make automated decisions.  Here’s an example.

In Exactuals’ RAI open API, this type of algorithm is used to find links between sound recordings and musical works. To illustrate this, take a look at the song “Michelle” by The Beatles.  Written by John Lennon and Paul McCartney, the track has been recorded by over 778 different performers, resulting in an estimated 1,302 total recordings of the song.  To properly attribute its rights, an algorithm needs to determine equivalence between the one original work and its various recordings.  Let’s assume two recordings of the song exist with the same “Title” attribute of “Michelle.”  However, the “Performer” attribute on one version is “The Beatles” while the other is “Beatles, The.”  Using a popular similarity algorithm known as “Levenshtein distance” — which assigns a similarity value between 0 and 1.0 — the Title attribute receives a 1.0 similarity score while the Performer attribute receives only a 0.25.  Combining these using a naive weighting scheme results in an attribute similarity score of 0.625, or 62.5%. This is illustrated below:

(click to enlarge)

This is oddly low considering that the attributes are the same, just out of order.  To improve the results, an algorithm can be taught to classify whether or not two entities are the same.  The algorithm accomplishes this by learning which attributes are more informative than others, thus improving the results by adding more context.  This type of machine learning algorithm is known as a “binary classification” algorithm and is used extensively in Exactuals’ RAI.

Using the previous example, let’s assume the binary classification algorithm learns that the Performer attribute is not as informative as the Title attribute when determining match status, assigning a weight of 30% to the Performer and 70% to the Title.  That brings the attribute similarity score up to 0.77, or 77%, which is better but still not truly indicative of the underlying relationship between the entities.

(click to enlarge)

The result can still be improved, but doing so will require looking at the data in a different way.  Instead of seeing the data simply as a set of attributes, it also must be viewed as a set of relationships.  For example, the data shows that Paul McCartney and John Lennon are members of both “The Beatles” and “Beatles, The.”  The degree of connectivity, or “connection strength” between them can be measured using an algorithm called “Jaccard Similarity.”  Because they both contain the same set of relationships, they produce a “connection strength” score of 1.0.

The final step in determining equivalence is to add the initial attribute similarity score of 0.77 to the connection strength score of 1.0.  This is accomplished by weighting the importance of attribute similarity vs. connection strength.  Naively assigning a weight of 30% to the former and 70% to the latter, the total equivalence score is 0.93, or 93%, a much more accurate reading.  But there’s a problem.  In this scenario, the above weights were assigned manually, which would not scale to millions of listeners that are streaming millions of songs at any given point in time.

(click to enlarge)

This process can be optimized by adding another binary classifier to “learn” the relevance of attribute similarity vs. connection strength when making matching decisions.  This new algorithm will be used in conjunction with our previous binary classifier, thereby creating an “ensemble” of algorithms, a powerful strategy commonly used to improve our results in Exactuals’ RAI.  In this case, the algorithm determined that connection strength is more informative than attribute similarity, assigning a weight of 80% to the former and 20% to the latter. It all results in an equivalence score of 0.954, or 95%.

An Elegant Solution

Artificial intelligence is an inherently complex subject.  However, AI can make the process of attributing royalties just as elegant as a duck gliding across a pond.  We don’t see the furious swimming beneath the surface, just the result.  Solutions like Exactuals’ PaymentHub and RAI leverage AI to accurately detect all rights holders and get them the money they deserve.  With a robust library of metadata, AI can connect the intricate web of relationships existing between recordings, significantly decreasing the amount of unclaimed royalties and ensuring all revenue is collected.  This is good for the rights holders, good for the industry, and great for the country.

Share On:
Tweet
 
 
Paid Streaming Subscriptions Now Account for 37% of Global Recorded Music Revenue
Irving Azoff’s Global Music Rights Scores a Significant Victory Against RMLC

About The Author

Avatar
Stephen Brady

Related Posts

  • Helping Labels Deliver Digital Products Easier and Faster — Reprtoir’s Releases Manager

    Mathilde Neu
    July 6, 2020
  • Managing Data for Record Labels and Music Producers — Reprtoir Brings a Modern Workspace

    Mathilde Neu
    April 2, 2020
    2
  • Top Streaming Exec: The MLC Is Choking On a ‘Once-In-a-Lifetime Opportunity’

    Paul Resnikoff
    November 12, 2019
    5
  • Apple Music Gets Sick of the Lyrics Providers, Starts Transcribing Lyrics Themselves

    Ashley King
    October 11, 2019

4 Responses

  1. Avatar
    Charlie Sanders April 3, 2019

    This article is absolutely a buzzword bingo bonanza! Not so much on content, but wow, what an effort!

    • Avatar
      Chris McMurtry April 6, 2019

      Charlie,

      Very much appreciate you taking the time to read and comment. Are you into ml? I’d be glad to dig in together. Lemme know. 615-542-0368 or [email protected]

  2. Avatar
    Not AI April 4, 2019

    when DMN “articles” start with –> The following comes from…… a proud partner of DMN” what it probably really means is that it is an advertisement that was written to promote business solutions that nobody cares about that will likely never be commercially relevant. Only someone with artificial intelligence would be suckered.

  3. Avatar
    ... May 17, 2020

    That was pathetic….and you fucking know it

Subscribe to Our Daily Newsletter

Digital Music News ©2018 All Rights Reserved
  • Categories
    • Music Industry News & In-Depth Analysis
    • Information For Musicians
    • Music Tech
    • Entertainment Law
    • Live Concert Industry
    • Pop Culture
  • Sync News
  • Jobs
    • General Manager
    • Record Label Product Manager
    • International Marketing Manager
    • D2C Merchandise Product Manager
    • Musician-Focused Journalist
    • More Jobs
  • Podcasts
  • About Us
    • Contact
    • Advertise