Displaying two or more videofiles continuously.

Hi.
I would like to make a program that is able to play two video files continuously. I�m not sure how to explain this but if I were to split a video file up into two parts, I would like the player to display these two parts as if they were one movie. A small time delay between the two files is not a problem as long as there is no visible sign, like a blink or white screen.
Any ideas on who to do this?

I solved the problem.
By simply adding a paint method it worked.
If anyone is interested, here is the code...
import javax.media.bean.playerbean.*;
import javax.media. *;
import java.awt.*;
public class TestVideo extends Frame
     public static Player player, player1;
     public Component comp, comp1;
     private boolean isend;
     MediaLocator ml,ml1;
    public  TestVideo()
        setSize(new Dimension(600,400));
        setBackground(Color.white);
        setVisible(true);
        setLocation(20,70);
         TestVideo1();
    public void paint(Graphics g){
    public void TestVideo1()
        try
             ml = new MediaLocator("file:///Work/Programming/Javaprogs/Project/test1.mpg");
              ml1 = new MediaLocator("file:///Work/Programming/Javaprogs/Project/test2.mpg");
             player = Manager.createRealizedPlayer(ml);
               player1 = Manager.createRealizedPlayer(ml1);
               player1.prefetch();
               player.prefetch();
               comp = player.getVisualComponent();
               comp1 = player1.getVisualComponent();
               add(comp);
            validate();
            add(comp1);
               validate();
              player.start();
                  try
                    Thread.sleep(10420);
               } catch(Exception e) {}
         } catch(Exception e) {}
          player1.start();
        comp1.setVisible(true);
        comp.setVisible(false);
        player.stop();
    public static void main(String[] args)
             new TestVideo();
}It is still running with two players, but I guess I have to live with that. Also by adding a EndOfMedia event the two videos should run completely continuously

Similar Messages

  • How to display two or more links in a single column

    Hi,
    Is there a way to display two links in a single column in a sql query report . I am able to specify one but I am not able to add links to the same column . I want to take the same column id and redirect the user to different pages based on the values selected .
    Thanks

    There is no way to this declaratively that I know of. Some alternatives...
    1. Put the conditional branching logic in the report SQL itself. e.g. case when ... then '< a href=..' else '< a href=...' end and make sure the column display type is Standard Report column
    2. Have the declarative column link go to a dummy/intermediate page and setup On Load: Before-Header branches on that page to redirect to the desired page based on the item value(s) passed in to the intermediate page.

  • Did you know how to link the text in two or more text boxes?

    Did anyone know how to link the text in two or more text boxes in Pages 5.0? Thanks for your answer.
    Qualcuno sa come collegare il testo in due o più caselle di testo nella versione 5.0 di Pages. Grazie per le vostre risposte.

    It's just one of the many, many features that have been eliminated or changed. Leave feedback for the Pages team using the link in the Pages menu and review & rate the new versions in the Mac App Store.
    If you previously had iWork '09, those apps are still in your Applications folder in a folder named iWork '09. You can continue to use them to get things done.

  • HT204053 Is it possible to have two (or more) different icloud mail accounts (not alias) under the same apple id? If not what is you best advice for all family members to have their own e-mail and still share the purchases under the same apple id. Thanks

    Is it possible to have two (or more) different icloud mail accounts (not alias) under the same apple id? If not what is you best advice for all family members to have their own e-mail and still share the purchases under the same apple id. Thanks

    mannyace wrote:
    Thanks for the response.
    So I basically won't run into any trouble? I
    There should be no issues. Its designed to work like that.  You don't change Apple IDs just because you get a new device.
    mannyace wrote:
    Thanks for the response.
    Is there any chance that the phones can fall out of sync?
    Unlikely. But nothing is impossible.   Though I don;t see how that would happen. As long as both are signed into the Same Apple ID / iCloud Account they will be N'Sync. (Bad Joke)
    mannyace wrote:
    Thanks for the response.
    If I get a message or buy an app or take a photo on the iPhone 5, how do I get those things onto the iPhone 6?
    If you buy an App, you have 2 ways to get it to the iPhone6: If Automatic Downloads is enabled in Settings->iTunes & App Store, it will automatically download to the iPhone 6 when you buy it on the 5 and vice versa if you buy it on the 6, it will download to the 5.
    Alternatively, you can simply go to the App Store App->Updates->Purchased and look for the App there and download it. Purchased Apps will not require payment again. i.e They'll be free to download to the iPhone 6 once purchased.
    SMS Messages will sync over using Continuity as long as they are on the same Wifi network. Otherwise, restoring the iPhone 5 backup to the iPhone 6 will transfer all messages received up until the backup was made onto the iPhone 6.
    Images, can be transferred either through Photo Stream
    My Photo Stream FAQ - Apple Support
    Or any Cloud service you want such as Dropbox, or One Drive.
    mannyace wrote:
    Also, something i forgot to ask initially: Should I update the iPhone 5 to iOS 8 first or does that not matter?
    If you want the Continuity features as explained above you need to update the iPhone 5 to iOS 8. Otherwise its not all that important.

  • Using threads in a process of two or more tasks concurrently?

    Dear,
    I need to develop through a Java application in a process that allows the same process using Threads on two or more tasks can be executed concurrently. The goal is to optimize the runtime of a program.
    Then, through a program, display the behavior of a producer and two consumers at runtime!
    Below is the code and problem description.
    Could anyone help me on this issue?
    Sincerely,
    Sérgio Pitta
    The producer-consumer problem
    Known as the problem of limited buffer. The two processes share a common buffer of fixed size. One, the producer puts information into the buffer and the other the consumer to pull off.
    The problem arises when the producer wants to put a new item in the buffer, but it is already full. The solution is to put the producer to sleep and wake it up only when the consumer to remove one or more items. Likewise, if the consumer wants to remove an item from the buffer and realize that it is empty, he will sleep until the producer put something in the buffer and awake.
    To keep track of the number of items in the buffer, we need a variable, "count". If the maximum number of items that may contain the buffer is N, the producer code first checks whether the value of the variable "count" is N. If the producer sleep, otherwise, the producer adds an item and increment the variable "count".
    The consumer code is similar: first checks if the value of the variable "count" is 0. If so, go to sleep if not zero, removes an item and decreases the counter by one. Each case also tests whether the other should be agreed and, if so, awakens. The code for both producer and consumer, is shown in the code below:
    #define N 100                     / * number of posts in the buffer * /
    int count = 0,                     / * number of items in buffer * /
    void producer(void)
    int item;
    while (TRUE) {                    / * number of items in buffer * /
    produce_item item = ()           / * generates the next item * /
    if (count == N) sleep ()           / * if the buffer is full, go to sleep * /
    insert_item (item)                / * put an item in the buffer * /
    count = count + 1                / * increment the count of items in buffer * /
    if (count == 1) wakeup (consumer);      / * buffer empty? * /
    void consumer(void)
    int item;
    while (TRUE) {                    / * repeat forever * /
    if (count == 0) sleep ()           / * if the buffer is full, go to sleep * /
    remove_item item = ()           / * generates the next item * /
    count = count - 1                / * decrement a counter of items in buffer * /
    if (count == N - 1) wakeup (producer)      / * buffer empty? * /
    consume_item (item)      / * print the item * /
    To express system calls such as sleep and wakeup in C, they are shown how to call library routines. They are not part of standard C library, but presumably would be available on any system that actually have those system calls. Procedures "insert_item and remove_item" which are not shown, they register themselves on the insertion and removal of the item buffer.
    Now back to the race condition. It can occur because the variable "count" unfettered access. Could the following scenario occurs: the buffer is empty and the consumer just read the variable "count" to check if its value is 0. In that instant, the scheduler decides to stop running temporarily and the consumer starting to run the producer. The producer inserts an item in the buffer, increment the variable "count" and realizes that its value is now 1. Inferring the value of "count" was 0 and that the consumer should go to bed, the producer calls "wakeup" to wake up the consumer.
    Unfortunately, the consumer is not logically asleep, so the signal is lost to agree. The next time the consumer to run, test the value of "count" previously read by him, shall verify that the value is 0, and sleep. Sooner or later the producer fills the whole buffer and also sleep. Both sleep forever.
    The essence of the problem is that you lose sending a signal to wake up a process that (still) not sleeping. If he were not lost, everything would work. A quick solution is to modify the rules, adding context to a "bit of waiting for the signal to wake up (wakeup waiting bit)." When a signal is sent to wake up a process that is still awake, this bit is turned on. Then, when the process trying to sleep, if the bit waiting for the signal to wake up is on, it will shut down, but the process will remain awake. The bit waiting for the signal to wake up is actually a piggy bank that holds signs of waking.
    Even the bit waiting for the signal to wake the nation have saved in this simple example, it is easy to think of cases with three or more cases in which a bit of waiting for the signal to wake up is insufficient. We could do another improvisation and add a second bit of waiting for the signal to wake up or maybe eight or 32 of them, but in principle, the problem still exists.

    user12284350 wrote:
    Hi!
    Thanks for the feedback!
    I need a program to provide through an interface with the user behavior of a producer and two consumers at runtime, using Threads!So hire somebody to write one.
    Or, if what you really mean is that you need to write such a program, as part of your course work, then write one.
    You can't just dump your requirements here and expect someone to do your work for you though. If this is your assignment, then you need to do it. If you get stuck, ask a specific question about the part that's giving you trouble. "How do I write a producer/consumer program?" is not a valid question.

  • Any calendar app that can display two calendars per day side by side?

    Is there any app that can display two calendars (data sync with iCloud Calendars) side by side?  e.g. one calendar for planning and the other for actual / diary.

    Calendar can have two or more calendars calendars listed at the same time.
    Each can be a different color for identifidation.
    The first screenshot shows that the Medical and Joint calendars are shared calendars.
    Will that work for you?

  • How to disable autoplay in windows media player, normally play FLAC and watch AVI with two or more audio streams

    0x1) is there a way to disable annoying autoplay feature in windows media player: when i play music in "now playing" mode and insert a disc which contains some video WMP stops playing music and asks me to play that disc or starts playing without any questions (e.g. when i insert DVD). in addition when WMP asks before playing it proposes three options: resume playing, go to library and play previous list. choosing "resume playing" you'll not resume the music just played, you'll start playing inserted disc. if you choose "play previous list", it also won't continue the playlist i was just playing, rather a playlist or track before the one i was just playing! very strange behaviour, isn't it?
    note that this happends only in "now playing" mode, when library is active everything works fine.
    please don't tell to go to control panel and change autoplay settings: it takes no effect. it works when WMP is not started or if WMP is not in "now playing" mode, otherwise WMP ignores that settings and demonstrates his "very intellectual"automatic playing.
    0x2) when playing FLAC files windows media player doesn't show progress indicator, it always is positioned at the beginning (or at the place where you've positioned it). if i select multiple FLAC files and click "play with windows media player" it will play only the last file from the selected list.
    0x3) when playing AVI files with two or more audio tracks WMP plays only one of them and gives no opportunity to change autio track. in wmp of vista it plays all the audio tracks at the same time (!).
    If there is no solution for these problems, please tell me where i can send a feedback about my complaints?

    i use K-Lite 5.2 full codec pack. in the k-lite codec tweak tool report i see madFLAC.ax installed. i'll try the Xiph.org filters.
    K-Lite Codec Tweak Tool | Log file | Generated at 2009-10-30 08:04:48
    #####  DirectShow Filters (32-bit)  #####
    Description:  ffdshow Video Decoder
    File name:    c:\program files (x86)\k-lite codec pack\ffdshow\ffdshow.ax
    CLSID:        {04FE9017-F873-410E-871E-AB91661A4EF7}
    Merit:        FF800001
    Description:  Nero Subpicture Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nesubpicture.ax
    CLSID:        {06CBC9D1-92B8-41FA-B4A7-D841A0C13422}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  CoreVorbis Audio Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\corevorbis.ax
    CLSID:        {0835DC4B-AA01-48C3-A42D-FD62C530A3E1}
    Merit:        00800000 = MERIT_PREFERRED
    Description:  ffdshow Audio Decoder
    File name:    c:\program files (x86)\k-lite codec pack\ffdshow\ffdshow.ax
    CLSID:        {0F40E1E5-4F79-4988-B1A9-CC98794E6B55}
    Merit:        3FFFFFFF
    Description:  MPC - Mpeg Source (Gabest)
    File name:    c:\program files (x86)\k-lite codec pack\filters\mpegsplitter.ax
    CLSID:        {1365BE7A-C86A-473C-9A41-C0A6E82C9FA3}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MONOGRAM AMR Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmamr.ax
    CLSID:        {24FA7933-FE18-46A9-914A-C2AA0DBACE93}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero Resize
    File name:    c:\program files (x86)\common files\ahead\dsfilter\neresize.ax
    CLSID:        {30002E0C-C574-481E-A5DE-90AE54A79E10}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MPC - MP4 Source
    File name:    c:\program files (x86)\k-lite codec pack\filters\mp4splitter.ax
    CLSID:        {3CCC052E-BDEE-408A-BEA7-90914EF2964B}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero QuickTime(tm) Video Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\neqtdec.ax
    CLSID:        {470157A6-BFEA-4DF8-A8A7-12CE5EF33AE7}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MPC - FLV Splitter (Gabest)
    File name:    c:\program files (x86)\k-lite codec pack\filters\flvsplitter.ax
    CLSID:        {47E792CF-0BBE-4F7A-859C-194B0768650A}
    Merit:        00600000 = MERIT_NORMAL
    Description:  WavPack Audio Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\wavpackdsdecoder.ax
    CLSID:        {4B420C26-B393-48B3-8A84-BC60827689E8}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero MP4 Splitter
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nemp4splitter.ax
    CLSID:        {4DA9D034-1B99-4104-BAA8-6A42E5348FEE}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MONOGRAM AMR Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmamr.ax
    CLSID:        {50DDA33E-C529-4343-9689-338ADC793BB5}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MONOGRAM Musepack Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmmpcdec.ax
    CLSID:        {555C4774-101E-49D7-8EEC-B9B87F8E1905}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Haali Media Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\haali\splitter.ax
    CLSID:        {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}
    Merit:        00800001 = MERIT_PREFERRED + 1
    Description:  Haali Media Splitter (AR)
    File name:    c:\program files (x86)\k-lite codec pack\filters\haali\splitter.ax
    CLSID:        {564FD788-86C9-4444-971E-CC4A243DA150}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  Nero ES Video Reader
    File name:    c:\program files (x86)\common files\ahead\dsfilter\ndparser.ax
    CLSID:        {5CB78A55-01B8-431E-96DE-6227D2E0C312}
    Merit:        00600000 = MERIT_NORMAL
    Description:  DV Source Filter
    File name:    c:\program files (x86)\nero\nero 7\nero vision\nvdv.dll
    CLSID:        {5F999665-C66E-46B7-9446-7864278C06C8}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MPC - MP4 Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\mp4splitter.ax
    CLSID:        {61F47056-E400-43D3-AF1E-AB7DFFD4C4AD}
    Merit:        00600000 = MERIT_NORMAL
    Description:  File Source (Monkey Audio)
    File name:    c:\program files (x86)\k-lite codec pack\filters\monkeysource.ax
    CLSID:        {66EA14E6-E2B3-433D-923E-EE401CADBBD9}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  Nero PresentationGraphics Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nebdgraphic.ax
    CLSID:        {68936D7B-59D8-4724-9493-17A225E03F91}
    Merit:        00600000 = MERIT_NORMAL
    Description:  madFlac Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\madflac.ax
    CLSID:        {6B257121-CBB6-46B3-ABFA-B14DFA98C4A6}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero InteractiveGraphics Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nebdgraphic.ax
    CLSID:        {6F23E3FF-4234-4F1B-BC16-50D8A45235CA}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero Vcd Navigator
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nevcd.ax
    CLSID:        {7855449D-FC96-44D7-BA7C-3C3D86330EC4}
    Merit:        00600000 = MERIT_NORMAL
    Description:  DirectVobSub (auto-loading version)
    File name:    c:\program files (x86)\k-lite codec pack\filters\vsfilter.dll
    CLSID:        {9852A670-F845-491B-9BE6-EBD841B8A613}
    Merit:        00800002 = MERIT_PREFERRED + 2
    Description:  MONOGRAM AMR Encoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmamr.ax
    CLSID:        {99735894-CAF4-488B-8275-B8CB1998216E}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero Splitter
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nesplitter.ax
    CLSID:        {A336CD3B-599C-4F70-A34D-E88EDE4B64C3}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MONOGRAM AMR Mux
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmamr.ax
    CLSID:        {AAA4AACD-FD95-4240-9C45-9EB98E5DAC52}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero File Source / Splitter
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nefsource.ax
    CLSID:        {ABA51A41-B929-4419-8660-D33BBFA7C5AD}
    Merit:        00600000 = MERIT_NORMAL
    Description:  DC-Bass Source
    File name:    c:\program files (x86)\k-lite codec pack\filters\dcbasssource.ax
    CLSID:        {ABE7B1D9-4B3E-4ACD-A0D1-92611D3A4492}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  VP7 Decompressor
    File name:    c:\program files (x86)\k-lite codec pack\filters\vp7dec.ax
    CLSID:        {C204438D-6E1A-4309-B09C-0C0F749863AF}
    Merit:        00800000 = MERIT_PREFERRED
    Description:  MONOGRAM Musepack Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmmpcdmx.ax
    CLSID:        {C3E2E983-0198-4F73-9E5C-8365BB4C4131}
    Merit:        00600000 = MERIT_NORMAL
    Description:  madFlac Source
    File name:    c:\program files (x86)\k-lite codec pack\filters\madflac.ax
    CLSID:        {C52908F0-1C06-4C0D-A4CD-3D10EA51C757}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MPC - FLV Source (Gabest)
    File name:    c:\program files (x86)\k-lite codec pack\filters\flvsplitter.ax
    CLSID:        {C9ECE7B3-1D8E-41F5-9F24-B255DF16C087}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero Thumbnail Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nebdthumbnail.ax
    CLSID:        {CCFB194D-9CEA-4457-9B84-554B7D4853C6}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MPC - MPEG4 Video Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\mp4splitter.ax
    CLSID:        {D3D9D58B-45B5-48AB-B199-B8C40560AEC7}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero QuickTime(tm) Audio Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\neqtdec.ax
    CLSID:        {D6D8A64E-F9F7-4685-9757-7338077234D8}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  WavPack Audio Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\wavpackdssplitter.ax
    CLSID:        {D8CF6A42-3E09-4922-A452-21DFF10BEEBA}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero File Source (Async.)
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nefilesourceasync.ax
    CLSID:        {DA5E4EC4-61AB-458B-B836-B8744B6BD3A7}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  Nero Ogg Splitter
    File name:    c:\program files (x86)\common files\ahead\dsfilter\neoggsplitter.ax
    CLSID:        {DB4D8EF5-C2ED-4835-95A1-871C2327018A}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MPC - Mpeg Splitter (Gabest)
    File name:    c:\program files (x86)\k-lite codec pack\filters\mpegsplitter.ax
    CLSID:        {DC257063-045F-4BE2-BD5B-E12279C464F0}
    Merit:        00400001 = MERIT_UNLIKELY + 1
    Description:  Nero Digital Parser
    File name:    c:\program files (x86)\common files\ahead\dsfilter\ndparser.ax
    CLSID:        {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MPC - MPEG4 Video Source
    File name:    c:\program files (x86)\k-lite codec pack\filters\mp4splitter.ax
    CLSID:        {E2B98EEA-EE55-4E9B-A8C1-6E5288DF785A}
    Merit:        00600000 = MERIT_NORMAL
    Description:  AC3File
    File name:    c:\program files (x86)\k-lite codec pack\filters\ac3file.ax
    CLSID:        {F7380D4C-DE45-4F03-9209-15EBA8552463}
    Merit:        00600000 = MERIT_NORMAL
    (A total of 169 filters, 44 shown, 125 hidden)
    #####  ICM Class Manager (32-bit)  #####
    Description:  ffdshow video encoder
    File name:    c:\program files (x86)\k-lite codec pack\ffdshow\ffdshow.ax
    CLSID:        {4DB2B5D9-4556-4340-B189-AD20110D953F} (ffdshow video encoder)
    Merit:        00100000 = MERIT_SW_COMPRESSOR
    (A total of 3 filters, 1 shown, 2 hidden)
    #####  Default source filters (32-bit)  #####
    .264    {5CB78A55-01B8-431E-96DE-6227D2E0C312}  Nero ES Video Reader
    .3g2    {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}  Nero Digital Parser
    .3gp    {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}  Nero Digital Parser
    .aac    {ABE7B1D9-4B3E-4ACD-A0D1-92611D3A4492}  DC-Bass Source
    .ac3    {F7380D4C-DE45-4F03-9209-15EBA8552463}  AC3File
    .alac   {ABE7B1D9-4B3E-4ACD-A0D1-92611D3A4492}  DC-Bass Source
    .ape    {66EA14E6-E2B3-433D-923E-EE401CADBBD9}  File Source (Monkey Audio)
    .apl    {66EA14E6-E2B3-433D-923E-EE401CADBBD9}  File Source (Monkey Audio)
    .bmp    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .bsf    {5CB78A55-01B8-431E-96DE-6227D2E0C312}  Nero ES Video Reader
    .dib    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .dts    {F7380D4C-DE45-4F03-9209-15EBA8552463}  AC3File
    .dv     {5F999665-C66E-46B7-9446-7864278C06C8}  DV Source Filter
    .dvr-ms {C9F5FE02-F851-4eb5-99EE-AD602AF1E619}  StreamBufferSource
    .dvr-ne {8BD32EBA-D7D7-4AB7-914E-C4E551113869}   Nero Stream Buffer Source
    .flac   {C52908F0-1C06-4C0D-A4CD-3D10EA51C757}  madFlac Source
    .flv    {C9ECE7B3-1D8E-41F5-9F24-B255DF16C087}  MPC - FLV Source (Gabest)
    .gif    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .h264   {5CB78A55-01B8-431E-96DE-6227D2E0C312}  Nero ES Video Reader
    .jfif   {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .jpe    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .jpeg   {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .jpg    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .m3u    {e436ebb5-524f-11ce-9f53-0020af0ba770}  File Source (Async.)
    .m4a    {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}  Nero Digital Parser
    .mka    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .mks    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .mkv    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .mp3    {E436EBB5-524F-11CE-9F53-0020AF0BA770}  File Source (Async.)
    .mp4    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .mpls   {1365BE7A-C86A-473C-9A41-C0A6E82C9FA3}  MPC - Mpeg Source (Gabest)
    .nd     {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}  Nero Digital Parser
    .nvavi  {51393094-F0E2-4E34-87A5-25EBC68629EB}  Multi File Reader
    .oga    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .ogg    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .ogm    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .ogv    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .spdif  {F7380D4C-DE45-4F03-9209-15EBA8552463}  AC3File
    .tga    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .tta    {ABE7B1D9-4B3E-4ACD-A0D1-92611D3A4492}  DC-Bass Source
    .wtv    {C9F5FE02-F851-4eb5-99EE-AD602AF1E619}  StreamBufferSource
    .wv     {E436EBB5-524F-11CE-9F53-0020AF0BA770}  File Source (Async.)
    .wvc    {E436EBB5-524F-11CE-9F53-0020AF0BA770}  File Source (Async.)

  • Merging two or more separate Pages documents into a single document

    Hello everyone... I have written a book as a bunch of separate Pages docs. I want to compile these together as a single document that I can edit and paginate. Therefore, I don't want to convert to PDF format, since I wouldn't be able to do any editing. Does anyone know how to merge two or more separate documents into one?
    Thanks for your time and thoughts,
    Mike Ryan

    Michael,
    Display both documents with the Page Thumbnails showing in the Sidebar. Copy the thumbnails from one document and Paste them into the Thumbnail sidebar of the other.
    Jerry

  • How two or more table used in smartforms

    Sir,
    Like to know how can i perform calculation in smartfrom if the fields is numeric and use two table, and also know about it is useful to use inner join or any other method in smartform for working with two or more tables simultaneously.
    plz, expalin with example

    hi
    you can use more than one table in smartform for that first you mention all the tables in the form interfaces and you have to mention the variables that you want to caliculate in the global definitions.
    For caliculation right click on ant text and in that we have flow logic option in that we can select which type of code you want to write and you have to create those inbetween two text fields where the values are there and the other one is where you want to display the result.
    in that code in input parameters we have to mention the variables which you want to use for caliculation and in output parameters mention the variables in which you want to store the result. And then we have to write the logic what ever we want.
    I hope this information will help you
    regards,
    Sreelatha Gullapalli

  • How to create a unique key using two or more attributes?

    how to create a unique key using two or more attributes ?

    The following example illustrate how to create a unique key using two or more attributes/fields
    Scenario: Implementing Unique Key on ManagerID & Location ID in DepartmentEO(Department Table)
    Step#1: Open the Desired Entity Object “DepartmentEO”. Go to Overview tab & Click “General” Finger tab.
    Step#2: Expand “Alternate Keys” section & click “+”.
    Step#3: In the Pop-up wizard, Enter a name for alternate Key “Unique_Manager_X_Location”.
    Step#4: Select the desired attributes/fields from available list & Shuffle to right side.
    Step#5: Now go to “Business Rules” finger tab.
    Step#6: Select “Entity Validators” in the list & click “+” to add a new entity level validation rule.
    Step#7: In the Pop-up, Select “Rule Type” as Unique Key
    Step#8: In the “Rule Definition” tab select the key “Unique_Manager_X_Location”created.
    Step#9: Now go to “Failure Handling” tab, and click the Magnifier Icon .
    Step#10: If the key is not already created then in the “Select Text Resource” Popup, Using the functional design document, Enter display value, Key and Description. And click “Save & Select” Button.
    Step#11: Now Click “OK”.

  • When two or more tabs are opened after this when I click on another tab which is opened then firfox stopped responding and open automatically all the tabs in diffreent windows

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/873886]]</blockquote>
    when two or more tabs are opened after this when I click on another tab which is opened then firefox stopped responding and open automatically all the tabs in different windows

    If it works in a new window then you can drags tabs from the not working window to that new window.
    You can also try to close the tabs via Ctrl+W and restore the closed tabs via Shift+Ctrl+T

  • Vertically sync time position for two or more 2D axis systems?

    In DIAdem: VIEW,
    Is it possible to vertically sync the time position for two or more 2D axis system charts placed above each other?
    I have displayed several channels on one 2D chart, and one channel of particular interest on a separate chart above, which was very easy to do. It would be really useful to sync the time position on both charts, such that scrolling one chart also scrolls the second chart, or zooming one chart also zooms the second chart to the same area, which seems like a fairly basic thing to want to do, but I haven't found a way to do it yet.
    Any help greatly appreciated!
    Solved!
    Go to Solution.

    Hi Brad,
    Yes, I have been using that method, which works fine up to a point.
    But, say you have several curves displayed on the bottom chart, with the Y-Axis set to "n Y-axes", then the start of the x-axis will be further across to the right than the top chart which has only one curve displayed.
    It is possible to add an empty area to the left of the top chart, to push the start of the x-axis across into alignment (see attached), but every time you add or remove a curve on the bottom chart, or the scale changes enough to add a digit, the start of the x-axis moves and the top chart needs aligning again.
    I'm really after a method to lock both ends of both x-axes to the same vertical screen position, so everything stays aligned automatically?
    Attachments:
    chart - full.JPG ‏152 KB
    chart - detail.JPG ‏145 KB

  • Error in Muse : Object UID:U6875 has two (or more) owners: U3633 and U3165

    I encoured this error when I wanted to save my work on a Muse site:
    "Object UID:U6875 has two (or more) owners: U3633 and U3165"
    I just want to tell that  since I have upgraded Muse in 2014.3, I had lost all my add ons, and followed the instructions about uninstall and re-install them, but nothing happened, and I have re-install them manually.
    I'am working on a very important project and this failure is a very great problem for me.
    Thank' for help !

    When you launch Muse, is it prompting you as to whether or not you want to "recover unsaved changes?"
    Have you made a large number of changes to your file since the first time you encountered this error? If not, say "No" to recovery. You'll lose all the changes you've made since the last time the file saved without any error, but from there you'll be back up and running. (The problem that triggers this error is in the unsaved changes in the Muse temp files. The underlying cause of this error has been fixed in 2014.3.1, but if your attempting to recover changes made using 2014.3.0 you'll continue to encounter this error.)
    If you've made a large number of changes, you can send us your .muse file and the "Recovery" folder found in:
    Mac: "~/Library/Preferences/com.adobe.AdobeMuseCC.2014.3/Local Store" (copy and paste into the Go > Go To Folder dialog in the Finder)
    Windows: "%appdata%/com.adobe.AdobeMuseCC.2014.3/Local Store" (copy and paste into a file explorer window)
    In both cases above, include everything between the quotes (including the tilde ~ on the Mac) in the copy/paste, but not the quotes themselves.
    We can attempt to fold your unsaved changes into your .muse file, repair the damage that's part of the Recovery data, and return the file to you. Depending on the scope of the changes and the damage, it may take a few days.
    You could send the files to [email protected] along with a link to this thread. If the files are larger than 20Mb you can use a service like Adobe SendNow, Dropbox, WeTransfer, etc. (If you use a service, please include your return e-mail address in the body of the message, since not all services include it in the sharing invite they send.)

  • Identical ID in two or more dimensions encountered during transport issue.

    Hi there,
    we encountered an issue WHEN having members IDENTICAL ID in two or more dimensions. Example:
    ACCOUNT Dim; member 1000 = Cash
    MATERIAL Dim: member 1000 = Plastic Cup
    When in a report, we are showing only ACCOUNT members in the rows (hardcoded). for the 1000 member we have to specifiy ACCOUNT:1000 for the correct account and description to appear. - When not specifiying the dimensionname before the account then 'for whatever reason' the MATERIAL member will be display and used in report.
    Here is the problem! - When we transport the report, whith hardcoded ACCOUNT:1000 celll from SB to our DEV environment, then the report does NOT work appropriatly anymore! ... this is the case as the DEV environment does NOT have a member 1000 in the MATERIAL dimension. Hence the differenetiation or hardcoding is not needed. However in addition to not needed the transported Report is NOT working anymore due to that exact same. - One once we go in DEV to remove the 'ACCOUNT:' before 1000, then the correct discription and values are refreshed, before (ACCOUNT:1000) it does not refresh with values.
    How come? How to handle this inconsistancy? --- When hardcoding ACCOUNT:1000 in dimension set where numerous dimension have the 1000 member, the report works. - However same report, in an environment without identical members in numerous dimension, the report does NOT work.
    Any suggestions?

    Hi,
    Interesting. This only happens when you are not using an expansion. This looks like a bug, as the members "ACCOUNT:1000" and "1000" should be treated exactly the same in your scenario. You should probably open a message with SAP.
    One workaround you can use to guarantee that the report works in all systems is to use an =EVMBR("APPNAME","ACCOUNT:1000") function in your row/column-key range instead of hardcoding "ACCOUNT:1000" directly into the cell. You will have to format the cell where you do this as "General" instead of "Text" before Excel will evaluate the formula.
    Hopefully that works for you as well,
    Ethan

  • Bug: when you have two or more reminder pop-ups on BB10, you can't edit 2 or more of them because the second and beyond are lost...

    I notice that when you have two or more reminder pop-ups on BB10 (tasks, calendar, etc.), you can't edit 2 or more of these because the second and beyond get lost and will never pop-up again.  

    Hey JVanB,
    Thank you for your feedback.
    To better understand your issue, for example If you have two reminders and select 'View Event Details' on the 1st reminder,  does the 2st reminder popup before the Details of the1st reminder displays? 
    Thanks.
    -HB
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Maybe you are looking for