Media_AppendSound ( container1 ; container2 )
Media_AppendSound attaches one sound to the end of another sound, resulting in a single long sound clip.
Parameter | Description |
---|---|
container1 | Location of the initial sound. |
container2 | Location of the sound to be appended. |
The result must be returned into a container field.
Returns
The result is the first specified sound followed by the second sound.
In the case of an error, nothing is returned to the container field. Use Media_GetLastError to check for any errors of this function.
Example
To add an introductory sound clip to your interview audio file:
Set Field [ MyTable::Podcast Complete ;
Media_AppendSound (
MyTable::Intro Clip
MyTable::Interview
) ]