Programmer Guide/Concepts/Current Sound File: Difference between revisions
From STX Wiki
< Programmer Guide | Concepts
Jump to navigationJump to search
(Created page with "Information about the currently selected, i.e. the active sound file is stored in the variables <code>CSF</code> (= fullfilepath) and <code>CSFH</code> (= srate channels sampl...") |
No edit summary |
||
Line 1: | Line 1: | ||
Information about the currently selected, i.e. the active sound file is stored in the variables < | {{DISPLAYTITLE:{{SUBPAGENAME}}}} | ||
Information about the currently selected, i.e. the active sound file is stored in the variables <var>CSF</var> (containing the full path of the file) and <var>CSFH</var> (a string of the format "<code>srate channels samples code type mode</code>", indicating the respective properties of the soundfile). If no sound file is active, the variable <code>CSF</code> is empty. See [[XXX|Shell Environment]] for more details. Sound files opened for write access (<code>/Write</code>) cannot be shared with other users or processes. The sound file management is normally performed by the application {{STX}}. All other applications should use the {{STX}} [[APPMSG]] interface to attach or select sound files. The script library <code>[[BSF]]</code> implements a set of functions for using sound files and segments in scripts. |
Revision as of 18:28, 28 April 2014
Information about the currently selected, i.e. the active sound file is stored in the variables CSF (containing the full path of the file) and CSFH (a string of the format "srate channels samples code type mode
", indicating the respective properties of the soundfile). If no sound file is active, the variable CSF
is empty. See Shell Environment for more details. Sound files opened for write access (/Write
) cannot be shared with other users or processes. The sound file management is normally performed by the application STx. All other applications should use the STx APPMSG interface to attach or select sound files. The script library BSF
implements a set of functions for using sound files and segments in scripts.