Re: [Sursound] format convention of Ambisonic Sound Library Files

2022-05-29 Thread Sampo Syreeni

On 2022-05-25, Fons Adriaensen wrote:

I am still not too sure if even now things are standardised enough 
for anyone to write a fresh file format for it that pleases everyone.


It doesn't have to please anybody at all. It just needs to work, and be 
implemented in a widely known and FLOSS library. Repetto's Libsndfile 
always comes to mind here, from discussions on the musicdsp list.


Suffice it to say, such things can't just be written,they have to be 
implemented and tested, e.g. on vast tiered speaker layouts which 
very few people have access to.


I'd argue that library-wise, even a very basic decoder would do most of 
the lifting. Once the foot is in the door, then developers would jump at 
the opportunity to better their wares.


So what's missing from the base ambisonic toolchain? Not the file 
format, because AmbiX/CAF does just fine and its extended format *more* 
than fine. As Fons just laid it out.


What's missing is plug-and-play integration with Libsndfile and plain 
binary, a basic shelving n:th-order decoder, and n:th order streaming 
primitives for processing, as an integrated and optimized FLOSS package, 
written in C. Ported to the main architectures used out there for sound 
playback and recording, so x86/64, ARM, and maybe Verilog/VHDL for 
FPGL/ASIC work. If you were to be funny about it, an MPI implementation 
for massively parallel research work.



And of course it will need to use a 64bit-friendly file format too...


Which CAF is. RIFF can be so as well, but not *nearly* as neatly.

Ambix seems to be the de facto standard today, except that instead of 
the required CAF container most people seem to use the same channel 
order and gains in a WAVEX file. Which in turn means that the 
'extended' format is not available as it depends on CAF's UUID chunck.


Obviously RIFF, as in WAVEX, is a chunked format as well. It's well 
capable of carrying a UUID-kinda optional chunk. In fact, IFF/RIFF are 
the progenitors to CAF/MPEG-4 BMFF as well as WAVEX/RF64. The nested TLV 
structure, akin to even ASN.1, is fully retained.


A problem with the Ambix spec is that the internet never forgets, and 
if you search for it you could easily find the now invalid original 
document, or a version of the same with 'corrections' that make it 
hard to read and interpret.


None of that matters if you just go and implement the thing and spread 
your code around. "Code is law." Not the spec.


What is IMHO missing in the Ambix format is an optional UUID chunk 
that would contain the same info as a broadcast WAV, and in exactly 
the same format.


Ought to be simple enough to add as side metadata, right? Also usable by 
any part of the toolchain I outlined above.


What I can't advocate for are tons of different options for ordering, 
interlacing and bitwidths. Those are impossible to implement 
efficiently, especially in hardware. What you need is a fixed global 
channel order, from which something can be detracted. You can't do that 
by including null channels, because they will consume memory bandwidth 
as well. What you can do is specify a certain order and then mask 
channels out of it; this is what was done in the USB specification, and 
it's even more doable within some derivative of AmbiX.


It's also what we tried to do with Martin Leese when we specified the 
(from the beginning defunct) Ogg Channel mapping machinery ( 
https://wiki.xiph.org/OggPCM ). That piece of work tried to order all of 
the possible multichannel types by way of the existing bit masks having 
to do with individual channels. So basically by their quantized 
directional angle.


...but not quite so in toto, because there are plenty of channel 
definitions in use with extra semantics. E.g. the THX standard wants to 
have side back channels which are front-back dipoles, with no direct 
sound towards the central listener. This sort of thing is almost 
impossible to describe within the ambisonic framework, without including 
a high order room model. And besides, semantically, the minimum model is 
already encapsulated by the *intention* of the emitter being there: 
it's left back/right emitting field with no directed sound, intended to 
excite diffuse room modes from there, despite the size of the 
auditorium. It's rather difficult to exhibit something like that 
precisely in the ambisonic framework, yet it's still something you have 
to handle in cinematic audio, so we/I just left it in there to be worked 
out by the decoder.


Such metadata is really essential for some users. It could easily be 
added without breaking anything.


So why not just copy the format and throw it into a chunk? That's what 
TLV-formats like CAF are ment to do? Obviously since it's metadata, it 
should go before the massive data proper. But otherwise, why not just 
throw it in there, as an option? It doesn't cost anything, basically, 
gauged against the gigabytes or even terabytes of multichannel audio, it 
works just well with the extensibility 

Re: [Sursound] format convention of Ambisonic Sound Library

2022-05-29 Thread Sampo Syreeni

On 2022-05-27, Fons Adriaensen wrote:


Hello Richard,


Having been caught up in beach bum matters for some years,


You are like...just so cool. Never have I ever... 8)
--
Sampo Syreeni, aka decoy - de...@iki.fi, http://decoy.iki.fi/front
+358-40-3751464, 025E D175 ABE5 027C 9494 EEB0 E090 8BA9 0509 85C2
___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, edit 
account or options, view archives and so on.


Re: [Sursound] format convention of Ambisonic Sound Library

2022-05-27 Thread Fons Adriaensen
Hello Richard,

> Having been caught up in beach bum matters for some years,

Happy to hear you are still providing the sharks with their
daily ration of SCUBA divers...

> I've lost track of all the latest machinations.  But is there
> a simple authoritative definition of AmbiX ?

The best as far as I know is the one I pointed to before:



As a format definition it could be more concise, but all the
required info is there.

In summary:

* The file format should be Apple's CAF, but in practice WAVEX
  is used (for the non-extended form of Ambix). 

* The file should contain all components for a given order,
  and thus have (N+1)^2 channels, unless the extended format
  is used (see below).

* The channel order should be ACN,

* Normalisation should be SN3D.


Extended format:

The file has a 'UUID chunk' [1] which contains an C * M matrix
which transforms the available channels to a full set for a
given order. C = number of channels in the file, M = (N+1)^2,
with N = order. The exact format is in the paper.

This can be used for several purposes:

* Storing 'legacy formats' without modifying the sample data.
  The matrix converts to ACN/SN3D.

* Horizontal only. The matrix provides the missing components
  (including those that are zero) assuming elevation = 0.

* Subsets of full 3D that are sufficient to cover part of the
  sphere. The matrix transforms to the full set.


That said, I have never encountered such a extended format
file in the wild.


[1] UUID chunks are possible in CAF only. They allow to extend
the file format without breaking the spec and without requiring
approval from Apple. Applications that do not know how to handle
a particular UUID should just ignore the chunk.


Ciao,

-- 
FA



___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, edit 
account or options, view archives and so on.


Re: [Sursound] format convention of Ambisonic Sound Library Files

2022-05-25 Thread Fons Adriaensen
On Wed, May 25, 2022 at 08:45:42AM +0100, Richard Dobson wrote:

> I am still not too sure if
> even now things are standardised enough for anyone to write a fresh file
> format for it that pleases everyone. Suffice it to say, such things can't
> just be written,they have to be implemented and tested, e.g. on vast tiered
> speaker layouts which very few people have access to. And of course it will
> need to use a 64bit-friendly file format too...

Ambix seems to be the de facto standard today, except that instead of the
required CAF container most people seem to use the same channel order and
gains in a WAVEX file. Which in turn means that the 'extended' format is
not available as it depends on CAF's UUID chunck.

That's a shame, because CAF is really the cleanest audio file format
available today [1]. Advantages are:

- no history of incompatible 'vendor extensions',
- 64-bit size, in practice no limit on duration,
- it can be extended without breaking the official specs.

A problem with the Ambix spec is that the internet never forgets,
and if you search for it you could easily find the now invalid
original document, or a version of the same with 'corrections' 
that make it hard to read and interpret.

The one at 



seems to be OK.

What is IMHO missing in the Ambix format is an optional UUID
chunk that would contain the same info as a broadcast WAV, and
in exactly the same format. Such metadata is really essential
for some users. It could easily be added without breaking anything.


[1] Except for the channel description chunk which is the usual
mishmash of everything the authors could imagine, and still not
capable of describing arbitrary channel uses or just saying 
'undefined'. Luckily it is not required for the Ambix format.

-- 
FA

___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, edit 
account or options, view archives and so on.


Re: [Sursound] format convention of Ambisonic Sound Library Files

2022-05-25 Thread Richard Dobson
Welcome to my world - as it used to be! The ring-pass-not is that word 
'standardised". My AMB Wavex-based file format is now 22 years old 
(FuMa, up to third-order). People have long moved on - basically as soon 
as that was published, everyone here started arguing about all the other 
information that should be included, alternative standards, channel 
order, higher orders,  filters, irregular layouts, the works. I am still 
not too sure if even now things are standardised enough for anyone to 
write a fresh file format for it that pleases everyone. Suffice it to 
say, such things can't just be written,they have to be implemented and 
tested, e.g. on vast tiered speaker layouts which very few people have 
access to. And of course it will need to use a 64bit-friendly file 
format too...


A reminder, for anyone feeling nostalgic:

http://www.rwdobson.com/bformat.html

Richard Dobson



On 24/05/2022 23:13, Sampo Syreeni wrote:

On 2022-05-24, Alan Kan wrote:

Ah… it seems one has to actually click on the file to see that detail. 
I was downloading from the list page.


Why not embed the a standardised format descriptor into the file itself? 
Most formats permit that. In fact that's what we've been doing all along 
e.g.in RIFF WAVE.

___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, edit 
account or options, view archives and so on.


Re: [Sursound] format convention of Ambisonic Sound Library Files

2022-05-24 Thread Sampo Syreeni

On 2022-05-24, Alan Kan wrote:

Ah… it seems one has to actually click on the file to see that detail. 
I was downloading from the list page.


Why not embed the a standardised format descriptor into the file itself? 
Most formats permit that. In fact that's what we've been doing all along 
e.g.in RIFF WAVE.

--
Sampo Syreeni, aka decoy - de...@iki.fi, http://decoy.iki.fi/front
+358-40-3751464, 025E D175 ABE5 027C 9494 EEB0 E090 8BA9 0509 85C2
___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, edit 
account or options, view archives and so on.


Re: [Sursound] format convention of Ambisonic Sound Library Files

2022-05-23 Thread Alan Kan
Ah… it seems one has to actually click on the file to see that detail. I was 
downloading from the list page. Thanks for pointing that out Aaron.

From: Sursound  On Behalf Of Aaron Heller
Sent: Tuesday, 24 May 2022 7:28 AM
To: Surround Sound discussion group 
Subject: Re: [Sursound] format convention of Ambisonic Sound Library Files

Each file's page indicates the convention; all the ones I've looked at have
been AmbiX, but I've only looked at a small fraction of the files.

The ones I have downloaded have names that appear random, like
Acdb7b0a20a799bde7257.wav
... no obvious indication of the convection used.

It's a great resource, but it would certainly be better if the filenames
were more mnemonic, as well as indicating the channel convection in use.

Aaron Heller




On Mon, May 23, 2022 at 5:43 AM Jack Reynolds 
mailto:jackreynolds...@gmail.com>>
wrote:

> As far as the know each file has the format in the file name.
>
> J
>
> Sent from my iPhone
>
> > On 23 May 2022, at 13:16, Alan Kan 
> > mailto:alan@mq.edu.au>> wrote:
> >
> > Hi,
> >
> > I was wondering if anyone could tell me whether the audio examples in
> the Ambisonic Sound Library on 
> https://library.soundfield.com/<https://library.soundfield.com> are in
> FuMa or AmbiX format? I couldn't find this detail on the website.
> >
> > Thanks
> >
> > Alan
> > ---
> > Dr. Alan Kan, PhD (he/his/him)
> > Research Fellow
> > School of Engineering<
> https://www.mq.edu.au/faculty-of-science-and-engineering/departments-and-schools/school-of-engineering>
> | Macquarie University
> > Level 1, 50 Waterloo Road, Macquarie Park, NSW 2113, Australia
> > T: +61 (2) 9850 2247
> >
> > ECHO Lab | Macquarie University Hearing<
> https://www.mq.edu.au/about/about-the-university/vision-strategy/other-university-initiatives/hearing>
> | Australian Hearing 
> Hub<https://hearinghub.edu.au/<https://hearinghub.edu.au>>
> > Room 1.626, 16 University Avenue, Macquarie University, NSW 2109,
> Australia
> > T: +61 (2) 9850 4520
> >
> > E: alan@mq.edu.au<mailto:alan@mq.edu.au>
> > W: 
> > www.mq.edu.au/research/echolab<http://www.mq.edu.au/research/echolab<http://www.mq.edu.au/research/echolab%3chttp:/www.mq.edu.au/research/echolab>>
> | researchers.mq.edu.au/en/persons/alan-kan<
> https://researchers.mq.edu.au/en/persons/alan-kan>
> > L: 
> > www.linkedin.com/in/alan-kan<http://www.linkedin.com/in/alan-kan><http://www.linkedin.com/in/alan-kan<http://www.linkedin.com/in/alan-kan>>
> >
> > [cid:image003.png@01D86EF2.BAFAA8C0]
> >
> > CRICOS Provider 2J. ABN: 90 952 801 237.
> >
> > This message is intended for the addressee named and may contain
> confidential information. If you are not the intended
> > recipient, please delete the message and notify the sender. Views
> expressed in this message are those of the individual
> > sender and are not necessarily the views of Macquarie University and its
> controlled entities.
> >
> > -- next part --
> > An HTML attachment was scrubbed...
> > URL: <
> https://mail.music.vt.edu/mailman/private/sursound/attachments/20220523/7606866c/attachment.htm<https://mail.music.vt.edu/mailman/private/sursound/attachments/20220523/7606866c/attachment.htm>
> >
> > -- next part --
> > A non-text attachment was scrubbed...
> > Name: image003.png
> > Type: image/png
> > Size: 35128 bytes
> > Desc: image003.png
> > URL: <
> https://mail.music.vt.edu/mailman/private/sursound/attachments/20220523/7606866c/attachment.png<https://mail.music.vt.edu/mailman/private/sursound/attachments/20220523/7606866c/attachment.png>
> >
> > ___
> > Sursound mailing list
> > Sursound@music.vt.edu<mailto:Sursound@music.vt.edu>
> > https://mail.music.vt.edu/mailman/listinfo/sursound<https://mail.music.vt.edu/mailman/listinfo/sursound>
> >  - unsubscribe here,
> edit account or options, view archives and so on.
> ___
> Sursound mailing list
> Sursound@music.vt.edu<mailto:Sursound@music.vt.edu>
> https://mail.music.vt.edu/mailman/listinfo/sursound<https://mail.music.vt.edu/mailman/listinfo/sursound>
>  - unsubscribe here,
> edit account or options, view archives and so on.
>
-- next part --
An HTML attachment was scrubbed...
URL: 
<https://mail.music.vt.edu/mailman/private/sursound/attachments/20220523/52fc2e30/attachment.htm<https://mail.music.vt.edu/mailman/priva

Re: [Sursound] format convention of Ambisonic Sound Library Files

2022-05-23 Thread Aaron Heller
Each file's page indicates the convention; all the ones I've looked at have
been AmbiX, but I've only looked at a small fraction of the files.

The ones I have downloaded have names that appear random, like
  Acdb7b0a20a799bde7257.wav
... no obvious indication of the convection used.

It's a great resource, but it would certainly be better if the filenames
were more mnemonic, as well as indicating the channel convection in use.

Aaron Heller




On Mon, May 23, 2022 at 5:43 AM Jack Reynolds 
wrote:

> As far as the know each file has the format in the file name.
>
> J
>
> Sent from my iPhone
>
> > On 23 May 2022, at 13:16, Alan Kan  wrote:
> >
> > Hi,
> >
> > I was wondering if anyone could tell me whether the audio examples in
> the Ambisonic Sound Library on https://library.soundfield.com/ are in
> FuMa or AmbiX format? I couldn't find this detail on the website.
> >
> > Thanks
> >
> > Alan
> > ---
> > Dr. Alan Kan, PhD (he/his/him)
> > Research Fellow
> > School of Engineering<
> https://www.mq.edu.au/faculty-of-science-and-engineering/departments-and-schools/school-of-engineering>
> | Macquarie University
> > Level 1, 50 Waterloo Road, Macquarie Park, NSW 2113, Australia
> > T: +61 (2) 9850 2247
> >
> > ECHO Lab | Macquarie University Hearing<
> https://www.mq.edu.au/about/about-the-university/vision-strategy/other-university-initiatives/hearing>
> | Australian Hearing Hub
> > Room 1.626, 16 University Avenue, Macquarie University, NSW 2109,
> Australia
> > T: +61 (2) 9850 4520
> >
> > E:  alan@mq.edu.au
> > W: www.mq.edu.au/research/echolab
> | researchers.mq.edu.au/en/persons/alan-kan<
> https://researchers.mq.edu.au/en/persons/alan-kan>
> > L: www.linkedin.com/in/alan-kan
> >
> > [cid:image003.png@01D86EF2.BAFAA8C0]
> >
> > CRICOS Provider 2J. ABN: 90 952 801 237.
> >
> > This message is intended for the addressee named and may contain
> confidential information. If you are not the intended
> > recipient, please delete the message and notify the sender. Views
> expressed in this message are those of the individual
> > sender and are not necessarily the views of Macquarie University and its
> controlled entities.
> >
> > -- next part --
> > An HTML attachment was scrubbed...
> > URL: <
> https://mail.music.vt.edu/mailman/private/sursound/attachments/20220523/7606866c/attachment.htm
> >
> > -- next part --
> > A non-text attachment was scrubbed...
> > Name: image003.png
> > Type: image/png
> > Size: 35128 bytes
> > Desc: image003.png
> > URL: <
> https://mail.music.vt.edu/mailman/private/sursound/attachments/20220523/7606866c/attachment.png
> >
> > ___
> > Sursound mailing list
> > Sursound@music.vt.edu
> > https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here,
> edit account or options, view archives and so on.
> ___
> Sursound mailing list
> Sursound@music.vt.edu
> https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here,
> edit account or options, view archives and so on.
>
-- next part --
An HTML attachment was scrubbed...
URL: 

___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, edit 
account or options, view archives and so on.


Re: [Sursound] format convention of Ambisonic Sound Library Files

2022-05-23 Thread JJ Wiesler
It is a bit confusing. I’m pretty sure many of them are in Aformat, as
captured by microphone which it does name in the title or listing info.

They have a nice free plugin to convert to various b formats

JJ

On Mon, May 23, 2022 at 5:43 AM Jack Reynolds 
wrote:

> As far as the know each file has the format in the file name.
>
> J
>
> Sent from my iPhone
>
> > On 23 May 2022, at 13:16, Alan Kan  wrote:
> >
> > Hi,
> >
> > I was wondering if anyone could tell me whether the audio examples in
> the Ambisonic Sound Library on https://library.soundfield.com/ are in
> FuMa or AmbiX format? I couldn't find this detail on the website.
> >
> > Thanks
> >
> > Alan
> > ---
> > Dr. Alan Kan, PhD (he/his/him)
> > Research Fellow
> > School of Engineering<
> https://www.mq.edu.au/faculty-of-science-and-engineering/departments-and-schools/school-of-engineering>
> | Macquarie University
> > Level 1, 50 Waterloo Road, Macquarie Park, NSW 2113, Australia
> > T: +61 (2) 9850 2247
> >
> > ECHO Lab | Macquarie University Hearing<
> https://www.mq.edu.au/about/about-the-university/vision-strategy/other-university-initiatives/hearing>
> | Australian Hearing Hub
> > Room 1.626, 16 University Avenue, Macquarie University, NSW 2109,
> Australia
> > T: +61 (2) 9850 4520
> >
> > E:  alan@mq.edu.au
> > W: www.mq.edu.au/research/echolab
> | researchers.mq.edu.au/en/persons/alan-kan<
> https://researchers.mq.edu.au/en/persons/alan-kan>
> > L: www.linkedin.com/in/alan-kan
> >
> > [cid:image003.png@01D86EF2.BAFAA8C0]
> >
> > CRICOS Provider 2J. ABN: 90 952 801 237.
> >
> > This message is intended for the addressee named and may contain
> confidential information. If you are not the intended
> > recipient, please delete the message and notify the sender. Views
> expressed in this message are those of the individual
> > sender and are not necessarily the views of Macquarie University and its
> controlled entities.
> >
> > -- next part --
> > An HTML attachment was scrubbed...
> > URL: <
> https://mail.music.vt.edu/mailman/private/sursound/attachments/20220523/7606866c/attachment.htm
> >
> > -- next part --
> > A non-text attachment was scrubbed...
> > Name: image003.png
> > Type: image/png
> > Size: 35128 bytes
> > Desc: image003.png
> > URL: <
> https://mail.music.vt.edu/mailman/private/sursound/attachments/20220523/7606866c/attachment.png
> >
> > ___
> > Sursound mailing list
> > Sursound@music.vt.edu
> > https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here,
> edit account or options, view archives and so on.
> ___
> Sursound mailing list
> Sursound@music.vt.edu
> https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here,
> edit account or options, view archives and so on.
>
-- 
___
web pollenmusicgroup.com
web decibellerecording.com
web showlio.com
-- next part --
An HTML attachment was scrubbed...
URL: 

___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, edit 
account or options, view archives and so on.


Re: [Sursound] format convention of Ambisonic Sound Library Files

2022-05-23 Thread Jack Reynolds
As far as the know each file has the format in the file name.

J

Sent from my iPhone

> On 23 May 2022, at 13:16, Alan Kan  wrote:
> 
> Hi,
> 
> I was wondering if anyone could tell me whether the audio examples in the 
> Ambisonic Sound Library on https://library.soundfield.com/ are in FuMa or 
> AmbiX format? I couldn't find this detail on the website.
> 
> Thanks
> 
> Alan
> ---
> Dr. Alan Kan, PhD (he/his/him)
> Research Fellow
> School of 
> Engineering
>  | Macquarie University
> Level 1, 50 Waterloo Road, Macquarie Park, NSW 2113, Australia
> T: +61 (2) 9850 2247
> 
> ECHO Lab | Macquarie University 
> Hearing
>  | Australian Hearing Hub
> Room 1.626, 16 University Avenue, Macquarie University, NSW 2109, Australia
> T: +61 (2) 9850 4520
> 
> E:  alan@mq.edu.au
> W: www.mq.edu.au/research/echolab | 
> researchers.mq.edu.au/en/persons/alan-kan
> L: www.linkedin.com/in/alan-kan
> 
> [cid:image003.png@01D86EF2.BAFAA8C0]
> 
> CRICOS Provider 2J. ABN: 90 952 801 237.
> 
> This message is intended for the addressee named and may contain confidential 
> information. If you are not the intended
> recipient, please delete the message and notify the sender. Views expressed 
> in this message are those of the individual
> sender and are not necessarily the views of Macquarie University and its 
> controlled entities.
> 
> -- next part --
> An HTML attachment was scrubbed...
> URL: 
> 
> -- next part --
> A non-text attachment was scrubbed...
> Name: image003.png
> Type: image/png
> Size: 35128 bytes
> Desc: image003.png
> URL: 
> 
> ___
> Sursound mailing list
> Sursound@music.vt.edu
> https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, edit 
> account or options, view archives and so on.
___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, edit 
account or options, view archives and so on.


[Sursound] format convention of Ambisonic Sound Library Files

2022-05-23 Thread Alan Kan
Hi,

I was wondering if anyone could tell me whether the audio examples in the 
Ambisonic Sound Library on https://library.soundfield.com/ are in FuMa or AmbiX 
format? I couldn't find this detail on the website.

Thanks

Alan
---
Dr. Alan Kan, PhD (he/his/him)
Research Fellow
School of 
Engineering
 | Macquarie University
Level 1, 50 Waterloo Road, Macquarie Park, NSW 2113, Australia
T: +61 (2) 9850 2247

ECHO Lab | Macquarie University 
Hearing
 | Australian Hearing Hub
Room 1.626, 16 University Avenue, Macquarie University, NSW 2109, Australia
T: +61 (2) 9850 4520

E:  alan@mq.edu.au
W: www.mq.edu.au/research/echolab | 
researchers.mq.edu.au/en/persons/alan-kan
L: www.linkedin.com/in/alan-kan

[cid:image003.png@01D86EF2.BAFAA8C0]

CRICOS Provider 2J. ABN: 90 952 801 237.

This message is intended for the addressee named and may contain confidential 
information. If you are not the intended
recipient, please delete the message and notify the sender. Views expressed in 
this message are those of the individual
sender and are not necessarily the views of Macquarie University and its 
controlled entities.

-- next part --
An HTML attachment was scrubbed...
URL: 

-- next part --
A non-text attachment was scrubbed...
Name: image003.png
Type: image/png
Size: 35128 bytes
Desc: image003.png
URL: 

___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, edit 
account or options, view archives and so on.


[Sursound] format

2014-05-13 Thread David Pickett
Does anybody know why I am receiving (only from 
this list and not from any other listservers) 
postings without any line-breaks?  I find them impossible to read.


An example is below, although it may well have 
truncations that impose linebreaks by the time it 
is redistributed, which will make it even more 
difficult to understand the drift.


David

Sat, 10 May 2014 14:51:33 -0600, Charles Veasey 
charlesjvea...@gmail.com wrote :  There are 
some dead links of my recordings, how do I fix 
them?   Charles Hi Charles. Please send me the 
broken links... I already created replacement 
torrent files, but since the Plone CMS have its 
own virtual file system, I must fix the torrents 
manually (until I find a way to fix all 
automatically, hopefully when I'll migrate the 
web site). Thanks for your help. -- Marc  On 
Sat, May 10, 2014 at 9:33 AM, Marc Lavallée 
m...@hacklava.net  wrote:  Hi 
Jim. I'm the maintainer for 
Ambisonia. Please contact me in person to 
fix the problems with your old   submissions. 
The problem with the link you sent is caused by 
an   obsolete torrent file, created on 
Ambisonicbootlegs (before   Ambisonia). I fixed 
most of them, but a few are still wrong. 
About Ambisonia: A few years ago I helped 
to put Ambisonia back online, and part of   its 
system was migrated, but not all of it. The 
status of Ambisonia   is a working archive, 
and it's still possible to submit new   
content, but I must fix things manually from time 
to time. I   planned to migrate the system, and 
i evaluated a few options. So   far the best 
one is still to first upgrade the web site to 
the   latest version of Plone (the content 
management system used to   create Ambisonia), 
something I was able to do only a few months 
ago   (Plone migrations are difficult). Then I 
would like to upgrade the   submission and 
download system, fix security problems and 
revive   the wiki. To all Ambisonia 
users: please don't despair; the U. of York 
is   hosting the server, and I want to upgrade 
Ambisonia in order to   better manage it, at 
York or elsewhere. New web techniques are 
much   more flexible than 8 years ago. People 
interested to help or   comment can contact me 
in person; the sursound list is not the best   
place to discuss this topic. Thanks for 
your comprehension.   --   Marc Le 
Fri, 09 May 2014 15:54:36 -0500 (CDT),   Jim 
Mastracco acoustic...@verizon.net a écrit 
:  An HTML attachment was 
scrubbed...URL:   
https://mail.music.vt.edu/mailman/private/sursound/attachments/20140509/2ece3684/attachment.html  
  
___ 
Sursound mailinglist 
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound  
   
___   
 Sursound mailing list   
Sursound@music.vt.edu   
https://mail.music.vt.edu/mailman/listinfo/sursound  
   -- next part --  
An HTML attachment was scrubbed...  URL:  
https://mail.music.vt.edu/mailman/private/sursound/attachments/20140510/8d5779d0/attachment.html  
 
___ 
Sursound mailing list  Sursound@music.vt.edu  
https://mail.music.vt.edu/mailman/listinfo/sursound 
___ 
Sursound mailing list Sursound@music.vt.edu 
https://mail.music.vt.edu/mailman/listinfo/sursound  


___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound


Re: [Sursound] format

2014-05-13 Thread Michael Chapman
 Does anybody know why I am receiving (only from
 this list and not from any other listservers)
 postings without any line-breaks?  I find them impossible to read.

Line breaks is different in each of Mac / Linux / the other one.
Just a guess   .  .  .

Michael

___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound


Re: [Sursound] format

2014-05-13 Thread David Pickett
I am on Window$ 7.  Using Eudora for email.  The problem is not in 
evidence with every posting, but it has been much worse recently.


David

At 11:39 13-05-14, Michael Chapman wrote:
 Does anybody know why I am receiving (only from
 this list and not from any other listservers)
 postings without any line-breaks?  I find them impossible to read.

Line breaks is different in each of Mac / Linux / the other one.
Just a guess   .  .  .

Michael

___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound

___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound


Re: [Sursound] format

2014-05-13 Thread Michael Chapman
 I am on Window$ 7.  Using Eudora for email.  The problem is not in
 evidence with every posting, but it has been much worse recently.

 David

 At 11:39 13-05-14, Michael Chapman wrote:
   Does anybody know why I am receiving (only from
   this list and not from any other listservers)
   postings without any line-breaks?  I find them impossible to read.
  
  Line breaks is different in each of Mac / Linux / the other one.
  Just a guess   .  .  .
  

http://en.wikipedia.org/wiki/Line_breaking_character#Representations may
help ... or may besides being a wee bit technical also be a pigmented
herring ... (!).

I have noticed an increasing problem, too, but not with Sursound ...

Must be someone more technical than I, out there ... 

Michael

PS, Have sent this direct and via the list ... to see if the two versions
vary.
Sent from our server (Linux), but the mail software may do 'clever'
compensations to try and be âll things to all men' 


___
Sursound mailing list
Sursound@music.vt.edu
https://mail.music.vt.edu/mailman/listinfo/sursound