Question on merging datasource

Can I merge two datasources into one?
One is video datasource from webcam and the other is audio datasource from mic.
If I can not merge them, does it mean I have to create two processors to play?

I've done it, but I've got another problem now.
When I want to record a data source combining audio from mic and video from web cam to data sink, it throws a NoDataSinkException that cannot find a datasink for: com.sun.media.mulitplexer....

Similar Messages

  • Video feed freezes when using a merging datasource

    I have an application that needs to take in data from either an audio source, a video source, or both. I'm able to view/hear the data just fine if it is just audio or just video but when I try to have a processor play both, the video feed will start running, but then stop. The audio will continue and the processor's controls continute to show the duration, so I know it's not the processor that's having the problem.
    Two points of interest: Since my application needs to send this data as well as have it viewed locally, I am utilizing a MonitorStream in the same fashion as described in the "JMF Solutions" section. Also, since I'm using both types of data I'm creating a merged datasource via:
    Manager.createMergingDataource( <audioDS>, <videoDS> )I wasn't able to locate anything related already posted here. Has anyone experienced this before, or know what is going on? Thanks.

    My 2 cents:
    1- Try this <video><audio> instead of <audio><video>
    2- Forgot monitor stream if you want to monitor audio. I was unable to monitor video + audio with the jmf monitor solution.
    3- Use a player, not a processor to play the data. I was unable to encode and play with the same processor.
    If you need, make clones!

  • Questions on Merging Dis-similar Data Types...

    I am using Web-I version 11.5.8.834 (We do not use the Crystal Reports module, all of our reports are built with Web-I).
    I have two questions:
    Question 1: First I am attempting to create a report from two different universes and need to merge a dimension from each universe.  The two dimensions have similar data, but one is set up as a "string", and the other universe has the same data set up as a "number".  Our IT department creates and maintains the universes and I have requested that one of the dimension data type be changed to match the other, but I am told that other users have already set up reports using these dimensions and to change them at this point might cause a problem with their reports.  So my first question is: Can two separate dimensions be setup within a single universe, using the same data field, each having different data types (e.g., a field with numeric data be set up as a "string" and a second dimension be setup as a "number")?  If this works, I can make a recommendation to our IT department to do this and I will not have to resort to Question 2.  but just in case, here is Question 2:
    Question 2: I have two other dimensions that I might be able to use, but it requires creating a variable and "trimming" data off of each of the fields.  The first universe is a part number with three alpha characters followed by four numeric characters (PRT1234).  The second universe has a serial number, in which the first four characters match the last four characters of the other universe (1234-00111).  If I trim off the first three characters from the first universe using a variable (=right([Part_Number];4), and trim off the last six characters from the second universe using a variable (=left([Serial_Number],4), the variables will have matching data.  The second question is: Can variables be merged?  I've tried, but it isn't working so far.  If so, can someone give me some hints on how to do it?
    Edited by: Charles Norman on Aug 8, 2008 11:42 AM
    Edited by: Charles Norman on Aug 8, 2008 11:43 AM

    Charles,
    Can variables be merged?
    No, local variables cannot be merged.  The manipulation must be performed at the database level via Designer before the data comes across to the report.  As an aside, your IT deparatment can create "new" objects just for you, placed in the list under a separate sub-class that manipulates the data to your liking and will not upset other users who already built reports using the original columns of data.  I guess my point is that you can have multiple objects placed in your universe that derive from the same column in a given table -- user A has it per their flavor and user B has it per his flavor.
    Thanks,
    John

  • Error Mail Merge Aborted due to error in creating the Mail Merge DataSource

    Dear All,
    please help me with this problem (Oracle release 12.0.4.)
    1. PROBLEM:
    When attempting to extract data, using Web ADI in HRMS, Word is selected as the viewer, but an Excel spreadsheet is generated rather than a MS Word document containing the data. Also error "Mail Merge Aborted due to error in creating the Mail Merge Data Source." appears on screen.
    We are using MS Office 2003.
    2. PROBLEM:
    Unable to create data source from HR form PAYWSLEE.
    We are using custom integrator. This integrator is attached to form function. Form function is attached to responsibility. We also created the layout.
    The next step would be to create data source from form PAYWSLEE, but we are not able to perform this...
    In release 11i we used this form (PAYWSLEE) to create datasource (for mailmerge), but in R12 this is not working... Something is missing here and I need your help to determine what. I checked the most documents on Oracle Support and didn't find solution for this problem...
    Please advise.
    Kind Regards,
    Andreja

    Hi all,
    Thanks for visiting our forum and sharing your experience here. It'll be benefited to our communicator.
    Have a good time.
    Regards,
    Thanks
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • Issues Playing a Merged DataSource

    Hi, I'm trying to merge 2 audio DataSources, but when I create a Player for the MergedDataSource, I get the following error:
    javax.media.NoPlayerException: Cannot find a Player for: com.ibm.media.protocol.MergingPullDataSource@4c624c62
         at javax.media.Manager.createPlayerForSource(Manager.java:1512)
         at javax.media.Manager.createPlayer(Manager.java:500)
         at Sample1.<init>(Sample1.java:25)
         at Sample1.main(Sample1.java:39)
    This is my code:
    public Sample1() {
              MediaLocator ml1 = new MediaLocator("file:/c:/dev/samples/sample1.wav");
              MediaLocator ml2 = new MediaLocator("file:/c:/dev/samples/sample2.wav");
              try {
                   DataSource ds[] = new DataSource[2];
                   ds[0] = Manager.createDataSource(ml1);
                   ds[1] = Manager.createDataSource(ml2);
                   DataSource ds3 = Manager.createMergingDataSource(ds);
                   Player player = Manager.createPlayer(ds3);
                   player.start();
              } catch (NoPlayerException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
              } catch (NoDataSourceException e) {
                   e.printStackTrace();
              } catch (IncompatibleSourceException e) {
                   e.printStackTrace();
    Any help would be great, thanks.

    Someone on the forum recently posted sucess doing that using the merge example, and claimed the Merge example produced a single output track under the condition that the input tracks were of identical formats.
    [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/Merge.html]
    It's my understanding of the code that given 2 audio inputs you'll get an output with 2 audio tracks combined into a single file, but, the user (don't recall who) said they got a single track output... so the moral of the story is, I'm probably wrong and your milage may vary.
    But I'd give the example code a few tinkering hours and see what it'll give ya.

  • Question about Creating DataSources for FlatFile Data Acquisition

    Hello eveyone,
    I am trying to create flatfile datasources.  I've been checking out the existing ds in my dev system and there are some infrastructure here that have loaded data in them, all via their won flatfile DS.  I've been looking at the DS and am trying to figure out logic in which they are defined. I saw that most of the fields are defined in CHAR even if they pertain to fields like quantity, Amount and so on...  They are also in the Internal format.  Yet they have been successfully loaded...
    My question is:  what are the rules of thumb in defining the DS?  How do i go about in mapping the fields to objects in the system?  Can anyone please give me the step-by-step scenario as to how to do this please?
    Many thanks,
    Philips

    Hi Philip,
    Pls. try the following steps ..may be helpful.
    1. when ever you want to create a flat file structure..keep in mind that, what are
        fields data available in your file. second thing is you need to know the IO of
        the info provider in which you are uploading.
    2. simply create your own DS with PC File, and other hand open up your infprovider, and keep on check with your flat file what is the sequence of the data
    fields and what are they corresponds to in the cube/ODS
    3. As your flat file sequence, keep on identify the related IO of your provider and
    copy it individual and paste it in your infosouce one by one as sequence of your
    flat file..
    4. No need to think of what type of data it is and how it is..
    5. simply copy all your correponding IO (what ever of their type) even including
        some of the ref. IO.
    6. And finally save and activate your DS creation.
    I hope it would help in creating your own Flat File DS.
    Need further info revert...
    Cheers,
    Thanks=Points.

  • Question regarding as Datasource

    Dear experts,
    I have another question. If I create a datasource in COPA in R/3, shall I create lots of other Master data datasource in R/3?
    For exemple, if i already have Article in the datasource from COPA. Should I still create another datasource for Article from LO-IS?
    Thanks!

    You must known at least the fields you are intersted in load to BW in order to search a datasource that contain them.....if you dont know the module you ned to extract you must search for help from a analyst that works on that module...when you find a datasource that contain ALL the fields you need you can use that...if doesn´t have ALL but only a few are missing.....you could try to enhace the datasource....if you can´t find a datasource with most of the fields you are interested in.... you can create a Z datasource and create an extractor for this.....
    I hope this helps you
    Regards

  • The question about from datasource to PSA

    hi,experts,I have one question .the data selection of datapackage is blank.That means all of data have been selected.but I found that some data didn't enter PSA.so,I wonder why not all data enter PSA. thanks.
    Best Regards.
    Brian.

    Hi,
    Is it a full upload or delta upload.
    If it is a delta upload then only changed records will come even though there is no selection.Check your infopacage.Also check the datasource whether it is delta enable or not.
    Kindly update me regarding this.
    Regards,
    Debjani

  • Problems and questions re merging of MobileMe and iCloud

    Please bear with me - this is all rather complicated!
    At sometime in my early years with Mac, I signed up for an Apple ID - can't even remember what it was.  Many, many years ago at the beginning of the internet, I signed up for another Apple ID - it was <[email protected]>.   Later, I bought/signed up for .Mac which later became MobileMe.  When I first signed up, I had an Apple ID of <[email protected]>. At some time, I quit using the insightbb email and switched to Mail - my email address became <[email protected]>.  Then MobileMe came along and wanted my address to be <[email protected]> but it did allow me to keep the mac.com address.  I also had two aliases through MobileMe.  I still occasionally need to use the insightbb.com account so while I never sign up for anything using that address, there are a few VERY old accounts I have that use it as it was the address with which I originally signed up.  I don't remember which ones in order to change it, so I just keep it active and only rarely get email addressed to the insightbb acc't.
    Today, I upgraded to Lion and then to iCloud.  I used the "migrate from MobileMe to iCloud" format, and low and behold, it told me that my Apple ID is now <[email protected]>.  This is going to cause me BIG problems as there is no way to merge Apple ID's! 
    My first question is how do I get back my correct AppleID for iCloud?
    My second is I now have multiple accounts on my iPhone and iPad.  I have an insightbb.com account - must keep it.  But I also have my new iCloud account and I still have my MobileMe account.  Should I delete these accounts?  What has happened to my MobileMe aliases?  I have subscriptions using them, too! 
    Aggghhh!!!  I LOVED MobileME!  So far, I HATE iCloud!  I don't need these complications!  Any advice on how to reconcile these problems?

    I just got off the phone after an hour with Apple Support.  The bottom line is that somehow iCloud has decided to use my .mac address as my Apple ID.  Yes, I can change it, but if I do, I lose everything - contacts, mail, bookmarks, calendar - everything.  For iTunes and this Community help forum, I will have to continue to use the insightbb Apple ID.  They could not figure out how this happened, as for MobileMe, I ALWAYS used the insightbb Apple ID.  Gremlins in moving from MobileMe to iCloud. 
    He did say that Apple is working very hard to figure out how to merge multiple Apple ID's as this is becoming more and more of a problem.  So, until they sort it all out, at least I know what to do. 

  • A Simpler, More Direct Question About Merge Joins

    This thread is related to Merge Joins Should Be Faster and Merge Join but asks a simpler, more direct question:
    Why does merge sort join choose to sort data that is already sorted? Here are some Explain query plans to illustrate my point.
    SQL> EXPLAIN PLAN FOR
      2  SELECT * FROM spoTriples ORDER BY s;
    PLAN_TABLE_OUTPUT
    |   0 | SELECT STATEMENT |              |   998K|    35M|  5311   (1)| 00:01:04|
    |   1 |  INDEX FULL SCAN | PKSPOTRIPLES |   998K|    35M|  5311   (1)| 00:01:04|
    ---------------------------------------------------------------------------------Notice that the plan does not involve a SORT operation. This is because spoTriples is an Index-Organized Table on the primary key index of (s,p,o), which contains all of the columns in the table. This means the table is already sorted on s, which is the column in the ORDER BY clause. The optimizer is taking advantage of the fact that the table is already sorted, which it should.
    Now look at this plan:
    SQL> EXPLAIN PLAN FOR
      2  SELECT /*+ USE_MERGE(t1 t2) */ t1.s, t2.s
      3  FROM spoTriples t1, spoTriples t2
      4  WHERE t1.s = t2.s;
    Explained.
    PLAN_TABLE_OUTPUT
    |   0 | SELECT STATEMENT       |              |    11M|   297M|       | 13019 (6)| 00:02:37 |
    |   1 |  MERGE JOIN            |              |    11M|   297M|       | 13019 (6)| 00:02:37 |
    |   2 |   SORT JOIN            |              |   998K|    12M|    38M|  6389 (4)| 00:01:17 |
    |   3 |    INDEX FAST FULL SCAN| PKSPOTRIPLES |   998K|    12M|       |  1460 (3)| 00:00:18 |
    |*  4 |   SORT JOIN            |              |   998K|    12M|    38M|  6389 (4)| 00:01:17 |
    |   5 |    INDEX FAST FULL SCAN| PKSPOTRIPLES |   998K|    12M|       |  1460 (3)| 00:00:18 |
    Predicate Information (identified by operation id):
       4 - access("T1"."S"="T2"."S")
           filter("T1"."S"="T2"."S")I'm doing a self join on the column by which the table is sorted. I'm using a hint to force a merge join, but despite the data already being sorted, the optimizer insists on sorting each instance of spoTriples before doing the merge join. The sort should be unnecessary for the same reason that it is unnecessary in the case with the ORDER BY above.
    Is there anyway to make Oracle be aware of and take advantage of the fact that it doesn't have to sort this data before merge joining it?

    Licensing questions are best addressed by visiting the Oracle store, or contacting a salesrep in your area
    But I doubt you can redistribute the product if you aren't licensed yourself.
    Question 3 and 4 have obvious answers
    3: Even if you could this is illegal
    4: if tnsping is not included in the client, tnsping is not included in the client, and there will be no replacement.
    Tnsping only establishes whether a listener is running and shouldn't be called from an application
    Sybrand Bakker
    Senior Oracle DBA

  • Question on merging office 2003 PPTs in Acrobat 9

    I follow these steps to Merge office 2003 PPT files and combine the files in Acrobat 9.5.2 to create a combined PDF file with bookmarks. But only slides get printed please help me out.
    Setting the PPT file printing options
    When you use Adobe Professional to print both the notes section and slides to a PDF file, you have to first change a setting in the PowerPoint file:
    In PowerPoint, select Tools -> Options -> Print tab -> then select the "Use the following print settings" radio button and select "Notes pages."
    Note: If you want to print only slides and not the notes section, select “Slides.”
    The ability to generate bookmarks for the PDF file needs to be set in the source application. In PowerPoint, you should have a menu item named "Adobe PDF."    Select Adobe PDF -> Change Conversion Settings -> Settings tab, and then select "Add bookmarks to Adobe PDF".
    Converting multiple files to PDF with bookmarks
    Change the printing option on each PPT file. See Setting the PPT file printing options.
    Open Adobe Acrobat Pro 9.
    Click on the Combine icon and select Merge Files into Single PDF.
    Note: If this icon is not visible it is on the Tasks toolbar.
    You will now see a window where you can add the individual PDF files.
    After adding the individual files, you can rearrange the files as needed.
    When ready, click the Combine Files button and wait for the file to be generated.
    Save the file in the location and using the filename as needed.
    Open the new file and review the bookmarks.
    The bookmarks are inserted during the Combining process. The section names are the filenames and may need edits.

    In the PDF preferences, there should be a check box for converting notes (I am using AA9). If this is selected, then when using PDF Maker, the notes are added to a layer in the PDF. To view the notes, select the little bubble icon in AA9.

  • Question about Merge Statement

    Is it possible to use a CASE statement inside the update clause of a merge statement? Also what about a function?
    I have a string (In Source) that needs to be split into multiple columns (In Target) depending on values in other columns (In Source).
    I am on 11iR1

    Hi Chris,
    You can take a look at the below examples :
    SQL>create table t_test
    col1,col2,col3
    ) as
    select 1,2,3 from dual union all
    select 2,3,4 from dual union all
    select 3,4,2 from dual union all
    select 9,10,12 from dual union all
    select 11,23,43 from dual
    create table succeeded.
    SQL>select * from t_test;
    COL1                   COL2                   COL3                  
    1                      2                      3                     
    2                      3                      4                     
    3                      4                      2                     
    9                      10                     12                    
    11                     23                     43    
    SQL>merge INTO t_test t_t USING
      SELECT
        1 AS col1
      FROM
        dual
    ) d_d
    ON
    (d_d.col1 = t_t.col1)
    WHEN matched THEN
      UPDATE set
        col2 = (
          CASE
            WHEN d_d.col1 = 1
            THEN 123
            ELSE -1
          END );
    1 rows merged
    SQL>select * from t_test;
    COL1                   COL2                   COL3                  
    1                      123                    3                     
    2                      3                      4                     
    3                      4                      2                     
    9                      10                     12                    
    11                     23                     43                    

  • Question about merging 2 Companies in SAP

    Hi,
    our client wants to merge 2 Companies, the company that is going to disapiar is not in SAP.
    Our approach is to post the account balances and movements into SAP posting them in the SAP Co.COde, ant that is fine, the problem is that they want to get all the legal reporting (P&L, Balance Sheet...) separately for both companies in SAP.
    We think that we could cover that requirement doing:
    1. posting the merged company documents with and specific Doc. type. But we think that a lot of legal reports cannot be filtered/selected using Doc.type. It seems no to work.
    2. the other thing that we have thought is to use "business area", but BA was out of our blue print and we are not sure what can happen creating BA when a CoCode (in fact several CoCodes) are already in production (went live some time ago).
    I will really appreciate if someone can give me any approach about how to meet client's requirements.
    Cheers

    For a legal entity, you need to have separate company codes.
    If it is just the ownership of the company that is being taken over and for all other practical purpose the taken over entity shall be a separate legal entity you can create a company code for the. This is recommended, as the P&L and Balance sheet report is readily available.
    You can do a consolidation later for merging both the companies results. either through ECCS within SAP or SEM-BCS.

  • Merging datasources - Confusion with SD Sales order case study

    Hello
    This is continuation of my last post.
    My case study states that the fields required are on the order. See the excerpts:
    "The SD Consultant thinks this is an excellent report and he has advised that the transmissions are held in table NAST , the gross value is sub total 1 in table VBAP and the cost is also in VBAP. He thinks the rest of the fields are on the order."
    I have been able to identify NAST table as billing header data, VBAP(2LIS_11_VAITM) as Sales Doc item info but what he means by on the order is not clear if it is the Order header table or schedule line or the old sales order 2LIS_01_S260?
    The other confusion is that payment terms and complete delivery indicator is not in any of those datasources. Is it a case of another term being used as the field in the order tables that I could not recognise or I will have to look elsewhere?

    Why not create a wrapper for the bapi, which will generate the serial nos and then call the BAPI_SALESORDER_CREATEFROMDAT2, passing it the serial no. info along with everything else?
    Hope this helps.
    Sudha

  • The question about "Merge"

    I created a Sequences (24fps),Captured video and imported audio files.After set inport,I used the command "merge".But that merged clip's inport presented offset--video's inport and audio's inport are not superposed. that's Why?
    waiting your answer.
    ps: video have been conformed.

    Is there a way to merge the 12 movies into one?)
    Import them into iMovie HD and build a sequence with chapter markers.
    What determines the order in which the movies are being played?
    Sequence of you adding them to the main menu.
    tried to view it on a Windows computer
    Seen many problems on Windoze computers. Does it work on your Mac?

Maybe you are looking for