yugioh47 Posted August 22, 2015 Posted August 22, 2015 (edited) 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 August 23, 2015 by yugioh47
jaclaz Posted August 22, 2015 Posted August 22, 2015 Previous talks on the matter (only to keep things as together as possible).http://www.msfn.org/board/topic/173968-voice-recognition-brainwaves-software/ jaclaz
yugioh47 Posted August 22, 2015 Author Posted August 22, 2015 what i'm looking to do is to get the base beat frequencies in Hertz and the tone beat in hertz. how do i count the keywords in frequencies in the base and tone the come out to?
yugioh47 Posted August 22, 2015 Author Posted August 22, 2015 (edited) 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 August 22, 2015 by yugioh47
jaclaz Posted August 23, 2015 Posted August 23, 2015 well does anyone have a answer for me?Would answer #2.a here:http://www.msfn.org/board/index.php?app=forums&module=extras§ion=boardrulesdo? jaclaz
yugioh47 Posted August 23, 2015 Author Posted August 23, 2015 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?
jaclaz Posted August 23, 2015 Posted August 23, 2015 ... 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
yugioh47 Posted August 23, 2015 Author Posted August 23, 2015 (edited) is there anyway i can convert words into tone and base frequencies in visual c#? Edited August 23, 2015 by yugioh47
jumper Posted August 28, 2015 Posted August 28, 2015 Melodyne: Reconstructing beats from a stereo recordingIn 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....
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now