Jump to content

i need some help on binaural beat calculator


Recommended Posts

hi there, i want to convert "keyworkds" into frequency's "Hertz" by numbers. here is my source code. i do need some help to start programing in c++. if you have any ? s just ask. pleae do help me. i'm using visual c++ visual studio.

 

oh by the way this is going to be freeware that i'm creating.

Edited by yugioh47
Link to comment
Share on other sites


i don't know where to find these:

how do i define "Hertz"?

how do i define base freq with only one simple button on windows form with words in a textbox?

how do i define tone beat freq?

how do i get it tone and base frequency numbers to show up below the count the words button?

i'm using visual c++ 2015 i don't know how to define frequencies such as tone and base frequencies.

the Lagrange that i'm using in visual c++ studio is c#

i'm just doing a simple binaural beats calculator.

Edited by yugioh47
Link to comment
Share on other sites

this is not the same as the one you posted Jaclaz. this is binaural beats calculator. not the same i asked before hand this is programming from scratch.

 

here's the code that i've started need some help:

 

code:

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
 
namespace WindowsFormsApplication9
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
 
        private void button1_Click(object sender, EventArgs e)
 
        {
            string[] parts = textBox1.Text.Split('+');
            int intSum = 0;
            foreach (string item in parts)
            {
                intSum = intSum + Convert.ToInt32(item);
            }
            textBox2.Text = intSum.ToString();
            {
            textBox3.Text = intSum.ToString();
            }
        }
    }
}
 
how do i convert keywords into intsum?
Link to comment
Share on other sites

 

... this is binaural beats calculator. not the same i asked before hand this is programming from scratch.

Sure, the reference was to prematurely bumping this thread and hinting how probably you are still failing at describing properly the issue you are having.

 

It also seems like (no offence intended, of course :)) you are expecting to learn C ++ or C# programming from zero through the advice on the board, which is something that is IMHO unlikely to happen.

 

jaclaz

Link to comment
Share on other sites

Melodyne: Reconstructing beats from a stereo recording

In this video tutorial, we will show you audio-to-MIDI using the example of live drums recorded via cell phone (or just stereo). As a result, you get a great-sounding drum track, where you are able to replace individual beats and control any sample, the timing and accents of the original drummer, however, remain fully intact. How that works and how it sounds is shown in this video tutorial.

Stumbled onto this while researching exception 406d1388H. Machine translators might confuse binaural with stereo, so....

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...