Search found 59476 matches
- Thu Aug 29, 2019 3:21 pm
- Forum: Macros and Scripting
- Topic: Change tempo on macros bugged? [SOLVED]
- Replies: 18
- Views: 1316
Re: Change tempo on macros bugged?
Also select all and Change tempo not works well due is based in % of lenght audio We can work around that. I'm just trying to get a clear picture of what result you are wanting to achieve so that I can provide a good solution. Because the wav files are stereo. So i set them to mono that makes now i...
- Thu Aug 29, 2019 2:30 pm
- Forum: Macros and Scripting
- Topic: Change tempo on macros bugged? [SOLVED]
- Replies: 18
- Views: 1316
Re: Change tempo on macros bugged?
Select All Change tempo: To Lenght (0.4) (Just same lenght for both audios) Mix Stereo Down to Mono (So i have two mono audios) Stereo Track (New Stero Track)) Mix and Render (To get a stereo track) Select All Mix and Render Apply Pseudo-Stereo Effect Export Wav What is the purpose of step 3 (Mix S...
Re: Recording
Check page 6 of the ZEDi-10 user manual - specifically, section 3.1.3 https://www.allen-heath.com/media/AP101 ... ide_A5.pdf
- Thu Aug 29, 2019 12:56 pm
- Forum: Macros and Scripting
- Topic: Change tempo on macros bugged? [SOLVED]
- Replies: 18
- Views: 1316
Re: Change tempo on macros bugged?
Apply macro will be just one click. but if you factor in the amount of time and effort to develop a Nyquist Macro (or some other "automation" method) to do the task... Now imagine do this for 500 audios Do you have 500 tracks to process in this way? Also wonder if there is a way to use th...
- Thu Aug 29, 2019 10:54 am
- Forum: Macros and Scripting
- Topic: [SOLVED] Wave Color Keyboard Shortcut
- Replies: 10
- Views: 1190
Re: Wave Color Keyboard Shortcut
You can select one of the 4 preset colours:
- Thu Aug 29, 2019 10:51 am
- Forum: Nyquist
- Topic: Code to Select Audio
- Replies: 51
- Views: 4863
Re: Code to Select Audio
If you only require an approximation, and the stereo tracks have similar left and right channels, then it may be sufficient (and easier, and quicker) to only look at one channel of stereo tracks. Do you see how this works? ;version 4 (setf *float-format* "%.2f") ;2 decimal places (defun m...
- Thu Aug 29, 2019 10:48 am
- Forum: Nyquist
- Topic: Code to Select Audio
- Replies: 51
- Views: 4863
Re: Code to Select Audio
The correct way to get the RMS of a stereo track, is to calculate the "mean square" of each channel, then calculate the average of the two mean square signals, then take the square root. If you only require an approximation, and the stereo tracks have similar left and right channels, then ...
- Thu Aug 29, 2019 10:42 am
- Forum: Nyquist
- Topic: Code to Select Audio
- Replies: 51
- Views: 4863
Re: Code to Select Audio
I've reformatted your code so that it is easier to read and debug: ;version 4 (setq FMT-db "%#.1f") (setq FMT-val "%#.6f") (defun fmt-pretty (dformat &rest args) (prog2 (setf *float-format* dformat) (apply #'format args) (setf *float-format* "%g"))) (if (arrayp *tra...
- Thu Aug 29, 2019 10:30 am
- Forum: Macros and Scripting
- Topic: Change tempo on macros bugged? [SOLVED]
- Replies: 18
- Views: 1316
Re: Change tempo on macros bugged?
This is what i'm trying to do: > Load 2 different stereo sounds with different lenght > Set same lenght for both tracks > Set mono tracks for each one (Using mix stereo down to mono) // At this point i have two mono tracks with same lenght > Make stereo track > Each track, sounds on a different pan...
- Thu Aug 29, 2019 9:55 am
- Forum: Macros and Scripting
- Topic: Change tempo on macros bugged? [SOLVED]
- Replies: 18
- Views: 1316