Posts Tagged ‘Program’

What is the best audio editing & music making program?

Thursday, June 24th, 2010

Mainly like this:
You can give a set of samples, then cook their pitch, intensity and tempo.

The feature that I poverty is the music editing sheet \ time line has a grid. It’s like placing the samples in Audacity but we have grid lines that depends on the pacing we set and the size of the state we poverty (such as 4th, 8th, 12th, etc.).

Freewares preferred, but if there’s none, then sharewares are okay.

Is there any program thats like a cross between a cordinate plane & excel?

Monday, April 26th, 2010

I need a windows XP program that is a grid. Like a a installation on graph paper. It needs to be:
100% free,
I need to be able to mark points on it,
color/shade destined squares,
write notes/info in the squares,
and be able to beam it via Aim or skype to a macintosh. So it has to be able to be ransomed as a jpg. or something…

Is there a program that will convert a picture to an 86×86 grid for a mosaic art project?

Wednesday, March 24th, 2010

You may have seen people making mosaics using Post-it notes or toy bricks. I want to do something similar but in another medium. I will be using square objects and i am limited to the following colors
white
pink
red
orange
yellow
green
blue
violet
grey
black

I would same to find a program that i can feed a picture to and have it spit out a base grid. The acquirable shack i have is approximately 86 by 86 squares.

Are there any programs or websites that will do this? I’ve messed around with Photoshop but I can’t seem to attain the exact number/colors i need come out right.

Thanks!!!

write a C++ Program that prints the block letter “B” IN A 7 x 6 grid of stars?

Sunday, March 21st, 2010

NOTE
using a C++ PROGRAM PLEASE!!

java program help? please thanks!?

Saturday, March 13th, 2010

I’ve been working on this for a while. I’m nearly done, but I’m having a little trouble. There’s something wrong with the code. I intellection it was right, but I’ve done some investigating with quaternary numbers in a article and there are answers large than the one I’m effort with the code.
That’s my main concern right now, but if you conceive you would like to help, I’m having trouble doing the for wrap for the adjacent diagonal numbers. thanks!

Program:
Write a java program to feature in the aggregation from the enter “numbers.txt” and to determine the
greatest creation of quaternary adjacent numbers in any direction (up, down, left, right, or diagonally)in the 20 by 20 grid. Note: the program should work for any installation 5×5 15×5 etc, but doesn’t hit to

Code:
import java.io.*;
import java.util.*;

public class Grid2{

public static vacuum main(String[] args)throws java.io.IOException {
int array[][] = new int[20][20];

Scanner s = new Scanner(new FileReader(“numbers.txt”));

for(int x = 0; x < 20; x++){
for(int y = 0; y < 20; y++){
array[x][y]= s.nextInt();}}

int i, j;
int maxSum = 0;
int tempSum = 0;

// Checks row
for(i = 0; i < 20; i++){
tempSum = 1;
for(j = 0; j < 20; j++){
tempSum *= array[i][j];
if(j % 4 == 0){
if(tempSum > maxSum){
maxSum = tempSum;}
tempSum = 1;
}}
}

// Checks column
for(i = 0; i < 20; i++){
tempSum = 1;
for(j = 0; j < 20; j++){
tempSum *= array[j][i];
if(j % 4 == 0){
if(tempSum > maxSum){
maxSum = tempSum;}
tempSum = 1;
}}
}
System.out.println(“Greatest Sum: ” + maxSum);
}}

can anybody explain me this program line by line?

Saturday, February 20th, 2010

import java.awt.*;
import java.awt.font.*;
import java.awt.geom.*;
import javax.swing.*;

public class LineChart extends JPanel {
double[] accumulation = { 13.8, 9.2, 4.3, 16.7 };
int[] years = { 1995, 1996, 1997, 1998 };
final int PAD = 25;
final int stitch = 2;
final int follow = 3;

protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2 = (Graphics2D)g;
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
drawAxes(g2);
// strategy data
Point2D.Double lastP = null;
for(int j = 0; j < data.length; j++) {
g2.setPaint(Color.red);
Point2D.Double p = modelToView(j, data[j]);
g2.fill(new Ellipse2D.Double(p.x-2, p.y-2, 4, 4));
if(lastP != null) {
g2.setPaint(Color.blue);
g2.draw(new Line2D.Double(lastP, p));
}
lastP = p;
}
}

private Point2D.Double modelToView(double x, double y) {
double w = getWidth();
double h = getHeight();
double tx = PAD;
double ty = h-PAD;
AffineTransform at = AffineTransform.getTranslateInstance(tx, ty);
double xScale = (w - 2*PAD)/(data.length-1);
int max = (int)Math.ceil(getMaxValue());
double yScale = (h - 2*PAD)/max;
at.scale(xScale, -yScale);
Point2D.Double dst = new Point2D.Double();
at.transform(new Point2D.Double(x, y), dst);
return dst;
}

private void drawAxes(Graphics2D g2) {
double w = getWidth();
double h = getHeight();
double xInc = (w - 2*PAD)/(data.length-1);
int max = (int)Math.ceil(getMaxValue());
double yInc = (h - 2*PAD)/max;
// grid lines
g2.setPaint(new Color(220,230,240));
// vertical
for(int j = 0; j <= data.length; j++) {
double x = PAD + j*xInc;
g2.draw(new Line2D.Double(x, PAD, x, h-PAD));
}
// horizontal
for(int j = 0; j <= max; j++) {
double y = PAD + j*yInc;
g2.draw(new Line2D.Double(PAD, y, w-PAD, y));
}
// axes
g2.setPaint(new Color(51,51,51));

// ordinate
g2.draw(new Line2D.Double(PAD, PAD, PAD, h-PAD));
// stitch marks
for(int j = 0; j <= max; j++) {
double y = PAD + j*yInc;
g2.draw(new Line2D.Double(PAD, y, PAD-TICK, y));
}
// labels
type font = g2.getFont().deriveFont(14f);
g2.setFont(font);
FontRenderContext frc = g2.getFontRenderContext();
LineMetrics lm = font.getLineMetrics("0", frc);
for(int j = 0; j <= max; j++) {
String s = String.valueOf(max-j);
move y = (float)(PAD + j*yInc + lm.getDescent());
move width = (float)font.getStringBounds(s, frc).getWidth();
move x = (float)(PAD - stitch - follow - width);
g2.drawString(s, x, y);
}

// abcissa
g2.draw(new Line2D.Double(PAD, h-PAD, w-PAD, h-PAD));
// stitch marks
for(int j = 0; j <= data.length; j++) {
double x = PAD + j*xInc;
g2.draw(new Line2D.Double(x, h-PAD, x, h-PAD+TICK));
}
// labels
for(int j = 0; j < data.length; j++) {
String s = String.valueOf(years[j]);
move width = (float)font.getStringBounds(s, frc).getWidth();
move x = (float)(PAD + j*xInc - width/2);
move y = (float)(h-PAD + stitch + follow + lm.getAscent());
g2.drawString(s, x, y);
}
}

private double getMaxValue() {
double max = -Double.MAX_VALUE;
for(int j = 0; j < data.length; j++) {
if(data[j] > max)
max = data[j];
}
return max;
}

public noise void main(String[] args) {
JFrame f = new JFrame();
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.getContentPane().add(new LineChart());
f.setSize(400,400);
f.setLocation(200,200);
f.setVisible(true);
}
}

Make Beats Online With the Right Program

Friday, January 29th, 2010



1. Simplicity
The program you use to your make beats online should be simple to use. If you have an idea for a song or a beat in your head, you should be healthy to at least get a sketch of the song programmed quickly and easily. An intuitive interface is important for this. If you have to click some boxes and hit “ok” buttons for every modify you want to make things will go slowly and tediously and you’ll really lose momentum and inspiration. Most beat patterns are programmed in to a timeline where apiece good goes into a destined “slot”. swing beats in those slots should be as cushy as clicking a box or pushing a button. It should be meet as cushy to modify those beats once you’ve programmed them. 

2. Timing control
You should be healthy to change the timing. Most programs have a grid with the timeline going mitt to right and the sounds being triggered listed from top to bottom. This should be customizable. Can you make the pattern longer or shorter? Can you easily change the tempo speed to faster or slower? 

3. sequence
Songs have assorted parts and you will need the ability to string assorted patterns to apiece other in sequence to for a linear structure. This is something you should be healthy to control through the grid. 

4. Lots of sounds
You staleness also make sure the program has a large bank of sounds if you want to make beats online. destined styles of songs call for destined sounds and you will need as some assorted sounds as doable to use. The program should have some assorted drum sets with multiple types of sounds for apiece drum. note assorted snare sounds is a good start. Ten or note assorted voice kicks is also a good start. You will also want a lot of accompaniment. Horns, pianos, guitars, strings, crash hits, and other good effects are all things you should have in a decent sized good bank. 

5. Versatile Input Control
You should be healthy to control these sounds easily as well. meet like clicking boxes to put a beat in a destined spot, it should be doable to do the same with instrument sounds. meliorate yet, there should be a way to “play” out notes in an octave with keys like a piano has. If you have an external USB keyboard someone you can meet play what you want to program on it, but if you don’t have a someone you should meet be healthy to “click” the note on the keys meet like on a piano. There should also be pads for “hitting”, meet like on a physical drum machine. Maybe you’ll want to tap out a drum sequence on the pads with your mouse clicks that is meet too tedious to program in to slots. That’s where the pads come in. 

6. Volume and Panning
Some sounds should be louder nd some should be softer in your patterns. The voice may be distorting or the hi hats may not be too quiet. You’ll want to be healthy to increase the sounds with a mixer of some sort. The same goes for panning mitt and right for biaural effect. True separation is what makes biaural good so interesting and you need to be healthy to modify volume and pan parts for meliorate isolation. 

7. Save it!
If you are going to make beats online, you are also going to want to share those beats online. You should be healthy to export or download your songs and beats into an mp3 or (other frequence file) so you  can play them with added program. You staleness be healthy to save it on your hard intend for after use in housing you opt to edit or play it for others on an mp3 player. There should be no loss of good quality when exporting and downloading either.  

8. Affordability
The program should also be affordable and available. The whole point of needing to make beats online is to road the pricey singable and frequence equipment that does the same thing as a good program. 

9. Support
Your beat making program should have good support. If this article doesn’t make much significance to you then by all effectuation make sure the program you use has lots of instruction, support, and tutorials to get you started and answer your questions. 

http://ezinearticles.com/?id=1892859

dale rogers

Learn more about making beats and watch videos at make-beats-online.info


Learn more about how tomake beats online.