|
From: Jan S. <ha...@st...> - 2013-11-06 18:48:58
|
> I only have Darwin 8.11.0 (MacoSX 10.4.11) to test on now; > I will try with both 14.3.2 and 14.4.1 and get back. This is Darwin 8.11.0 (MacOSX 10.4.11) on a PowerPC Macintosch G4. The Mach-O executable that comes with 14.3.2 does not run on my machine. With 14.3.2 compiled from source, the following works fine: $ play -r 44100 -c 2 -n synth 5 sin 440 gain -6 $ sox -r 44100 -c 2 -n sin.wav synth 5 sin 440 gain -6 $ play sin.wav $ sox sin.wav sin.ogg $ play sin.ogg $ sox sin.ogg back.wav $ play back.wav If I leave -r and -c unspecified, it says can't set sample rate 48000; using 44100 can't set 1 channels; using 2 but it plays fine with the automatic resampling and remix. The Mach-O executable that comes with 14.4.1 does not run on my machine. With 14.4.1 compiled from source: $ play -n synth 5 sin 440 gain -6 works but says 2013-11-06 19:37:37.366 play[29363] CFLog (0): CFMessagePort: bootstrap_register(): failed 1100 (0x44c), port = 0x2e0b, name = 'com.apple.audio.CoreAudio.pid-29363.1230707510.813.Telemetry.IOCycle' See /usr/include/servers/bootstrap_defs.h for the error codes. 2013-11-06 19:37:37.369 play[29363] CFLog (99): CFMessagePortCreateLocal(): failed to name Mach port (com.apple.audio.CoreAudio.pid-29363.1230707510.813.Telemetry.IOCycle) 2013-11-06 19:37:37.379 play[29363] CFLog (0): CFMessagePort: bootstrap_register(): failed 1100 (0x44c), port = 0x2e0f, name = 'com.apple.audio.CoreAudio.pid-29363.295191386.2254.Telemetry.IOCycle' See /usr/include/servers/bootstrap_defs.h for the error codes. 2013-11-06 19:37:37.501 play[29363] CFLog (99): CFMessagePortCreateLocal(): failed to name Mach port (com.apple.audio.CoreAudio.pid-29363.295191386.2254.Telemetry.IOCycle) The same happens with just 'play -n'. The following work as before $ sox -n sin.wav synth 5 sin 440 gain -6 $ play sin.wav $ sox sin.wav sin.ogg $ play sin.ogg $ sox sin.ogg back.wav $ play back.wav except that every play(1) gives the message above. This time, it does not complain about the rate and channels. (I believe this is what Chris fixed on the way to 14.4.[01]). Jan |