Help accessing nested structures Programming Software Development by zapman2003 … type for NOTE int name; int pitch; int loudness; int duration; } NOTE; typedef struct { //…score[i].thescore ->duration = d; score[i].thescore ->loudness = l; n++; if (n == 13) { n = 1…, score[i].thescore->duration, score[i].thescore->loudness); } } //show method void transposeOctaveUp(SCORE *score, … On the road with the TomTom app and NEW Hands-free Car Kit for iPhone Hardware and Software Hardware Mobile and Wearables by happygeek …, but if you find that this doesn't provide enough loudness (and I should point out that neither I nor any…'t equate in-car audio to rock concert levels of loudness. ![dweb-tomtom2](/attachments/small/0/dweb-tomtom2.jpg "align… How to do audio signal processing in C++? Programming Software Development by apanimesh061 I need to extract pitch, dynamics (loudness or softness), tone color, and duration of an audio file. This is regarding some research work I am doing. How should I start ? Provide me with some links if possible! Is C++ a good option for this? Or should I try some other language .... Please Help! Re: Like It, Hate It, Havent Tried It Community Center Geeks' Lounge by iamthwee Hate it. Piano or electric keyboard (I prefer piano it has a richer sound and I like the difference in loudness you get when you strike the keys) Re: We need to laugh... Community Center Geeks' Lounge by thekashyap … is the important thing. * Thunder is a rich source of loudness. * Water is composed of two gins, Oxygin and Hydrogin. Oxygin… Re: 2008 US Presidential Poll Community Center Geeks' Lounge by EnderX … of what I've seen leads me to believe the loudness-generating problem wasn't that the guys in charge chose… Re: Mp3 feature Extraction Programming Software Development by frivolous but i dont need meta data. i need features i.e loudness, tempo etc Loudness Equalization on Win7 enabling via GPO Hardware and Software Microsoft Windows by gotschai hi, I am fighting around with setting a property on sound device via registry edit. I know its located at [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Render\{ab701278-c48d-41cd-b68c-8466465f06e4}\FxProperties] i found that the setting is "{fc52a749-4be9-4510-896e-966ba6525980},3"… Re: Loudness Equalization on Win7 enabling via GPO Hardware and Software Microsoft Windows by rproffitt Sorry not really. But a long time ago I used some neurons about something else. That registry entry may be specific to the sound card or device in each PC. This means unless you field identical hardware across the fleet, my bet is this will be inconsistant. I'm finding PC vendors to no longer be more than a packager of goods. If you find a … Re: Loudness Equalization on Win7 enabling via GPO Hardware and Software Microsoft Windows by gotschai Hi, thank you for you reply. I will put the login in some vbs script, so if any pc has itw own unique value, it does not make a problem, as long as I know how to calculate the data. The PCs are the same model and have the same brand usb sound card / headset, and done from the same image. strange is that even when switching it on and off the … Fan speeds and annoying loudness of it! Hardware and Software Hardware by shaunhare Hey guys,does any1 know how to solve the mystery of making your fans run a bit quiet (like the IBM desktop PC's).I got a foxconn p4m800p7ma motherboard with 3 fans. 3 x 80mm's 1 on the CPU, 1 on the back of the Case and 1 in the PS. I recently replace the on on the case and it still seems to run like b4.What do i do?please any suggestions will help… Re: Fan speeds and annoying loudness of it! Hardware and Software Hardware by GrimJack I use rubber 'rivets' to attach my fans to the frame - I also prefer the larger 120mm fans. Re: Fan speeds and annoying loudness of it! Hardware and Software Hardware by shaunhare Where can i purchase this rubber rivets?And i used a 120mm but it makes even a louder winding sound,what cud that be?i think mainly its the PS fan. Re: Fan speeds and annoying loudness of it! Hardware and Software Hardware by GrimJack [URL="http://www.epowerhousepc.com/rubber-flathead-mount-rivets-p-774.html"]Here is an ad for them.[/URL] Break it down for me - use a flexible tube (like vacuum cleaner hose) aimed at each fan - do all the fans make the same amount of noise? Does the noise change if the case is open? Do the fans pulling air make the same noise as … Re: Fan speeds and annoying loudness of it! Hardware and Software Hardware by shaunhare I just thought id let you know before i was about to try the demo you told me i unplugged the power supply fan, The pc was much more quieter.As soon as i plugged it in agen same annoying sound starts....What now? Re: Fan speeds and annoying loudness of it! Hardware and Software Hardware by GrimJack My personal feeling about power supplies is if the fan is noisy the voltages could be noisy - if you do not have the tools or knowledge to test the line voltages and have the funds, buy a new ps. Look for ps calculators like [URL="http://extreme.outervision.com/index.jsp"]this[/URL] Re: Fan speeds and annoying loudness of it! Hardware and Software Hardware by shaunhare the fan aint noisy it just blows kinda loud im sure it can blow softer,plus my power supply is still in a good condition and the fan i put in i bought recently. Re: Fan speeds and annoying loudness of it! Hardware and Software Hardware by shaunhare is a PS fan really necessary? Re: Fan speeds and annoying loudness of it! Hardware and Software Hardware by shaunhare I discovered ,after trying different fans in the PS,that its the PS box maybe thats accumulating the air and making that wind sound coz i even installed a smaller fan and it still gives that sound so is there no other way i can quiet it down a bit? Re: Fan speeds and annoying loudness of it! Hardware and Software Hardware by GrimJack Did you blow out the dust and crud from the case and the ps? Is the volume of air sucked in greater than the volume blown out? What happens if you open one of the pci slots in the back? If that changes the 'texture' of the sound, maybe you could add a pci fan near your vid card (another source of heat). Re: Fan speeds and annoying loudness of it! Hardware and Software Hardware by shaunhare i found the fault buddy,the fans were drawing too much voltage,i tried 2 methods and distinguished the problems and what to do inturn.thanks plenty much Re: Fan speeds and annoying loudness of it! Hardware and Software Hardware by GrimJack WOW! I had never heard of that before - good work! Re: Help accessing nested structures Programming Software Development by Narue [B]>score[i].thescore ->name = n;[/B] Close. [ICODE]thescore[/ICODE] is your dynamic array, not [ICODE]score[/ICODE]: [code] score->thescore[i].name = n; [/code] Apply that logic to your whole program. Re: Help accessing nested structures Programming Software Development by zapman2003 Perfect! That did the trick (big surprise), and it now runs perfectly. Thanks so much. Re: Help accessing nested structures Programming Software Development by blech Thanks, this was really useful and nice example of dynamic memory allocation for nested struct. Thanks again. Re: On the road with the TomTom app and NEW Hands-free Car Kit for iPhone Hardware and Software Hardware Mobile and Wearables by rockingjohncart Nice post dear. I like it Re: How to do audio signal processing in C++? Programming Software Development by mrnutty Matlab would be a easier starting point. It already has many functions implemented for you to handle audio processing.