Hi,
io GNU/Linux 2015.01 has been released (32 and 64-bits).
io GNU/Linux is a Live DVD/USB based on Debian Sid and focused on multimedia.
This new version includes an installer (without support for EFI/GPT based
systems for now)
Kernel 3.16.7-ck7, Jack2 as default sound server, e18 as desktop environment
and a big collection of installed software... Full persistence for USB install
(with encryption) and more cool stuff...
For more infos: manual, packages list, screenshots, video etc... Check:
-> http://io.gnu.linux.free.fr/ (work in progress)
-> https://sourceforge.net/projects/io-gnu-linux/
Feedbacks welcome, enjoy :)
MK
Hi, some internal functions are globals and I think it is not what you want
(jack2 seems ok).
For example, a naive way to forbid the creation of other jack clients is:
# tested with jack 0.124.1
gcc -ljack private_club_mode.c
./a.out # prints "JACK compiled with System V SHM support."
echo $? # 0
jack_lsp # no more clients please, segfault (jack_client_open_aux)
/* private_club_mode.c */
#include <jack/jack.h>
int jack_register_server(const char *, int);
int main() {
return jack_register_server("umpa", 0xDADA);
}
Tito
This was just announced on sursound. Might be worthwhile to adopt for
anyone working with spatial audio datasets and files...
-------- Forwarded Message --------
Subject: [Sursound] AES69-2015 standard for file exchange - Spatial
acoustic data file format
Date: Sun, 15 Mar 2015 16:13:47 +0100
From: Markus Noisternig <Markus.Noisternig(a)ircam.fr>
Reply-To: Surround Sound discussion group <sursound(a)music.vt.edu>
To: Surround Sound discussion group <sursound(a)music.vt.edu>
Dear Sursounders,
We are pleased to announce the recent publication of the AES69-2015
standard for file exchange - Spatial acoustic data file format. See also
the AES press release at http://www.aes.org/press/?ID=293
<http://www.aes.org/press/?ID=293>
The new AES69-2015 standard defines a file format to exchange
space-related acoustic data in various forms. These include HRTF, as
well as directional room impulse responses (DRIR). The format is
designed to be scalable to match the available rendering process and to
be sufficiently flexible to include source materials from different
databases.
This project was developed in AES Standards Working Group SC-02-08 and
standardizes the Spatially-oriented format for acoustics (SOFA), which
aims at storing and transmitting any transfer-function data measured
with microphone arrays and loudspeaker arrays. See
http://www.sofaconventions.org/ <http://www.sofaconventions.org/> for
further information and ongoing format discussions.
Open source application-programming interfaces (API) for Matlab, Octave,
and C++ are available online at
http://sourceforge.net/projects/sofacoustics/
<http://sourceforge.net/projects/sofacoustics/>
All the best,
Markus and Piotr
--
Markus Noisternig
Acoustics and Cognition Research Group
IRCAM, CNRS, Sorbonne Universities, UPMC
Paris, France
Piotr Majdak
Psychoacoustics and Experimental Audiology
Acoustics Research Institute
Austrian Academy of Sciences
Vienna, Austria
Srinivasan S wrote:
> $ aplay -f dat -D VOUTL new.wav
> Playing WAVE 'new.wav' : Signed 16 bit Little Endian, Rate 48000 Hz, Stereo
> aplay: set_params:1087: Channels count non available
You are trying to play a two-channel file on a single-channel device.
Regards,
Clemens