Bill

Results 13 comments of Bill

It seems that the RPM provider of libportaudio2 does not provide what AudioIO wants? Or is the build script in error somehow? According to the RPM page at http://rpmfind.net//linux/RPM/opensuse/12.1/i586/portaudio-19-273.1.3.i586.html the...

Ah, here it is: for Windows to build, there have to be aliases. In build.jl the lines need to change to: libportaudio = library_dependency("libportaudio", aliases=["libportaudio-2"]) libsndfile = library_dependency("libsndfile", aliases=["libsndfile-1"])

Thanks. I have an interest in device IO with DSP. I have recently patched portaudio.jl by adding functionality to use other than the default stream. Is the portaudio side already...

It seems that I cannot get the GitHub web site to do a rebase, so I deleted the fork, reforked master, and changed portaudio.jl, README.md, and build.jl plus added the...

I guess I cannot easily get my Github program to clone and fork a fork-- it wants master. I did compare my revised file to the wherrera10 branch and found...

That is a very nice plot! A fork of AudioIO which I've created uses more simple functions, as in read and write. An example: ``` # -*- coding: utf-8 -*-...

I find I have used this one frequently since Julia 0.7: using Primes function factors(n) f = [one(n)] for (p, e) in factor(n) f = reduce(vcat, [f * p^j for...

The current version works correctly under Linux. Libxml2 behavior with the xml file, xsd file function seemed different between Linux and Windows (Linux seemed to expect the schema and xml...