Skip to content

firstcoders/audio-mix-service-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

soundws/audio-mix-service-client

A client to interact with the Audio Mix Service

Mix Audio

import Mix from '@soundws/audio-mix-service-client';

const client = Mix.create({
  fetchOptions: {
    headers: {
      Authorization: 'Bearer mytoken',
    },
  },
});

const { url } = await client.createMix({
  filename: 'download-as-this-filename.wav',
  sources: [
    {
      src: 'https://your-cdn.com/stems/drums.wav',
      volume: 0.1,
    },
    {
      src: 'https://your-cdn.com/stems/vocals.wav',
      volume: 0.1,
    },
  ],
});

About

Client for the audio-mix-service

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published