GithubHelp home page GithubHelp logo

bass_crossfade's Introduction

BASS_CROSSFADE

A fading playback plugin for BASS with .NET bindings.

bass.dll and bassmix.dll are required for native projects. ManagedBass and ManagedBass.Mix are required for .NET projects.

A simple example;

BassCrossfade.Load();
BassCrossfade.Mode = BassCrossfadeMode.Always;
BassCrossfade.InPeriod = 1000;
BassCrossfade.OutPeriod = 1000;
BassCrossfade.InType = BassCrossfadeType.Linear;
BassCrossfade.OutType = BassCrossfadeType.Linear;
BassCrossfade.Mix = true;

Bass.Init();

var sourceChannel1 = Bass.CreateStream("01 Botanical Dimensions.m4a", Flags: BassFlags.Decode);
var sourceChannel2 = Bass.CreateStream("02 Outer Shpongolia.m4a", Flags: BassFlags.Decode);

BassCrossfade.ChannelEnqueue(sourceChannel1);
BassCrossfade.ChannelEnqueue(sourceChannel2);

var channelInfo = Bass.ChannelGetInfo(sourceChannel1);
var playbackChannel = BassCrossfade.StreamCreate(channelInfo.Frequency, channelInfo.Channels);

Bass.ChannelPlay(playbackChannel);

while (Bass.ChannelIsActive(sourceChannel1) == PlaybackState.Playing || Bass.ChannelIsActive(sourceChannel2) == PlaybackState.Playing)
{
    Thread.Sleep(1000);
}

Bass.StreamFree(sourceChannel1);
Bass.StreamFree(sourceChannel2);
Bass.StreamFree(playbackChannel);

BassCrossfade.Unload();
Bass.Free();

Since version 0.1.0, you are responsible for handling playback latency. This likely only means adding a delay when performing a manual fade out, e.g;

BassCrossfade.StreamFadeOut();
Thread.Sleep(Bass.PlaybackBufferLength);

If you have mixers or other buffers, they need to be accounted for. Obviously if you want the effect to be responsive, keep the latency to a minimum.

bass_crossfade's People

Watchers

pudding avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.