How to use Mic instead of Line-In as audio inp

How can I configure the Mic port (pink color) as the input instead of using Line-In (blue color) on?ceati've emu0k audio processor (wdm) ?

CrystalK wrote:
How can I configure the Mic port (pink color) as the input instead of using Line-In (blue color) on ceati've emu0k audio processor (wdm) ?
Depending on software you're using (creative (surround) mixer or windows play/recording controls) you just need to un-mute the microphone source channel and set the recording device to microphone.
jutapa

Similar Messages

  • How to use stripline in ssrs line chatrs

    Hi,
    I want to know how to use striplines in ssrs line charts?

    Hi ,
    You can use below link;
    https://msdn.microsoft.com/en-us/library/dd239316.aspx?f=255&MSPPError=-2147217396
    https://sqlserverbiblog.wordpress.com/tag/strip-line/
    http://blogs.adatis.co.uk/blogs/jeoc/archive/2013/07/23/adding-strip-lines-to-reports.aspx
    Thanks
    Please Mark This As Answer or vote for Helpful Post if this helps you to solve your question/problem. http://techequation.com

  • How to use the "target Data lines"?

    Hello,
    I want to program some DSP effects and filters with Java. I know to use the "Clip" and the "Sound" data lines in the Java Sound API, but it is difficult to me tu use the "target data lines" to do what I want to. So I have several questions :
    I have found how to convert a clip to a target data line. I have understood how to get the int from the sounds via the target data line. But, when I have done the operations with this int, how to do again a sound from the int? Wich method must I use to "convert the int to a sound"?
    Normally, oscillators and filters need to do an integration using the sample rate. Does anyone could give to me some exemples?
    I have found code sources for C++ for DSP. Where could I find the same for Java?
    Do you know a book about this subject, I did not find any?
    Thank you for your help.

    My idea is to create a byte array from the audio clip via a ByteArrayOutputStream, then to create an int or a float, then do the operations, and then do another audio line from the new byte array. Am I wrong?This is correct, I believe.
    This byte array will have a size of 16 (for PCM or wave files) surrely.Not necessarily. If you're using 16-bit samples for PCM data, then every 2 array positions will be "a sample". Your byte array will be 2 times the number of samples.
    You'll want to pull the data 2-bytes at a time and do basiclly:
    byte[] data_in = new byte[2];
    myTargetDataline.read(data_in, 0, 2);
    short sample = (data_in[0] << 8) + (data_in[1]);Then do whatever you want to your sample, and then write it back...
    byte[] data_out = new byte[] {
    (byte)(sample >>> 8),
    (byte)(sample )
    mySourceDataline.write(data_out, 0, 2);I used a short instead of an int because it's 16-bit data, so it's a short. PCM may be an "unsigned" short, but you'll have to check into that yourself ;-)
    To be perfectly honest, I've never done this so my sample code will probably need to be tweaked. But I hope it helps you get headed in the right direction, and gimme an update when you try it out.

  • How to use CL_PROXY_BASIS instead of CL_PROXY_CLIENT your ABAP Proxy class?

    Hello experts,
    I have a scenario where a new basis release was done in my development and testing SAP boxes (Basis Release 710 I believe) which means from then on when generating an ABAP Proxy class the inheriting class will be used is CL_PROXY_CLIENT as opposed to the previous CL_PROXY_BASIS.
    This causes a problem though because the target date for the project, which uses this ABAP proxy, is supposed to be in the production system before the date when the basis release will be done in the production system.  Obviously this will cause delays in my project since if I were to move my objects to production before the basis release a dump/syntax error will occur in production because the class CL_PROXY_CLIENT is not expected be production yet.
    The next plan is to try to use CL_PROXY_BASIS instead of CL_PROXY_CLIENT, by editing my ABAP Proxy Class be force. My question is, what steps do I need to take so that I can change these classes so CL_PROXY_BASIS will be referenced/used instead of CL_PROXY_CLIENT ?
    I hope to hear from all of you soon.
    Regards

    >
    Rich Heilman wrote:
    > Bad idea.  Your dev and prod boxes should be at the same basis level at all times. 
    >
    Which release and SP level are you still on?

  • How to use 0EC_CJOB_ATTR instead of 0JOB_ATTR  in 2004S ECC HR?

    Situation:
    We did some enhancement (addition of fields) to the datasource 0EC_CJOB_ATTR. All the changes made to  0EC_CJOB_ATTR appear in 0JOB_ATTR as well.
    1. But when trying to extract data in /nRSA3, 0JOB_ATTR is erroring out and 0EC_CJOB_ATTR does not give any data eventhough ECC maintains some data for some particular PERNRs. Is there any suggestion on what could be the reason?
    2. In the standard cubes like 0PA_C01, 0JOB is used as a characteristics. What is the process to use 0EC_CJOB instead of 0JOB so that we can use the standard cubes and associated queries without customization? Any thoughts?
    Thanks
    Raj

    HI experts,
    Any thoughts? We desparately need some direction!!!

  • How to use 0EC_CJOB_ATTR instead of 0JOB_ATTR  in 2004S ECC HR BI?

    Situation:
    We did some enhancement (addition of fields) to the datasource 0EC_CJOB_ATTR. All the changes made to  0EC_CJOB_ATTR appear in 0JOB_ATTR as well.
    1. But when trying to extract data in /nRSA3, 0JOB_ATTR is erroring out and 0EC_CJOB_ATTR does not give any data eventhough ECC maintains some data for some particular PERNRs. Is there any suggestion on what could be the reason?
    2. In the standard cubes like 0PA_C01, 0JOB is used as a characteristics. What is the process to use 0EC_CJOB instead of 0JOB so that we can use the standard cubes and associated queries without customization? Any thoughts?
    Thanks

    HI experts,
    Any thoughts? We desparately need some direction!!!

  • How to use SUBROUTINE in ' PROGRAMMING LINES'code of a smartform

    Hi all,
    i used a subroutine (PERFORM statement ) in 'Programming Line' node of a smartform .
    Then i put the 'FORM ENDFORM ' in 'SUBROUTINES' node of GLOBAL data.
    In Programming line i used
       PERFORM READ_TEXT using p_id p_lan p_obj.
    In SUBROUTINE node of GLOBAL data, i used
    FORM READ_TEXT using p_id p_lan p_obj.
    ENDFORM.
    While executing, my control is going to FORM ENDFORM  & i can see the data in the
    table T_TDLINE while my control is inside the FORM ENDFORM.
    When it comes back to my Programming NODE, there is no data in T_TDLINE table.
    can anyone tell me how & where to define this table T_TDLINE so that i can get the data
    in in my coding lines after PERFORM statement.
    ur Idea is highly appreciated. correct answers will be rewarded.
    Thanks
    pabitra

    1. Define a table in the Global Definiation > GLOBAL data:
    T_TDLINE TYPE TTTEXT.
    2. PERFORM READ_TEXT tables T_TDLINE using p_id p_lan p_obj.
    3. FORM READ_TEXT table IT_TDLINE type TTTEXT
    using p_id p_lan p_obj.
    ENDFORM.
    Now, you will be able access your data in T_TDLINE.
    Regards,
    Naimesh Patel

  • How to use the telnet command line in Labview

    Hi, someone can help me, I need to use a Telnet session in Labview but without using the http protocol, in this application I can only access the Telnet session using command line, here is an example of how I can access:
    From my computer, click on Start, then Run and then type in CMD.
    In the command line enter “telnet 192.168.0.1 5454” (without the quote marks) to bring up a blank DOS screen with a blinking cursor.
    Type “AT” and press the ENTER key, you should receive an “OK” response.
    Type in capital letters “AT+CMAR=1234” (without the quote marks)

    I had a similar situation and here is what I did...
    In MAX (Measurement and Automation eXplorer)
    Select Devices and Interfaces
    Select VISA TCP/IP Resources
    Create a new resource
    Select Manual Entry of Raw Socket
    Enter the IP address and port (23 is the standard telnet port)
    Give it a name. (VISA Ailas)
    Now this "Device" will show up in the VISA drop down just like any other VISA device.
    Use the VISA read and write just like you were communicating through a com port.
    Since Telnet does not have a stop bit like serial, make sure you enable the termination character.
    On your VISA reads set the number of characters to a big number, then VISA will read until it gets the termination character.
    See my attached snippet of my Telnet read vi
    Message Edited by RTSLVU on 06-16-2010 01:49 PM
    Message Edited by RTSLVU on 06-16-2010 01:50 PM
    Attachments:
    telnet.png ‏40 KB
    max1.png ‏33 KB
    max2.png ‏31 KB

  • How to use icon instead of bitmap for image on button in toolbar?

    Hello,
    I am trying to use an image that has a transparent background on one of the buttons on our custom toolbar in Adobe Acrobat.
    In the past we have been using the following code with Bitmaps to display the image and it has worked perfectly:
    ======================================================================
    AVIcon icon = LoadBitmap(gHINSTANCE, MAKEINTRESOURCE(IDB_OPTIONS_LARGE));
    toolButton = AVToolButtonNew(ASAtomFromString("IMGR:Options"), icon, true, false);
    ====================================================================
    Background info on the other objects:
    V0200_DATA* dataPtr = (V0200_DATA*) windowsData;
    gHINSTANCE = dataPtr->hInstance;
    Resource File:
    IDB__OPTIONS_LARGE BITMAP "Resources\\ImageOptions_Large.bmp"
    IDI_ICON1 ICON "Resources\\Image_Icon.ico"
    Unfortunately, these bitmaps are not transparent and end up showing the white background instead of the transparent one.
    I have tried using Icons and PNGs as my image but I have been unable to get anything to show up. Here is the code I am using to get the AVIcon:
    ===================================================================
    AVIcon icon = LoadImage(gHINSTANCE, MAKEINTRESOURCE(IDI_ICON1), IMAGE_ICON, 0, 0, LR_DEFAULTSIZE);
    ===================================================================
    However, no image appears on the toolbar. I am able to use LoadImage with the bitmap, but I am unable to make it transparent, even when using the LR_LOADTRANSPARENT flag.
    If anyone can point me in the right direction I would greatly appreciate it!
    Thanks,
    Ryan

    I got it worked with PNG file. I got transparent backgrounds in toolbar and menus.
    below is my code,
    HRSRC resource = FindResource(gHINSTANCE, MAKEINTRESOURCE(IDB_SAVE_21_PNG), L"PNG");
    if( resource == NULL )
         //Unable to load resource
    DWORD resourceSize = SizeofResource(gHINSTANCE, resource);
    HGLOBAL glob = LoadResource(gHINSTANCE, resource);
    LPVOID resouceArray = LockResource(glob);
    ASUns8  *data = (ASUns8*)ASmalloc(resourceSize + 1);
    memcpy(data, resouceArray, resourceSize);
    AVIconDataRec  iconData;
    iconData.dataStm  =  ASMemStmRdOpen(( char  *)data, resourceSize);
    iconData.eColorFormat  =  kAVIconColor;
    void * iconBundle = AVAppCreateIconBundle6(kAVIconPNG, &iconData, 1); 
    AVToolButtonNew (ASAtomFromString("PFXDOC:Pfx_DocumentToolSave"),
                                            iconBundle, true, false);
    Thanks & Regards
    Prakash

  • How to use header information in line records while inserting into table?

    Hi,
    Requirement: Data in flat file needs to be loaded into Oracle Tables.
    File has header information (basically file information, some account info) and Line information ( Actual data need to be loaded to oracle tables).
    File has position based data, first 2 char for Header is 00 and line is 50
    Now, header has some extra info which needs to be loaded along with details lines ( This has to be done using sql loader control file).
    What should be the control file logic to capture header information in details lines?
    Please suggest.
    I am calling this control file from Unix, so I can change the control file definition dynamically by retrieving the first line of the data file and modify the control file before executing the sql loader command. Is there any option to achieve this using SQL LOADER commands?
    Thanks,
    Venkat.

    Pl post details of OS and database versions.
    Use the WHEN clause to load header and detail lines into separate tables, then write PL/SQL code to perform needed post-processing.
    See the examples in section titled "Distinguishing Different Input Record Formats" here http://docs.oracle.com/cd/E11882_01/server.112/e22490/ldr_control_file.htm
    HTH
    Srini

  • How to use Mic with RCA Connectors?

    I use iTunes and Nicecast to do an Internet radio show.  I have tried using a usb headset with an attached mic.  However, the sound is rather tinny compared to my old headset that I used on my PC.  Are there any connectors I could buy where I could use my old rca headset and have a usb plug for my iMac?  Even if there is such a connector, will it work, or sound any different?  Just wish I could plug in the headset and mic directly into the Mac.  Would appreciate any suggestions.
    Thanks

    Not without getting an adaptor such as the iMic. iMic Support | Griffin Technology.

  • How to use Mic of Webcam like a normal mic connected to the soundcard ?

    - I installed my Creative Webcam with mic in it in my living room- now I want to have a hall-effect from my X-Fi Elite Pro to it. My Goal is:I want to say something in my living room => and now it gives me a little hall to it in realtime like I use a normal Mic connected direkt to my soundcard.===> so my living room will sound much much bigger than it is And another scenario:I want to listen in realtime whats spoken in my living-room, that I can better answer to my folks hanging around,?when I'm in my bedroom (speakers and Monitor are connected to the same PC like my TV and Speakers in the living-room)? Thanks for your answers and ideas

    http://osxdaily.com/2010/09/04/make-free-iphone-ringtones-in-itunes-10/
    https://discussions.apple.com/message/17777381 - making a ringtone
    Getting ringtones folder to show in iTunes - https://discussions.apple.com/thread/2629494 - iTunes > Preferences. Under the General tab below Show, confirm Ringtones is selected

  • How to use checkboxes instead of radio button in datagrid

    I have a datagrid. I have two checkboxes in datagrid.That checkboxes should act like radio button.ie we can select only one checkbox at a time. If we select second checkbox,then the first selected checkbox should deselected.How to handle this scenario.Please give some code samples.
    Thanks & Regards
    kvpdy

    You could do that, but it will be a lot easier doing it from the data model. This way you don't have to modify the behavior of the chart, it just blindly renders the data given to it. Behind the scenes you're dealing with boolean values, so it's pretty easy to write setters accomplish this.
    public function set myAttribute(value:Boolean):void
         setAttributesTiedTogetherToFalse();
         _attrib = value;

  • How to use rtp to transmit data other than audio / video

    hi all,
    as you all know the jmf is based upon a specific paradigm:
    data source -> player (processor) -> renderer.
    i am not being very precise on this but that does not matter.
    i want (for testing purposes) to create a tool that transmit some custom data
    (maybe even nonsense) over the rtp packages.
    so as you may now see this would not work quite right with the mentioned
    paradigm since there would be no audio/video to play-process-render.
    so how would i go about to utilise the rtp abilities of the jmf without adhering
    to the whole player-whatever shebang.
    what i have figured out is that there is a way to transmit custom rtp-payload.
    there is even an example on the jmf solutions page but even this one uses
    an audio format (pcm).
    i hope what it is clear to the dear reader what i want to do and maybe some-
    one can help me with this.
    p.s. i am not one who wants to get the whole source code (like so many
    others do on this forum) for a project someone may have done on this, what
    i need is a hint in the right direction.
    thanks for your attention and thanks in advance for any useful hints.

    Hi, I would like to make some comments that may help
    you to find out how to manage your problem.
    If you have a look to the JMF 2.0 API, Guide,
    "Understanding the JMF RTP API", Figure 8-2
    http://java.sun.com/products/java-media/jmf/2.1.1/guide/RTPArchitecture.html#105171
    you can notice that the processor is not essential.
    In this pciture, the processor is inserted between two datasources,
    to let you perform some operations on the media that is read from
    a file or a capture device.
    But the SessionManager just needs a DataSource.
    With what you say, I can imagine that you want to transmit
    real-time data that is not related to standard media formats.
    In principle, the only think you must do is to extend the
    javax.media.protocol.DataSource abstract class and implement
    it at your own convenience.
    Once your custom class is written, you can call the SessionManager's
    method createSendStream(DataSource ds, int streamindex) passing
    for argument an instance of your mentioned custom implementation.
    Hope this helps.
    Good Luck ;-) !

  • How to use layer masks to separate line art from white background

    How to use layermasks to separate line art from white background

    Probably better to use Blend modes rather than a layer mask.  Try setting the blend mode of the line art layer to Darken for instance.  If you do want to use a mask, take a look at individual channels, and copy the channel with the best contrast.   Then load the selection  of that copied channel, select the line art layer, and add the layer mask.  You will probably need to invert the mask. You will probably find that the line art is a greyscale image, and need to go to Image > Mode > RGB before you can use Channels.

Maybe you are looking for

  • While transfering to flash drive I get this message Could not find this item,no longer located in I:

    Hp touchscreen model #310-1125y

  • Nokia 5130XM: Problem with updated software versio...

    i have updated my nokia 5130c  xpress music with version v7.97. after updation i got that my music player's library updation speed get more faster then before but i have lost screen saver option and also lost power saver option. my music player also

  • Sap Mobile platform Tutorialst

    Hello,           I need to consume the sap backend in android,this can be possible by using the "SAP Mobile Platform and SAPR3<>NetWeaverGateway<>SUP-ODP<>RelayServer<>Device".I already registered with the open sap, i have done  the self study for th

  • CS4 not opening any kind of image

    Hi there, I have a problem which for the life of me cannot figure out. Whenever I load Photoshop CS4 and go to open a saved image - no matter what format it is - I get the preview image at the bottom of the Open window dialogue and when I hit Open no

  • OSMF 1.5 RTE

    I'm trying to upgrade my AS3 only application from OSMF 1.0 -> 1.5 but I'm getting the following RTE: VerifyError: Error #1053: Illegal override of defaultFactory in mx.styles.CSSMergedStyleDeclaration. I've taken a look at my settings and it seems t