diff options
author | Richard <q@1bpm.net> | 2025-03-09 22:33:07 +0000 |
---|---|---|
committer | Richard <q@1bpm.net> | 2025-03-09 22:33:07 +0000 |
commit | e174c759182e11f85e221eff8684088eebd563a4 (patch) | |
tree | 70155a2ec6c9fbf46c821ebe66ab63c0f17fbd8d /README.md | |
download | csound-shout-e174c759182e11f85e221eff8684088eebd563a4.tar.gz csound-shout-e174c759182e11f85e221eff8684088eebd563a4.tar.bz2 csound-shout-e174c759182e11f85e221eff8684088eebd563a4.zip |
initial
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..2f02e36 --- /dev/null +++ b/README.md @@ -0,0 +1,100 @@ +# csound-template : template for Csound plugins + +## Overview +Description here + +## Requirements +* Cmake >= 2.8.12 +* Csound with development headers >= 6.14.0 + + + +## Installation +Create a build directory at the top of the source tree, execute *cmake ..*, *make* and optionally *make install* as root. If the latter is not used/possible then the resulting library can be used with the *--opcode-lib* flag in Csound. +eg: + + mkdir build && cd build + cmake .. + make && sudo make install + +Cmake should find Csound and any other required libraries using the modules in the cmake/Modules directory and installation should be as simple as above. + +## Examples +Some examples are provided in the examples directory. + + +## Opcode reference + +### ishout shoutinit Shost, iport, Suser, Spassword, Smount +Define a connection to a Shoutcast or Icecast server. + +* ishout : the connection handle to be used by all subsequent opcodes + +* Shost : server hostname or IP address +* iport : server port +* Suser : username +* Spassword : password +* Smount : mount point + +## shoutopen ishout +Open a connection defined by shoutinit. + +* ishout : the connection handle created by shoutinit + +## shoutclose ishout +Close a connection to a server. + +* ishout : the connection handle created by shoutinit + +## shoutsetname ishout, Sname +Set the name of the stream to be displayed in the server directory. Must be called on a connection before being opened with shoutopen. + +* ishout : the connection handle created by shoutinit + +* Sname : name of the stream to be displayed + +## shoutseturl ishout, Surl +Set the URL of the stream to be displayed in the server directory. Must be called on a connection before being opened with shoutopen. + +* ishout : the connection handle created by shoutinit + +* Surl : URL to be displayed + +## shoutsetgenre ishout, Sgenre +Set the genre of the stream to be displayed in the server directory. Must be called on a connection before being opened with shoutopen. + +* ishout : the connection handle created by shoutinit + +* Sgenre : genre to be displayed + +## shoutsetdescription ishout, Sdescription +Set the description of the stream to be displayed in the server directory. Must be called on a connection before being opened with shoutopen. + +* ishout : the connection handle created by shoutinit + +* Sdescription : description to be displayed + +## shoutsetpublic ishout, ipublic +Set whether the stream is to be displayed in the server directory. Must be called on a connection before being opened with shoutopen. + +* ishout : the connection handle created by shoutinit + +* ipublic : 1 = public , 0 = private + +## shoutsetmeta ishout, Skey, Svalue +Set arbitrary metadata for the current track. Must be called on a connection after being opened with shoutopen. Currently "song" and "url" as Skey are known values to work with servers. + +* ishout : the connection handle created by shoutinit + +* Skey : metadata key +* Svalue : metadata value + +## shoutsend ishout, aleft, aright [, iquality=4] +Stream audio data to the server. It will be encoded as VBR MP3 using LAME with the quality set to iquality. + +* ishout : the connection handle created by shoutinit + +* aleft : left audio channel +* aright : right audio channel +* iquality : LAME VBR quality, defaults to 4 + |