Csound Csound-dev Csound-tekno Search About

[Csnd] Streaming server running csound

Date2013-04-21 06:59
FromKITA
Subject[Csnd] Streaming server running csound
Hello all,

i am now running a test server to stream audio that csound generates.
The streaming server is publicly accessible by using
VLC player (http://www.videolan.org/vlc/) or TuneIn Radio (http://tunein.com/get-tunein/)
at mms://54.248.254.55:8080/ (mms: should be changed to mmsh: if you use VLC player for Linux).
Feel free to access it to listen :-)

On Ubuntu Linux and Android 4.1, VLC Player works fine to play the sound.
On Windows7, you have to wait for a minute or so for VLC Player to start playing the streaming.
(i do not know why. Is there some negotiation before receiving data?)
On iOS and Android, TuneIn Radio seems to work fine to play the mms streaming.

The server also accepts interaction via OSC if you use
andOSC (https://play.google.com/store/apps/details?id=cc.primevision.andosc) .
In andOSC setting you need to set IP as 54.248.254.55 and Port as 56789 (same as default).
By drawing some patterns on the screen of andOSC you can modulate the sound in semi-realtime (with latency of seconds),
as the csound csd file is designed to receive the Touch data from andOSC.

# At NIME2013 i will present some demonstration using part of this as a way of sonification of access log of a Web-based tool.



FYI, following is how you can set up the steraming server using Ubuntu 64bit 12.04 Server.
In the server, Csound, Jackd and VLC are installed and used.

sudo apt-get update
sudo apt-get -y install csound
# Following libs are used by csound
sudo apt-get -y install liblo7 libfltk1.1 libportmidi0 libportaudio2 libfluidsynth1
sudo apt-get -y install jackd2 vlc-nox vlc-plugin-jack
# During installation of jackd2, just press Enter (use default configuration).

jackd -d dummy &
csound myfile.csd &
cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh,mux=asfh,dst=:8080}' &

# i am using an Amazon EC2 micro instance. In that case, you need to set accessible TCP and UDP ports like
# Security Groups - Inbound : All TCP and All UDP. (Do not forget to click Apply Rule Changes after clicking Add Rule)

-- 
KITA Toshihiro
http://tkita.net


Date2013-04-21 09:45
Fromzappfinger
Subject[Csnd] Re: Streaming server running csound
Very interesting! Thank you!
As I mentioned before, this could be used for educational purposes to
showcase csound, without the need to install it.
One could think of an intertactive web-GUI to make changes to the .csd
file...

Richard



--
View this message in context: http://csound.1045644.n5.nabble.com/Streaming-server-running-csound-tp5722222p5722225.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2013-04-21 09:54
Fromjpff@cs.bath.ac.uk
SubjectRe: [Csnd] Re: Streaming server running csound
> Very interesting! Thank you!
> As I mentioned before, this could be used for educational purposes to
> showcase csound, without the need to install it.
> One could think of an intertactive web-GUI to make changes to the .csd
> file...
>
> Richard
>
>

To add to the non-streaming csound server that has been active for years.
Perhaps it is time to take this version down


Date2013-04-21 22:36
FromTarmo Johannes
SubjectRe: [Csnd] Streaming server running csound
Wow!

That's great! I could listen to the sound from commanline with 
 
mplayer mmsh://54.248.254.55:8080/

(opensuse linux) without any problems.

Thanks for the tips about the cSoundServer!

tarmo

On Sunday 21 April 2013 14:59:57 KITA wrote:
> Hello all,
> 
> i am now running a test server to stream audio that csound generates.
> The streaming server is publicly accessible by using
> VLC player (http://www.videolan.org/vlc/) or TuneIn Radio
> (http://tunein.com/get-tunein/) at mms://54.248.254.55:8080/ (mms: should
> be changed to mmsh: if you use VLC player for Linux). Feel free to access
> it to listen :-)
> 
> On Ubuntu Linux and Android 4.1, VLC Player works fine to play the sound.
> On Windows7, you have to wait for a minute or so for VLC Player to start
> playing the streaming. (i do not know why. Is there some negotiation before
> receiving data?) On iOS and Android, TuneIn Radio seems to work fine to
> play the mms streaming.
> 
> The server also accepts interaction via OSC if you use
> andOSC (https://play.google.com/store/apps/details?id=cc.primevision.andosc)
> . In andOSC setting you need to set IP as 54.248.254.55 and Port as 56789
> (same as default). By drawing some patterns on the screen of andOSC you can
> modulate the sound in semi-realtime (with latency of seconds), as the
> csound csd file is designed to receive the Touch data from andOSC.
> 
> # At NIME2013 i will present some demonstration using part of this as a way
> of sonification of access log of a Web-based tool.
> 
> 
> 
> FYI, following is how you can set up the steraming server using Ubuntu 64bit
> 12.04 Server. In the server, Csound, Jackd and VLC are installed and used.
> 
> sudo apt-get update
> sudo apt-get -y install csound
> # Following libs are used by csound
> sudo apt-get -y install liblo7 libfltk1.1 libportmidi0 libportaudio2
> libfluidsynth1 sudo apt-get -y install jackd2 vlc-nox vlc-plugin-jack
> # During installation of jackd2, just press Enter (use default
> configuration).
> 
> jackd -d dummy &
> csound myfile.csd &
> cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout
> '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh
> ,mux=asfh,dst=:8080}' &
> 
> # i am using an Amazon EC2 micro instance. In that case, you need to set
> accessible TCP and UDP ports like # Security Groups - Inbound : All TCP and
> All UDP. (Do not forget to click Apply Rule Changes after clicking Add
> Rule)

Date2013-04-22 01:30
From"'2+"
SubjectRe: [Csnd] Streaming server running csound
wow i could listen to it the same way on my ubuntu1210 installed to problematic hp's Pavilion dm1

> mplayer mmsh://54.248.254.55:8080/



On Mon, Apr 22, 2013 at 6:36 AM, Tarmo Johannes <tarmo.johannes@otsakool.edu.ee> wrote:
Wow!

That's great! I could listen to the sound from commanline with

mplayer mmsh://54.248.254.55:8080/

(opensuse linux) without any problems.

Thanks for the tips about the cSoundServer!

tarmo

On Sunday 21 April 2013 14:59:57 KITA wrote:
> Hello all,
>
> i am now running a test server to stream audio that csound generates.
> The streaming server is publicly accessible by using
> VLC player (http://www.videolan.org/vlc/) or TuneIn Radio
> (http://tunein.com/get-tunein/) at mms://54.248.254.55:8080/ (mms: should
> be changed to mmsh: if you use VLC player for Linux). Feel free to access
> it to listen :-)
>
> On Ubuntu Linux and Android 4.1, VLC Player works fine to play the sound.
> On Windows7, you have to wait for a minute or so for VLC Player to start
> playing the streaming. (i do not know why. Is there some negotiation before
> receiving data?) On iOS and Android, TuneIn Radio seems to work fine to
> play the mms streaming.
>
> The server also accepts interaction via OSC if you use
> andOSC (https://play.google.com/store/apps/details?id=cc.primevision.andosc)
> . In andOSC setting you need to set IP as 54.248.254.55 and Port as 56789
> (same as default). By drawing some patterns on the screen of andOSC you can
> modulate the sound in semi-realtime (with latency of seconds), as the
> csound csd file is designed to receive the Touch data from andOSC.
>
> # At NIME2013 i will present some demonstration using part of this as a way
> of sonification of access log of a Web-based tool.
>
>
>
> FYI, following is how you can set up the steraming server using Ubuntu 64bit
> 12.04 Server. In the server, Csound, Jackd and VLC are installed and used.
>
> sudo apt-get update
> sudo apt-get -y install csound
> # Following libs are used by csound
> sudo apt-get -y install liblo7 libfltk1.1 libportmidi0 libportaudio2
> libfluidsynth1 sudo apt-get -y install jackd2 vlc-nox vlc-plugin-jack
> # During installation of jackd2, just press Enter (use default
> configuration).
>
> jackd -d dummy &
> csound myfile.csd &
> cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout
> '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh
> ,mux=asfh,dst=:8080}' &
>
> # i am using an Amazon EC2 micro instance. In that case, you need to set
> accessible TCP and UDP ports like # Security Groups - Inbound : All TCP and
> All UDP. (Do not forget to click Apply Rule Changes after clicking Add
> Rule)


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"




--
SaRiGaMa's Oil Vending Orchestra
is podcasting:
http://sarigama.namaste.jp/podcast/rss.xml

Date2013-04-22 11:36
FromOeyvind Brandtsegg
SubjectRe: [Csnd] Streaming server running csound
oh, nice.

Do you know if there are limitations in the number of listeners that can pull from this stream?
Also, could you explain briefly what the Amazon EC instance is used for in this setup?
Thanks for any help

best
Oeyvind


2013/4/21 KITA <t-kita@kumamoto-u.ac.jp>
Hello all,

i am now running a test server to stream audio that csound generates.
The streaming server is publicly accessible by using
VLC player (http://www.videolan.org/vlc/) or TuneIn Radio (http://tunein.com/get-tunein/)
at mms://54.248.254.55:8080/ (mms: should be changed to mmsh: if you use VLC player for Linux).
Feel free to access it to listen :-)

On Ubuntu Linux and Android 4.1, VLC Player works fine to play the sound.
On Windows7, you have to wait for a minute or so for VLC Player to start playing the streaming.
(i do not know why. Is there some negotiation before receiving data?)
On iOS and Android, TuneIn Radio seems to work fine to play the mms streaming.

The server also accepts interaction via OSC if you use
andOSC (https://play.google.com/store/apps/details?id=cc.primevision.andosc) .
In andOSC setting you need to set IP as 54.248.254.55 and Port as 56789 (same as default).
By drawing some patterns on the screen of andOSC you can modulate the sound in semi-realtime (with latency of seconds),
as the csound csd file is designed to receive the Touch data from andOSC.

# At NIME2013 i will present some demonstration using part of this as a way of sonification of access log of a Web-based tool.



FYI, following is how you can set up the steraming server using Ubuntu 64bit 12.04 Server.
In the server, Csound, Jackd and VLC are installed and used.

sudo apt-get update
sudo apt-get -y install csound
# Following libs are used by csound
sudo apt-get -y install liblo7 libfltk1.1 libportmidi0 libportaudio2 libfluidsynth1
sudo apt-get -y install jackd2 vlc-nox vlc-plugin-jack
# During installation of jackd2, just press Enter (use default configuration).

jackd -d dummy &
csound myfile.csd &
cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh,mux=asfh,dst=:8080}' &

# i am using an Amazon EC2 micro instance. In that case, you need to set accessible TCP and UDP ports like
# Security Groups - Inbound : All TCP and All UDP. (Do not forget to click Apply Rule Changes after clicking Add Rule)

--
KITA Toshihiro
http://tkita.net



Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"




--

Oeyvind Brandtsegg
Professor of Music Technology
NTNU
7491 Trondheim
Norway
Cell: +47 92 203 205

http://flyndresang.no/
http://www.partikkelaudio.com/
http://soundcloud.com/brandtsegg
http://soundcloud.com/t-emp

Date2013-04-22 12:04
FromVictor Lazzarini
SubjectRe: [Csnd] Streaming server running csound
Hi,

could you give us the list of message addresses and types, and ranges accepted by your server, so we
could try using any OSC (e.g. csound) controller?

Regards

Victor

On 21 Apr 2013, at 06:59, KITA wrote:

> Hello all,
> 
> i am now running a test server to stream audio that csound generates.
> The streaming server is publicly accessible by using
> VLC player (http://www.videolan.org/vlc/) or TuneIn Radio (http://tunein.com/get-tunein/)
> at mms://54.248.254.55:8080/ (mms: should be changed to mmsh: if you use VLC player for Linux).
> Feel free to access it to listen :-)
> 
> On Ubuntu Linux and Android 4.1, VLC Player works fine to play the sound.
> On Windows7, you have to wait for a minute or so for VLC Player to start playing the streaming.
> (i do not know why. Is there some negotiation before receiving data?)
> On iOS and Android, TuneIn Radio seems to work fine to play the mms streaming.
> 
> The server also accepts interaction via OSC if you use
> andOSC (https://play.google.com/store/apps/details?id=cc.primevision.andosc) .
> In andOSC setting you need to set IP as 54.248.254.55 and Port as 56789 (same as default).
> By drawing some patterns on the screen of andOSC you can modulate the sound in semi-realtime (with latency of seconds),
> as the csound csd file is designed to receive the Touch data from andOSC.
> 
> # At NIME2013 i will present some demonstration using part of this as a way of sonification of access log of a Web-based tool.
> 
> 
> 
> FYI, following is how you can set up the steraming server using Ubuntu 64bit 12.04 Server.
> In the server, Csound, Jackd and VLC are installed and used.
> 
> sudo apt-get update
> sudo apt-get -y install csound
> # Following libs are used by csound
> sudo apt-get -y install liblo7 libfltk1.1 libportmidi0 libportaudio2 libfluidsynth1
> sudo apt-get -y install jackd2 vlc-nox vlc-plugin-jack
> # During installation of jackd2, just press Enter (use default configuration).
> 
> jackd -d dummy &
> csound myfile.csd &
> cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh,mux=asfh,dst=:8080}' &
> 
> # i am using an Amazon EC2 micro instance. In that case, you need to set accessible TCP and UDP ports like
> # Security Groups - Inbound : All TCP and All UDP. (Do not forget to click Apply Rule Changes after clicking Add Rule)
> 
> -- 
> KITA Toshihiro
> http://tkita.net
> 
> 
> 
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
> 

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie





Date2013-04-23 02:34
FromAndres Cabrera
SubjectRe: [Csnd] Streaming server running csound
Attachmentsosc.csd  
Attached is a csd that can control it (needs CsoundQt for the graphic control):

1) Touch(x,y)
- msg : /touch 0 0
2) Accelerometer
- msg : /acc 0 0 0
3) Orientation
- msg : /ori 0 0 0

Not sure about the ranges though...

Cheers,
Andrés


On Mon, Apr 22, 2013 at 4:04 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
Hi,

could you give us the list of message addresses and types, and ranges accepted by your server, so we
could try using any OSC (e.g. csound) controller?

Regards

Victor

On 21 Apr 2013, at 06:59, KITA wrote:

> Hello all,
>
> i am now running a test server to stream audio that csound generates.
> The streaming server is publicly accessible by using
> VLC player (http://www.videolan.org/vlc/) or TuneIn Radio (http://tunein.com/get-tunein/)
> at mms://54.248.254.55:8080/ (mms: should be changed to mmsh: if you use VLC player for Linux).
> Feel free to access it to listen :-)
>
> On Ubuntu Linux and Android 4.1, VLC Player works fine to play the sound.
> On Windows7, you have to wait for a minute or so for VLC Player to start playing the streaming.
> (i do not know why. Is there some negotiation before receiving data?)
> On iOS and Android, TuneIn Radio seems to work fine to play the mms streaming.
>
> The server also accepts interaction via OSC if you use
> andOSC (https://play.google.com/store/apps/details?id=cc.primevision.andosc) .
> In andOSC setting you need to set IP as 54.248.254.55 and Port as 56789 (same as default).
> By drawing some patterns on the screen of andOSC you can modulate the sound in semi-realtime (with latency of seconds),
> as the csound csd file is designed to receive the Touch data from andOSC.
>
> # At NIME2013 i will present some demonstration using part of this as a way of sonification of access log of a Web-based tool.
>
>
>
> FYI, following is how you can set up the steraming server using Ubuntu 64bit 12.04 Server.
> In the server, Csound, Jackd and VLC are installed and used.
>
> sudo apt-get update
> sudo apt-get -y install csound
> # Following libs are used by csound
> sudo apt-get -y install liblo7 libfltk1.1 libportmidi0 libportaudio2 libfluidsynth1
> sudo apt-get -y install jackd2 vlc-nox vlc-plugin-jack
> # During installation of jackd2, just press Enter (use default configuration).
>
> jackd -d dummy &
> csound myfile.csd &
> cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh,mux=asfh,dst=:8080}' &
>
> # i am using an Amazon EC2 micro instance. In that case, you need to set accessible TCP and UDP ports like
> # Security Groups - Inbound : All TCP and All UDP. (Do not forget to click Apply Rule Changes after clicking Add Rule)
>
> --
> KITA Toshihiro
> http://tkita.net
>
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie





Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"



Date2013-04-23 04:29
FromKITA
SubjectRe: [Csnd] Re: Streaming server running csound
Hi Richard and John,

Thank you for your ideas.
Though it is a kind of dirty quick hack, i set up another server:
http://54.247.70.51/csound-or/
This can accept a csd file (that does not require user's GUI operation) from anyone to be streamed.


For setting up a server like this,
in addition to the installation i mentioned in my previous mail, you need:

sudo apt-get install apache2 php5
# run jackd and vlc as the same user of php process
sudo -u www-data jackd -d dummy &
sudo -u www-data cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh,mux=asfh,dst=:8080}' &
# see the Jack port name of VLC (to edit $VLCportname in conv.php)
sudo -u www-data jack_lsp  | grep -i vlc

Full description is found in readme.txt in the zip file ('php code' link).

Kita

(2013年04月21日 17:54), jpff@cs.bath.ac.uk wrote:
>> Very interesting! Thank you!
>> As I mentioned before, this could be used for educational purposes to
>> showcase csound, without the need to install it.
>> One could think of an intertactive web-GUI to make changes to the .csd
>> file...
>>
>> Richard
>>
>>
> 
> To add to the non-streaming csound server that has been active for years.
> Perhaps it is time to take this version down
> 
> 
> 
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
> 
> 

-- 
KITA Toshihiro
http://tkita.net


Date2013-04-23 04:49
FromAndres Cabrera
SubjectRe: [Csnd] Re: Streaming server running csound
Remember to disable the system and python opcodes or you could be hacked...

Cheers,
Andrés


On Mon, Apr 22, 2013 at 8:29 PM, KITA <t-kita@kumamoto-u.ac.jp> wrote:
Hi Richard and John,

Thank you for your ideas.
Though it is a kind of dirty quick hack, i set up another server:
http://54.247.70.51/csound-or/
This can accept a csd file (that does not require user's GUI operation) from anyone to be streamed.


For setting up a server like this,
in addition to the installation i mentioned in my previous mail, you need:

sudo apt-get install apache2 php5
# run jackd and vlc as the same user of php process
sudo -u www-data jackd -d dummy &
sudo -u www-data cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh,mux=asfh,dst=:8080}' &
# see the Jack port name of VLC (to edit $VLCportname in conv.php)
sudo -u www-data jack_lsp  | grep -i vlc

Full description is found in readme.txt in the zip file ('php code' link).

Kita

(2013年04月21日 17:54), jpff@cs.bath.ac.uk wrote:
>> Very interesting! Thank you!
>> As I mentioned before, this could be used for educational purposes to
>> showcase csound, without the need to install it.
>> One could think of an intertactive web-GUI to make changes to the .csd
>> file...
>>
>> Richard
>>
>>
>
> To add to the non-streaming csound server that has been active for years.
> Perhaps it is time to take this version down
>
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>

--
KITA Toshihiro
http://tkita.net



Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"



Date2013-04-23 04:53
FromKITA
SubjectRe: [Csnd] Re: Streaming server running csound
Oh, i missed that point.

Is there any quick way to disable possible holes, for example with a command line option or something?
Or must i recompile csound?

(2013年04月23日 12:49), Andres Cabrera wrote:
> Remember to disable the system and python opcodes or you could be hacked...
> 
> Cheers,
> Andrés
> 
> 
> On Mon, Apr 22, 2013 at 8:29 PM, KITA > wrote:
> 
>     Hi Richard and John,
> 
>     Thank you for your ideas.
>     Though it is a kind of dirty quick hack, i set up another server:
>     http://54.247.70.51/csound-or/
>     This can accept a csd file (that does not require user's GUI operation) from anyone to be streamed.
> 
> 
>     For setting up a server like this,
>     in addition to the installation i mentioned in my previous mail, you need:
> 
>     sudo apt-get install apache2 php5
>     # run jackd and vlc as the same user of php process
>     sudo -u www-data jackd -d dummy &
>     sudo -u www-data cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh,mux=asfh,dst=:8080}' &
>     # see the Jack port name of VLC (to edit $VLCportname in conv.php)
>     sudo -u www-data jack_lsp  | grep -i vlc
> 
>     Full description is found in readme.txt in the zip file ('php code' link).
> 
>     Kita
> 
>     (2013年04月21日 17:54), jpff@cs.bath.ac.uk  wrote:
>     >> Very interesting! Thank you!
>     >> As I mentioned before, this could be used for educational purposes to
>     >> showcase csound, without the need to install it.
>     >> One could think of an intertactive web-GUI to make changes to the .csd
>     >> file...
>     >>
>     >> Richard
>     >>
>     >>
>     >
>     > To add to the non-streaming csound server that has been active for years.
>     > Perhaps it is time to take this version down
>     >
>     >
>     >
>     > Send bugs reports to the Sourceforge bug tracker
>     >             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>     > Discussions of bugs and features can be posted here
>     > To unsubscribe, send email sympa@lists.bath.ac.uk  with body "unsubscribe csound"
>     >
>     >
> 
>     --
>     KITA Toshihiro
>     http://tkita.net
> 
> 
> 
>     Send bugs reports to the Sourceforge bug tracker
>                 https://sourceforge.net/tracker/?group_id=81968&atid=564599
>     Discussions of bugs and features can be posted here
>     To unsubscribe, send email sympa@lists.bath.ac.uk  with body "unsubscribe csound"
> 
> 

-- 
KITA Toshihiro
http://tkita.net


Date2013-04-23 05:36
FromKITA
SubjectRe: [Csnd] Re: Streaming server running csound
Python related packages are not installed :

# aptitude search csound
...
p   python-csound                   - Python bindings for Csound
p   python-csound:i386              - Python bindings for Csound
p   python-csoundac                 - Python bindings for CsoundAC
p   python-csoundac:i386            - Python bindings for CsoundAC
v   python2.7-csound                -
v   python2.7-csound:i386           -
v   python2.7-csoundac              -
v   python2.7-csoundac:i386         -
...

for avoiding malicious command by system opcode, i am now thinking to run csound as a user with more limited permissions.

(2013年04月23日 12:53), KITA wrote:
> Oh, i missed that point.
> 
> Is there any quick way to disable possible holes, for example with a command line option or something?
> Or must i recompile csound?
> 
> (2013年04月23日 12:49), Andres Cabrera wrote:
>> Remember to disable the system and python opcodes or you could be hacked...
>>
>> Cheers,
>> Andrés
>>
>>
>> On Mon, Apr 22, 2013 at 8:29 PM, KITA > wrote:
>>
>>     Hi Richard and John,
>>
>>     Thank you for your ideas.
>>     Though it is a kind of dirty quick hack, i set up another server:
>>     http://54.247.70.51/csound-or/
>>     This can accept a csd file (that does not require user's GUI operation) from anyone to be streamed.
>>
>>
>>     For setting up a server like this,
>>     in addition to the installation i mentioned in my previous mail, you need:
>>
>>     sudo apt-get install apache2 php5
>>     # run jackd and vlc as the same user of php process
>>     sudo -u www-data jackd -d dummy &
>>     sudo -u www-data cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh,mux=asfh,dst=:8080}' &
>>     # see the Jack port name of VLC (to edit $VLCportname in conv.php)
>>     sudo -u www-data jack_lsp  | grep -i vlc
>>
>>     Full description is found in readme.txt in the zip file ('php code' link).
>>
>>     Kita
>>
>>     (2013年04月21日 17:54), jpff@cs.bath.ac.uk  wrote:
>>     >> Very interesting! Thank you!
>>     >> As I mentioned before, this could be used for educational purposes to
>>     >> showcase csound, without the need to install it.
>>     >> One could think of an intertactive web-GUI to make changes to the .csd
>>     >> file...
>>     >>
>>     >> Richard
>>     >>
>>     >>
>>     >
>>     > To add to the non-streaming csound server that has been active for years.
>>     > Perhaps it is time to take this version down
>>     >
>>     >
>>     >
>>     > Send bugs reports to the Sourceforge bug tracker
>>     >             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>     > Discussions of bugs and features can be posted here
>>     > To unsubscribe, send email sympa@lists.bath.ac.uk  with body "unsubscribe csound"
>>     >
>>     >
>>
>>     --
>>     KITA Toshihiro
>>     http://tkita.net
>>
>>
>>
>>     Send bugs reports to the Sourceforge bug tracker
>>                 https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>     Discussions of bugs and features can be posted here
>>     To unsubscribe, send email sympa@lists.bath.ac.uk  with body "unsubscribe csound"
>>
>>
> 

-- 
KITA Toshihiro
http://tkita.net


Date2013-04-23 05:53
FromKITA
SubjectRe: [Csnd] Re: Streaming server running csound
i found a quick way.
i just removed these two libs:
/usr/lib/csound/plugins64-5.2/libpy.so
/usr/lib/csound/plugins64-5.2/libsystem_call.so

After that, i checked pyinit and system opcodes result in error.

Thank you for pointing out the security problem! > Andrés

(2013年04月23日 13:36), KITA wrote:
> Python related packages are not installed :
> 
> # aptitude search csound
> ...
> p   python-csound                   - Python bindings for Csound
> p   python-csound:i386              - Python bindings for Csound
> p   python-csoundac                 - Python bindings for CsoundAC
> p   python-csoundac:i386            - Python bindings for CsoundAC
> v   python2.7-csound                -
> v   python2.7-csound:i386           -
> v   python2.7-csoundac              -
> v   python2.7-csoundac:i386         -
> ...
> 
> for avoiding malicious command by system opcode, i am now thinking to run csound as a user with more limited permissions.
> 
> (2013年04月23日 12:53), KITA wrote:
>> Oh, i missed that point.
>>
>> Is there any quick way to disable possible holes, for example with a command line option or something?
>> Or must i recompile csound?
>>
>> (2013年04月23日 12:49), Andres Cabrera wrote:
>>> Remember to disable the system and python opcodes or you could be hacked...
>>>
>>> Cheers,
>>> Andrés
>>>
>>>
>>> On Mon, Apr 22, 2013 at 8:29 PM, KITA > wrote:
>>>
>>>     Hi Richard and John,
>>>
>>>     Thank you for your ideas.
>>>     Though it is a kind of dirty quick hack, i set up another server:
>>>     http://54.247.70.51/csound-or/
>>>     This can accept a csd file (that does not require user's GUI operation) from anyone to be streamed.
>>>
>>>
>>>     For setting up a server like this,
>>>     in addition to the installation i mentioned in my previous mail, you need:
>>>
>>>     sudo apt-get install apache2 php5
>>>     # run jackd and vlc as the same user of php process
>>>     sudo -u www-data jackd -d dummy &
>>>     sudo -u www-data cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh,mux=asfh,dst=:8080}' &
>>>     # see the Jack port name of VLC (to edit $VLCportname in conv.php)
>>>     sudo -u www-data jack_lsp  | grep -i vlc
>>>
>>>     Full description is found in readme.txt in the zip file ('php code' link).
>>>
>>>     Kita
>>>
>>>     (2013年04月21日 17:54), jpff@cs.bath.ac.uk  wrote:
>>>     >> Very interesting! Thank you!
>>>     >> As I mentioned before, this could be used for educational purposes to
>>>     >> showcase csound, without the need to install it.
>>>     >> One could think of an intertactive web-GUI to make changes to the .csd
>>>     >> file...
>>>     >>
>>>     >> Richard
>>>     >>
>>>     >>
>>>     >
>>>     > To add to the non-streaming csound server that has been active for years.
>>>     > Perhaps it is time to take this version down
>>>     >
>>>     >
>>>     >
>>>     > Send bugs reports to the Sourceforge bug tracker
>>>     >             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>     > Discussions of bugs and features can be posted here
>>>     > To unsubscribe, send email sympa@lists.bath.ac.uk  with body "unsubscribe csound"
>>>     >
>>>     >
>>>
>>>     --
>>>     KITA Toshihiro
>>>     http://tkita.net
>>>
>>>
>>>
>>>     Send bugs reports to the Sourceforge bug tracker
>>>                 https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>     Discussions of bugs and features can be posted here
>>>     To unsubscribe, send email sympa@lists.bath.ac.uk  with body "unsubscribe csound"
>>>
>>>
>>
> 

-- 
KITA Toshihiro
http://tkita.net


Date2013-04-23 09:17
FromKITA
SubjectRe: [Csnd] Streaming server running csound
Hi tarmo,

Yes, i use mplayer too on my Ubuntu.
mplayer is nice as it accepts --cache option to adjust the time lag due to buffering.
i am thinking about somehow introducing audience interaction as inspired by what you did in the concert in Hannover.

Kita

(2013年04月22日 06:36), Tarmo Johannes wrote:
> Wow!
> 
> That's great! I could listen to the sound from commanline with 
>  
> mplayer mmsh://54.248.254.55:8080/
> 
> (opensuse linux) without any problems.
> 
> Thanks for the tips about the cSoundServer!
> 
> tarmo
> 
> On Sunday 21 April 2013 14:59:57 KITA wrote:
>> Hello all,
>>
>> i am now running a test server to stream audio that csound generates.
>> The streaming server is publicly accessible by using
>> VLC player (http://www.videolan.org/vlc/) or TuneIn Radio
>> (http://tunein.com/get-tunein/) at mms://54.248.254.55:8080/ (mms: should
>> be changed to mmsh: if you use VLC player for Linux). Feel free to access
>> it to listen :-)
>>
>> On Ubuntu Linux and Android 4.1, VLC Player works fine to play the sound.
>> On Windows7, you have to wait for a minute or so for VLC Player to start
>> playing the streaming. (i do not know why. Is there some negotiation before
>> receiving data?) On iOS and Android, TuneIn Radio seems to work fine to
>> play the mms streaming.
>>
>> The server also accepts interaction via OSC if you use
>> andOSC (https://play.google.com/store/apps/details?id=cc.primevision.andosc)
>> . In andOSC setting you need to set IP as 54.248.254.55 and Port as 56789
>> (same as default). By drawing some patterns on the screen of andOSC you can
>> modulate the sound in semi-realtime (with latency of seconds), as the
>> csound csd file is designed to receive the Touch data from andOSC.
>>
>> # At NIME2013 i will present some demonstration using part of this as a way
>> of sonification of access log of a Web-based tool.
>>
>>
>>
>> FYI, following is how you can set up the steraming server using Ubuntu 64bit
>> 12.04 Server. In the server, Csound, Jackd and VLC are installed and used.
>>
>> sudo apt-get update
>> sudo apt-get -y install csound
>> # Following libs are used by csound
>> sudo apt-get -y install liblo7 libfltk1.1 libportmidi0 libportaudio2
>> libfluidsynth1 sudo apt-get -y install jackd2 vlc-nox vlc-plugin-jack
>> # During installation of jackd2, just press Enter (use default
>> configuration).
>>
>> jackd -d dummy &
>> csound myfile.csd &
>> cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout
>> '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh
>> ,mux=asfh,dst=:8080}' &
>>
>> # i am using an Amazon EC2 micro instance. In that case, you need to set
>> accessible TCP and UDP ports like # Security Groups - Inbound : All TCP and
>> All UDP. (Do not forget to click Apply Rule Changes after clicking Add
>> Rule)
> 
> 
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
> 
> 

-- 
KITA Toshihiro
http://tkita.net


Date2013-04-23 09:20
FromKITA
SubjectRe: [Csnd] Streaming server running csound
Hi,

Thank you for checking.

i am also curious about how one can receive and play the streaming on MacOS.

(2013年04月22日 09:30), '2+ wrote:
> wow i could listen to it the same way on my ubuntu1210 installed to problematic hp's Pavilion dm1
> 
>> mplayer mmsh://54.248.254.55:8080/ 
> 
> 
> 
> On Mon, Apr 22, 2013 at 6:36 AM, Tarmo Johannes > wrote:
> 
>     Wow!
> 
>     That's great! I could listen to the sound from commanline with
> 
>     mplayer mmsh://54.248.254.55:8080/ 
> 
>     (opensuse linux) without any problems.
> 
>     Thanks for the tips about the cSoundServer!
> 
>     tarmo
> 
>     On Sunday 21 April 2013 14:59:57 KITA wrote:
>     > Hello all,
>     >
>     > i am now running a test server to stream audio that csound generates.
>     > The streaming server is publicly accessible by using
>     > VLC player (http://www.videolan.org/vlc/) or TuneIn Radio
>     > (http://tunein.com/get-tunein/) at mms://54.248.254.55:8080/  (mms: should
>     > be changed to mmsh: if you use VLC player for Linux). Feel free to access
>     > it to listen :-)
>     >
>     > On Ubuntu Linux and Android 4.1, VLC Player works fine to play the sound.
>     > On Windows7, you have to wait for a minute or so for VLC Player to start
>     > playing the streaming. (i do not know why. Is there some negotiation before
>     > receiving data?) On iOS and Android, TuneIn Radio seems to work fine to
>     > play the mms streaming.
>     >
>     > The server also accepts interaction via OSC if you use
>     > andOSC (https://play.google.com/store/apps/details?id=cc.primevision.andosc)
>     > . In andOSC setting you need to set IP as 54.248.254.55 and Port as 56789
>     > (same as default). By drawing some patterns on the screen of andOSC you can
>     > modulate the sound in semi-realtime (with latency of seconds), as the
>     > csound csd file is designed to receive the Touch data from andOSC.
>     >
>     > # At NIME2013 i will present some demonstration using part of this as a way
>     > of sonification of access log of a Web-based tool.
>     >
>     >
>     >
>     > FYI, following is how you can set up the steraming server using Ubuntu 64bit
>     > 12.04 Server. In the server, Csound, Jackd and VLC are installed and used.
>     >
>     > sudo apt-get update
>     > sudo apt-get -y install csound
>     > # Following libs are used by csound
>     > sudo apt-get -y install liblo7 libfltk1.1 libportmidi0 libportaudio2
>     > libfluidsynth1 sudo apt-get -y install jackd2 vlc-nox vlc-plugin-jack
>     > # During installation of jackd2, just press Enter (use default
>     > configuration).
>     >
>     > jackd -d dummy &
>     > csound myfile.csd &
>     > cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout
>     > '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh
>     > ,mux=asfh,dst=:8080}' &
>     >
>     > # i am using an Amazon EC2 micro instance. In that case, you need to set
>     > accessible TCP and UDP ports like # Security Groups - Inbound : All TCP and
>     > All UDP. (Do not forget to click Apply Rule Changes after clicking Add
>     > Rule)
> 
> 
>     Send bugs reports to the Sourceforge bug tracker
>                 https://sourceforge.net/tracker/?group_id=81968&atid=564599
>     Discussions of bugs and features can be posted here
>     To unsubscribe, send email sympa@lists.bath.ac.uk  with body "unsubscribe csound"
> 
> 
> 
> 
> -- 
> SaRiGaMa's Oil Vending Orchestra
> is podcasting:
> http://sarigama.namaste.jp/podcast/rss.xml

-- 
KITA Toshihiro
http://tkita.net


Date2013-04-23 10:08
Fromjpff@cs.bath.ac.uk
SubjectRe: [Csnd] Re: Streaming server running csound
> Oh, i missed that point.
>
> Is there any quick way to disable possible holes, for example with a
> command line option or something?
> Or must i recompile csound?
>

At least delete libsystem.so to remove the system opcode

wrt python, the default is not to byuid them.

I think the python opcodes are in libpy.so but I am not totally sure.  I
would recommend deleting that library

==John


Date2013-04-23 10:43
FromKITA
SubjectRe: [Csnd] Re: Streaming server running csound
Yes, i found that, and deleted
/usr/lib/csound/plugins64-5.2/libpy.so
/usr/lib/csound/plugins64-5.2/libsystem_call.so

After that, pyinit and system opcodes fail. Now the security problem seems fixed.
Thank you very much for your advice, John.

(2013年04月23日 18:08), jpff@cs.bath.ac.uk wrote:
>> Oh, i missed that point.
>>
>> Is there any quick way to disable possible holes, for example with a
>> command line option or something?
>> Or must i recompile csound?
>>
> 
> At least delete libsystem.so to remove the system opcode
> 
> wrt python, the default is not to byuid them.
> 
> I think the python opcodes are in libpy.so but I am not totally sure.  I
> would recommend deleting that library
> 
> ==John
> 
> 
> 
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
> 
> 

-- 
KITA Toshihiro
http://tkita.net


Date2013-04-23 11:07
FromKITA
SubjectRe: [Csnd] Streaming server running csound
Hi Oeyvind,

i am not sure how many clients it can serve.
it seems at least 5 clients at the same time are OK for this case (micro instance is the least powerful server).
i think that totally depends on the server performance and network bandwidth at the server side.
If i get a more powerful server and network, more clients can connect to it.

Amazon EC2 is one of the most popular services providing cloud computing servers.
http://aws.amazon.com/ec2/
That is 'Linux machine in a minute', your own virtual linux machine that you can make and throw away anytime.
so it is the best for this kind of experimental purposes.
The pricing in this case (micro instance) is 0.027 US$ per hour, that is approx. 20 US$ per month.

If you make some mistakes in setting up a server, you can just delete it and create a new one.
What you have to pay for is the time duration (in hours) of only the running servers (not of stopped nor deleted servers).

Of course, you can setup this kind of streaming servers using your own computers at your university or home.

(2013年04月22日 19:36), Oeyvind Brandtsegg wrote:
> oh, nice.
> 
> Do you know if there are limitations in the number of listeners that can pull from this stream?
> Also, could you explain briefly what the Amazon EC instance is used for in this setup?
> Thanks for any help
> 
> best
> Oeyvind
> 
> 
> 2013/4/21 KITA >
> 
>     Hello all,
> 
>     i am now running a test server to stream audio that csound generates.
>     The streaming server is publicly accessible by using
>     VLC player (http://www.videolan.org/vlc/) or TuneIn Radio (http://tunein.com/get-tunein/)
>     at mms://54.248.254.55:8080/  (mms: should be changed to mmsh: if you use VLC player for Linux).
>     Feel free to access it to listen :-)
> 
>     On Ubuntu Linux and Android 4.1, VLC Player works fine to play the sound.
>     On Windows7, you have to wait for a minute or so for VLC Player to start playing the streaming.
>     (i do not know why. Is there some negotiation before receiving data?)
>     On iOS and Android, TuneIn Radio seems to work fine to play the mms streaming.
> 
>     The server also accepts interaction via OSC if you use
>     andOSC (https://play.google.com/store/apps/details?id=cc.primevision.andosc) .
>     In andOSC setting you need to set IP as 54.248.254.55 and Port as 56789 (same as default).
>     By drawing some patterns on the screen of andOSC you can modulate the sound in semi-realtime (with latency of seconds),
>     as the csound csd file is designed to receive the Touch data from andOSC.
> 
>     # At NIME2013 i will present some demonstration using part of this as a way of sonification of access log of a Web-based tool.
> 
> 
> 
>     FYI, following is how you can set up the steraming server using Ubuntu 64bit 12.04 Server.
>     In the server, Csound, Jackd and VLC are installed and used.
> 
>     sudo apt-get update
>     sudo apt-get -y install csound
>     # Following libs are used by csound
>     sudo apt-get -y install liblo7 libfltk1.1 libportmidi0 libportaudio2 libfluidsynth1
>     sudo apt-get -y install jackd2 vlc-nox vlc-plugin-jack
>     # During installation of jackd2, just press Enter (use default configuration).
> 
>     jackd -d dummy &
>     csound myfile.csd &
>     cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh,mux=asfh,dst=:8080}' &
> 
>     # i am using an Amazon EC2 micro instance. In that case, you need to set accessible TCP and UDP ports like
>     # Security Groups - Inbound : All TCP and All UDP. (Do not forget to click Apply Rule Changes after clicking Add Rule)
> 
>     --
>     KITA Toshihiro
>     http://tkita.net
> 
> 
> 
>     Send bugs reports to the Sourceforge bug tracker
>                 https://sourceforge.net/tracker/?group_id=81968&atid=564599
>     Discussions of bugs and features can be posted here
>     To unsubscribe, send email sympa@lists.bath.ac.uk  with body "unsubscribe csound"
> 
> 
> 
> 
> -- 
> 
> Oeyvind Brandtsegg
> Professor of Music Technology
> NTNU
> 7491 Trondheim
> Norway
> Cell: +47 92 203 205
> 
> http://flyndresang.no/
> http://www.partikkelaudio.com/
> http://soundcloud.com/brandtsegg
> http://soundcloud.com/t-emp

-- 
KITA Toshihiro
http://tkita.net


Date2013-04-23 15:39
FromAndres Cabrera
SubjectRe: [Csnd] Streaming server running csound

Hi,

VLC works fine on os x.

Cheers

On Apr 23, 2013 1:21 AM, "KITA" <t-kita@kumamoto-u.ac.jp> wrote:
Hi,

Thank you for checking.

i am also curious about how one can receive and play the streaming on MacOS.

(2013年04月22日 09:30), '2+ wrote:
> wow i could listen to it the same way on my ubuntu1210 installed to problematic hp's Pavilion dm1
>
>> mplayer mmsh://54.248.254.55:8080/ <http://54.248.254.55:8080/>
>
>
>
> On Mon, Apr 22, 2013 at 6:36 AM, Tarmo Johannes <tarmo.johannes@otsakool.edu.ee <mailto:tarmo.johannes@otsakool.edu.ee>> wrote:
>
>     Wow!
>
>     That's great! I could listen to the sound from commanline with
>
>     mplayer mmsh://54.248.254.55:8080/ <http://54.248.254.55:8080/>
>
>     (opensuse linux) without any problems.
>
>     Thanks for the tips about the cSoundServer!
>
>     tarmo
>
>     On Sunday 21 April 2013 14:59:57 KITA wrote:
>     > Hello all,
>     >
>     > i am now running a test server to stream audio that csound generates.
>     > The streaming server is publicly accessible by using
>     > VLC player (http://www.videolan.org/vlc/) or TuneIn Radio
>     > (http://tunein.com/get-tunein/) at mms://54.248.254.55:8080/ <http://54.248.254.55:8080/> (mms: should
>     > be changed to mmsh: if you use VLC player for Linux). Feel free to access
>     > it to listen :-)
>     >
>     > On Ubuntu Linux and Android 4.1, VLC Player works fine to play the sound.
>     > On Windows7, you have to wait for a minute or so for VLC Player to start
>     > playing the streaming. (i do not know why. Is there some negotiation before
>     > receiving data?) On iOS and Android, TuneIn Radio seems to work fine to
>     > play the mms streaming.
>     >
>     > The server also accepts interaction via OSC if you use
>     > andOSC (https://play.google.com/store/apps/details?id=cc.primevision.andosc)
>     > . In andOSC setting you need to set IP as 54.248.254.55 and Port as 56789
>     > (same as default). By drawing some patterns on the screen of andOSC you can
>     > modulate the sound in semi-realtime (with latency of seconds), as the
>     > csound csd file is designed to receive the Touch data from andOSC.
>     >
>     > # At NIME2013 i will present some demonstration using part of this as a way
>     > of sonification of access log of a Web-based tool.
>     >
>     >
>     >
>     > FYI, following is how you can set up the steraming server using Ubuntu 64bit
>     > 12.04 Server. In the server, Csound, Jackd and VLC are installed and used.
>     >
>     > sudo apt-get update
>     > sudo apt-get -y install csound
>     > # Following libs are used by csound
>     > sudo apt-get -y install liblo7 libfltk1.1 libportmidi0 libportaudio2
>     > libfluidsynth1 sudo apt-get -y install jackd2 vlc-nox vlc-plugin-jack
>     > # During installation of jackd2, just press Enter (use default
>     > configuration).
>     >
>     > jackd -d dummy &
>     > csound myfile.csd &
>     > cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout
>     > '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh
>     > ,mux=asfh,dst=:8080}' &
>     >
>     > # i am using an Amazon EC2 micro instance. In that case, you need to set
>     > accessible TCP and UDP ports like # Security Groups - Inbound : All TCP and
>     > All UDP. (Do not forget to click Apply Rule Changes after clicking Add
>     > Rule)
>
>
>     Send bugs reports to the Sourceforge bug tracker
>                 https://sourceforge.net/tracker/?group_id=81968&atid=564599
>     Discussions of bugs and features can be posted here
>     To unsubscribe, send email sympa@lists.bath.ac.uk <mailto:sympa@lists.bath.ac.uk> with body "unsubscribe csound"
>
>
>
>
> --
> SaRiGaMa's Oil Vending Orchestra
> is podcasting:
> http://sarigama.namaste.jp/podcast/rss.xml

--
KITA Toshihiro
http://tkita.net



Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"


Date2013-04-23 16:05
FromKITA
SubjectRe: [Csnd] Streaming server running csound
Hi Andres,

Thank you. Great information for me.

Kita

(2013年04月23日 23:39), Andres Cabrera wrote:
> Hi,
> 
> VLC works fine on os x.
> 
> Cheers
> 
> On Apr 23, 2013 1:21 AM, "KITA" > wrote:
> 
>     Hi,
> 
>     Thank you for checking.
> 
>     i am also curious about how one can receive and play the streaming on MacOS.
> 
>     (2013年04月22日 09:30), '2+ wrote:
>     > wow i could listen to it the same way on my ubuntu1210 installed to problematic hp's Pavilion dm1
>     >
>     >> mplayer mmsh://54.248.254.55:8080/  
>     >
>     >
>     >
>     > On Mon, Apr 22, 2013 at 6:36 AM, Tarmo Johannes  >> wrote:
>     >
>     >     Wow!
>     >
>     >     That's great! I could listen to the sound from commanline with
>     >
>     >     mplayer mmsh://54.248.254.55:8080/  
>     >
>     >     (opensuse linux) without any problems.
>     >
>     >     Thanks for the tips about the cSoundServer!
>     >
>     >     tarmo
>     >
>     >     On Sunday 21 April 2013 14:59:57 KITA wrote:
>     >     > Hello all,
>     >     >
>     >     > i am now running a test server to stream audio that csound generates.
>     >     > The streaming server is publicly accessible by using
>     >     > VLC player (http://www.videolan.org/vlc/) or TuneIn Radio
>     >     > (http://tunein.com/get-tunein/) at mms://54.248.254.55:8080/   (mms: should
>     >     > be changed to mmsh: if you use VLC player for Linux). Feel free to access
>     >     > it to listen :-)
>     >     >
>     >     > On Ubuntu Linux and Android 4.1, VLC Player works fine to play the sound.
>     >     > On Windows7, you have to wait for a minute or so for VLC Player to start
>     >     > playing the streaming. (i do not know why. Is there some negotiation before
>     >     > receiving data?) On iOS and Android, TuneIn Radio seems to work fine to
>     >     > play the mms streaming.
>     >     >
>     >     > The server also accepts interaction via OSC if you use
>     >     > andOSC (https://play.google.com/store/apps/details?id=cc.primevision.andosc)
>     >     > . In andOSC setting you need to set IP as 54.248.254.55 and Port as 56789
>     >     > (same as default). By drawing some patterns on the screen of andOSC you can
>     >     > modulate the sound in semi-realtime (with latency of seconds), as the
>     >     > csound csd file is designed to receive the Touch data from andOSC.
>     >     >
>     >     > # At NIME2013 i will present some demonstration using part of this as a way
>     >     > of sonification of access log of a Web-based tool.
>     >     >
>     >     >
>     >     >
>     >     > FYI, following is how you can set up the steraming server using Ubuntu 64bit
>     >     > 12.04 Server. In the server, Csound, Jackd and VLC are installed and used.
>     >     >
>     >     > sudo apt-get update
>     >     > sudo apt-get -y install csound
>     >     > # Following libs are used by csound
>     >     > sudo apt-get -y install liblo7 libfltk1.1 libportmidi0 libportaudio2
>     >     > libfluidsynth1 sudo apt-get -y install jackd2 vlc-nox vlc-plugin-jack
>     >     > # During installation of jackd2, just press Enter (use default
>     >     > configuration).
>     >     >
>     >     > jackd -d dummy &
>     >     > csound myfile.csd &
>     >     > cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout
>     >     > '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh
>     >     > ,mux=asfh,dst=:8080}' &
>     >     >
>     >     > # i am using an Amazon EC2 micro instance. In that case, you need to set
>     >     > accessible TCP and UDP ports like # Security Groups - Inbound : All TCP and
>     >     > All UDP. (Do not forget to click Apply Rule Changes after clicking Add
>     >     > Rule)
>     >
>     >
>     >     Send bugs reports to the Sourceforge bug tracker
>     >                 https://sourceforge.net/tracker/?group_id=81968&atid=564599
>     >     Discussions of bugs and features can be posted here
>     >     To unsubscribe, send email sympa@lists.bath.ac.uk  > with body "unsubscribe csound"
>     >
>     >
>     >
>     >
>     > --
>     > SaRiGaMa's Oil Vending Orchestra
>     > is podcasting:
>     > http://sarigama.namaste.jp/podcast/rss.xml
> 
>     --
>     KITA Toshihiro
>     http://tkita.net
> 
> 
> 
>     Send bugs reports to the Sourceforge bug tracker
>                 https://sourceforge.net/tracker/?group_id=81968&atid=564599
>     Discussions of bugs and features can be posted here
>     To unsubscribe, send email sympa@lists.bath.ac.uk  with body "unsubscribe csound"
> 

-- 
KITA Toshihiro
http://tkita.net


Date2013-04-23 22:16
FromOeyvind Brandtsegg
SubjectRe: [Csnd] Streaming server running csound
Thanks a lot for the info, Kita



2013/4/23 KITA <t-kita@kumamoto-u.ac.jp>
Hi Oeyvind,

i am not sure how many clients it can serve.
it seems at least 5 clients at the same time are OK for this case (micro instance is the least powerful server).
i think that totally depends on the server performance and network bandwidth at the server side.
If i get a more powerful server and network, more clients can connect to it.

Amazon EC2 is one of the most popular services providing cloud computing servers.
http://aws.amazon.com/ec2/
That is 'Linux machine in a minute', your own virtual linux machine that you can make and throw away anytime.
so it is the best for this kind of experimental purposes.
The pricing in this case (micro instance) is 0.027 US$ per hour, that is approx. 20 US$ per month.

If you make some mistakes in setting up a server, you can just delete it and create a new one.
What you have to pay for is the time duration (in hours) of only the running servers (not of stopped nor deleted servers).

Of course, you can setup this kind of streaming servers using your own computers at your university or home.

(2013年04月22日 19:36), Oeyvind Brandtsegg wrote:
> oh, nice.
>
> Do you know if there are limitations in the number of listeners that can pull from this stream?
> Also, could you explain briefly what the Amazon EC instance is used for in this setup?
> Thanks for any help
>
> best
> Oeyvind
>
>
> 2013/4/21 KITA <t-kita@kumamoto-u.ac.jp <mailto:t-kita@kumamoto-u.ac.jp>>
>
>     Hello all,
>
>     i am now running a test server to stream audio that csound generates.
>     The streaming server is publicly accessible by using
>     VLC player (http://www.videolan.org/vlc/) or TuneIn Radio (http://tunein.com/get-tunein/)
>     at mms://54.248.254.55:8080/ <http://54.248.254.55:8080/> (mms: should be changed to mmsh: if you use VLC player for Linux).
>     Feel free to access it to listen :-)
>
>     On Ubuntu Linux and Android 4.1, VLC Player works fine to play the sound.
>     On Windows7, you have to wait for a minute or so for VLC Player to start playing the streaming.
>     (i do not know why. Is there some negotiation before receiving data?)
>     On iOS and Android, TuneIn Radio seems to work fine to play the mms streaming.
>
>     The server also accepts interaction via OSC if you use
>     andOSC (https://play.google.com/store/apps/details?id=cc.primevision.andosc) .
>     In andOSC setting you need to set IP as 54.248.254.55 and Port as 56789 (same as default).
>     By drawing some patterns on the screen of andOSC you can modulate the sound in semi-realtime (with latency of seconds),
>     as the csound csd file is designed to receive the Touch data from andOSC.
>
>     # At NIME2013 i will present some demonstration using part of this as a way of sonification of access log of a Web-based tool.
>
>
>
>     FYI, following is how you can set up the steraming server using Ubuntu 64bit 12.04 Server.
>     In the server, Csound, Jackd and VLC are installed and used.
>
>     sudo apt-get update
>     sudo apt-get -y install csound
>     # Following libs are used by csound
>     sudo apt-get -y install liblo7 libfltk1.1 libportmidi0 libportaudio2 libfluidsynth1
>     sudo apt-get -y install jackd2 vlc-nox vlc-plugin-jack
>     # During installation of jackd2, just press Enter (use default configuration).
>
>     jackd -d dummy &
>     csound myfile.csd &
>     cvlc -v 'jack://channels=2:ports=.*' --sout-keep --sout '#transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=mmsh,mux=asfh,dst=:8080}' &
>
>     # i am using an Amazon EC2 micro instance. In that case, you need to set accessible TCP and UDP ports like
>     # Security Groups - Inbound : All TCP and All UDP. (Do not forget to click Apply Rule Changes after clicking Add Rule)
>
>     --
>     KITA Toshihiro
>     http://tkita.net
>
>
>
>     Send bugs reports to the Sourceforge bug tracker
>                 https://sourceforge.net/tracker/?group_id=81968&atid=564599
>     Discussions of bugs and features can be posted here
>     To unsubscribe, send email sympa@lists.bath.ac.uk <mailto:sympa@lists.bath.ac.uk> with body "unsubscribe csound"
>
>
>
>
> --
>
> Oeyvind Brandtsegg
> Professor of Music Technology
> NTNU
> 7491 Trondheim
> Norway
> Cell: +47 92 203 205
>
> http://flyndresang.no/
> http://www.partikkelaudio.com/
> http://soundcloud.com/brandtsegg
> http://soundcloud.com/t-emp

--
KITA Toshihiro
http://tkita.net



Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"




--

Oeyvind Brandtsegg
Professor of Music Technology
NTNU
7491 Trondheim
Norway
Cell: +47 92 203 205

http://flyndresang.no/
http://www.partikkelaudio.com/
http://soundcloud.com/brandtsegg
http://soundcloud.com/t-emp