Old 01-03-2007, 01:38 PM   #1
shane
Mortal
 
shane's Avatar
 
Join Date: Jan 2006
Location: 61.215 -149.8925
Posts: 325
Default OT: Freeware triggered sample player for live use?

I need some free software to trigger short audio samples live.

I'd prefer them to each be mapped to a key. I'd also prefer it to be a standalone application, but I could go with a VSTi/MIDI solution too.

Anyone know of anything like this?
__________________
Autorender - batch render regions to tagged mp3s + more [View Thread] Download
shane is offline   Reply With Quote
Old 01-03-2007, 02:04 PM   #2
Art Evans
Mortal
 
Join Date: Feb 2006
Posts: 6,586
Default

http://www.baxeldata.com/freeware.html maybe. But there's another one I've had on my system that assigns audio files to keys and can I find it?? Not yet...
Art Evans is offline   Reply With Quote
Old 01-03-2007, 02:07 PM   #3
Art Evans
Mortal
 
Join Date: Feb 2006
Posts: 6,586
Default

Got it - http://www.soundplant.org/
Art Evans is offline   Reply With Quote
Old 01-03-2007, 02:13 PM   #4
LOSER
Mortal
 
Join Date: May 2006
Posts: 2,373
Default

Why not just use REAPER's built-in Virtual Piano that plays/triggers sounds from ReaSamplomatic? -- Or should the sounds get triggered by an audio signal?

Edit: Have overseen the "prefer it to be a standalone application", sorry
LOSER is offline   Reply With Quote
Old 01-03-2007, 03:01 PM   #5
shane
Mortal
 
shane's Avatar
 
Join Date: Jan 2006
Location: 61.215 -149.8925
Posts: 325
Default

Yeah, using Reaper's sampler and MIDI just seemed a little too complex for this application. I just want easy one key access to sounds.

Soundplant looks cool but I'd prefer to keep the files as mp3s and this is probably the only time I'll use it.

I put together an AutoHotKey script that meets my needs. You can run it in a folder with mp3 files, and the first characters of the filenames become the trigger key. Should make it easy to switch things around.

Thanks for the input, guys.

;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function:
; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
;

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.

Loop *.mp3
{
trigger := SubStr(A_LoopFileName,1,1)
Sample%trigger% = %A_LoopFileName%
}

Loop
{
Input,triggerKey,L1,{Esc}{Space}

IfInString, ErrorLevel, EndKey:Escape
{
SoundPlay,Nothing.mp3
ExitApp
}
IfInString, ErrorLevel, EndKey:Space
{
SoundPlay,Nothing.mp3
}
Else If RegExMatch(triggerKey, "^[a-zA-Z0-9]*$")
{
Sample := Sample%triggerKey%
If %Sample%
{
SoundPlay,%Sample%
}
}
}
ExitApp
__________________
Autorender - batch render regions to tagged mp3s + more [View Thread] Download
shane is offline   Reply With Quote
Old 01-03-2007, 03:44 PM   #6
Art Evans
Mortal
 
Join Date: Feb 2006
Posts: 6,586
Default

Neat, Shane! I suspect one could add some bells and whisles to that and come up with a globally useful app.
Art Evans is offline   Reply With Quote
Old 01-03-2007, 08:48 PM   #7
chip mcdonald
Mortal
 
chip mcdonald's Avatar
 
Join Date: May 2006
Posts: 1,956
Default

I'd just like to add I've used Soundplant, and I wish every program worked as obviously straightforward as it does.

I can't imagine an easier way to trigger samples from a computer keyboard, live. A friend used it in a project I did covering Pink Floyd's _Dark Side of the Moon_ to trigger the miscellaneous foley sounds, and it worked flawlessly:

http://video.google.com/videoplay?do...=chip+mcdonald
__________________
]]]]]]]]]] www.chipmcdonald.com [[[[[[[[[[[
note: for future references, anything and everything I say may be considered OPTIONAL. Thanks (the management)
chip mcdonald is offline   Reply With Quote
Old 01-03-2007, 11:13 PM   #8
doclike
Mortal
 
Join Date: Jul 2006
Location: Germany
Posts: 259
Default

Hm it seems to be way too slow.
wasnt able to trigger a Double Bass.

doc
doclike is offline   Reply With Quote
Old 01-04-2007, 02:00 AM   #9
zendar
Mortal
 
Join Date: Jun 2006
Posts: 185
Default

Quote:
Originally Posted by doclike View Post
Hm it seems to be way too slow.
wasnt able to trigger a Double Bass.

doc
yep i can see it working for long slow ambient pieces, but not percussive stuff - needs to use ASIO imo
zendar is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 10:45 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.