Tagged Questions
The synthesizer tag has no wiki summary.
16
votes
11answers
4k views
Does anyone know of any C/C++/C# code libraries that do audio synthesizer emulation?
I'm trying to write a software synthesizer that recreates the sounds made by classic synthesizers like the Moog and the DX7. Does anyone know of any code resources for something like this? Thanks.
10
votes
3answers
328 views
@property/@synthesize question
I'm going through all of my documentation regarding memory management and I'm a bit confused about something.
When you use @property, it creates getters/setters for the object:
.h:
@property ...
6
votes
4answers
2k views
Objective-C synthesize property name overriding
I am trying to understand the purpose of the synthesize directive with property name overriding. Say that I have an interface defined as follow:
@interface Dummy ... {
UILabel *_dummyLabel;
}
...
5
votes
5answers
1k views
Bandlimited waveform generation
I am writing a software synthesizer and need to generate bandlimited, alias free waveforms in real time at 44.1 kHz samplerate. Sawtooth waveform would do for now, since I can generate a pulse wave by ...
4
votes
2answers
190 views
Is it safe to use bools to synchronize multiple threads?
I'm writing an audio application that has multiple threads producing sound and one thread that mixes the sounds and sends them to the sound card. I've tried several ways of synchronizing threads the ...
4
votes
4answers
949 views
Beginner Digital Synth
I'm looking into writing a audio syntesizer in Java, and was wondering if anybody has any advice or good resources for writing such a program. I'm looking for info on generating raw sound waves, how ...
3
votes
2answers
301 views
Audio programming, generating an harmony
I'm trying to develop an application similiar to the tonematrix in C#. I've tried first with .net and NAudio library, now I'm trying with XNA, but it seems like that all I can get is a cacophony.
...
3
votes
2answers
275 views
Objective C - Custom @synthesize?
Is it possible to somehow create a custom @synthesize to generate custome getter, setters ??
For example:
@interface
@property (nonatomic, retain) MyObject *object;
@end
@implementation
...
3
votes
3answers
286 views
I want to do a project on sound programming, but I don't know where to start
At my high school we can take a class where we basically learn about a subject on our own for a semester. I was thinking that I want to learn about "sound programming," but I realized that I have no ...
3
votes
2answers
244 views
What is common case for @dynamic usage?
There is previous post about difference of @synthesize and @dynamic.
I wanna to know more about dynamic from the perspective of how to use @dynamic usually.
Usually we use @dynamic together with ...
3
votes
4answers
1k views
Simple embeddable MidiSynth for iOS?
I have a guitar diagram app for Android that I am porting to iOS. Android has a embedded midi synthesizer (sonivox), so I can generate midi files and let Android handle the playback.
Is there a way ...
3
votes
1answer
244 views
How would I go about programatically interacting with VST(i) Plugins to synthesize audio?
Take, for example, the VSTi Triforce, by Tweakbench. When loaded up in any VST host on the market, it allows the host to send a (presumably MIDI) signal to the VSTi. The VSTi will then process that ...
3
votes
3answers
844 views
Making a real-time audio application with software synthesizers
I'm looking into making some software that makes the keyboard function like a piano (e.g., the user presses the 'W' key and the speakers play a D note). I'll probably be using OpenAL. I understand the ...
3
votes
4answers
3k views
Sound Synthesis Framework in C/C++/Objective-C?
I've searched the net but didn't found anything interesting. Maybe I'm doing something wrong.
I'm looking for sound synthesis API written on C, C++ or even Objective-C, which can synthesize ...
3
votes
3answers
6k views
MIDI player/synthesizer library for the iPhone
Does anyone know if there is a free/cheap MIDI player/synthesizer library that I can incorporate into my iPhone application?
As I understand it the iPhone doesn't have native support for MIDI ...
1
vote
2answers
149 views
How to use the vst sdk on the .net framework
I like making music using mostly my computer and especially love using synthesisers. There is a wide range of synthesiser plugins available online which are quite awesome. I have downloaded the VST ...
1
vote
1answer
235 views
What UIView setter does @synthesize create
How to make custom UIView setter. For example:
1) We create property:
@property (retain) IBOutlet UILabel *myLabel
2) we make setter (the same as @synthesize would create):
- ...
1
vote
1answer
4k views
Property and synthesize in iOS [closed]
Possible Duplicate:
@property @synthesize
When must I use property and synthesize for an element as NSArray, NSSTring....or IBOutelt as UIButton or UITextFiled?
1
vote
2answers
121 views
Setting Properties Rundown in Objective-C
One of the things I've been struggling with, whilst breaking into Objective-C programming, is understanding how to manipulate properties. I'm perhaps out of my comfort zone using a proper coding ...
1
vote
5answers
424 views
Drawing A Piano
I have started working on a software synthesizer (or keyboard). I have decided to use Java because of the available Jfugue API. I am trying to figure out how to go about creating the actual keys ...
1
vote
4answers
3k views
How to make PHP output a sound (beep)?
What's the PHP verson of this python code?
import winsound
winsound.Beep(537, 2000)
1
vote
5answers
438 views
@synthesize is not working and basic operations are not working in Objective-C
I am unsure why this code will not work. When I click a button (action: buttonclick) it should change the two text boxes' (MyTextLabel and MyTextLabel2) text increment value "r" by one. Here is the ...
1
vote
3answers
570 views
Qt4 modular synth editing widget
I'm about to start writing a GUI for a modular synthesis app (like Alsa Modular Synth, Pure Data, Ingen) that will be used for patch (sound) editing.
What I need to do is something like this:
...
1
vote
1answer
463 views
best software synthesizer for piano [closed]
Could someone recommend a good and inexpensive software synthesizer which generates really good piano sound (sample-based); support for other instruments is not required. OS: Windows or MacOS. Java ...
1
vote
2answers
515 views
Access sound card or OS synthesizer device in Java
When I try to list Synthesizer devices in Java (1.6.0), I get only one device, Java Sound Synthesizer. I want to use the Synthesizer in the sound card or use any other installed synthesizer, eg. the ...
0
votes
4answers
46 views
language and framework of choice for iPad development for music sequencer
I need to create a music sequencer for the iPad but have no experience yet on this platform. I have several questions about this subject, hopefully I can find some answers here.
OpenFrameworks seems ...
0
votes
2answers
58 views
Class similar to javax.microedition.media.control.MIDIControl in Android API?
Does the Android API have a class similar to javax.microedition.media.control.MIDIControl? I want to generate midi sounds as drums, notes and chords.
0
votes
0answers
111 views
What are some good Open Source C++ Audio Libraries? [closed]
I'm looking into open source C++ Audio libraries for some of the following possible ventures:
Midi applications (e.g. rock band drum and guitar interface)
VST's
Sound Engine for video game
...
0
votes
0answers
58 views
using midiOutOpen() in spite of MMSYSERR_ALLOCATED
I'm writing a DLL that is being loaded by a 3rd party host.
I want to be able to use Microsoft GS/SW Synth, the problem is that sometimes the host
already opened that device so midiOutOpen() returns ...
0
votes
1answer
420 views
Are there free records of separate piano notes in .wav files for instance?
I'm trying to find some piano sound bank -for my childish experiments with sound - the most desired form is of course a number of .wav files, each one corresponding to a piano key - being a record of ...
0
votes
0answers
35 views
Properties error in iphone?
Well I followed someone's advice and made an @property/@synthesize for my card effect in my code. Anyone now why it wont run(of course it compiles)? Heres the code:
#import ...
0
votes
1answer
131 views
Question about @property and @synthesize
Usually we have codes like these
@interface TestAppDelegate : NSObject <UIApplicationDelegate> {
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@synthesize window;
And also ...
0
votes
2answers
213 views
python synthesize midi with fluidsynth
I can't import fluidsynth. [Maybe there's an better module?]
I'm trying to synthesize midi from python or pygame. I can send midi events from pygame.
I'm using mingus, and it seemed pyfluidsynth ...
0
votes
0answers
175 views
How to make flash synth multiple sounds at the same time
I would like to know how I can do THIS:
http://wonderfl.net/c/jcyp
For now, all I could reach in coding is this:
http://wonderfl.net/c/jcyp
When I try to synth multiple strings at the same time it ...
0
votes
1answer
105 views
iPhone - Synthesize and ivar use from outside the class?
I've read many things about the @synthesize call. About its use, ...
So I have made a test, and its result gives me a strange feeling.
Let me explain...
Lets write in an object .h
@interface ...
0
votes
0answers
202 views
software synthesizer [closed]
what is the best software synthesizer? I need a C++ and/or Python library, possibly free.
Thanks
-1
votes
2answers
242 views
@property, @synthesize and releasing objects in Objective-C
I developing iPad games. I encounter this thing. This is my sample code:
Method 1:
Foo.h
@interface Foo : UIView{
UILabel *title;
.... // Other objects like UISlider, UIbuttons, etc.
}
// ...