Search found 1730 matches

by Robert J. H.
Sat Sep 20, 2014 12:47 am
Forum: Windows
Topic: Strange/Advanced batch processing help [2.0.5 .exe]
Replies: 15
Views: 1485

Re: Strange/Advanced batch processing help [2.0.5 .exe]

Here's the code that prints the important data from the header of your bitmap file: (setf bmp-header '( ("nbfType " 0 1) ("" 0 1) ("nbfSize " 1 -4) ("nbfReserved " 1 -4) ("nbfOffBits " 1 -4) ("nbiSize " 1 -4) ("nbiWidth " 1 -4) (&...
by Robert J. H.
Fri Sep 19, 2014 10:00 pm
Forum: Windows
Topic: Strange/Advanced batch processing help [2.0.5 .exe]
Replies: 15
Views: 1485

Re: Strange/Advanced batch processing help [2.0.5 .exe]

Yes, the image is a .bmp, here is a sample. All the other files share header size, total file size and dimensions with this picture. The white borders are added to give a greater distance between the header and the data I'm interested in. The A-Law should not be a necessity if U-Law can be used (as...
by Robert J. H.
Fri Sep 19, 2014 5:26 pm
Forum: Feature Request Archive
Topic: Any way to organize my effects list? Part 2
Replies: 11
Views: 2186

Re: Any way to organize my effects list? Part 2

Isn't that how access keys work in the other menus? They will only cycle through alternatives if there are other items in the menu with the same access key (which is a bug if that happens). Otherwise the menu item opens when its access key is pressed, and initial letters aren't considered. Gale Sur...
by Robert J. H.
Fri Sep 19, 2014 4:54 am
Forum: Feature Request Archive
Topic: Any way to organize my effects list? Part 2
Replies: 11
Views: 2186

Re: Any way to organize my effects list? Part 2

It's really annoying to have to click the little up/down arrows to slowly pore through the list. when the effects list is shown, pressing a letter key will jump to that part of the alphabetical effects list, e.g. press "V" on the keyboard to jump down to "vocoder" , rather than ...
by Robert J. H.
Thu Sep 18, 2014 8:22 pm
Forum: Feature Request Archive
Topic: Any way to organize my effects list? Part 2
Replies: 11
Views: 2186

Re: Any way to organize my effects list? Part 2

It's really annoying to have to click the little up/down arrows to slowly pore through the list. when the effects list is shown, pressing a letter key will jump to that part of the alphabetical effects list, e.g. press "V" on the keyboard to jump down to "vocoder" , rather than ...
by Robert J. H.
Thu Sep 18, 2014 8:06 pm
Forum: Windows
Topic: Strange/Advanced batch processing help [2.0.5 .exe]
Replies: 15
Views: 1485

Re: Strange/Advanced batch processing help [2.0.5 .exe]

Ok, you're actually overwriting the data chunk with the processed audio from Audacity. This means that the export isn't headerless but has the original one instead. Again, the image is a commonplace bitmap file (*.bmp)? Could you attach a sample file? The offset seems in general to be 54 Bytes for t...
by Robert J. H.
Wed Sep 17, 2014 8:52 pm
Forum: Windows
Topic: Strange/Advanced batch processing help [2.0.5 .exe]
Replies: 15
Views: 1485

Re: Strange/Advanced batch processing help [2.0.5 .exe]

In pseudo code the reading and writing would be something like this: (psetq indir "c:\myclips\" outdir "c:\myclipscopied\") (dolist (file (listdir indir)) (s-save (s-read (strcat indir file) <import-options>); this statement is the read sound ny:all (length in samples) (strcat o...
by Robert J. H.
Wed Sep 17, 2014 7:05 pm
Forum: Windows
Topic: Strange/Advanced batch processing help [2.0.5 .exe]
Replies: 15
Views: 1485

Re: Strange/Advanced batch processing help [2.0.5 .exe]

You can of course use the nyquist prompt for the import and export things My understanding though is the intention is to import images (presumably like PNG or JPG). Can Nyquist do that? Gale It can read anything that has bytes in it. However, it does not perform any decoding (e.g. jpg) Thus, you co...
by Robert J. H.
Wed Sep 17, 2014 5:32 pm
Forum: Windows
Topic: Strange/Advanced batch processing help [2.0.5 .exe]
Replies: 15
Views: 1485

Re: Strange/Advanced batch processing help [2.0.5 .exe]

You can of course use the nyquist prompt for the import and export things (and actually everything inbetween...) The main functions are 's-read' and 's-save' (or 's-overwrite'). Here's the exemplary 's-read' description: LISP-syntax for this Function (316/358): (S-READ FILENAME &KEY (TIME-OFFSET...
by Robert J. H.
Wed Sep 17, 2014 5:08 am
Forum: Windows
Topic: [Solved] VST delay handling broken/nonexisting in Audacity!
Replies: 15
Views: 1675

Re: [Solved] VST delay handling broken/nonexisting in Audaci

Okay, I was able to reproduce the problem. And not only in Audacity! It's another VST oddity. The processRepalce() function provides the next N input samples and, at the same time, consumes exactly N output samples - where N is dictated by the host application. So I must return N output samples, ev...