0.0.1 • Published 3 years ago

@kissmybutton/motorcortex-sounddrag v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

motorcortex-sounddrag

Purpose

The motorcortex-sounddrag is a plugin that allows the user to easily add music or sound-effects to your clips

How to use

Go to donkeyclip.sounddrag.com find the sound you like to use from a big list of license-free sounds and copy the name of the sound. Then create a new track incident and use the copied name as the value for the attribute key name and you have done.

Create incident

Track

const newHTMLClip = new SoundDrag.Track(
  {
    name:"Electronic-Violin_16057",
    startFrom: 0,
    duration: 2000,
    fadeIn: false,
    fadeOut: false
  },
  {
    repeats: 3,
    hiatus: 1000,
    delay: 1000,
    id: "myClip"
  }
);

Track Attrs

NameAreValues
namename of the sound from donkeyclip.sounddrag.comsting
startFrommillisecond which sound start playingnum
durationfor how long the sound will playnum
fadeInthis will enable the fadein effectboolean
fadeOutthis will enable the fadeout effectboolean

More

If fade in and out effects are not enough for you, you can create your effects using MotorCortex AudioEffect to apply your custom effect you need an id to select the Audio source this id is "track-id" and then add the incident to the track incident.

Example

const MyEffect = new MotorCortex.AudioEffect({
  animatedAttrs: {
      pan: 1,
      gain: 0
  }
  }, {
  selector: "~#track-id",
  duration: 3000
});

trackIncident.addIncident(MyEffect,1000);
0.0.1

3 years ago