Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
787 views

How to reproduce C64-like sounds?

I did some of my own research and found out that SID-chips had only few hardware supported synthesizing features. Including three audio oscillators with four possible waveforms (sawtooth, triangle, ...
6
votes
4answers
72 views

Continuous waveform audio synthesizer

I'm starting to write a soft synthesizer with a peculiar characteristic: The oscillators will have a "continuous waveform" knob that will allow users to select sine, square and saw tooth waves in a ...
5
votes
3answers
89 views

Does the synthesizer care about one or two processes?

There are two popular ways of coding a state machine in VHDL: one process or two processes. There are rumors (and it is taught in some colleges) that two processes might result in better hardware. ...
4
votes
2answers
94 views

Frequency Modulation Synthesis Algorithm

Based on what I read, I've made an algorithm for FM sound synthesis. I'm not sure if I did it right. When creating a software synth instrument a function is used to generate an oscillator and a ...
4
votes
2answers
366 views

How to override a superclass' property with more specific types?

The Scenario I have a situation where a base class called AbstractRequest has a delegate property of type id <AbstractRequestDelegate> declared in the header file: @property (nonatomic, assign) ...
4
votes
1answer
104 views

Array indexes to wide for array

I have the following problem when accessing arrays in VHDL: Say I have an array which is not of size 2^n, for example of size 6. Then, if I want to access this array using an index of width 3 bits ...
4
votes
3answers
327 views

I want to learn audio programming

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 ...
4
votes
5answers
316 views

Sound chords in C#?

I've tried using Console.Beep() at low millisecond rates two play two frequencies 'at once', but the pause between beeps ruins it. I have tried researching it but I've found nothing, and don't know ...
3
votes
2answers
132 views

Sound synthesis with C#

Is there some possibility to generate sounds in C#? I mean not just beep or open and play wave-file. I mean build the signal using different kinds of waves (sin, saw, etc.) and their options ...
3
votes
3answers
88 views

combinatorial hardware multiplication in verilog

Suppose I have a multiplier code like this, module multiply( output [63:0] result, input [31:0] a, input [31:0] b ); assign result = a * b; ...
3
votes
4answers
764 views

Silverlight and audio synthesis

is it at all possible to generate sound on-the-fly in a Silverlight app and play it? I.e. if I want to play a sine-wave, can I generate a buffer and feed it to some media API? Cheers Nik
2
votes
1answer
35 views

How to interface Java midi to other applications

Hi I am programming Java on Windows and am very new to working with MIDI interfaces. I have managed to get java to play midi sounds through Synthesizer objects, natively through the computers speaker ...
2
votes
5answers
292 views

How to synthesize sounds of instruments on Android (Piano, Drums, Guitar, etc…)

Can somebody give me some direction on how to synthesize sounds of instruments (Piano, Drums, Guitar, etc...) I am not even sure what to look for. Thanks
2
votes
1answer
284 views

Simultaneously generate multiple sine waves into sample buffer for audio unit (iOS)

Given an array (of changing length) of frequencies and amplitudes, can I generate a single audio buffer on a sample by sample basis that includes all the tones in the array? If not, what is the best ...
2
votes
2answers
34 views

Resources for logic synthesis and verification

I am currently working on logic synthesis- given a high level description of a hardware I wish to convert it into a circuit of gates,flip flops etc. I am not very much familiar with the theory. I ...
2
votes
4answers
55 views

What is the difference in defining a variable in .h file's interface() method alone without synthesizing it?

I define a variable in .h file's interface method like this... @interface ......{ int a; } Then i use it in .m file, it works fine.... Also i modified the code as @interface ......{ int a; } ...
2
votes
3answers
244 views

Basic sound generation/synthesis library, any language

I'm writing a small web app for a music psychology project that will play a series of sound samples for a subject and ask them to rate each one. I need to generate a series of tones (probably all sine ...
2
votes
1answer
632 views

Is $readmem synthesizable in Verilog?

I am trying to implement a microcontroller on an FPGA, and I need to give it a ROM for its program. If I use $readmemb, will that be correctly synthesized to a ROM? If not, what is the standard way to ...
2
votes
2answers
134 views

Recommended introductory books on sound synthesis

What would be the recommended book to get an introduction to the field of sound synthesis from a programmer's point of view? I'm not looking into doing anything advanced anytime soon, so I'll boil it ...
2
votes
1answer
72 views

Synthesizing Singing

So this is from the late 90s ... http://www.cs.princeton.edu/~prc/SingingSynth.html Why hasn't this taken off? (We can synthesize photorealistic like images, but the synthesis of singing ... still ...
2
votes
3answers
2k views

How to NOT use while() loops in verilog (for synthesis)?

I've gotten in the habit of developing a lot testbenches and use for() and while() loops for testing purpose. Thats fine. The problem is that I've taken this habit over to coding for circuits which ...
2
votes
3answers
239 views

How do I generate a fixed-waveform table in C?

What is the most efficient way to generate a signed float array of arbitrary length containing the amplitude (represented from 1 to -1) of a sine wave in C?
2
votes
3answers
1k views

How to implement a band-pass filter in c# / Silverlight

How would I go about implementing a band-pass filter in c#? I'm using a custom MediaStreamSource in Silverlight and am using additive synthesis to produce sound. My audio stream is a continuous ...
2
votes
3answers
256 views

Is it possible to play synthesized sound in the browser using JavaScript?

I just came across a Nintendo emulator written entirely in JavaScript on the interwebs, but it doesn't have sound. It got me thinking: Is there any way to synthesize sound in the browser using ...
2
votes
1answer
153 views

Algorithm for “filling in” texture in a 2D image

I recall seeing a paper a while back for an algorithm that could automatically and seamlessly "graft" texture from parts of an image onto another part of an image. The approach was something along ...
2
votes
2answers
197 views

“Dead code” in Xilinx

I have some VHDL code I'm writing for a class. However, the synthesis tool identifies cell3, cell2, and cell1 as "dead" code and it won't synthesize it. I really have no idea what's going on to ...
2
votes
5answers
532 views

Efficient synthesis of a 4-to-1 function in Verilog

I need to implement a 4-to-1 function in Veriog. The input is 4 bits, a number from 0-15. The output is a single bit, 0 or 1. Each input gives a different output and the mapping from inputs to ...
1
vote
2answers
37 views

How to find out which version of Synplify you're using in a tcl script

I like to start a Tcl-Script in Synplify. Depending from the version of Synplify, it should do different things. But how can I find out which verion of Synplify it is, in the script? Is there any ...
1
vote
2answers
524 views

Unable to Implement Simple ALU

I have a basic 8-bit ALU described in Verilog. I am trying to implement the design, but I am getting error messages: ERROR:NgdBuild:809 - output pad net 'quotient<1>' has an illegal load: pin I3 ...
1
vote
2answers
752 views

How to synthesize piano sounds in android/java

I have made a few simple apps on android, and thought it was time for something a bit more complex. So, i thought I'd try something that's already out there, but build it from scratch. The idea is to ...
1
vote
4answers
702 views

How do I get rid of sensitivity list warning when synthesizing Verilog code?

I am getting the warning that: One or more signals are missing in the sensitivity list of always block. always@(Address)begin ReadData = instructMem[Address]; end How do I get rid of this ...
1
vote
2answers
76 views

Video Synthesis - Making waves, patterns, gradients

I'm writing a program to generate some wild visuals. So far I can paint each pixel with a random blue value: for (y = 0; y < YMAX; y++) { for (x = 0; x < XMAX; x++) { b = rand() % ...
1
vote
3answers
223 views

Audio playback, creating nested loop for fade in/out

First time poster here. A quick question about setting up a loop here. I want to set up a for loop for the first 1/3 of the main loop that will increase a value from .00001 or similar to 1. So I can ...
1
vote
1answer
402 views

How to synthesis verilog cores made in xilinx core generator?

I used coregen to develop a divider core. Here are the steps I tried to use that divider in my design (not sure if its quite correct): 1) copied wrapper (core_name.v), .ngc file, and .veo file into ...
0
votes
1answer
56 views

What language would be most fitting to use for GUI based realtime synthesis and sequencing applications?

I'm looking to program synthesizers and sequencers, however I do not want to use a visual programming language like MSP or PD. What would be the best language for making programs for realtime ...
0
votes
0answers
40 views

Beating and two-stage decay of the piano sound

I'm working on the mathematically modeled piano synthesizer. Right now I'm using modal based approach, where the sound is formed by a sum of exponentially decaying sinusoids (harmonics). Right now I ...
0
votes
2answers
62 views

my synthesizable division (shift) is delayed? [closed]

I have written an FFT which works well in the simulation (using modelsim). However, since I am using some division operations (although they are all power of two operands) it is not synthesizable in ...
0
votes
3answers
236 views

Accessing Verilog genvar generated instances in simulation code

This is a Verilog releated question. I am working with XILINX ISE as a dev environment. I am trying to access variables in the simulation that are automatically generated using genvar but I am ...
0
votes
2answers
1k views

Question on @property and @synthesis in objective-c

While I was playing and figure out how things work in https://github.com/enormego/EGOTableViewPullRefresh I found mysterious of @property and @synthesis. Here is the code I mentioned ...
0
votes
2answers
1k views

VHDL: Finding out/reporting bit width/length of integer (vs. std_logic_vector)?

Say I need a signal to represent numbers from 0 to 5; obviously this needs 3 bits of std_logic to be represented (i.e if MAXVAL=5, then bitwidth= {wcalc "floor(logtwo($MAXVAL))+1"}). I'm aware I ...
0
votes
0answers
153 views

Audio Signal Procesing Programming with STK on Linux

Could someone please give me some guidance as to what do I need to be able to start programming Audio Applications under Linux using the STK C++ library? (or to compile any C++ program in linux to ...
0
votes
0answers
30 views

What is the difference in defining a variable in .h file's interface() method alone without synthesis it?

I define a variable in .h file's interface method like this... @interface ......{ int a; } Then i use it in .m file, it works fine.... Also i modified the code as @interface ......{ int a; } ...
0
votes
2answers
588 views

AS3 additive tone synthesis. playing multiple generated sounds

Inspired by Andre michelle, I`m building a tone matrix in AS3. I managed to create the matrix and generate the different sounds. They don´t sound that good, but I´m getting there One big problem I ...
0
votes
2answers
414 views

Verilog code simulates but does not run as predicted on FPGA

I did a behavioral simulation of my code, and it works perfectly. The results are as predicted. When I synthesize my code and upload it to a spartan 3e FPGA and try to analyze using chipscope, the ...
0
votes
2answers
673 views

Extending Karplus-Strong with low pass filter

I have implemented a basic Karplus-Strong algorithm. Ringbuffer, filling with white noise, output a sample from the front and append the average of first two elements to the end and delete the first ...