Possible to override the remotes "change audio" button?

I'm creating a DVD that has multiple audio tracks for a single video track. I'm also programming in subtitles for the same track(French). The two audio tracks have different versions of dialogue. So, that means that I need two subtitle tracks – one for each audio. I understand how I can use stories and scripts to associate the proper subtitle track with the corresponding audio track,
BUT
my problem is this: it is necessary to allow the user to switch back and forth between the audio tracks whenever they want. So, if a French user is watching with subtitles on, and switches the audio using their remote mid-stream, then I need a way to change the subtitles to match the now-active audio.
The best way I can think of to do this would be to hi-jack the functionality of the "change audio" button on the remote, and make it run a script that changes audio, then checks subtitle settings and changes them as well, if appropriate.
Can this be done in DVDSP? I've found promising entries in the advanced connections display, but they don't respond to my initial attempts.
Thanks for any help.
Patrick

Hey. Thanks. I hit a ton of pages searching, but missed that thread post. It's exactly the same problem. I suppose my only hope is, fingers-crossed, more DVD players support the targeted scripting of remote buttons these days???
Well. I noticed there were several other programs mentioned in that thread, which I'm going to look up now, but it seems that this is a "supported by DVD players" problem rather than a "my program can't do that" problem.
Something occurs to me. Is this a problem that could be circumvented by going to Blu-ray? DVD SP has a lot of buzz about supporting Blu-ray projects, would Blu-ray players be more likely to support this remote-based scripting???
P
Message was edited by: poltrain

Similar Messages

  • It´s possible to use the "Remote" app with Itunes and a Nokia E72 with Joikuspot installed only? Or I´ll need to buy a modem Wifi?

    It´s possible to use the "Remote" app with Itunes and a Nokia E72 with Joikuspot installed only? Or I´ll need to buy a modem Wifi?
    I was using "remote" with a D-link modem, that works fine at my iPad. But now I´m using only the cell phone as modem 3G, and don´t want to intall a router to put new cables at my notebook.

    What?
    You want to control iTunes on your computer using the Remote app on your iPad?
    And you want to connect the iPad and computer through your Nokia?
    No, this will not work.
    Just create a network with your notebook.

  • Is it possible to override the built-in PDF format handler with a custom IFilter for PDF?

    Hi,
    SharePoint 2013 comes with a built-in "format handler" for PDF now, so it can index PDF files out of the box. This is great for most users, as it now no longer is necessary to install a third-party IFilter for crawling PDF documents.
    My question is, is it possible to override the built-in format handler for PDF with a custom IFilter for PDF? I played with the Set-SPEnterpriseSearchFileFormatState and Remove-SPEnterpriseSearchFileFormat cmdlets. While it is possible to deactivate
    the built-in format handler, I was not able to remove it and to create a new one that activates a custom IFilter for PDF files.
    Background of the question: While the new built-in format handler for PDF will probably be sufficient for many SharePoint users, some need additional capabilities regarding indexing if PDF documents, e.g. extraction of custom metadata from PDF's document
    information dictionary and embedded XMP metadata. PDFlib GmbH, the company I work form, sells an IFilter for PDF, and of course we would like to continue to offer this for SharePoint 2013.
    Thanks
    Stephan

    You should be able to replace it with any ifilter you want, this is the procedure for installing it:
    Install PDF iFilter 9.0 (64 bit) from
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025 (http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025)
    Download PDF icon picture from Adobe web site
    http://www.adobe.com/misc/linking.html (http://www.adobe.com/misc/linking.html)  and copy to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\IMAGES\
    Add the following entry in docIcon.xml file, which can be found at: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\XML
    <Mapping Key="pdf" Value="pdficon_small.png" />
    Add pdf file type on the File Type page under Search Service Application
    Open regedit
    Navigate to the following location:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\15.0\Search\Setup\ContentIndexCommon\Filters\Extension
    Right-click > Click New > Key to create a new key for .pdf
    Add the following GUID in the default value
    {E8978DA6-047F-4E3D-9C78-CDBE46041603}
    •Restart the SharePoint Server Search 15
    •Reboot the SharePoint servers in Farm
    •Create a Test site (with any out-of-box site template) and create a document library upload any sample PDF document(s).
    •Perform FULL Crawl to get search result.
    Once the crawl is completed we will get search results.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Is it possible to move the "Add.." button at contacts on top of the custom label list? I add a lot of custom lables and tired of scrolling down every time.

    Is it possible to move the "Add.." button at contacts on top of the custom label list? I add a lot of custom lables and tired of scrolling down every time.

    No way to move any buttons in iOS devices.

  • Is it possible to set the stateof a command button

    I want to call a function when the user presses a command button (left click), then wait until he releases the mouse button, then call a second function.
    Here is the code for EVENT_LEFT_CLICK:
    CallFunction_1(...)
    GetRelativeMouseState(panel, control, 0, 0, &mouseLButton, 0, 0);
    while(mouseLButton)
    ProcessSystemEvents();
    ProcessDrawEvents ();
    GetRelativeMouseState(panel, control, 0, 0, &mouseLButton, 0, 0);
    CallFunction_2(...)
    My Problem is, that the button does not chage its state to "pressed", so it appears to the user that he has not clicked on it.
    Is there any possibility to set the command button th the pressed state?

    The reason for this is that the LEFT_CLICK event has not been processed yet. We allow you to "swallow" any event to basically eliminate the built in effect of that event. In your case you want the normal effect of the LEFT_CLICK event to occur (button appears pressed on the panel), but you also want to launch a loop to check when the mouse has been released. This is easily done through posting a deferred call. A deferred call allows the current event to be completed and then calls the deferred callback after that. So your code would be changed to:
    In LEFT_CLICK,
    CallFunction_1(...)
    PostDeferredCall (funcName, (void*)control);
    Then write a function "funcName" with prototype:
    void CVICALLBACK funcName (void *callbackData);
    and code:
    void CVICALLBACK fu
    ncName (void *callbackData)
    int control = (int)callbackData;
    int mouseLButton = 0;
    GetRelativeMouseState (panel, control, 0, 0,
    &mouseLButton, 0, 0);
    while(mouseLButton)
    ProcessSystemEvents();
    ProcessDrawEvents ();
    GetRelativeMouseState (panel, control, 0, 0,
    &mouseLButton, 0, 0);
    CallFunction_2(...)
    This should solve your problem.
    Best Regards,
    Chris Matthews
    Measurement Studio Support Manager

  • Reg: If changes done in SAP BO Analysis office, then Changes can be done in SAP BW in respective targets. But, is it possible to do the same changes in SAP ECC? How?

    Hello Everyone,
    If any changes are done in SAP BO Analysis office, then the change can be done in the SAP BW in the respective Targets.
    But how can we do the changes in the SAP ECC ? Is it possible to do the changes in the tables ?
    Any answer is appreciable
    Regards,
    Karteek

    We are using the "Input ready Bex query", in order to modify the values in "BO Analysis office".
    ECC               BI               BO Analysis office
    1  ------------->   1   ---------->         1   ------
                                                                            |
                                                                            | (Now Data is changed in Analysis office from 1 to 2)
                                                                            |
    (?) <--------------   2 <----------         2 <-----
    (Will it be updated in ECC)
    (Diagram Explanation)
    From ECC we can load the data (Consider Value-1) to SAP BI and from SAP BI we can load the data to BO analysis office.
    So, now if we change the data in BO Analysis office (Value-1 changed to Value-2)..
    Now the data is changed in SAP BI to Value-2.
    So what about the data in ECC ? Whether it is changed or not?
    Please provide us a real time business Scenario..
    Thanks,
    Karteek

  • Is it possible to get the decline and answer buttons from sleep mode?

    The way my iphone operates now, when a call comes in and the phone is in sleep/locked mode, the only option is to slide the lock to answer the call. When a call comes in and the phone is not locked, it gives the option to decline the call with a red button and answer the call with a green button. My question is this: Is it possible to set the phone so it gives the decline/answer option coming straight out of sleep/locked mode?

    Nope. But single clicking the Sleep/Wake button will silence the ring, and double-clicking the Sleep/Wake button will send the call to voicemail, having the same effect as "Decline."

  • Is it possible to run the vi with a button on the front panel?

    Hi to all,
    I was wondering if it is possible to run a vi with a button placed on the front panel.
    Regards,
    Palazzo

    Palazzo wrote:
    Run vi when opened is not useful in my application, I know that option, thanks.
    Can you elaborate? Programmed as a proper state machine, have the program run in an idle state that only waits for for a button press.
    There is no need ever to go to edit mode during execution of a finished program.
    while I have written a demo Xcontrol to show that everything is possible, I strongly recommend against it. It makes no sense.
    See here for the example and instructions. But please read the entire thread, though.
    LabVIEW Champion . Do more with less code and in less time .

  • Bought an Apple TV and the remote affects my Mac book pro when in use is it possible to disable the remote function ion the MacBook Pro

    When browsing on the Apple TV menu the remote affects my MacBook Pro and changes it to video mode even if not connected with the Apple TV

    Welcome to the Apple Support Communities
    In that case, just disable the IR port of the MacBook Pro > http://support.apple.com/kb/PH7234
    If you are using OS X Mountain Lion, you have to go to System Preferences > Security & Privacy > Advanced

  • Is it possible to capture the state of a button outside of capturing events?

    I was wondering if there was a way in Flex to determine the state of a button (i.e. up, down, over, selected, etc..) besides capturing each individual events.  What I am asking is essentially to be able to access the "phase" private member variable of the Button class.  Please advise.

    Actually, nevermind, I was mistaken that the Button.phase parameter was private, it is actually of mx_internal type.  Thanks.

  • Re: How to play  the remote shared audio file  by JMF?

    did u connect from the client host to the remote host.(use ping to test it)?
    if the test is ok, test the palyer by playing file in ur client host?

    yes,i have tried to connect the remote and copy the remote file to local host ,
    the file could be played in my local host!

  • Can i Change How the Remote Chooses a Button?

    I'm working in iDVD 08 and I've got three buttons in a menu. I'm using a the Center Stage theme and I have removed the drop zones. Anyways I have three buttons on this menu one in the middle right, middle left, and the bottom of the screen forming like a triangle...i want to be able to set the buttom on the middle right to be selected when the right arrow on a remote is pushed...but idvd only seems to do this randomly (it works in some menus, but not all). Any one know how I can control this?

    Actually, I figured out that I you select the two bottons that are horizontal together and then select the alignment for middle, idvd will then navigate properly (even if the two buttons were already in line)

  • Is it possible to get the iPhone 5s home button on the iPod touch 5g

    So I was looking at the iPhone 5s (which I don't plan to buy) and I notices that the home button was different from the  one on the ipod touch5g and pre existing models. Is there a way that you can get the 5s home button on an iPod touch 5g because it looks really nice and kinda chrome.

    no

  • Is it possible to get the before-change-values in UPDATE-RETURNING-clause ?

    I want to do an UPDATE, which affects many comlumns and for some columns I wan`t to know if they had really changed.
    For this I want to use the RETRUNING-clause of UPDATE. But it seems I can only get the values after the update , not before the update. ( like :old.foo in row-level-triggers ) Is there any solution ?

    If you want to know if a value changed, you can use:
    if :old.column = :new.column then ....

  • Is it possible to override the SecurityFilter class so that I can use it for my external app which is deployed in ToolsAndFramework and needs to validate for same user/password as is being used to log in experience manager?

    I have created a java app and deployed in ToolsAndFramework of endeca and since that app can be accessed through a directl url so want to implement an security filter which will use the same user validation as is used in experience manager.

    Sorry to hear that, but this forum is for us, users, and what you need is someone from Xperia Care to find your motherboard and send it back, I don't think it'll be possible to retrieve any data from a broken motherboard. 
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

Maybe you are looking for

  • Error in this application

    can any one clarify my doubt .... i am getting an error saying that " LFA1-LIFNR" IS UNKNOWN. but that is there in that table... i am sending u the report coding also.... reply me soon. REPORT  Z_SB_VENDORREPORT         NO STANDARD PAGE HEADING      

  • I don't receive e-mail notifications

    Hi all there!!! My problem is that from some moment it has stopped sending me notifications both to my e-mail account and Mail app about new events concidering despite I have all the boxes in my Apple Community account Notifications settings checked

  • Bubble graph - set max bubble size?

    Hi How can I set a max/min size for bubbles in a bubble graph? As users filter data sets the bubbles grow so large that the graph is hard to read. I would hope the API allows me to set these and let the graph code figure out the relative sizes within

  • Photoshop Elements 4 Slide Show Tips

    I just spent a weekend making five slide shows with Photoshop Elements 4. I made PDF files and DVDs from all of them, and I experimented extensively. Here are some things I learned: Making a slide show in Elements 4 is simple and reasonably intuitive

  • Discoverer Viewer Graphs

    Is there a way to display graph in discoverer viewer right next to the worksheet rather than below the worksheet? Also , how do we suppress the sort option on discoverer viewer?