Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
2k views

Input level monitoring with Java Sound API

I would like to monitor the microphone input level from Java Sound API (and create a small input level meter UI). I'm not interested in capturing only to see if the device is ready/working. Any idea ...
4
votes
2answers
371 views

How to style HTML5 <meter> tag

I was wondering how I could style the new <meter> tag. Actually I have this markup: <ul> <li> <span>Vitality</span> <span> ...
3
votes
2answers
282 views

how to measures noise or sound and displays in dB(A) in iphone?

I want to measure sound in dB(A) in iPhone. How can i do it? Is there any example or tutorial? Thanks in advance.
3
votes
3answers
600 views

JQuery How-strong-is-your-password bar

Is there a jQuery project out there, that create on of these "Password-strength-meters" right by a password box and updates the strength-bar when something is typed into the field? Do you know any ...
2
votes
4answers
129 views

Password Strength Meter

I have to make a password meter from scratch basically (can't use outside frameworks like jquery), and I'm having 2 problems. I can't seem to find a way where when a user enters a certain character, ...
2
votes
1answer
411 views

Confusion with meters in AVAudioRecorder

Simply put, I'm trying to lip-sync something based on the decibel reading from the mic input stream of an iPhone, and the values I'm getting aren't quite what I'm after. I'm using AVAudioRecorder's ...
2
votes
1answer
325 views

Windows Task Manager style UI control

How do you write the kind of histogram UI like the one in Task Manager in Windows? The best I could find is this one below ...
1
vote
2answers
149 views

Style <meter> tag in latest Opera version

I'm currently trying to style a <meter> tag in all major browsers: IE7-9, FF, Chrome, Safari and even Opera. I've managed to remove the default <meter> styling by using the following CSS ...
1
vote
2answers
1k views

VU (Audio) Meter when Recording Audio in Android

I am new to Android development and for my first application I have created an application that allows for the recording of audio. The audio record is working as well as the audio playback. One thing ...
0
votes
0answers
72 views

adding a animated awesome looking temperature meter-like components with jquery

hi i wanna add a meters like this one shows on the page ...
0
votes
0answers
59 views

Get power for audio channel without recording

I make audio application, with sound being recorded by AVAudioRecorder class. I use method averagePowerForChannel to move arrow on a simple audio level meter. The problem is that this method returns ...
0
votes
3answers
125 views

Communicate with Kohler Meter in C#

I m trying to communicate with Kohler active meter. It s half duplex. I ve read all protocol. Kohler has own software to see the profiles. While it was reading the profiles, i tried to view how it is ...
0
votes
0answers
26 views

VolumeMeter without using DirextX

How can I create a volumeMeter for Winforms that analyzes the incoming sound and doesn't use DirectX? I used this one but it causes a lot of DirextX errors on some computers: ...
0
votes
1answer
173 views

Make meter in Android

I'm newbie and i'm making small application for Android. I would like to display a meter to show CPU usage. I already get CPU usage but do NOT know how to make the meter like that: ...
0
votes
0answers
268 views

How to get coordinates of a point on a polyline by meters?

I loop along an MVCArray ... trying to split the segments by an offset. But I would require a little more precision to split the poly-line at the proper points. Basically I just would need to know ...
0
votes
1answer
311 views

GPS delta coordinates to meters

Greetings, I have two coordinates: (52.4412396, -6.563223) and (52.8912397, -6.683669) The delta is: (-0.4499999, 0.120446) The distance moved is: sqrt((-0.4499999)^2+(0.120446)^2) ...
0
votes
1answer
94 views

How to make a RTA analyser in Iphone

I want to make a RTA for audio. I will try it by the aurioTouch sample code but i did not able to make that actual RTA, I want to make RTA on the basis of octave and 1/3 Octave. Please suggest me the ...
0
votes
2answers
195 views

Cannot implement meter in windows API

I am using the windows API (in C++) to create a windows application. Now, I have a progress bar which I want to show like a meter. A meter is blue and has no animation. I cannot figure out how to ...
0
votes
1answer
813 views

JMeter create response variable

How can I create variable from a response data. I want to create variable n1 which will get the value from variable v1, because v1 is diynamic variable.Response part: q=q.replace("v1=2780");
0
votes
1answer
464 views

How can I implement a volume meter for a song currently playing? (iPhone OS 3.1.3)

I'm very new to core audio and I just would like some help in coding up a little volume meter for whatever's being outputted through headphones or built-in speaker, like a dB meter. I have the ...