Oh nice, I was looking at possibly using my project as a way of teaching myself Docker. The problem I have is I want to operate ChucK continuously, basically like an internet radio station. I get around memory leaks by restarting the ChucK process periodically, so in itself it should be steady state. This means I can't really use --silent -- unless I'm not understanding how that flag works. I'm not looking for answers to these questons, just sort of stating what I'm up to in case it is of interest. :) I haven't started on the streaming part of this project yet (still working on core app), but will advise if anything interesting comes up. Thanks Stuart
---------- Forwarded message ---------- From: Mark Cerqueira
To: ChucK Users Mailing List Cc: Date: Fri, 13 Jan 2017 17:16:54 -0800 Subject: Re: [chuck-users] ChucK => internet audio stream? I set up a Docker image this week that lets you pass it ChucK source code or file, it runs it for up to 30 seconds (with --silent flag so it does this step much faster than 30 seconds), saves the output to .wav, converts the .wav to .m4a to make the file smaller, and then hosts the file for download/streaming. Demo container running Docker image: http://chuck-renderer.4860ca31.svc.dockerapp.io:9000/debug
Source code: https://github.com/markcerqueira/chuck-renderer
Image on Docker hub: https://hub.docker.com/r/markcerqueira/chuck-renderer/
Cheers!
mc