Create Multitracks Media Player Using Aurio Library - Amit Padhiyar (Saatody)
Step 01: Open the Visual Studio and create a C# project in console application. Step 02: Set the name of project which is MultiTracks Step 03: Add the follow libraries (.dlls) from Aurio folder as a previous post. First right click on references and add references. Aurio.dll Aurio.Exocortex.dll Aurio.FFmpeg.dll Aurio.FFTW.dll Aurio.LibSampleRate.dll Aurio.Matching.SQLite.dll Aurio.PFFFT.dll Aurio.Soxr.dll Aurio.WaveControls.dll Exocortex.DSP.v1.dll netstandard.dll Step 04: Compile and run below code in Visual Studio. using System; using Aurio; using Aurio.FFmpeg; using Aurio.Project; using Aurio.FFT; using Aurio.Resampler; using System.IO; namespace MultiTracks { public class Program { public static void Main(string[] args) { FFTFactory.Factory = new Aurio.PFFFT.FFTFactory(); ResamplerFactory.Factory = new Aurio.Soxr.ResamplerFactory(); AudioStreamFactory.AddFactory(new FFmpegAudioStreamFactory());