Difference between revisions of "API Sound.Create"

From Flowcode Help
Jump to navigationJump to search
(XML import of API auto-gen)
 
(XML import API auto-gen)
Line 1: Line 1:
 
wiki page name
 
wiki page name
==SoundCreate==
+
Creates a sound object that data can be played through
  
Creates a sound object that data can be played through
 
----
 
  
 
===Parameters===
 
===Parameters===
Line 27: Line 25:
  
 
===Examples===
 
===Examples===
====Calling in a calculation:====
+
====Calling in a calculation====
 
* Declare a variable 'result' of type HANDLE
 
* Declare a variable 'result' of type HANDLE
 
* Add to a calculation icon: result = ::Sound.Create(samplerate, samplebits, false)
 
* Add to a calculation icon: result = ::Sound.Create(samplerate, samplebits, false)

Revision as of 15:34, 10 May 2013

wiki page name Creates a sound object that data can be played through


Parameters

ULONG SampleRate

The number of samples per second
The default value for this parameter is: 44100

BYTE SampleBits

The number of bits per sample - either 8 or 16
The default value for this parameter is: 8

BOOL Stereo

True to treat each pair of samples as a stereo sample
The default value for this parameter is: 0

Return value

HANDLE

No additional information

Detailed description

No additional information

Examples

Calling in a calculation

  • Declare a variable 'result' of type HANDLE
  • Add to a calculation icon: result = ::Sound.Create(samplerate, samplebits, false)