Recent Posts

Pages: 1 [2] 3 4 ... 10
11
Mac installation / Batch files?
« Last post by sleestack on December 30, 2023, 08:04:28 PM »
Is it possible to get some batch files made for the processes for Osx?  Maybe they  could run in terminal perhaps?

I’m trying to use cdp without the tediousness, otherwise what is the point of it if it isn’t fun.
Maybe some randomness added to the parameters so you can run the file and get a new thing each time?
Instead of an approach of fine tuning everything with exactness,  a more random approach, with less options but quicker results. Thanks
12
Mac installation / Re: CDPv8 and M1
« Last post by Seán on December 11, 2023, 01:54:35 AM »
Hi all,

Apologies for the delay pmj. You are correct that is exactly the bit of ssfunc.h throwing the error. You could just comment out or delete the if function;


##################

#define MSBFIRST        (1)
#define LSBFIRST        (1)

/* RWD extended set of symbols ! Now works for Mac universal Binary build */
/*#if defined(__I86__) || defined(_X86_) || defined(__x86_64) || defined(__i386__) || defined(__i486__) || defined(_IBMR2)/*
/*#undef MSBFIRST/*
/*#elif defined(M68000) || defined(__sgi) || defined (__POWERPC__)/*
/*#undef LSBFIRST/*
/*#else/*
/*#error  "Unknown byte order for this processor"/*
/*#endif/*

#if defined(MSBFIRST) && defined(LSBFIRST)
#error  "Internal: can't be both MSB and LSB"
#endif

##################

Basically from here in the code you should have defined LSBFIRST as the byte order. I dont have access to the same machine I was trying this on at the moment, but I am 90% sure that is what I did.

#define LSBFIRST        (1)

-on it s own would do it too

Richard –me and Nando were talking when we trying to figure this out and I guess it essentially is dead? But there definitely could be some Power PC users still out there still given the flexibility of CDP and the hard to reach places you might find users? Thanks Richard for the invitation to communicate directly on Git!

pmj the new releases should work out of the box for you on M2 also? With a regular installation.

All the best,
S
13
Mac installation / Re: soundloomE file damaged
« Last post by rwdobson on November 26, 2023, 11:06:43 PM »
This is the usual Gatekeeper response to a non-signed app downloaded from the bet. The solution is described in the README file: run the Terminal command:

xattr -rc /path/to/soundloomE.app

The best and recommended approach is to run xattr on the whole cdpr8 directory inside the Disk image. This will process everything, including soundloomE.app.
 
14
Mac installation / soundloomE file damaged
« Last post by Alejandro on November 26, 2023, 10:50:22 PM »
Hello!
I've just installed CDP on my Mac running OS Ventura 13.5, with a M1 Pro processor.
When I double click the soundloomE file, the system drops the message "soundloomE is damaged and can't be opened. You should ove ti to the Bin".
I did it and downloaded again the file but the error happens again.
I will thanks any idea or suggestion.
Cheers!
15
Mac installation / Re: CDP 7?
« Last post by simonk on November 26, 2023, 04:32:25 PM »
Hi,
I'm not sure why you might want V7 as all the old stuff is still there in V8 I believe.
However, do you want the original install for V7 or the V711 update?

Simon
16
Mac installation / CDP 7?
« Last post by Trog on November 26, 2023, 12:36:40 PM »
Hi,

I know that CDP 8 is all the rage at the moment but can someone point me to the latest Mac binaries for CDP 7?

Thanks.
17
General Board / FOF Strecht Breakpoint Pitch
« Last post by Marcelo Carneiro on October 31, 2023, 04:08:15 AM »
Hi. I don't know how to creat a breakpoint pitch for FOF Strecht program. Do I have to analyse/extract the audio file pitch from some tool and create a txt file from it? Which tool is that?
Thank you
18
Mac installation / Re: CDPv8 and M1
« Last post by rwdobson on October 30, 2023, 11:06:55 AM »
The messages here have all pointed to the correct place in the code, sffuncs.h. This issue in fact raises an interesting "strategic" question which I have been pondering: are big-endian platforms now effectively dead? if so, all that code can be eliminated (including a lot of dependent code in sfsys) and let it assume the host machine will always be little-endian. This would be an problem however if anyone hopes to build for a cherished PowerPC machine such as an old G5.

In the meantime, the solution needs to use a symbol that is also used in the relevant CMakeLists.txt file. On the Mac the simplest solution would be to add || defined(MAC) in the sffuncs.h line, as that is used in all the CMakeLists.txt files throughout CDP. If supporting big-endian platforms remains important, some new symbol can be defined such as __ARM64, to be used in both places.

Those building CDP8 from source from Github may like to consider posting questions such as this (which are not about "installation" issues as such) directly via the Github message system. I will receive these immediately through email, and can respond accordingly. This  doesn't require anyone to be "registered" as a developer. I have already answered quite a few queries this way.
19
Announce / CDP Release 8
« Last post by rwdobson on October 27, 2023, 03:40:20 PM »
We are proud to announce CDP's 8th software release, with over 80 new processes written by composer Trevor Wishart. 

Release 8 adds to the CDP's toolset especially in the manipulation of formants, wavecycle distortion, segmentation and repetition, plus new multichannel processes and synthesis functions.

The CDP system is a comprehensive sound design toolkit of over 450 processes. Developed over 35 years, it covers almost every aspect of sound transformation, including many that may be unfamiliar or are presented from an original or compositional viewpoint.

CDP is not a real-time system or a suite of plugins, but transforms sound-files (or their spectral equivalents) to create new sonic material.

CDP is released under a Creative Commons/LGPL licence as free software for MacOS, Windows and Linux, with sources available on GitHub.

Further details,downloads,workshops,tutorials and more can be found at the CDP website:

 https://composersdesktop.com/

Richard Dobson
20
Mac installation / Re: CDPv8 and M1
« Last post by pmj on October 24, 2023, 01:36:17 PM »
Hi Seán

I've had a look at 'ssfunc.h' and there's this section:

#define MSBFIRST        (1)
#define LSBFIRST        (1)
/* RWD extended set of symbols ! Now works for Mac universal Binary build */
#if defined(__I86__) || defined(_X86_) || defined(__x86_64) || defined(__i386__) || defined(__i486__) || defined(_IBMR2)
#undef MSBFIRST
#elif defined(M68000) || defined(__sgi) || defined (__POWERPC__)
#undef LSBFIRST
#else
#error  "Unknown byte order for this processor"
#endif

#if defined(MSBFIRST) && defined(LSBFIRST)
#error  "Internal: can't be both MSB and LSB"
#endif

What would I need to change that to (if that's the correct bit...?)

There is a homebrew for portaudio here:

https://formulae.brew.sh/formula/portaudio
Pages: 1 [2] 3 4 ... 10