Creating chapters and play all

hi, i have a concert film. i recorded all the footage in by song, so i have 12 5+ minute files. I want to make a play all function, so the dvd will just play each song right after the ones before it. basically, how do i make each song a chapter and play all capabilities. i already made it so each song is its own film, but once the song ends, it retunrs to the menu....

In iMovie or iDVD, you can edit the songs one after the other in the same timeline to create one movie. Drop that movie into iDVD and you will get a movie that plays the songs in sequence. Also, in iDVD, you can a chapter for each song to give viewers the options of going to each one
With the lengths you are dealing with, you could still put each song as a separate movie into your DVD is you so choose

Similar Messages

  • Chapters and Play all - how do I get this to work with a one hour project?

    Hi
    I have a one hour project and at the moment I have it in one track with a Main Menu, Chapter menu and a bridge menu for the loop point.
    I have 5 chapters and want 2 functions to happen in my DVD structure:-
    1. the Play All function
    2. and the Chapters to play each individual chapter and then go back to the Chapter menu when it;s finished.
    As my project is now, the play all feature won't work, it is like it's the CHapter menu.
    In the past I've had a track for the play all and then separate tracks for each chapter. Is there a way around this - do I have to do that fancy encoding (which I have no idea how to set up.
    I have 5 chapters and would love some help to construct this as I don't think the 2 hours would fit on my single layer DVD and it would be a lot more exporting work.
    Hope you can help.
    Cheers
    Margie

    You may want to use scenarios in this situation.
    click the "add a scenario" button, an add as many scenarios as you have chapters.
    Then double click on each scenario option.
    You will see a list of chapter appear on the left of your timeline area.
    Drag the chapter you want to play solo to the empty list on the right ("scenario markers").
    Make sure you then select that chapter marker in the scenario Marker list, and choose "end jump: main menu". Also make sure that your gobal scenario end jump is set to your main menu too.
    Then link you buton to that scenario and repeat for the other chapters.
    hope that helps.
    tee.

  • Stop and Play All Child MovieClips in Flash with Actionscript 3.0

    I am stuck with the ActionScript here. I have a very complex animated flash movie for eLearning. These contain around 10 to 15 frames. In each frame I am having multiple movie clip symbols. The animation has been created using a blend of scripting and also normal flash animation.
    Now I want to create pause and play functionality for the entire movie. I was able to create the pause function but when i try to play the movie it behaves very strange.
    I was able to develop the pause functionality by refering to the below mentioned links:
    http://www.unfocus.com/2009/12/07/stop-all-child-movieclips-in-flash-with-actionscript-3-0 /
    http://www.curiousfind.com/blog/174
    Any help in this regard is highly appreciated as i am approaching a deadline.
    I am pasting the code below:
    import flash.display.MovieClip;
    import flash.display.DisplayObjectContainer;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    import fl.transitions.*;
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    import flash.events.Event;
    import flash.events.MouseEvent;
    stop();
    // function to stop all movieclips
    function stopAll(content:DisplayObjectContainer):void
        if (content is MovieClip)
            (content as MovieClip).stop();
        if (content.numChildren)
            var child:DisplayObjectContainer;
            for (var i:int, n:int = content.numChildren; i < n; ++i)
                if (content.getChildAt(i) is DisplayObjectContainer)
                    child = content.getChildAt(i) as DisplayObjectContainer;
                    if (child.numChildren)
                        stopAll(child);
                    else if (child is MovieClip)
                        (child as MovieClip).stop();
    // function to play all movieclips
    function playAll(content:DisplayObjectContainer):void
        if (content is MovieClip)
            var movieClip:MovieClip = content as MovieClip;
            if (movieClip.currentFrame < movieClip.totalFrames) // if the main timeline has reached the end, don't play it
       movieClip.gotoAndPlay(currentFrame);
        if (content.numChildren)
            var child:DisplayObjectContainer;
            var n:int = content.numChildren;
            for (var i:int = 0; i < n; i++)
                if (content.getChildAt(i) is DisplayObjectContainer)
                    child = content.getChildAt(i) as DisplayObjectContainer;
                    if (child.numChildren)
                        playAll(child);
                    else if (child is MovieClip)
                        var childMovieClip:MovieClip = child as MovieClip;
                        if (childMovieClip.currentFrame < childMovieClip.totalFrames)
          //childMovieClip.play();
          childMovieClip.play();
    function resetMovieClip(movieClip:MovieClip):MovieClip
        var sourceClass:Class = movieClip.constructor;
        var resetMovieClip:MovieClip = new sourceClass();
        return resetMovieClip;
    pauseBtn.addEventListener(MouseEvent.CLICK, onClickStop_1);
    function onClickStop_1(evt:MouseEvent):void
    MovieClip(root).stopAll(this);
    myTimer.stop();
    playBtn.addEventListener(MouseEvent.CLICK, onClickPlay_1);
    function onClickPlay_1(evt:MouseEvent):void
    MovieClip(root).playAll(this);
    myTimer.start();
    Other code which helps in animating the movie and other functionalities are as pasted below:
    stage.addEventListener(Event.RESIZE, mascot);
    function mascot():void {
    // Defining variables
    var mc1:MovieClip = this.mascotAni;
    var sw:Number = stage.stageWidth;
    var sh:Number = stage.stageHeight;
    // resizing movieclip
    mc1.width = sw/3;
    mc1.height = sh/3;
    // positioning mc
    mc1.x = (stage.stageWidth/2)-(mc1.width/2);
    mc1.y = (stage.stageHeight/2)-(mc1.height/2);
    // keeps the mc1 proportional
    mc1.scaleX <= mc1.scaleY ? (mc1.scaleX = mc1.scaleY) : (mc1.scaleY = mc1.scaleX);
    stage.removeEventListener(Event.RESIZE, mascot);
    mascot();
    this.mascotAni.y = 100;
    function mascotReset():void
    // Defining variables
    var mc1:MovieClip = this.mascotAni;
    stage.removeEventListener(Event.RESIZE, mascot);
    mc1.width = 113.45;
    mc1.height = 153.85;
    mc1.x = (stage.stageWidth/2)-(mc1.width/2);
    mc1.y = (stage.stageHeight/2)-(mc1.height/2);
    // keeps the mc1 proportional
    mc1.scaleX <= mc1.scaleY ? (mc1.scaleX = mc1.scaleY) : (mc1.scaleY = mc1.scaleX);
    var interval:int;
    var myTimer:Timer;
    // function to pause timeline
    function pauseClips(secs:int, myClip:MovieClip):void
    interval = secs;
    myTimer = new Timer(interval*1000,0);
    myTimer.addEventListener(TimerEvent.TIMER, goNextFrm);
    myTimer.start();
    function goNextFrm(evt:TimerEvent):void
      myTimer.reset();
      myClip.nextFrame();
      myTimer.removeEventListener(TimerEvent.TIMER, goNextFrm);
    // function to pause timeline on a particular label
    function pauseClipsLabel(secs:int, myClip:MovieClip, myLabel:String):void
    interval = secs;
    myTimer = new Timer(interval*1000,0);
    myTimer.addEventListener(TimerEvent.TIMER, goNextFrm);
    myTimer.start();
    function goNextFrm(evt:TimerEvent):void
      myClip.gotoAndStop(myLabel);
      myTimer.removeEventListener(TimerEvent.TIMER, goNextFrm);
    MovieClip(root).pauseClips(4.5, this);
    // function to fade clips
    function fadeClips(target_mc:MovieClip, next_mc:MovieClip, from:Number, to:Number):void
    var fadeTW:Tween = new Tween(target_mc, "alpha", Strong.easeInOut, from, to, 0.5, true);
    fadeTW.addEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    function fadeFinish(evt:TweenEvent):void
      next_mc.nextFrame();
      fadeTW.removeEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    // function to fade clips with speed
    function fadeClipsSpeed(target_mc:MovieClip, next_mc:MovieClip, from:Number, to:Number, speed:int):void
    var fadeTW:Tween = new Tween(target_mc, "alpha", Strong.easeInOut, from, to, speed, true);
    fadeTW.addEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    function fadeFinish(evt:TweenEvent):void
      next_mc.nextFrame();
      fadeTW.removeEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    // function to show screen transitions
    function screenFx(target_mc:MovieClip, next_mc:MovieClip):void
    //var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Iris, direction:Transition.OUT, duration:1.2, easing:Strong.easeOut, startPoint:5, shape:Iris.CIRCLE});
    tranFx.addEventListener("allTransitionsOutDone",doneTrans);
    function doneTrans(evt:Event):void
      next_mc.nextFrame();
      tranFx.removeEventListener("allTransitionsOutDone",doneTrans);
    // function to show screen transitions inverse
    function screenFxInv(target_mc:MovieClip, next_mc:MovieClip):void
    var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Iris, direction:Transition.IN, duration:2, easing:Strong.easeOut, startPoint:5, shape:Iris.SQUARE});
    tranFx.addEventListener("allTransitionsInDone",doneTrans);
    function doneTrans(evt:Event):void
      next_mc.nextFrame();
      tranFx.removeEventListener("allTransitionsInDone",doneTrans);
    // function to zoom in
    function zoomFx(target_mc:MovieClip):void
    //var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Zoom, direction:Transition.IN, duration:3, easing:Strong.easeOut});
    //tranFx.addEventListener("allTransitionsInDone",doneTrans);
    /*function doneTrans(evt:Event):void
      next_mc.nextFrame();
    // Blinds Fx
    function wipeFx(target_mc:MovieClip):void
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Wipe, direction:Transition.IN, duration:3, easing:Strong.easeOut, startPoint:9});
    // Blinds Fx Center
    function fadePixelFx(target_mc:MovieClip):void
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Fade, direction:Transition.IN, duration:1, easing:Strong.easeOut});
    tranFx.startTransition({type:PixelDissolve, direction:Transition.IN, duration:1, easing:Strong.easeOut, xSections:100, ySections:100});

    This movie is an animated movie from the start to end. I mean to say that though it stops at certain keyframes in the timeline it stops for only a certain time and then moves on to the next animation sequence.
    Its not an application where the user can interact.
    On clicking the play button i want the movie to play normally as it was playing before. If the user has not clicked on the pause button it would anyhow play from start to finish.
    Is there anyway where i could send in the fla file?

  • How can I get iTunes to locate and play all my music files?

    How can I get iTunes to locate and play all my music files?

    I have this problem too. I am researching now. Here is what I know so far. If you right click a song then get ifo the it will say Protected AAC or purchased AAC. Protected wont play on sonos, purchased will play on sonos. It seems that all my protected were purchased 2005 to 2009 or so. I am trying to find out if apply will convert these for a small dfee or if I use the itunes cloud these tunes will convert for me. downloading and reloading is not an option for me. Pretty much a money grab by apple either way. I am sure Steve is smiling.

  • How to create plug and play design pattern on a environment

    Hi All,
    Help me to get a best design for my problem statement.
    Problem Statement: I have to create a platform where I should be able to plug and play different components. explaining better with example
    Example:
    1. I have to create a platform for school
    2. In this school platform we have to plug in multiple components like "Student", "Teacher", "Subjects", "ClassPeriods" etc.,
    3. These components should be easily plug/unplug and play
    4. Like, the component "ClassPeriods" want to purchase from Vendor 1 and plug it to "School" platform it should work.
    5. Incase if we want to unplug the "ClassPeriod" component provided bfy Vendor 1 from "School" platform and want to plug the "ClassPeriod" from Vendor 2. then the Design should support without any extra effort.
    Suggest me the best design pattern for the problem
    This design pattern is for ASP.Net
    Thanks,
    S.Kannan

    Sounds like you're looking at 'Composition'. As a background, and possible solution, take a look at MEF;
    http://mef.codeplex.com/
    http://pauliom.wordpress.com

  • Best way to create a seperate Play All option...

    On my sub-menus I have an option to Play All of the video titles for that sub-menu. What is the best way to do this? I was planning on creating one time line with the corresponding video clips for each sub-menu. If I do it like this will I have double the amount of data using space on my DVD?
    I haven't had the chance to experiment myself... I am waiting on footage to render as I type.
    Thanks,
    Robert

    Robert.
    Are these titles all joined together, or separate clips?
    If the former, then point the "Play All" to the first chapter, and then create a series of Chapter Playlists, one for each clip, and point the submenu buttons to these. The end actions should go to the submenu they were called from.
    If the latter, then set up a series of ordinary playlists.
    For "Play All", create a playlist with every clip in the correct sequence.
    For the individual clips, simply point the buttons to the individual timelines, and have their end actions reverting to the submenu they were called from.
    Hope this helps.

  • Some songs starts on my iPod, then stop and start from the begining and play all the way through

    Hey,
    While listening to songs on my iPod Classic 120gb, some songs will start to play, after 2-3 seconds, stop and start again from the beginning and play through the entire song no problems. On iTunes the songs still plays fine no stopping or starting. All songs are random artists and songs.
    Help! its really frustrating!

    Hey andy8299,
    Do you have any other music software (i.e Limewire) installed? If so perhaps these files are not compatible.
    See this for compatible song formats:
    http://docs.info.apple.com/article.html?artnum=61476
    Hope this helps,
    Generik

  • Please advise: create chapters and create navigation menu

    Hi,
    relatively new to FCP I'm trying to create three chapters in a 1.5 hr. movie. Can someone tell me how to create 3 separate chapters, each preceded by it's owner chapter page.
    I want to create a navigation menu from these chapters, that will be included on the DVD so that viewers can navigate immediately to either of these chapters.
    I find the FCP manual rather confusing. Any help will be greatly appreciated !!!!
    THNX
    Wim
    [email protected]

    In FCP, you create chapter markers by first making sure that none of the clips are selected, then place the Timeline playhead where you want the chapter marker to be located, then hit the m key twice. A marker dialog window will open; give the chapter a name if you like (optional), then click the Chapter button in the dialog window.
    Once you're finished with that (all editing should be completed before chapter markers are added), go to File-Export->QuickTime Movie. Include DVD Studio Pro markers in the drop-down menu.
    Once in DVD Studio Pro, create the menu(s) you want to use, or import them if you created the menus in another application like Motion or Photoshop. Link to menu buttons to the chapters.
    You should be able to find any number of tutorials online regarding this subject, as well as plenty of information in the DVD-SP user's manual/help files.
    -DH

  • .Gif plays fine inside PS, yes when saved and played, all hidden layers stay visibile

    This is annoying me to no end! As title states, when i play the animation on the abimation timeline, it looks perfect. When i go to "save for web" and preview it, the layers that i have set to be hidden after their initial appearance in the animation still stay on screen even though I have them set to not be visible in the animation after the first frame I want them to appear in. I hope that makes sense. And yes even when I save the file and not only preview it, and click to run it, it still happens. Anyone have clues?

    This is annoying me to no end! As title states, when i play the animation on the abimation timeline, it looks perfect. When i go to "save for web" and preview it, the layers that i have set to be hidden after their initial appearance in the animation still stay on screen even though I have them set to not be visible in the animation after the first frame I want them to appear in. I hope that makes sense. And yes even when I save the file and not only preview it, and click to run it, it still happens. Anyone have clues?

  • Separating songs into folders and playing all random

    I downloaded songs to my Zen Nano Plus player. Now I want to separate the songs into 3 folders; Jazz, Oldies, New. How do I do that? Will I still be able to play a combination of all the songs from the 3 folders in random order.

    After all day of playing with the thing, I figured out how to do it. If anyone else is as Mp3 challanged as I am, don't hesitate to ask me how I did it.

  • I am having a terrible problem trying to get a player to loop and play all the time.  Please help

    Heres my code. I added a bunch of extras in there in hope that it will work.  It does auto start, however it won't keep looping and restart it.  Whats wrong with it?
    I have loop = true and i have autorewind = true autoplay=true autostart=true.  I don't get it.
    <object id="player1" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9.0.115" width="250" height="250">
          <param name=bgcolor value="#FFFFFF">
          <param name=movie value="players/player.swf">
          <param name=allowfullscreen value="false">
          <param name=allowscriptaccess value="always">
          <param name="flashvars" value="file=http://www.websitename.flv&autostart=true&loop=true&fullscreen=false&amp;controlbar=bottom &autoPlay=true&amp;autoRewind=true">
          <param name="SCALE" value="exactfit">
          <param name="LOOP" value="true">
          <embed src="players/player.swf" width="250" height="250" loop="truhe" scale="exactfit" name="player1" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" bgcolor="#FFFFFF" allowfullscreen="false" allowscriptaccess="always" flashvars="file=http://www.websitename.flv&autostart=true&loop=true&image=&fullscreen=false&controlbar=bot tom&autoPlay=true&amp;autoRewind=true"></embed>
        </object>

    Hi, you are welcome
    eidnolb

  • 1 DV Movie Won't Play - - All other DV Movies Play Fine

    Okay, so my DV Movie files play video and audio in iMovie 9 - - except one of them which does NOT play the audio track.
    All of the DV Movies play video and audio in Quicktime so I know the audio is there, but iMovie doesn't play / recognize the audio track.
    What else can I do to make this audio track play in iMovie?

    John:
    You can get that using Stories. Check this Stories Tutorial (from www.kenstone.net).
    You'll get your Chapters and Play All buttons working fine.
      Alberto

  • How to block user create personal view and select ALL VIEW?

    How to block user create personal view and select ALL VIEW?

    Hello,
    >create personal view
    To restrict creating personal view, you need to modify your existing permission level or create new one. Login with admin account to your site and open role.aspx page (http://siteurl/_layouts/role.aspx). Then click on existing permission or add new permission
    level-->and move to "Personal Permissions" section-->uncheck "Manage Personal Views - Create, change, and delete personal views of lists" option. Later you can assign this permission to all users, whom you don't want
    to allow to create.
    >and select ALL VIEW
    Since SP does not supports view level permission directly so you have to use custom solution or use below designer solution to restrict user to open any view.
    http://www.codeproject.com/Articles/433486/How-to-set-view-level-permissions-out-of-the-box-i
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Playlist -play all time lag

    Playlist and play all work well but for my taste there is too much time between the files being played--too much black on the screen before it goes to the next video. Is there a way to shorten the time lag?

    I had hoped to have a button for "Play Movie", and then others for several chapters within the edit.
    With the play list I get a Jerk and slight pause between chapters while playing the play list, so I can't use a Chapter Playlist to play the whole movie.
    This means I can't have any chapters to refer to on the DVD, without creating an entirely new timeline that has one chapter, as this mean two timelines on the DVD, of the same edit, which is too big to fit on the DVD.
    The six chapters are fed into one another with the End Action, leading to the next chapter.
    Using XP SP2
    ASUS MB, with 2GB
    Playing the Timeline is fine, is just when using the Chapter Playlist. The Jerks and Pauses between chapters is worse on Preview.

  • DVD Menu play all & chapter selections

    I have a client requesting something that he has done with Adobe's DVD authoring system that I don't believe Studio Pro can do, but thought I would put it out there and maybe someone else has figured it out:
    He wants 2 menus (MAIN & SUB MENU) - Main would contain +play all+ or +chapter selection+ buttons. +Play all+ button would start from the beginning and play all the way to the end without stopping. +Chapter Selections+ would take you to a SUB MENU where you could select only certain sections...and here is where it's challenging... _but after that specific selection (or chapter) is finished, that it return to the Sub Menu, rather than continuing on playing the rest of the movie._
    I have done such projects successfully; running time was short enough that it would allow me to make 2 Tracks. one with no chapter markers that would play all the way to the end, and the other with chapter markers indicating to jump back to a sub menu. Obviously this doubles the amount of data and it is not an option for this 95 minute program.
    Am I missing something fundamental? I hope so. Any insight as always is appreciated and I hope that made sense! Thanks again.

    Hi Brittney
    I just saw this post and wanted to ask you a question about stories before I set up my project.
    I'm a little nervous as my project is 95 mins, has 5 Chapters, and three of these Chapters have Sub Chapters and Sub, Sub Chapters (if that makes sense?). Because the project is so long I need to set up up properly.
    I need to be able to either Play All (from start to finish) or go to each Chapter/sub chapter/sub-sub Chapter and come back to the relevant chapter menu each time.
    Is stories the way to go with this? I haven't done such a complex project and have always been able to use 2 tracks (a play all and then chapters) .
    How do I set this up properly? If I put in all the chapter markers in the FCP timeline and export them out into Compressor and then into DVD SP, is this the best way to go?
    How do I then link all my sub chapters, using Story, to come back to the relevant menu, like an end jump?
    I hope this makes sense? Cheers and thanks,
    Margie
    PS I have DVDSP Version 4.2.1

Maybe you are looking for

  • "Can't find dependent libraries" Query

    I created a sample.dll using VC++ which inturn uses java libraries. I was getting 'file.obj : error LNK2001: unresolved external symbol __imp__JAWT_GetAWT@8' link error while creating sample.dll even after providing jawt.dll path. So used jre/lib/jaw

  • Issue while using CountNode()

    Hi All, I am stuck at this issue:- I am using a file adapter to read a file which has some repeated tags and I want to count the number of repeated nodes.I came across this function and used in my code. But instead of given the total count of the nod

  • Billing document not getting saved

    Hi Gurus,         I am facing a problem with th billing doument. When I try to save the Billing through VF01, it is going to the screen and showing the line items in it. And when we save, it is generating a billing document number.But it is not getti

  • That's it, I want a divorce

    Hi ppl, Last Thursday I reached a conclusion. J2EE is too big, too complex, too picky for one person to understand on their own. I think maybe J2EE is developed by teams of specialists. I'm trying to implement the whole thing. I think maybe J2EE is d

  • I can't delete photo files to make room for iOS 8.

    I can't delete photo files to make room for iOS 8.