mandolin sound [SOLVED]

Help for Audacity on Windows.
Forum rules
ImageThis 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.
Locked
suttlemyre
Posts: 206
Joined: Sun Jun 19, 2011 7:51 pm
Operating System: Windows 10

mandolin sound [SOLVED]

Post by suttlemyre » Sat Oct 25, 2014 7:46 pm

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 87 times

kozikowski
Forum Staff
Posts: 69374
Joined: Thu Aug 02, 2007 5:57 pm
Operating System: macOS 10.13 High Sierra

Re: mandolin sound

Post by kozikowski » Sun Oct 26, 2014 1:49 am

I'm not sure I get this. It sounds like a big-body guitar to me. Is this part of another posting?
Koz

Trebor
Posts: 9954
Joined: Sat Dec 27, 2008 5:22 pm
Operating System: Windows 8 or 8.1

Re: mandolin sound

Post by Trebor » Sun Oct 26, 2014 7:13 am

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)
You wanted a guitar+mandolin combo.

Duplicate the guitar track , (press Ctrl + D).
Apply "Sliding time scale/ pitch shift" , (in "Effects" menu), with settings shown to the duplicated guitar track.
window-Time Scale-000.png
window-Time Scale-000.png (8.43 KiB) Viewed 656 times
Voila you have guitar and mandolin (ish) ...
before-after mandolinization.mp3
guitar (before) , then guitar+mandolin
(646.53 KiB) Downloaded 82 times
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

Post by Robert J. H. » Sun Oct 26, 2014 7:17 am

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
He only wants to know what kind of mandolin sound one could super-impose on that riff.
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)))))))
The dual-mono track is furthermore treated with the random-pitch modulation plug-in from the Wiki with a depth of 0.01 to give more spaceness and less artificial character.
mandolin_sample.mp3
(217.52 KiB) Downloaded 66 times
It is clear that writing a whole song is labour-intensive in that fashion.

suttlemyre
Posts: 206
Joined: Sun Jun 19, 2011 7:51 pm
Operating System: Windows 10

Re: mandolin sound

Post by suttlemyre » Sun Oct 26, 2014 3:40 pm

that is what I was looking for thanks

Locked