JMF Challenge - Create audio volume level meter for rtp Audio Transmitter

Based on the following code at: http://java.sun.com/products/java-media/jmf/2.1.1/solutions/RTPConnector.html
The challenge is to build an Audio level meter, you know the lights that go up and down to your voice like on a stereo Hi-Fi system.
If we can start with ideas, give it time the challenge will be complete for all to use.

Heres the finished codec code, it just spits out System.out's with the peak level.
import javax.media.*;
import javax.media.protocol.*;
import javax.media.protocol.DataSource;
import javax.media.format.*;
import javax.media.control.TrackControl;
import javax.media.control.QualityControl;
import javax.media.control.SilenceSuppressionControl;//###### delete if no silence.
import javax.media.rtp.*;
import javax.media.rtp.rtcp.*;
import com.sun.media.rtp.*;
public class AudioLevelMeterCodec implements Effect {
    /** The effect name **/
    private static String EffectName="AudioLevelMeterCodec";
    /** chosen input Format **/
    protected AudioFormat inputFormat;
    /** chosen output Format **/
    protected AudioFormat outputFormat;
    /** supported input Formats **/
    protected Format[] supportedInputFormats=new Format[0];
    /** supported output Formats **/
    protected Format[] supportedOutputFormats=new Format[0];
    /** selected Gain **/
    protected float gain = 2.0F;
    /** initialize the formats **/
    public AudioLevelMeterCodec() {
        supportedInputFormats = new Format[] {
            new AudioFormat(
                    AudioFormat.LINEAR,
                    Format.NOT_SPECIFIED,
                    8,
                    Format.NOT_SPECIFIED,
                    AudioFormat.LITTLE_ENDIAN,
                    AudioFormat.SIGNED,
                    8,
                    Format.NOT_SPECIFIED,
                    Format.byteArray
        supportedOutputFormats = new Format[] {
            new AudioFormat(
                    AudioFormat.LINEAR,
                    Format.NOT_SPECIFIED,
                    8,
                    Format.NOT_SPECIFIED,
                    AudioFormat.LITTLE_ENDIAN,
                    AudioFormat.SIGNED,
                    8,
                    Format.NOT_SPECIFIED,
                    Format.byteArray
    /** get the resources needed by this effect **/
    public void open() throws ResourceUnavailableException {
    /** free the resources allocated by this codec **/
    public void close() {
    /** reset the codec **/
    public void reset() {
    /** no controls for this simple effect **/
    public Object[] getControls() {
        return (Object[]) new Control[0];
     * Return the control based on a control type for the effect.
    public Object getControl(String controlType) {
        try {
            Class cls = Class.forName(controlType);
            Object cs[] = getControls();
            for (int i = 0; i < cs.length; i++) {
                if (cls.isInstance(cs))
return cs[i];
return null;
} catch (Exception e) { // no such controlType or such control
return null;
/************** format methods *************/
/** set the input format **/
public Format setInputFormat(Format input) {
// the following code assumes valid Format
inputFormat = (AudioFormat)input;
return (Format)inputFormat;
/** set the output format **/
public Format setOutputFormat(Format output) {
// the following code assumes valid Format
outputFormat = (AudioFormat)output;
return (Format)outputFormat;
/** get the input format **/
protected Format getInputFormat() {
return inputFormat;
/** get the output format **/
protected Format getOutputFormat() {
return outputFormat;
/** supported input formats **/
public Format [] getSupportedInputFormats() {
return supportedInputFormats;
/** output Formats for the selected input format **/
public Format [] getSupportedOutputFormats(Format in) {
if (! (in instanceof AudioFormat) )
return new Format[0];
AudioFormat iaf=(AudioFormat) in;
if (!iaf.matches(supportedInputFormats[0]))
return new Format[0];
AudioFormat oaf= new AudioFormat(
AudioFormat.LINEAR,
iaf.getSampleRate(),
8,
iaf.getChannels(),
AudioFormat.LITTLE_ENDIAN,
AudioFormat.SIGNED,
8,
Format.NOT_SPECIFIED,
Format.byteArray
return new Format[] {oaf};
/** gain accessor method **/
public void setGain(float newGain){
gain=newGain;
/** return effect name **/
public String getName() {
return EffectName;
/** do the processing **/
public int process(Buffer inputBuffer, Buffer outputBuffer){
// == prolog
byte[] inData = (byte[])inputBuffer.getData();
int inLength = inputBuffer.getLength();
int inOffset = inputBuffer.getOffset();
byte[] outData = validateByteArraySize(outputBuffer, inLength);
int outOffset = outputBuffer.getOffset();
int samplesNumber = inLength / 2 ;
int valueMin = 255;
int valueMax = 0;
for (int i=0; i< samplesNumber;i++) {
int tempL = inData[inOffset ++];
int tempH = inData[inOffset ++];
int sample = tempH | (tempL & 255);
if (sample > valueMax) {
valueMax = sample;
if (sample < valueMin) {
valueMin = sample;
System.out.println((valueMax - valueMin) - 256);
System.arraycopy(inData,0,outData,0,inData.length);
// == epilog
updateOutput(outputBuffer,outputFormat, inData.length, 0);
return BUFFER_PROCESSED_OK;
* Utility: validate that the Buffer object's data size is at least
* newSize bytes.
* @return array with sufficient capacity
protected byte[] validateByteArraySize(Buffer buffer,int newSize) {
Object objectArray=buffer.getData();
byte[] typedArray;
if (objectArray instanceof byte[]) { // is correct type AND not null
typedArray=(byte[])objectArray;
if (typedArray.length >= newSize ) { // is sufficient capacity
return typedArray;
System.out.println(getClass().getName()+
" : allocating byte["+newSize+"] ");
typedArray = new byte[newSize];
buffer.setData(typedArray);
return typedArray;
/** utility: update the output buffer fields **/
protected void updateOutput(Buffer outputBuffer,
Format format,int length, int offset) {
outputBuffer.setFormat(format);
outputBuffer.setLength(length);
outputBuffer.setOffset(offset);

Similar Messages

  • Creating a Volume Control Bar for multiple audio files

    I'm fairly new to Flash and am developing a project with a
    series of frames that contain unique movie clips. Each of these
    frames are accessible through a chapter based menu as well as being
    viewable straight through as a regular movie. I've just added the
    audio for each "chapter" / frame that are all unique from one
    another. I'm having a problem with creating a volume control bar
    that will affect all audio throughout all frames from the single
    control bar on the general skin/interface that these chapters work
    out of. (Using Flash 8)
    I developed a sliding control bar, which works but does not
    affect the volume in any way. Is there something wrong with the
    following coding that I'm using? (The control bar is made up of a
    button nested in a movie clip and the action is being applied to
    the mc. The bar/line to follow is 60px long and the control is to
    move horizontally while the increase corresponds to increase in
    volume. The original code was for a 100px line from a macromedia
    tutorial that I adjusted to be 60px) Any advice on best practice
    for creating a volume control bar would be greatly appreciated! (I
    currently have all of my corresponding audio files on separate
    layers, should I be placing these within a mc rather than just
    having them on the main timeline?) Thank You!!!!

    Answering my own question.....
    Each individual swf has the code...
    var my_sound:Sound = new Sound();
    my_sound.loadSound("someSound.mp3", true);
    my_sound.setVolume(50);
    Code on Shell/main slide....
    //SOUND OBJECT
    var soundtrack:Sound = new Sound;
    soundtrack.setVolume(50);
    //END OF SOUND OBJECT
    //GLOBAL VOLUME CONTROL
    var nVolCheck:Number;
    volSlider.volBall.onPress = function():Void {
    this.startDrag (false, 0, 0, 75, 0);
    nVolCheck = setInterval(updateVolume, 150);
    volSlider.volBall.onRelease = function():Void {
    this.stopDrag ();
    clearInterval(nVolCheck);
    function updateVolume():Void {
    var vol:Number = (volSlider.volBall._x)*2;
    soundtrack.setVolume(vol);
    //END OF GLOBAL VOLUME CONTROL
    my bar is 75 pixels in width and the volume is being
    increased by 1.5 at its maximum.

  • Is there a simple sound level meter for iTunes for windows ?

    I'm trying to check the sound level of my music in iTunes and was wondering if there is a simple sound level meter plug-in for iTunes out there.

    HKO,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Create organis'l level field for auth. field that occurs in multiple object

    Hello,
    When trying out PFCG_ORGFIELD_CREATE I ran into a problem:
    I want to have an organisational level field for BEGRU in C_STUE_BER (Auth.grp in BOM-header);
    there are other auth.objects that also have a field called BEGRU (eg M_MATE_MAR, M_MATE_MAT, F_BKKA_BPG);
    we have roles that have several of these objects.
    Running PFCG_ORGFIELD_CREATE leads to problems in those roles that have several of the objects with a field BEGRU. In general the values to be assigned to BEGRU in different objects is not the same.
    The only solution i can think of is to have per role only one object with field BEGRU.
    This would mean a serious redesign of our roles :-(.
    Is there another option?
    Thanks for your contributions.
    John Hermans

    Another option is to create transactions for the BEGRU and maintain SU24 for them.
    But that is not scalable for large BEGRU values and has an implication for menus and number of transactions, in addition to the number of roles...
    But BEGRU fields should be used with caution, as the objects which use them are mostly not intended to be scalable (like P_PERNR is scalable....) so Su24 or well documentented "Maintained" authorizations might be an option to switch to.
    Cheers,
    Julius

  • Unable to create a First level menus for OAF pages:urgent

    Hi All,
    I am facing the problemin creating the first level menus in the Oracle app. following are the steps that i followed:
    Step 1)Created HTML Tab Menu with following properties:-
    Menu=XXWRP_PRT_SEARCH_TAB
    User Menu Name =XXWRP PRT APPLICATION Search Tab
    Menu Type=HTML Tab
    Function=OA Framework ToolBox Sample Browser
    Step 2)Created HTML Tab Menu with following properties:-
    Menu=XXWRP_PRT_GOODS_TAB
    User Menu Name =XXWRP PRT APPLICATION Goods Tab
    Menu Type=HTML Tab
    Function=OA Framework ToolBox Supplier Search
    Step 3)Created Home Page Menu with following properties:-
    Menu=XXWRP_PRT_APP_HOME_PAGE
    User Menu Name=XXWRP PRT APP HOME PAGE
    Menu Type=Home Page
    and having following entries:-
    prompt=Search, Submenu=XXWRP PRT APPLICATION Search Tab
    prompt=Goods,Submenu=XXWRP PRT APPLICATION Goods Tab
    Step 4)Created Another Home Page Menu with following properties:-
    Menu=XXWRP_ PRT_NAVIGATION
    User Menu Name=XXWRP PRT NAVIGATION
    Menu Type=Home Page
    and having following entries:-
    prompt=Search, function=OA Framework ToolBox Sample Browser
    prompt=Goods,function=OA Framework ToolBox Supplier Search
    Stpe 5) Created Standard Home page menu with following properties:-
    Menu=XXWRP_PRT_APLLICATION.
    User Menu Name=XXWRP PRT Application
    Menu Type=Standard.
    and having following detail entries:-
    Submenu=XXWRP PRT NAVIGATION
    submenu=XXWRP PRT APP HOME PAGE.
    Step 6)
    Created a responsibility with Available Form=Oracle Self service web Application
    and with menu=XXWRP PRT Application
    Step 7)
    And after that i assigned the above created responsibility to the login user.,
    But i am unable to get the tabs. Where I am commiting a mistake,i cann't undertand.Plz help..........
    Regards,
    Vikram

    Try to compare the menu that you have created with Functional Administartor menu structure. It may help to debug your problem.
    Thanks,
    Mitiksha

  • Adjusting Audio Volume Levels

    Often, one has Audio that is too loud, or too soft. Sometimes, they have added a music Track, that needs to drop down to clearly hear the dialog from another Clip. While there are Audio-editing programs, like Audition, SoundBooth, and even the free Audacity, PrE, or PrPro can handle such adjustment just fine. These adjustments can be made for the entire Clip, or can be Keyframed over time.
    First method, and not one that I recommend, is to adjust the Audio Gain of the Audio Clip. This is done by either Rt-clicking on a separate Audio Clip, or by first Alt-clicking, and then Rt-clicking on a Muxed Audio Clip (Multiplexed with both Video and Audio in one file). Then, one would choose Audio Gain, and adjust that. This method will also allow one to then adjust the Volume by a greater amount, and has the bonus of increasing the Waveform Dislay vertically.
    The next method is to look at the Audio Clip (or the Audio portion of a Muxed Clip), and click-drag on the yellow-orange “rubberband” for Volume, and move it up, or down. This can be Keyframed, but the next method is much better and more precise, in my estimation.
    My first choice is to adjust the fixed Effect>Volume. This is done from the Effects Control Panel, and it is very easy to Keyframe these adjustments over time. This is much more accurate, and actually easier, than click-dragging the rubberbands in the Clip itself. Accessing the Effects Control Panel is slightly different, from PrE to PrPro. In PrE, one would Select the Audio Clip, then go to the Effects Tab, and choose Edit Effects, locating the Volume Effects and twirling it open to view the slider. In PrPro, if one does not already have the Effects Control Panel in a Pane in the GUI, it would be accessed from Window>Effects Control Panel. With the Audio Clip Selected, one would locate the fixed Volume Effect, twirl that open, and make the same adjustments, including Keyframes, if necessary. These will be Clip Keyframes, and will follow that Clip, where ever you move it. This is a difference from the next method.
    My other choice would be to use the Audio Mixer (Window>Audio Mixer, if not open), and to automate the Volume settings. This is accomplished by playing the Timeline and adjusting the sliders for Volume for each Track. In PrPro, one would first set the Send to Write, or Touch, to make those adjustments, then switch back to Read, when done. There are no adjustable Sends in PrE, so one is always in Read, until adjustments are made, and then it’s set to Write, but you will not see this change. After you are done, you can playback the Timeline, and watch the slider(s) automatically move. These will be Track Keyframes, and will remain on the Track, regardless of what Clips you add/remove from that area of the Track. Unlike the Clip Keyframes, these will NOT follow the Clip.
    One can toggle the Keyframe of an Audio Track between Clip, or Track. Also, the default frequency of Audio Track Keyframes in PrE & PrPro is a bit high, in my opinion. I drop these down a bit in Edit>Preferences.
    For the Keyframing, one can alter the Velocity of the Keyframes to Bezier from Linear, and the adjustments will be a bit smoother. Besides the Bezier, one can use Ease-Out and Ease-In, which are Bezier, but basically in a Preset. In PrPro, one has several different Bezier options. In PrE, one is a bit more limited.
    For setting the Volume, I recommend that one only glance at the Levels Meters (unless they are peaking in the red), and instead use a pair of high-quality headphones (noise canceling models are worth the money), or fully calibrated studio monitors. Let your ears make the decisions for you, as the dB settings should only be a starting point.
    In PrPro, one can also Rt-click on the Audio Clip, and choose Edit in Audition (if you have it installed), or Edit n Soundbooth (if you have one of the suites).
    Here is a look at Audio Keyframes in PrPro 2.0. Things are similar in PrPro later versions, and also in PrE, with the above noted differences:

    Here are some AdobeTV tutorial links for Premiere Elements Audio:
    http://tv.adobe.com/watch/learn-premiere-elements-11/adding-and-customizing-an-audio-effec t/
    http://tv.adobe.com/watch/adobe-digital-school-collection/audio-mixing/
    http://tv.adobe.com/watch/learn-premiere-elements-10/get-professionalquality-sound-through out-your-movie-/
    http://tv.adobe.com/watch/premiere-elements-9-how-tos/enjoy-a-perfect-balance-of-audio/
    Hunt

  • Audio volume level on iMac

    Here's a small issue that's driving me crazy...
    I like to set the audio level to maximum on my iMac because I can control the volume from my attached speakers. Trouble is, everytime I re-start the computer I have to re-set the audio level. Is there some sort of preference I can set so I won't have to re-set levels every time I start up?
    Thanks.

    Sorry, I don't know how to make a link to
    this.
    Joanne,
    To make a link, click the web address space/line (of the address you want to show as a link) three times and the address in the space will be covered by blue, go up to the "Edit" pull-down and select "Copy" then move the mouse pointer to where you want to deposit the link and again in the "Edit" pull-down select "Paste" to deposit the address.
    http://discussions.apple.com/message.jspa?messageID=4270646#4270646
    To create a link of that address, simply preceed the web address with this 1 character:<
    followed immediately by this 1 character:a
    followed by a blank space and then these 6 characters:href="
    and after the web address follow immediately with these 2 characters:">
    and then enter the name you wish to give the link:Update 10.4.9 has increased my volume drasticly
    That "name" will be the part seen, the actual web address wouldn't be visible, as it is in the above example, but will look like the link example at the end of this explanation.
    After you enter the name, immediately follow with the 1 character:<
    and then without any space immediately follow with the 1 character:/
    and then without any space immediately follow with the 2 characters:a>
    Had to break up the explanation into pieces or else the result would be a live link and the explanatory symbols would not be visible, but would have looked like:
    Update 10.4.9 has increased my volume drasticly

  • To create a Universe Level filter for calculating one month's data

    Post Author: roy999
    CA Forum: Deployment
    Hi Everbody, I am creating a Monthly report using Deski XI R2. My requirement is :At
    the report prompt the user will enter only the Start Date (which will
    be the first day of previous month) and the End Date will be
    automatically taken as the last day of the previous month. Is there any way to implement this, if yes please resond ASAP... ThanksRoy

    Post Author: amr_foci
    CA Forum: Deployment
    if you use oracle connection u can make it easy and use the oracle's functions like
    CALENDAR.MY_DATE BETWEEN @Prompt('ENTER DATE','D',,MONO,FREE) AND LAST_DAY(CALENDAR.MY_DATE)
    if u dont use oracle as a target database connection u can either look for the similar function in ur DBMS for "LAST_DAY" ,, i think its available for any DBMS
    good luck

  • Audio volume levels on MBP

    My week 22 MBP is awesome and has no crazy noises. I do notice that when set to maximum volume using only the MBP speakers the sound isn't all that loud. Not as loud as I would expect.I have no way of gaging this but I was wondering if anyone else shared the opinion.
    MacBook Pro 2.16   Mac OS X (10.4.6)  

    Anything under 4 bars is inaudible.. This is valid for both 15"and 17"models. However the sound on 17" is louder and better due to two extra speakers. Hope this helps.

  • Record Level Adjust for Audio in Voice Memo or Video Recorder

    I would like to request that Apple allow me to adjust the record audio volume level when recording in Voice Memo or Video Recorder modes. Often I find that the audio is distorting and most times I cannot step back far enough to avoid distortion levels. While I love the ability to SEE the audio level in Voice Memo mode, I am hoping that it is only a matter of firmware upgrade to be able to ADJUST the record level.
    Also, if it is possible, it would be great to see some indication of audio level when recording video... something simple like a bar graph with green, yellow and red bars with the highest level reached sticking for a few seconds so that I can tell what the level is.
    An alternate solution (if none of the above is possible in a firmware update) would be to automatically adjust the recording level to prevent audio distortion.
    Thanks for the great iPod and here's hoping for a great firmware update in the near future!

    Thanks, I've submitted my recommendation to Apple.

  • How do I get 10.4.8 AUDIO VOLUME back?!

    My daughters' iMac G3 is like a freakin' megaphone now after updating it to 10.4.9. Why did Apple have to mess with audio volume levels? It was FINE the way it was. Now, in 10.4.9, the lowest volume setting is around the 50%-65% mark it was in 10.4.8.
    I've ready other complaints elsewhere, now just want a solution. She's had it for months and we know the volume it produced, now, like I said, it's a megaphone and she even says its too loud (she's four).
    Help!

    The max OS for a PowerPC processor Mac is Leopard OS 10.5.x. All higher OSs require a Mac with an Intel processor.
    Here's the instructions if you have the discs.
    Mac OS X: Changing or resetting an account password
    http://support.apple.com/kb/HT1274?viewlocale=en_US
    Changing your administrator password
    http://docs.info.apple.com/article.html?path=Mac/10.4/en/mh655.html
    Here's one method to reset the password without the install disc:
    1. boot computer and hold the "apple" key and the "s" key.
    2. wait for terminal show
    3. release keys
    4. type without the quotes: "/sbin/mount -uaw"
    5. press enter
    6. type without the quotes: "rm /var/db/.applesetupdone
    7. press enter
    8. type without the quotes: "reboot"
    9. press enter
    This will let you create a new admin account when you reboot your computer.
    Also, without the discs, look at Mac OS X Tip - No Password, No Root, No CD? No Problem.
    http://www.macobserver.com/tip/2003/06/16.1.shtml
    Here is a way to get around not knowing the admin password on Macs.
    To reset your OS X password without an OS X CD you need to enter terminal and create a new admin account:
       1. Reboot
       2. Hold apple + s down after you hear the chime.
       3. When you get text prompt enter in these terminal commands to create a brand new admin account (hitting return after each line):
              * mount -uw /
              * rm /var/db/.AppleSetupDone
              * shutdown -h now
       4. After rebooting you should have a brand new admin account. When you login as the new admin you can simply delete the old one and you’re good to go again!
    You'll have to buy (for over $100) a Leopard retail install DVD to get back to Leopard.
     Cheers, Tom

  • Is there an Audition equivalent of volume leveling?

    Greetings!
    I spend a lot of time editing long interviews, and unfortunately the microphones in our studio are set to drastically different volumes (not something I can easily correct due to limitations in our board and the way the studio was built).  So I usually have to fix these differences in audio levels using extensive volume envelopes in Audition 2.0. I do this by either raising the track volume or clip volume, and then using the envelope automation points to dip where necessary.
    This can be really time-consuming, and it seems to me that there's got to be a better way.  I've tried using the multiband compressor built-in to Audition 2, but it sounds rather unnatural (a lot of "pumping" action) compared to using envelopes.  Hard limiting helps, but only to a certain extent -- again envelopes really get the job done more naturally (though it takes so long to do).  I've also tried to use The Levelator, but again it can sound artificial and rather compressed (pumping) at times.  Also, it does not appear to play well with music, if present during the interview.
    One option I've found interesting is Audacity's "leveller" function.  This effect makes quiet passages louder and loud passages quieter -- and it sounds more natural.  I understand that Adobe's Soundbooth has an equivalent "Volume Correction" function that can match the volume levels within a single audio clip.
    So my question is:  Is there an equivalent function in Audition 2.0 that can do this?  If not, are there an VST or DirectX plugins that can achieve this result?  Curious to hear your thoughts.
    Thanks in advance for your time!
    Sincerely,
    Stephen

    "our engineer says he has the mic inputs set as high as they can go"
    But according to AudioArts web site, the D75 has four mic preamps "as standard".
    That hardly seems to equate with the problem being discussed here especially given the quote above!
    Edit:  Checking again the web site, the input level range for the mic inputs is described as "Adjustable -70 to -31 dBu".  Is the output of those EVs not enough for these inputs?

  • Control Initial Volume Level?

    How can I control the audio volume level during the first few seconds before the theme menu is displayed? I found that I can adjust the audio volume during the display of the menu itself, but the lead-in volume is much louder and I haven't found any way to adjust it. If it matters, I'm using the "Marquee" theme. Thanks for any suggestions.

    WIth additional searching I found another post on this topic from some months ago. I tried increasing the iMovie audio level. I'm burning another DVD now to see if that helps.

  • Hp omen audio volume so low after windows 10 upgrade

    i upgraded to windows 10 and i find that the audio volume level is really low compared to how it was on window 8.1 i checked that realtek high definition audio driver is properly installed the volume now even when i max it out is really low  its so hard to watch even youtube

    It does appear the drivers were not included in the Windows 10 operating system and are not available for download on the driver page. They may be added in the future but for now we can only try using Windows Updates to install. If you go to Start > Settings > Update and Security > Make sure you're on the Windows update tab and select the Advanced settings button. Make sure the box to install optional updates is checked, and then check for available updates. Install any available updates and restart your PC.  After this go into Device Manager and right click the WWAN adapter. Select Update driver software and let it search automatically. If it does not find the driver automatically try it again but select the option to specify a driver. You will get to a page that asks to select a vendor and model. Click the Windows update button to refresh the list of available drivers and look for your WWAN adapter.  If you do not know which WWAN adapter is in your model (it should show the name but may show Unknown Device or Network adapter) right click on it, go to Properties and select the Details tab. Change the drop down to Hardware Ids and give me the first ID in the list. Thanks.

  • Background Audio Volume Control

    Hi everyone!
    Thanks so much for your help on my background audio question.
    I was wondering if someone could tell me how I can control the
    level of the background audio that i'm using from the
    Project>Preferences>Background Audio Tab? I would prefer the
    level of background audio to be less than what captivate thinks it
    should when I'm talking through ny intro slides.
    Thanks again for your help and I'm gald to be aboard the
    forum.
    fajitaman

    Hi fajitaman
    Try this. Click either Project > Preferences... (if you
    are using Captivate 2) or Movie > Preferences... (if you are
    using Captivate 1). Then click the Background Audio tab. Once you
    do this, you should see a button labeled Edit... Click the Edit...
    button. (If you are prompted whether you are certain you want to
    make changes, click the Yes button.) Click the Adjust volume button
    and adjust the volume level as desired.
    Note you also have an additional option. One I'm personally
    not fond of, but it exists. That is the option to "Lower background
    audio volume on slides with additional audio". If you use this
    option (I believe it's enabled by default) you hear a definite (and
    noticeable) volume reduction when slides containing slide level
    audio are played.
    Hopefully this helps... Rick

Maybe you are looking for

  • Flash player License not readable, please correct download link

    Hi, just wanted to download the latest version of Flesh player (Version 11.9.900.152), but the license which I shall agree to solely appears in Arabian language (see: http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/legal/licenses-terms/

  • To switch between map layers

    Hello, I have several layers at my map and would like to switch some of them if necessary. This is because sometimes the objects overlap each other and total picture doesnt look impressive Can somebody give me the necessary code? I found one on this

  • Run Form9i

    I have seen 9ids and forms run in web. means it is web based. Is there way that it can run as previous forms 5 and forms 6 run as application through .fmx

  • Business Inkjet 1200 will not print multiple page jobs

    Product Name: HP Business Inkjet 1200 Product Model Number: C8154A Product Serial Number: TH49M1403W Service ID: 15148 Firmware version: 20041001 MMR2016W Regulatory Model Number: SNPRC – 0401 – 01 Date: Sept 22 2004 HP Business Inkjet 1200, XP SP2,

  • What happened to the padlock showing my ordering info on a website is secure?

    I used to see a padlock in the bottom right-hand corner of my screen whenever I was on a secured website, i.e. amazon.com, placing an order. The padlock would appear when it was time to enter credit card info, etc. I recently installed the latest ver