Expert help needed [createProcessor(myDataSource) + codec]

Dear Expert,
I have a huge problem with the following command
Manager.createProcessor(this.dataSource);
When this.dataSource is created by:
Manager.createDataSource(MediaLocator);
I am capable to add a codec during the configuration of the processor. And the codec is working fine.
However if this.dataSource is my own PushBufferDataSourceWrapper (which contains the original datasource and implements MonitorControl)
the processor is still created the codec is initialized but NEVER accessed...
So now I have either a processor with a DataSourceWrapper and I can 'preview' the image that my webcam is capturing OR
I don't have my preview but my Codec works ...
I want them both!
Probebly I am missing something so if some of you has an example where there is a custom made datasource and a working codec all in one processor I would like to have a copy of your code for investigation.
Or is this an ERROR in JMF? (Threads that doesn't come alive...)
Thanks in advance
(and goodnight)
Peter

PeterYou probably need to use two "DataSource"s (Manager.createClonableDataSource(ds)) and two processors.
One processor is then a player (previewer) and the other is the capturing processor. There is an example on the JavaSoft JMF web site of previewing and capturing at the same time.
Dave

Similar Messages

  • Expert help needed to connect iPhone / iPad using BlueTooth and Wi-Fi

    We need expert help to connect iPhone / iPad using BlueTooth and Wi-Fi. If you have worked with Apple MFi Program [http://developer.apple.com/programs/mfi], or have expertise/experience in this, please contact me. Thanks! Kevin.

    Hi there.
    I connected to my livebox after about three attempts. You have to pair the livebox by pressing either the number one or two that is on the box. When it is in pair mode it stays that way for ten minutes so it gives you chance to try your wep code that is on the bottom of the box a few times. I can't remember which one was successful but i did try the letters in uppercase and lower and one of them seemed to connect.
    Welcome to discussions by the way.
    Hope this helps JB

  • Dear experts help needed in creation of report in hr

    Please check the below code.
    There is one Transaction code PA20 from these i need the fields in my report.
    I tried writing the report but the fields are from structure so please help in creating the report.
    I am a beginner so i donno how to find the below fields are coming from which table.
    when i do F1 on the fields in PA20 i found the fields but they are from structure.
    type-POOLS: SLIS.
    TYPES : BEGIN OF TY_P0001,
            PERNR TYPE PERNR_D,      "Personnel Number
            BEGDA TYPE BEGDA,        "Start Date
            BUKRS TYPE BUKRS,        "Company Code
            ENAME TYPE EMNAM,        "Formatted Name of Employee or Applicant
            END OF TY_P0001.
    TYPES : BEGIN OF TY_P0016,
            PERNR TYPE PERNR_D,      "Personnel Number
            PRBZT TYPE PRBZT,        "Probationary Period
            CTTYP TYPE CTTYP,        "Contract Type
            END OF TY_P0016.
    TYPES: BEGIN OF TY_P9210,
             PERNR TYPE PERNR_D,
            ZTICKET_AMT TYPE ZTICKET_AMT,  "Ticket Amount
            END OF TY_P9210.
    TYPES : BEGIN OF TY_OUTPUT,
             PERNR TYPE PERNR_D,      "Personnel Number
             BEGDA TYPE BEGDA,        "Start Date
             BUKRS TYPE BUKRS,        "Company Code
             ENAME TYPE EMNAM,        "Formatted Name of Employee or Applicant
             PRBZT TYPE PRBZT,        "Probationary Period
             CTTYP TYPE CTTYP,        "Contract Type
             ZTICKET_AMT TYPE ZTICKET_AMT,  "Ticket Amount
            END OF TY_OUTPUT.
    DATA:  T_P0001 TYPE TY_P0001 OCCURS 1,
           W_P0001 TYPE TY_P0001,
           T_P0016 TYPE TY_P0016 OCCURS 1,
           W_P0016 TYPE TY_P0016,
           T_P9210 TYPE TY_P9210 OCCURS 1,
           W_P9210 TYPE TY_P9210,
           T_OUTPUT TYPE TY_OUTPUT OCCURS 1,
           W_OUTPUT TYPE TY_OUTPUT.
        START-OF-SELECTION.
            SELECT PERNR
                   BEGDA
                   BUKRS
                   ENAME FROM P0001 INTO TABLE T_P0001
                   WHERE
                    AND  BUKRS IN S_BUKRS
                    AND  BEGDA < '31032007'.
              SELECT PERNR
                     PRBZT
                     CTTYP
                     FROM P0016 INTO TABLE T_P0016
                     FOR ALL ENTRIES IN T_P0001
                     WHERE PERNR = T_P0001-PERNR
              SELECT PERNR
                     ZTICKET_AMT
                     FROM P920 INTO TABLE T_P920
                     FOR ALL ENTRIES IN T_P920
                     WHERE PERNR = T_P0001-PERNR.

    use logical data base PNP.
    tables: pernr.
    infotypes: 0001, 0016, ....
    start-of-selection.
    get pernr.
    here all tables Pxxxx defined as INFOTYPES are filled for the selected PERNR.

  • Expert help needed!!!!Screw It Some help!!

    I unplugged my ipod nano from the computer to go to bed then i woke up and all the songs were deleted.! I went to go add all them bak and i couldnt!! PLZ HELP ME!!!
    ~T Jones

    If they aren't in the library, you need to go to your iTunes folder and import them again. Those songs may also be in your trash bin.

  • Expert help needed with tricky query

    I have a query database with a real simple schema but a tricky requirement: i need to display records with a simple select but then filter the result based on the authority/access level of the user making the query.
    The source data is held in a table with just the following columns:
    SRCTABLE:
    subject_ID
    date
    data_ID
    data_item
    All column types are text strings and the first 3 are a composite key. There are 10s of millions of records in the table.
    The access authorization is held in another table with the following columns:
    ACCTABLE:
    data_ID
    access1
    access2
    accessn
    The ellipsis means there are as many (boolean type) access1...n columns as there are distinct access levels to the source data.
    The table contains one row for each distinct data_ID appearing in the source table. On each row the TRUE values in the access1...n columns indicate authorization to see the data item and the filter should leave that row in the result set.
    The question then is how to write the query statement? It is assumed that the access id (i.e. the relevant column) is known when the query is made.
    Something like
    SELECT data_item FROM SRCTABLE
    WHERE subject_ID="xxx" AND date = "1/1/2000";
    would do it except for the need to filter each row based on the access authorization of the user.
    Any help would be appreciated.

    Thanks everybody for responding.
    APC has a good point about really protecting every single item type separately. Unfortunately this is precisely the case. The security in this case is not oriented to increasing security in a levels oriented way. Rather each kind of item is protected by a need to know type security related to that particular item. Users are classified by their need to know a combination of the item types and those combinations are not in any sense consistent (and there will be new classes over time). This way access control necessarily becomes a matrix of item types vs access classes.
    Fortunately this particular database does not exist yet so i am free to solve the problem in any way that fulfills the requirement. This is just the suggested form. I am not entirely happy with it hence the question on this forum in the first place.
    So, i appreciate it should you have any further suggestions for optimal solution to handle the requirements. Again, those are:
    1. A query that returns the data_items for a given ID and date (this is dead simple)
    2. A filter (preferably in the query) that filters out those data_items the current user (his/her access class is known) is not authorized to see.
    3. The plan calls for a table listing every possible item type with a column for each access class, enumerating the items allowed for that class. Any other solution to this issue would be acceptable provided it is capable to independently validate any single item type against any access class.
    I hope this makes sense.

  • Expert Help needed with Sql Loader !

    Hello Friends...I am using one .dat file that contains several values in a
    particular column and I need to load those values in different tables with
    sqlloader.....For example: in column 3 there are values 0001, 0004, 0007, 9999
    ..> values 0001 and 0004 need to be loaded into table1 and value 0007 is
    loaded into table2 and value 9999 needs to be loaded into table3.
    I can successfully use the when clause to load one value at a time but
    cannot load a range or multiple values during the sqlloader load. I can
    call and run separate .ctl files but less complexity and fewer files would
    be better. Tried everything I know but no luck, can't do loads in same
    .ctl file......Does the when clause have limitations whereby only one value
    at a time can evaluated as True or False ?
    I would like to do a Not or InBetween evaluations if possible on that
    single coulmn and then do the loads in the specific tables.
    Any help would be appreciated as I can see my hair turn grayer by the
    minute..My thanks in advance..

    You're asking sql*load to perform an unnatural act.
    Load in you dat file as-is. Create a pl/sql procedure to do the rest.
    Your batch script calls sql*load, then sql*plus to run the proc.
    Must simpler. sql*load is not a procedural language.

  • Expert help needed-grant user permision in Applet

    Hi
    im writing an Applet that needs to read and write files on user's local machine.
    As far as i know i guess i need to grant users permissions. I would like to do it in the easiest way for him(so he wouldnt need to change his policy file manualy, but clic on 'ok')
    First of all, is it the only way to do that?
    And above all, how to do that?
    Could anybody tell me exactly how do i get my applet signed step by step?
    Please, a beginer needs help here, it would be great if anybody could tell me how to do that STEP BY STEP.
    I have read several post about it, but none was clear enought for me.
    If someone could give a hint or a sample code it would be very appreciated.
    thanx a lot :)

    see http://java.sun.com/docs/books/tutorial/jar/sign/signing.html
    To summarize:
    1) Use keytool to generate a key
    keytool -genkey -keystore mystore -alias myaliasFollow the instructions given, i.e, fill all the blanks.
    2) Use jarsigner to sign your jar
    jarsigner -keystore mystore my_jar_file.jar myaliasBut you are really skipping everything which you need to understand.

  • Kontakt 2 expert help needed...

    hello all, a nice big prize (and by that I mean no actual prize) goes to whoever can help me with the following dilemma:
    am opening a logic song created on another machine which was using kontakt 2 externally in standalone mode, connected to logic over the IAC bus. so, there are a whole bunch of midi-only tracks that send notes to the appropriate instrument within a large kontakt multi instrument externally.
    what I need to do is to open this song (on another machine), instantiate kontakt 2 internally, as in, as an audio instrument track in logic. then I need to load in the same multi instrument bank as in the original song. then I need to make all of the midi tracks send their notes to the correct instruments, but this time running as an AU audio instrument inside logic, not in standalone.
    I am having a hard time figuring out how to do it.. the original song contains several environment multi-instruments, each one corresponding to a back of 16 sounds in kontakt. I can't seem to find a way to reassign the midi of these multis so that they go to an audio instrument in logic. am stumped. have even tried dumb things like cabling the multi directly to the audio instrument channel strip, but it doesn't work properly.
    if anyone out there knows what to do, please enlighten me!
    cheers...

    btw, the reason why I'm not just using it in standalone mode outside of logic like on the other setup is because that for some reason today, the standalone of kontakt died.. it only seems to half open, no interface loads up, only a few menu bar items appear and it just plain doesn't work. tried reinstalling etc, no dice. and yet the plug in version still works.
    I am rapidly becoming a kontakt 'why bother?' fan club member. as if the interface wasn't ugly enough.. not to mention oops I accidentally deleted a WHOLE instrument cos I hit the delete key while the interface was topped, when I meant to be deleting something in logic.. grr...

  • Expert Help Needed for Preventive Plan Creation

    Hi,
    I'll need to set up a preventive maintenance plan for a performance based cycle which has a different task for 2500hrs, 5000hrs and 7500hrs with a single measuring point. How should I set up using strategy plan (IP42)? Following is the example of counter reading and its tasks to performed:-
    2500H - Task 1
    5000H - Task 2
    7500H - Task 3
    10000H - Task 1
    12500H - Task 2
    15000H - Task 3
    17500H - Task 1
    20000H - Task 2
    22500H - Task 3
    Every 2500H will have a task. And each task will repeat itself from task 1 then 2 then 3 and go back to task 1 again when cycle due. Appreciate any help and advice from you guys.
    David

    David
    you can create a strategy in ip11 with the below hierachy and assign it to task list.  show you a sample:
    package 1  2500hrs  hierarchy = 1 (H1)
    package 2  5000hrs  hierarchy = 2 (H2)
    package 3  7500hrs  hierarchy = 3 (H3)
    Then assign the above package to task 1, task 2, task 3 in opration tab page of ia06, after that the system should work as you expected.
    Hope it helpful.
    Regards,
    Jane

  • Expert help needed: why does my apple id show in app store....

    when I never signed into the app store before... and... it's not even my system...
    OK...story...
    On my clients iMac who is running os 10.5.8 and wishes to uprgade to 10.8, I did the following:
    -installed 10.6 from my image of the 10.6 installer disc on my utility firewire hd
    -after upgrade, I ran software update and installed the 10.6.8 combo update
    -after reboot went to app store(1st time it has been used) and attempted to purchase & upgrade the OS to 10.8 and noticed in the Store menu that my apple Id was there???
    um….
    how did it get there??? So what I then did was:
    -have my client enter his apple id & paswd and sign in
    -when he attempted to purchase then download, a warning appeared - (not exact) 'downloads for the acct <myappleid> are waiting to be downloaded, please complete the downloads before…(wish I made a screen shot)
    The only way around this was to sign back into my apple id and allow mountain lion to download and install.
    Anyways…
    I had him sign into the app store on another mac and mountain liion was not in his list of purchases, but that didn't surprise me.
    What is completely a mystery is why my apple id made it's way into his app store when it was never there before, I mean the system was at 10.5. prior...I'm baffeled
    This is the second time this has happened, 1st time it was when bringing a a client of mine from 10.5.8 to 10.7 with the same steps as above….
    Does anyone have a clue??

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    I would guess that your Apple ID is in the pirated version of Snow Leopard 10.6 that you are installing on their computers to allow them to update to Mountain Lion.

  • Expert help needed with HSlider

    I am using HSlider to filter minimum/maximum product prices from an ArrayCollection and am having trouble with the slider thumbs:
    The thumbs are supposed to appear at the extreme left and right ends of the slider. It works fine when I hardcode the prices in the 'values' property of the slider – say, like this:
    values = "[5.00,100]".
    But when I populate those values from AC data, like this,
    values = "[minPrice,maxPrice]",
    the thumbs both appear, one on top of the other at the extreme left, looking like there is only one thumb. When I drag the maxPrice thumb to the right, everything works as expected from then on, so I know the slider is getting the right data.
    All I need is those thumbs appearing at both ends like they are supposed to.
    Any ideas would be highly appreciated.
    Regards,
    Carlos

    That did it, Peter. I had tried:
    values = "[minPrice,maxPrice]",
    values = "[{minPrice,maxPrice}]" and
    values = "[{minPrice},{maxPrice}]",
    following all the samples I had seen.
    But I never thought of enclosing the whole expression with the curly brackets.
    Thank you very much!
    Carlos

  • Expert help needed to create a PDF which mirrors a real book

    I am trying to turn my book into a PDF.
    Here's the problem: My book is best enjoyed when the pages are side by side because some of the illustrations fill both pages. Unfortunately when I set my Adobe Reader Page Display to Two-Up, the odd numbered pages appear on the left which screws up the illustrations. Needless to say, most books have the odd numbered pages on the right hand side but I can't seem to figure out how to get Adobe Reader to accomplish this.
    Since my book was originally formatted in a six-year old version of Quark Express, I tried to insert an extra page in the beginning, but this royally screwed up the illustrations and threw everything out of kilter.
    Does anyone have some glorious stroke of genius to help me out of my predicament? Thanks.

    >I am looking for the same thing for a stock trading guide that I have written. Please advise.
    Did you read all of the answers?
    Aandi Inston

  • Powershell expert help needed in powershell remoting C#

    im trying powershell remoting for some specific operatons on a  remote computer and  using wsman for the connection options.
     WSManConnectionInfo connectionInfo = new WSManConnectionInfo(false, sharepointHost, 5985, "/wsman", "http://schemas.microsoft.com/powershell/Microsoft.PowerShell", new System.Management.Automation.PSCredential(admindata.Domain + "\\" + admindata.Admin, Helper.ToSecureString(admindata.Password)));
     connectionInfo.AuthenticationMechanism = AuthenticationMechanism.Credssp;
     connectionInfo.ProxyAuthentication = AuthenticationMechanism.Negotiate;
    normally it works fine but sometimes just before the runspace.open command is executed, the machine is pinging with its hostname and when the runspace.open is called, the machine doesnt ping with its hostname and my poweshell code fails with exception "machine
    not reachable"
    then after 1 or 2 restarts it pings back and again at runspace.open it doesnt ping. please make a note that um using credssp as authentication mechanism  so whenever i enable or disable WSMancredssp inshort whenever i run either commands in my powershell,
    the remote machine is again pinging with its hostname.
    then after some hours it runs with no disturbance. and i dont have to bother about WSMancreddsp also
    can any one tell me what could be the possible reason for it, is it with my local system or the remote system. Does it has anything to do with me enabling the Credssp thing??? 
    please help me guys, im totally lost here.
    PS: im running these commands on sharepoint server

    Hi,
    I would like suggest you refer to the below link about running powershell within C#:
    How to call Powershell Script function from C# ?
    http://social.msdn.microsoft.com/Forums/is/csharpgeneral/thread/faa70c95-6191-4f64-bb5a-5b67b8453237
    http://stackoverflow.com/questions/527513/execute-powershell-script-from-c-sharp-with-commandline-arguments
    How to run PowerShell scripts from C#
    http://www.codeproject.com/Articles/18229/How-to-run-PowerShell-scripts-from-C
    Hope this helps.
    Regards,
    Yan Li
    Cataleya Li
    TechNet Community Support

  • Aperture 2 Expert help needed

    Sorry for such a long winded question. I have been using Aperture 2 for awhile with a managed system. I now need to move to referenced (small internal drive). I am relocating masters for each project to my external drive. Unfortunately in my early use of Aperture I inadvertently deleted several master images, not all, I also have CR 2 images (before I knew better) and only have adjusted images left to use as referenced from my mistake of deleting some masters. I found that if I don't include them (or all images in the project) in the referenced masters relocation, that I am unable to do any further tweaking of the images. I need direction on what I should do, or am I doing the relocating correctly. I need to know if I back up referenced images via the vault, what will it back up? Will it back up all referenced images again via the vault or will I have to select all further adjusted images and back up manually? I really need some knowledgeable step by step guidance so I will not lose my library. I did do a backup on a different vault before I began relocating masters and have not backed up anything that I have moved yet to a diffent vault. Thank you in advance, Barbara

    RW and Allen, I understand that the masters need to be backed up separately. As I work through the library relocating master images, I am placing them in a FOLDER on the external drive named Masters, then into a sub-folder with the project name. The images without a CR2 original are being backed up in a Tiff or Jpeg format and I will be able to do some minor further tweaking if needed, but unfortunately not from a raw image. Once I get all the master images referenced onto the external drive, I will then do a vault backup, correct? I need to get ASAP a second 2 Terrabyte drive so I can duplicate the library with a vault (should it be named different on the second drive) and copy the masters over to that drive so I will have a 2nd redundant backup. I do have a smaller external drive, that has most of the library on it as well, before it became full and I did a backup on the larger external before I started moving master images. Another question I have is if I add master images to a current project, if I choose relocate masters will it only move the new images or will I have to select those individually? I hope I have clarified the question. Thanks, Barbara

  • Capture error - Expert help needed

    Hi All,
    I am currently using Asynchronous HotLog Publishing and i am getting the following error under DBA_CAPTURE process
    ORA-01291: missing logfile
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM_INTERNAL", line 842
    ORA-06512: at "SYS.DBMS_CAPTURE_PROCESS", line 397
    ORA-06512: at line 1
    When i do few sql queries like
    SELECT capture_name, queue_name, queue_owner, status FROM all_capture;
    ==status for the queue is "ABORTED"
    SELECT * FROM v$logmnr_logs
    ===This returns no rows.....
    Any help would be appreciated.
    Thanks,
    Sam.

    In what version?
    Did it ever run correctly? Or did it fail during creation?
    This is the AQ forum not the Streams forum. Are you asking about Change Data Capture or something else? Either way it is not AQ.
    If CDC then look here:
    http://www.psoug.org/reference/cdc_demo2.html
    If you are still having issue post to the correct "Streams" thread for help.

Maybe you are looking for

  • Help needed setting up print server

    i got 2 printer: 1 usb inkjet epson 1290 1 hp5100 network i have 1 server: serving epson for our col proof using powerripx as driver and shared via os x print server i have 2 network interface card on the server. my problem is: the position of the se

  • Time/date error

    I keep getting the following error message "Problem connecting please check time/date on your device and your internet connection". I only get this error message when I try to play muliplayer on "Bike race". This is happening on my iphone 4S (ios 6.1

  • Library "Date Added/Modified" Field Wiped Out w/ new version of iTunes

    Is there any way to restore the correct dates when I added/modified music in my Library? It's one of the many ways I keep track of music, and since I downloaded the new iTunes program today, all that info. is wrong--it says the music was Added in 197

  • Photoshop Elements 7 - Thumbnails

      I loaded PSE 7 onto a new PC then did a recovery from the latest backup.  The correct number of files loaded.  The problem is that no thumbnails are shown.  Whenever PSE is opened it shows 'generating thumbnails' however it quits doing this after a

  • New iPod...can't get to setup assistant

    Okay, I'm not a computer genius so bear with my description of my problem: I am trying to setup my new iPod. I assume, from the Quick Start instructions, that once I get to the www.apple.com/ipod.start page a Setup Assistant will automatically start.