aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: dc2220d58c21d2414793d8ee98fbae37a1f9af3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101

   

csound-shout : Broadcasting to Shoutcast and Icecast servers from within Csound

Overview

csound-shout enables simple connection to a Shoutcast or Icecast server (or anything else supporting the shout protocol), and streaming audio to the server from within Csound. Audio is encoded as VBR MP3, and various stream descriptors/metadata may be set.

Requirements

  • Cmake >= 2.8.12
  • Csound with development headers >= 6.14.0
  • libshout

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; may be an empty string if not required
  • Spassword : password; may be an empty string if not required
  • Smount : mount point; may be an empty string if not required

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