Tuned Global

AutomixIQ

Overview

AutomixIQ is Tuned Global's AI-driven music mixing technology, originally developed by Pacemaker and now available as an SDK for any music streaming application. It analyses beats, loudness, vocals, and tempo to create seamless transitions between tracks — producing a continuous, professional DJ-like listening experience without creating derivative musical works.

AutomixIQ is delivered as a native SDK for Android and iOS.

What AutomixIQ Does

Unlike standard crossfades that simply overlap the end of one track with the start of the next, AutomixIQ intelligently mixes songs by analysing their musical properties:

  • Beat matching — Aligns beats between outgoing and incoming tracks
  • Tempo analysis — Adjusts transitions based on BPM differences
  • Loudness normalisation — Ensures consistent volume across transitions
  • Vocal detection — Avoids clashing vocals during the transition window
  • Live mixing — Transitions are generated in real time during playback, never pre-rendered or saved

The result is a gapless, musically coherent listening experience that keeps users engaged for longer sessions.

Why It Matters

Challenge How AutomixIQ Solves It
Gaps between songs Eliminates silence and abrupt changes that prompt users to stop listening
Jarring crossfades Intelligent transitions maintain mood and rhythm across different tempos and keys
Competitive differentiation A premium feature that most streaming services don't offer
Paid tier conversion High-quality mixes give free users a reason to upgrade — mixes are hugely popular on YouTube but typically require professional DJ skills

In a blind Turing test comparing AutomixIQ mixes to those by Steve Aoki using the same tracks, results were nearly indistinguishable — AutomixIQ scored within 1% of a professional DJ on transition quality.

AutomixIQ Studio

With Studio enabled, end users can interactively edit transitions:

  • Adjust fade in/out points
  • Zoom into transition regions
  • Control volume curves
  • Fine-tune the mix to their preference

This turns passive playlist listening into an active, creative experience — users become DJs of their own playlists.

Architecture

AutomixIQ is an SDK-based integration, not a REST API. The SDK handles:

  • Real-time audio analysis of each track
  • Transition computation and playback
  • Optional Studio UI for user-editable transitions
  • Integration with any music catalogue (not limited to Tuned Global)

The mixing happens live on the device during playback. No derivative audio files are created, stored, or transmitted.

Catalogue and Licensing

AutomixIQ is designed to be rightsholder-friendly:

  • Uses only the licensed tracks already available in your streaming service
  • Transitions are computed and played live — never saved to the device or recorded
  • Does not create derivative musical works, eliminating remixing-related licensing issues
  • Built on Pacemaker's patented technology with proven licensing compliance

Searching the Catalogue

AutomixIQ works with playlists — users select or build a playlist, and AutomixIQ handles the transitions. To power playlist discovery and track selection, integrate with Tuned Global's Metadata API.

Relevant endpoints for catalogue browsing and playlist access:

Endpoint Method Description
/api/v2.4/search GET Universal catalogue search
/api/v2.4/search/songs?q={query} GET Find tracks to add to playlists
/api/v2.4/search/songs/advanced GET Advanced filtered search (by tempo, genre, decade, energy)
/api/v2.4/playlists/{id} GET Retrieve playlist details
/api/v2.4/playlists/{id}/tracks GET Get playlist track listing
/api/v2.4/playlists/by-tags GET Browse playlists by genre/mood tags
/api/v2.4/playlists/trending GET Trending playlists
/api/v2.4/songs/{id} GET Full track metadata
/api/v2.4/artists/{id}/similar GET Similar artists for discovery

Requesting assets for display:

Album artwork and artist images can be resized on the fly using Tuned Global's image engine. See the Image Handling guide for details.

Advanced search for mix-friendly tracks:

The advanced song search endpoint is especially useful for AutomixIQ — filter by BPM range, genre tags, and decade to find tracks that will mix well together:

curl -X GET "https://api-metadata-connect.tunedglobal.com/api/v2.4/search/songs/advanced?filter.tempoMin=120&filter.tempoMax=130&filter.tags=Dance&filter.count=20" \
  -H "StoreId: YOUR_STORE_ID"

Use Cases

Use Case Description
Music streaming services Differentiated listening experience that keeps subscribers engaged
Background music Seamless ambient playlists for restaurants, retail, and hospitality
Fitness and wellness High-energy, gapless mixes that maintain workout momentum
Digital radio Professional-quality transitions for internet radio programming

SDK Availability

Platform Status
Android Available
iOS Available

The SDK can be integrated into any music application — it is not limited to apps powered by Tuned Global's streaming backend.

Getting Started

  1. Contact Tuned Global to request SDK access
  2. Receive the Android and/or iOS SDK packages
  3. Integrate the SDK into your music app's playback layer
  4. Connect to Tuned Global's Metadata API for catalogue search and playlist access (optional)
  5. Optionally enable Studio for user-editable transitions
  6. Test with playlists across different genres and tempos
  7. Launch to users

Swagger References

On this page