SDK

Help:


Using the SDK you can program easily and quickly the Studiomatics system.

Wave := CoTWaveObj.Create;
Wave.OutputDevice := 'SoundCard1';
Wave.FileName := 'c:\test.wma';
Wave.Play;

Playlist := CoTPlaylist.Create;
Playlist.Name := 'new playlist';
Playlist.Add(Wave);
Playlist.Save;