mandolin sound [SOLVED]
Forum rules
This forum is for Audacity on Windows.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
-
suttlemyre
- Posts: 206
- Joined: Sun Jun 19, 2011 7:51 pm
- Operating System: Windows 10
mandolin sound [SOLVED]
what would you suggest as a close mandolin sound( taken from a guitar track) I have sent a sample piece.
- Attachments
-
- sample.mp3
- (395.97 KiB) Downloaded 86 times
-
kozikowski
- Forum Staff
- Posts: 68902
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: mandolin sound
I'm not sure I get this. It sounds like a big-body guitar to me. Is this part of another posting?
Koz
Koz
Re: mandolin sound
You wanted a guitar+mandolin combo.suttlemyre wrote:what would you suggest as a close mandolin sound( taken from a guitar track) I have sent a sample piece. Attachments sample.mp3 (395.97 KiB)
Duplicate the guitar track , (press Ctrl + D).
Apply "Sliding time scale/ pitch shift" , (in "Effects" menu), with settings shown to the duplicated guitar track.
Voila you have guitar and mandolin (ish) ... Applying some randomization to the amplitude and timing would make it sound more like two humans playing,
there are two plugins which randomize ...
http://wiki.audacityteam.org/wiki/Nyqui ... Modulation
http://wiki.audacityteam.org/wiki/Nyqui ... Modulation *
[ * Random_Pitch_Modulation applied to a stereo track makes the instrument wander about in the stereo field ].
Last edited by Trebor on Sun Oct 26, 2014 7:30 am, edited 2 times in total.
-
Robert J. H.
- Posts: 3633
- Joined: Thu May 31, 2012 8:33 am
- Operating System: Windows 10
Re: mandolin sound
He only wants to know what kind of mandolin sound one could super-impose on that riff.kozikowski wrote:I'm not sure I get this. It sounds like a big-body guitar to me. Is this part of another posting?
Koz
I would probably just double the melody on the treble strings and play with the fingers.
However, Nyquist (the built-in sound language) provides a mandolin-model as well.
The following code for the Nyquist prompt (effect menu, with a duplicate of the guitar selected) produces a straight randomized melody around D major (listen to the attached file)
Code: Select all
(setf indiv-dur (/ (1- (get-duration 1)) 32.0))
(setf notes '(a3 d3 a4 d4 fs4 g4 a4 d5 fs5 g5 a5 d6 e6 fs6))
(extract 0 1
(scale-db -15
(simrep (i 32)
(prog2 (setf current
(eval (nth (truncate (real-random 0 (length notes))) notes)))
(scale (real-random 0.1 1.0)(at-abs (* i indiv-dur) (mandolin current 1.0 3)))))))-
suttlemyre
- Posts: 206
- Joined: Sun Jun 19, 2011 7:51 pm
- Operating System: Windows 10
Re: mandolin sound
that is what I was looking for thanks