Trying to create DVD with multiple tracks that automatically goes to a slug

I'm doing a DVD for a live show where video and live performance are going back and forth. I want to make a DVD with multiple tracks that plays a movie and returns to a looping black slug (while the live act is happening). Then when the tech person presses next chapter it goes to the next movie (or chapter). That chapter/movie then returns to a looping black slug at the end of the movie (while the next live act plays) and so on and so on. Any help would be most appreciated. Thanks.

I would think one of the easiest ways to do this is make each clip end jump to a black menu with a hidden button on it that links to the next clip. The menu can stay there as long as you like. Instead of pressing the next chapter button, get your tech to press the 'enter' or 'play' button... if there is only one button on each black menu, then this is what will activate. Have each button point to the next clip that you want. Use the title button to get back to a main menu, if you ahve created one for the disc.

Similar Messages

  • How can i author a DVD with multiple timelines so that "previous chapter" actually works?

    I am trying to burn a DVD with multiple short films. i used a timeline for each film and a playlist for the "play all" button that includes all timelines. Problem is when you press previous chapter it only takes you to the beginning of the current film youre watching, no amount of double or triple clicking back will work. How do I get around this?

    To mix the footage, you should be able to go back to PrPro, and create a 16:9 Sequence. Bring the 4:3 material into that, allowing the black bars to exist, and then Export that 16:9 Sequence as 16:9, for Import into En. You will have the pillarboxing with that 4:3 material, but that is what you want, correct?
    Good luck,
    Hunt

  • I am trying to upload a project with multiple tracks to iTunes.  only the first track seems to be uploading. what do I do?

    I am trying to upload a project from garageband with multiple tracks to itunes but only the first track is uploading. what do i do to make them all upload together?

    Couple of questions:
    What type of Tracks are they (MIDI, AUdio, Drummer)?
    WHen you play your Project, do You hear all Tracks playing?
    What happens when you change the Track order, i.e. A-B-C to B-C-A? WHen you export, do you still get only one Track and if so, is it talways the first Track in the list or a specific Track regardless if it is the first, second, or third?
    Are you sure you don't have any Tracks Muted or Soloed (which auto-mutes the other Tracks)?
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com/Manuals/
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • Creating a cd with multiple tracks from a multitrack session

    I am trying to burn an audio cd with multiple tracks created from a multitrack session. Adobe 3.0 used to make this an easy process. I am only able to burn a cd with a single track regardless of range markers, cd track markers, etc.
    Any help would be greatly appreciated.

    Hi and thank you for your reply. I am used to the functionality of audition 3.0. I place tracks from my hard drive into a session (usually 18 or so). I used to add markers, then file>export>multitrack mixdown>entire session. The resulting mixdown used to keep the markers. I am not familiar with how to save each track separately and I place the markers in the file during the session creation but before export>mixdown, etc.
    Thanks

  • Unable to create PO with multiple line items through LSMW-BAPI method

    Hi All,
    I have a requirement of creating PO through LSMW. I can't use LSMW standard batch input program since there are some fileds not available and also it has many limitations. I'm using LSMW-BAPI method ( Business object BUS2012) which create IDOC and uses BAPI_PO_CREATE1 to ultimately post the PO in the system. I am trying to create PO from a single file which contains both Header and Item data.
    Now my problem is that everytime PO is being created with Single line item only. Everytime I am giving multiple item data in the source file LSMW is preparing multiple IDOCs for multiple line items. As per my understanding this is happenng since header and item is in the same hierarchy level of IDOC type PORDCR102 and the control record is inserted for every line item in the source file.
    It seems that through LSMW-BAPI  it is not possible to create PO with multiple line items. Can anybody provide some input regarding this? Thanks in advance.
    BR,
    Atanu Mukherjee

    Solved by myself.
    Earlier the problem was that LSMW was not being able to recognize items under same header. It was creating new IDOCs every time it gets a new item. To enable this we need to create two structure HEADERDATA and ITEMDATA.  Two additional identifier fields with identifier value 'H' and 'I' should be added in these two structures respectively. Then we need one sequential file with the identifiers field followed by the header and Item data. Example:
    H~header data
    I~item data
    I~item data 
    This would help the standard program to understand what are the items under same header and ultimately create PO with multiple line items.
    BR,
    Atanu Mukherjee

  • Multiple Thumb Slider with Multiple Track Colors

    Hi All,
    Does any one implemented a Multiple Thumb Slider component with Multiple Track Colors. Please find the screen shot of the component below which I am talking about.
    Any ideas or any link or sample source of code given would be highly appreciated.
    If I drag any thumb the colored section between any two thumbs should increase or decrease.
    Thanks,
    Bhasker

    Hi,
    There is a sort of workaround I made myself. Basically you set up your slider into a canvas container and add new boxes exactly at the position between your thumb buttons, in order to imitate your 'tracks'. Look the image below and notice that the black tracks are in fact VBoxes. For different colors, make each VBox different backgroundColor style.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
       <mx:Script>
              <![CDATA[
          import mx.containers.VBox;
          var tracks : Array = [];
          public function changeSliderHandler(event : Event) : void {
             for (var i : int = 0,j : int = 0; i < tracks.length; i++) {
                var track : VBox = tracks[i] as VBox;
                track.setStyle('left', slider.getThumbAt(j++).xPosition + 3);
                track.setStyle('right', slider.width - slider.getThumbAt(j++).xPosition + 3);
          public function addTrackHandler(event : Event) : void {
             var track : VBox = new VBox();
             track.setStyle('backgroundColor', '#000000');
             track.width = 0;
             track.height = 2;
             track.setStyle('bottom', '7');
             tracks.push(track);
             canvas.addChild(track);
             slider.values = slider.values.concat(0, 0);
             slider.thumbCount += 2;
              ]]>
        </mx:Script>
       <mx:Panel title="My Slider" height="95%" width="95%"
                 paddingTop="5" paddingLeft="5" paddingRight="5" paddingBottom="5">
          <mx:Canvas id="canvas" borderStyle="solid" height="40" width="100%">
             <mx:HSlider id="slider" minimum="0" maximum="100" thumbCount="2"
                         change="changeSliderHandler(event)" values="{[0,0]}" showTrackHighlight="false"
                         percentWidth="100" snapInterval="1" tickInterval="1"
                         allowThumbOverlap="true" showDataTip="true" labels="{[0, 50, 100]}"/>
             <mx:VBox id="track1" backgroundColor="#000000" width="0" height="2" bottom="7" initialize="{tracks.push(track1)}"/>
          </mx:Canvas>
          <mx:Button label="Add track" click="addTrackHandler(event)"/>
       </mx:Panel>
    </mx:Application>

  • I made a project with multiple tracks and had it all panned and mixed.  Now it's only playing in the right speaker.  Not even regestering a left side in the master volume?  What happened, how can I get both sides back?

    I made a project with multiple tracks and had it all panned and mixed.  Now it's only playing in the right speaker.  Not even regestering a left side in the master volume?  What happened, how can I get both sides back?

    Thank you for that info.
    For video, the codec is MPEG-4 Video (XVID) and for audio it says MPEG Audio Layer 1/2/3 (mpga).
    There are two issues with that file:
    The first is the Xvid CODEC (not meant for editing), and then the MPEG Audio/MPGA. I would convert that file, to something that is more editable.
    Good luck,
    Hunt

  • I am trying to create a button in flash that will display 4 separate images at the same time when clicked.  I can't get the images to stay on when I take the mouse of the button.  I need the actions script code to make this happen.

    I am trying to create a button in flash that will allow the user to click on the button and 4 separate images show up at the same time.  I can get the images to appear when I click the button but they will not stay on the screen.  I need to know what code I use to make the images stay once the button is clicked, then I need to know exactly where I place that code.  It does not appear to be possible to add the action code to the buttons layer since each time I add a new layer I just get another "up" "over" "down" and "hit" line.
    Thank you in advance
    AP

    It is not clear how you are trying to realize this from your description.  If you are trying to create this within a button symbol it will not work.  Explain your approach and if there is code involved, show what you have so far.

  • In trying to share music with multiple user accounts on one comp, I quit itunes, located my itunes media folder, moved it to a publicly accessible location. Problem is it didn't work and now I can't get it all back to the way it was.

    In trying to share music with multiple users on one computer, I followed the directions on "iTunes:How to share music between different accounts on a single computer" (http://support.apple.com/kb/ht1203). I did something wrong because i lost iTunes
    Tried to put files back, but it is not the same. Plugged in my ipod and it is not recognizing my computer.
    Can someone tell me where iTunes should be, and what sub files should be included with it. Thanks!

    If you are seeing the "Connect to iTunes" logo, then your device is in Recovery Mode, and you will need to restore it:
    If you can't update or restore your iOS device
    iOS: Back up and restore your iOS device with iCloud or iTunes
    Cheers,
    GB

  • How to create parameter with multiple selection in a query (SQ02) ?

    Hi Exports
    Do you know how to create parameter with multiple selection in a query (transaction SQ02)?
    thanks.

    Hi
    i know how to create user parameter at SQ02,
    the question is how to create multiple selection parameter?

  • Creating infotypes with multiple subtype

    Please tell me
    How to create infotype with multiple subtype

    Hi
    Please check this like it has got step by step details
    http://www.sapdevelopment.co.uk/hr/hr_infotypes2.htm
    Regards,
    Venkat

  • Recently installed OSX 10.8.2 and found that there was NO ~/Library and when I tried to create one I was told that it already exists.

    Recently installed OSX 10.8.2 and found that there was NO ~/Library and when I tried to create one I was told that it already exists.
    Does anyone know why ?

    It's hidden. Choose Go to Folder from the Finder's Go menu and supply that path to access it.
    (71284)

  • My MacBook Pro is asking for a password, when trying to play DVD. Anybody experienced that before.

    One of user's MacBook Pro is asking for a password, when trying to play DVD. Anybody experienced that before?
    Maybe the DVD itself is password protected, the user is travelling abroad.
    Thank you in advance

    Hi m,
    My guess is the DVD is from another region than the one the optical drive is set to. Region changes are limited to 5 total, so it asks for the admin password to make sure you want to do it/allow it. After #5, the drive is locked to that region forever.

  • I tried burning a dvd and it said that it couldn't be verified and ejected the disc.  Now the computer won't recognize any disc that I try to insert - it just ejects it.  Any ideas?

    I tried burning a dvd and it said that it couldn't be verified and ejected the disc.  Now the computer won't recognize any disc that I try to insert - it just ejects it.  Any ideas?

    If the machine is over 4 years old, have the PRAM battery replaced. If the machine is less than 4 years old, look at these possibilities*: http://www.macmaps.com/cdrfailure.html

  • Creating Video with Multiple Audio Tracks?

    Not sure if this is the right place to post this question but I figured its compression/video codec related so someone might have an idea...
    I've used Handbrake in the past to rip a DVD with an audio commentary that allowed for multiple audio tracks that could be played back in iTunes/Quicktime (though not on the iPod Classic for some reason... perhaps someone knows the answer to this?)
    I was just curious as to whether or not this was possible to do WITHOUT first making a DVD with an 2ndary track? I was hoping to record audio commentary for one of my shorts, and put it up on the web, but wanted to avoid the step of going to dvd first then ripping it.
    is this achievable in compressor? do I need to use a third party app? thanks so much.

    ehmjay wrote:
    is there any app (be it from apple or a 3rd party tool) that will allow me to add a secondary audio track for switching in quicktime/iTunes? if so could you point me in the direction of it (or even instructions)
    I'm afraid I'm unaware of anything - outside of HandBrake - that does encode a second track of audio. But I haven't exactly had my eyes open since I haven't needed to do this for a client yet.
    handbrake mentinos that its able to rip secondary audio for use with iPod Classic/Apple TV... however so far it hasn't worked for me. Does this mean that while handbrake is doing it properly its just my iPod itself that's having the troubles (like I said that alt. audio is there in iTunes/Quicktime just not on the iPod itself)
    I am pretty sure that the issue is that the software for iPod Classics - as is the case with AppleTV and, even, QT Player - which won't allow you to switch over to the other track. But I haven't had to work with the Classic in a while, perhaps there is a setting in Audio (or Video) that gives you the pop-up option you're seeking?

Maybe you are looking for

  • Why is File.renameTo(...) so instable?

    Hello, I got an average success ratio of 5:1 under WinXP. Looking into the sources didn't help me any further. I saw in the ANT-code that there a COPY operation is immediately launched as a workaround if the renameTo(...) fails. But it's such a basic

  • New event default settings

    this has to be an easy one --- why does a new calendar event start on the :15 of the hour? this always happens when i create an event on the calendar....any way to change that? if not, i'd love to hear the rationale behind that decision! M

  • Upgrade issue from 11.5.3300 to 11.5.3700

    I currently have Crystal Reports Server 11.5.3300.0, and was looking to upgrade to 11.5.3700.0.  When I login to the support site, I  only see the full download for 11.5.3700.  Is there a Serivce Pack or Fix Pack that will allow the upgrade?

  • Ios 7.1 no sound

    After the update my ipad air is stuck on headphone mode for some reason. When actual hp are plugged in sound works, when sound scrolling volume in settings speakers works too. Once using any app turns bk to headphones

  • Recognizing other computer on the network

    I have an iMac (G3, 400 mHz) running 9.2.2 networked to an iBook G4 running 10.4.7. They are connected via a linksys wireless router: the iMac connection is by ethernet, the iBook usually by wireless, but sometimes I plug in an ethernet cable. I foll