* Starts file rendering with a CSD (no real-time audio). The variable can contain * a filepath or the literal text of a CSD. * * @param {string} s A string containing the pathname to the CSD. * @param {function} callback completion callback
(s, callback = null)
| 182 | * @param {function} callback completion callback |
| 183 | */ |
| 184 | function RenderCsd(s, callback = null) { |
| 185 | CopyUrlToLocal(s, s, function() { |
| 186 | csound.Csound.render(s); |
| 187 | callback(); |
| 188 | }); |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * Sends a score to be read by csound.Csound. |
nothing calls this directly
no test coverage detected