pgee70
pgee70
any progress on this issue??
Hi I ended up using another library - I modified one I downloaded, but was not able to find a URL for you. It encodes on the fly into opus...
Thanks for your answer, it must be the monkey patching - I do use this. the code was written way before I did any unit testing and I have been...
For my use-case, debugging is only needed while I am doing test-driven development and not when I run all unit tests. so I turn off monkey patching, and then when...
i got around it by using sed. /www/less/bin/lessc /www/project/assets/css/less/project.less /www/project/assets/css/project.css sed 's/..\/..\/plugins\/bootstrap/..\/plugins\/bootstrap/g' /www/project/assets/css/project.css > /www/project/assets/css/project2.css sed 's/..\/..\/plugins\/font-awesome\/plugins\/font-awesome/..\/plugins\/font-awesome/g' /www/project/assets/css/project2.css > /www/project/assets/css/project3.css rm /www/project/assets/css/project.css rm /www/project/assets/css/project2.css mv /www/project/assets/css/project3.css /www/project/assets/css/project.css
Hi try this: use this snippet to construct: AudioRecorderConfig = {worker_path:'assets/js/ogg/worker.min.js'}; AudioRecorderConfig.audioContext = audioCtx; AudioRecorderConfig.stream = stream; AudioRecorder.init(AudioRecorderConfig); > On 17 Mar 2015, at 2:13 am, jhiswin [email protected] wrote: >...
Thanks for the suggestion. I really should learn to prototype… there is just too much to learn….. here is some of the code in my code that calls the audiorecorder.js...
ok, i didn’t use the play clip function. I just wanted to make a recorder, not a player… No, I really don’t understand audio that well. It has been a...