I need select a frameGrabber for jmf, please.

Hi. I'm student, and I need a FrameGrabber compatible with java media framework, (for example Pinnacle Studio AV/DV, or Matrox AV/DV).
The important is : as which type serves to me ?. I want a recommendation.
PS : the price, between US$50 to US$130. this Card must give a resolution of 640x480 to 24 fps, or better.
PS2 : I am working with Win Xp, intel Pentium III 500Mhz, 256Mb RAM, mother Board ASUS p3v133, j2Se 1.4.2.
Greetings.

Take a look at the PushBufferStream interface

Similar Messages

  • I try to make update for my iphone and start showing itunes need to be connected and never start and i connect my phone on itunes but it say need to be format for phone .please help me .

    I try to make update for my iphone and start showing itunes need to be connected and never start and i connect my phone on itunes but it say need to be format for phone .please help me .

    Hello Huss87bash,
    This screen indicates that the device is in recovery mode, and must be restored in iTunes before it can be used again.
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    Once the device has been restored, you should be able to restore your device from a backup to replace all of your content and settings.
    iOS: Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/HT1766
    Cheers,
    Allen

  • Account needs sorting once and for all PLEASE!

    Hi, I have sent an email to moderators here as I did last time. Last time I was given a rebate, for incorrect bill. My bill AGAIN has not been worked out correctly. To be frank I am fed up of rubbish BT not sorting out my problems since September last year.
    One thing cannot be done at a time, my whole account especially online is all in a mess, nothing is as it should be, and someone needs to go on a computer to go through it with a toothcomb to fix it. Rebate on a bill is not going to change the fact my bills are being generated incorrectly. STILL!
    I wish to SPEAK by phone to anyone who can fix this as I am not going to continue this way with BT, and if they even try to charge me for no honouring my side of the contract, then I shall end up taking this up with a solicitor. I have even been charged £10 on my new bill for not honouring my direct debit, considering one of the foreign advisors had promised my bill would not go out my bank, but it did try to, twice and I was charged £50 from my bank, and you even try to charge me £10 for YOUR mistakes.
    I am fed up. I have 8 months left on this so called contract. I do not intend to go on like this for that amount of time. I want my account sorted out once and for all PLEASE!
    I apologise to you forum admin, and I know this is NOT your error, I am merely really frustrated at the lack of communication to fix my problems and have spoken via phone 3 times since my last forum entry to try fix my online account, and have been promised again it would be fixed and it is not.
    Thank you

    Hi thebillies,
    We were looking into this for you and had reported a fault to try and get to the bottom of the discrepancies.
    I'll make sure that you get an update on this later today.
    Thx
    Craig
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)”
    td-p/30">Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Need Selection variable name for "System Year - 1"

    Hi All,
    I have Fiscal Year field in the selection screen of a custom program. The value of this field comes from system variable.
    I need to create a variant where this fiscal year should have the value "Current year - 1".
    This has to be done using Selection Variable. Currently there is no such variable in the F4 help (TVARV table).
    Please tell me if there is a way to get such a selection variable...

    Hi Tolga,
    The selection screen parameter is defined as:
    parameters: p_gjahr        type gjahr obligatory memory id gjr,
    I cannot use the FM in the AT SELECTION SCREEN ON VALUE-REQUEST.
    When you create a variant for the program.. click button "Variant Attributes" - Here the checkbox for Selection variable is ticked for this field. Now click "Selection Variables". here we can provide the variable name which comes from TVARV table.
    I need this Selection variable. I am not allowed to do any program changes.

  • Needed  selection screen validation for all entries in the range

    Hi all,
    I'm using the below code for Material validation in selection-screen.
    SELECT SINGLE MATNR FROM MARC INTO MARC-MATNR
      WHERE MATNR IN S_MATNR.
      IF sy-subrc NE 0.
        MESSAGE e000(su) WITH text-035.     "Invalid Material Number
      ENDIF.
    This validation is working only for one record in the range.
    If I give multiple material numbers in the range having a record which doesn't exist in MARC, its not throwing the error.
    Seems like loop should be placed at s_matnr. Is that correct procedure or any pointers on the same would be of great help.
    Regards,
    Vamsee Priya.

    Hi priya
    Use this way,
    REFRESH IT_LIPS. CLEAR IT_LIPS.
      SELECT VBELN
             POSNR
             MATNR
             WERKS
             LFIMG
             ARKTX
             VGBEL
             VGPOS
             BWART
             FROM LIPS INTO TABLE IT_LIPS
             WHERE PSTYV IN
       ('ZZTC', 'ZTAD', 'ZMVN', 'ZCVA', 'ZCVB', 'ZCVC') AND "ASR 18721
                   WERKS IN ('1140', '1143', '1149').
      IF IT_LIPS[] IS INITIAL.
        MESSAGE E000 WITH TEXT-005.
    endif.
    revert back if you need any help..
    Help us to help you, Manas

  • Need help with a for loop please

    Hello,
    I want to do the following:
    double V[][] = sphere.V2;
    double polygon[][][] = {
         { V[0], V[1], V[2] },
    { V[1], V[2], V[3] },
    { V[2], V[3], V[4] },
    { V[3], V[4], V[5] },
    { V[4], V[5], V[6] },
    { V[124], V[125], V[126] },
    How can I set up a loop to initialize the values of polygon so that I dont have to type it all out?
    Thanx a lot
    -Big_Goon

    Any suggestions?
    -Big_Goon

  • How to use the select statement in for loop

    Hi All,
    my question is can we use select statement in for loop like as follows .
    for key in select key from one_table.
    when i am using this am getting an error like Found select invalid i identifier
    how to make use of select statement in for loop
    please suggest me .
    Thanks
    Sree

    SQL>set serveroutput on;
    SQL> DECLARE
         BEGIN
         FOR Cur_Rec IN (SELECT dname FROM dept) LOOP
          DBMS_OUTPUT.PUT_LINE(Cur_Rec.dname);
         END LOOP;
         END;
    SQL>
    ACCOUNTING
    RESEARCH
    SALES
    OPERATIONSAs per your requirement always filter the Query beforehand
    Like
    FOR Cur_Rec IN (SELECT key FROM <table> WHERE key=1) LOOP
    END LOOP;Edited by: Lokanath Giri on १ दिसंबर, २०११ ३:५६ अपराह्न

  • Need a drop down for a selection screen

    HI all,
    I need a drop down for a selection screen.
    say for eg: Field is MARA-MTART   (Material Type). The selection is optional and the dropdown should be using check table: T134
    How to get a dropdown? I think a function module is used , but I dont remember the name.
    Kindly reply.
    Thanks in advance.
    Points will be rewarded

    Hi,
    chk the below code...
    TYPE-POOLS: vrm.
    PARAMETER: pr_spart TYPE spart AS LISTBOX VISIBLE LENGTH 7.
    *AT SELECTION-SCREEN ON VALUE-REQUEST FOR pr_spart.
    INITIALIZATION.
    *----Code for Drop down list....
      DATA: lit_spart_list  TYPE vrm_values, "Table for list of Divisions
              lwa_spart_list TYPE vrm_value,
              lw_name  TYPE vrm_id.            "Name of parameter with list-box.
    *---Assign selected values to table that would be passed to FM VRM_SET_VALUES
      CLEAR : lwa_spart_list,
              lw_name.
    *---Pass required values for list-box display.
      lwa_spart_list-key = 'H'.
      lwa_spart_list-text = 'HL'.
      APPEND lwa_spart_list TO lit_spart_list.
      lwa_spart_list-key = 'S'.
      lwa_spart_list-text = 'SL'.
      APPEND lwa_spart_list TO lit_spart_list.
      lwa_spart_list-key = 'P'.
      lwa_spart_list-text = 'PP'.
      APPEND lwa_spart_list TO lit_spart_list.
      lwa_spart_list-key = 'F'.
      lwa_spart_list-text = 'FR'.
      APPEND lwa_spart_list TO lit_spart_list.
    *Name of parameter to which list is to be assigned
      lw_name = 'PR_SPART'.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = lw_name
          values          = lit_spart_list
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Reagrds,
    nagaraj

  • Hello, I bought my iphone in japan. And now I'm in Brazil and I use it here, I need the unlock code for me to use here. please

    Hello, I bought my iphone in japan. And now I'm in Brazil and I use it here, I need the unlock code for me to use here. please

    williamjapa wrote:
    Hello, I bought my iphone in japan. And now I'm in Brazil and I use it here, I need the unlock code for me to use here. please
    Only the carrier to which the phone is locked can authorize an unlock. None of the Japanese carriers will do that. Sell the phone and buy one that works in Brazil.

  • HT1454 I need a car charger for my Apple Iphone 4 S, which is suitable please

    Hello everyone!
    I need some help please, I have a battery charger for my Iphone 4S for the outlet at home. I also do need a car charger for the mobile phone, which one will be suitable for my Apple phone, can anyone advice please?
    It is a pity that Apple have not designed one, for my old Samsung and Ericson there were car chargers as well, why do we not have one from Apple?
    Looking forward for some answers, thanking you all in anticipation.
    Have a great day!
    Cheers,
    from nordigfromdownunder

    Thank you very much for a quick response, I will now only have to go and see if I can find this Griffin or Targus here in Australia.

  • HT4972 i am trying to download some apps onto my iphone 3gs and it keeps saying i need to update it for this but ive trying and there is no update option on the phone or through itunes, it keeps saying its up to date, can anyone help please?

    i am trying to download some apps onto my iphone 3gs and it keeps saying i need to update it for this but ive trying and there is no update option on the phone or through itunes, it keeps saying its up to date, can anyone help please?

    Would this matter then? can you not update the 3g to the lastest software?

  • We need IOS 4.0 for the ipod touch 1st generation not everybody have money to get a new version of ipod touch to used the most important social networks ... please think about it and i would grateful if i can use my old ipod touch .. Thanks :)

    We need IOS 4.0 for the ipod touch 1st generation not everybody have money to get a new version of ipod touch to used the most important social networks ... please think about it and i would grateful if i can use my old ipod touch .. Thanks

    Sorry, the fellow users in the forum hae no way of making that happen. The maximum iOS for a 1st generation unit is 3.1.3
    Stedman.

  • I need an offline install for firefox v26, can you please advise where I can get this?

    I need an offline install for firefox v26, can you please advise where I can get this?

    Hi haydenr,
    It's best to use the latest version of Firefox if you can, but you can download Firefox 26 here:
    http://download.cdn.mozilla.net/pub/mozilla.org/mobile/releases/26.0/android/
    Just choose your locale (British English is en-GB, American English is en-US, etc) and then click the link for the apk file. :)
    Hope that answers your question!

  • What happened to Reunion?  need better options for genealogists, please.

    We need better options for genealogists, please.  What happened to Reunion???

    apologies for obtuse question.   Reunion is apparently no longer available from App Store.  Family Tree Maker is now available for MAC but  is not getting good reviews.  I have used both.  FYM on PC and then switched to Reunion, because  FTM was not available in 2008 when I got my Mac.
    Now I note that Ancestry is in cahoots with FTM so am tempted to switch again  but put off by the poor feedback.  
    I thought that Reunion was also available for Iphone but not FTM??

  • Please, We need a new iOS for our ipod nano gen 6, with appearance like iOS 7

    We need a new iOS for our iPod nano gen 6, with new functions and appearance. Please don`t forget it.

    The Nano's do not run iOS.

Maybe you are looking for

  • Consistency Warning - [39008] Dimension Table not joined to Fact Source

    I have a schema in which I have the following tables: A) Patient Transaction Fact Table (i.e. supplies used, procedures performed, etc.) B) Demographic Dimension table (houses info like patient location code) C) Location Dimension table (tells me wha

  • Problem converting word 2010 Document

    I am having a problem converting a Word 2010 document using Live Cycle Designer ES2. I get the following error msg: Word (version XP onwards) could not be found Word 2010 is installed.

  • Open local PDF in browser (Folio)

    I'd like to include a PDF in my publication (local, not online). When you click a button in the publication, this PDF needs to be displayed in the internal Folio browser. Is this possible?

  • Error in ACT_UPG (7.0) because of old lock objects E_BAMMAPNG / E_BAMUIBT

    I have errors in upgrade phase ACT_UPG  because 2 lockobjects could not be activated, because referenced basetables are not there u2026u2026. 3 DDI806XAktiviere Sperrobjekt "E_BAMMAPNG" 1EDDI751 Basistabelle "BAMMAPFCGR" des Sperrobjektes ist nicht a

  • What's the best font management system?

    I am running Indesign CC on Imac with OSX 10.9.2 with Suitcase Fusion 5. We have several thousand fonts (which are all legal) but a lot are not working for one reason or another (probably old/corrupt) I am in the process of purchasing the newest Adob