How to change duration of music on menu?

Adobe Premiere Elements 7.0 - Windows Vista 64bit
I'm getting there. (Thanks to your help!)
I started from (almost) "scratch" so I'd have a nice "clean" video to burn to a DVD. I've reset all my chapter markers. Perfect, in Preview. I've chosen my menu and adjusted the motion scene selection buttons. Gorgeous, in Preview. I don't like the "default" music that comes with the menu I chose. I read some old threads here and found there is a 30 second limit, so I used Audacity to cut a WAV clip that's 16.23 seconds long to use as a loop. Here's the problem:
I clicked "Browse" and selected the same music clip for the Main Menu and each of three successive Scene Selection pages. Works fine on the Scene Selection pages, but the Main Menu won't play past 13 seconds for some inexplicable reason. I tried manually adjusting the "duration" to 16.23, but it snaps back to 13 as soon as I hit Preview.
I've closed the program, restarted my computer, made a new (identical) music clip (just in case the Main Menu didn't want to "share") but it still won't take it. It plays the first 13 seconds then abruptly loops back to the start, which is NOT a *smooth* transition - but it would be, IF it would play the whole 16.23 seconds like the other menu pages do without any problem.
I'm open to suggestions, but I sure hope I don't have to start over again. Oh, BTW - I tried switching to a totally different Disc Menu, just out of curiosity, and that one played the whole music clip on the Main Menu page without a problem... but I don't like the look of that menu, I want the other one - the one that's giving me grief (of course). Don't understand why it would work on one and not the other.
Please advise. Many thanks in advance. Cheers, Val
To answer a question one of you (Bill?) asked on the previous thread about my source material --
It was originally a PAL video cassette, converted to NTSC DVD. It's all on my computer now - four VOB files: three @ .99GB each, and one @ 691 MB. It's a one-hour Peter Allen TV Special broadcast in Australia. I am removing the advertising and making a menu that will allow selection of each song individually. I want more of a "concert" and less of a "TV show" as the finished product.

Here are the results of my test of the Broadway Menu Set and the exact steps that I used. It starts a bit before the work with the Video and Audio, but this might be useful to someone creating a Menu Set for use with PrE.
I got the Standard (4:3) PSD’s for the Broadway Menu Set, both the Main Menu (mm) and Scene Selection (ss), plus the MPG and the MP3 files. To get these Menus to display in PrE’s Create Menus selection area, I Opened the PSD’s in Photoshop, and created the PNG “thumbnails” for them, using the naming convention of the other PNG thumbnails as my guide. I first resized each PSD to 160 x 128 pixels, and then did a Save_As_PNG-8, using the correct naming convention, used elsewhere. These were placed into a new “(V) Broadway” folder with the PSD’s, the Motion Asset MPEG and the Audio MP3 file. All displayed fine in PrE 4.
In a PrE Project, I took the original Broadway MPEG and used TimeStretch to increase its Duration to the 29;20, that I had used before (that would match my Audio file from earlier tests), and did a Share, choosing MPEG. This resulted in an m2v, but that worked fine.
In PrE’s Create Menus Panel, I chose the new, stretched m2v, and the Duration changed to match the 29;20 Duration of the Motion Asset. Next, I linked to the previous SmartSound WAV, that was edited to have a Duration of exactly 29;20. The Duration for that Asset changed to 29;20 instantly.
I previewed and the searchlights were now slower (as was to be expected) and the limo was also slower pulling in and out. The Menu’s Motion Background was smooth, but slower. The new Audio with Fade-in and Fade-out, played perfectly, and the Menu Looped very nicely. Actually the Looping was now better than with the original MPEG and MP3 Assets! This was a nice surprise, as there was a bit of a jolt, when the original Audio Looped. Not sure what could be done to eliminate that, but think that it would be easily accomplished in Audition, or Audacity. Maybe a test for another day.
I burned a DVD RW and the Menu worked perfectly. I did not complete the test by altering the Scene Selection Menus (in my test Project, I needed three of these), but feel confident that they would function the same way.
In conclusion, if one needs to use other Audio source files, this can be done, so long as one takes two things into consideration: the Video Motion Asset will determine the Looping/Duration, and the Duration must be < 30;00. I chose 29;20 to give myself a bit of headroom. Now, one needs to consider the visual effect of using TimeStretch to modify the Duration of a Background Video - here, it was fine. The Audio needs to match perfectly, or be ever so slightly shorter (I’m talking about a few Audio Units here - slight indeed), than the Video Asset.
Now, one is still limited to the 30;00 Duration limit, in PrE, but up to that point, the chosen Audio can be just as long as the Video.
I strongly recommend using a short Fade-in and Fade-out on the Audio, so that there is a lead-in/lead-out that will keep from having harsh jumps with the Loop.
Hope that this helps someone in the future.
Hunt

Similar Messages

  • How to change font-size of application menu

    I want to change font-size of application menu. How?

    Hi,
    To change the font size of the Application menu, you need to change main.css file.
    at 'body, td, input, select, textarea' class.
    For more detail about main.css, please refer Bookshelf
    Siebel Developer's Reference at [8 Cascading Style Sheets].
    Regards,
    Joseph Arul Dass

  • How to Change an Annotation's Right Menu?

    I want to change the "Stamp" annotation's right menu to a Custom menu,How to achieve it in my plug-in? Please guide me~~~
    Any help would be appreciated.

    Hi, Irosenth
    Thanks for your reply.
    I changed :
    PDAnnot newAnnot = PDPageCreateAnnot (page, ASAtomFromString("Stamp"), &fr);
    to:
    PDAnnot newAnnot = PDPageCreateAnnot (page, ASAtomFromString("MyStamp"), &fr);
    so the Stamp's original pop-up menu will no longer display, but how to create a new pop-up menu for "MyStamp"?
    LusterSir

  • How to change color of DHTML sub menu list

    Hi all,
    In my application i am using DHTML submenu list. But I have to change the color of
    the menu list which is selected currently.
    In interactive report how to fix the column width , because if one column has big string it's going to the right side. My requirement is after fixed column width it has to come in the second line.
    pls help me. I am in urgent need.
    thnks
    pnr

    im a bit confused with the post so hopefully this will help you, if not then let me know.
    I think the problem is that in your renderer your saying
    setBackground(header.getBackground());which is setting the backgound of the renderer rather than the selected item, please see an example below, I created a very simple program where it adds JLabels to a list and the renderer changes the colour of the selected item, please note the isSelected boolean.
    Object "value" is the currentObject its rendering, obviously you may need to test if its a JLabel before casting it but for this example I kept it simple.
    populating the list
    public void populateList(){
            DefaultListModel model = new DefaultListModel();
            for (int i=0;i<10;i++){
                JLabel newLabel = new JLabel(String.valueOf(i));
                newLabel.setOpaque(true);
                model.addElement(newLabel);           
            this.jListExample.setModel(model);
            this.jListExample.setCellRenderer(new RowHeaderRenderer());
        }the renderer
    class RowHeaderRenderer extends JLabel implements ListCellRenderer
        JTable theTable = null;
        public Component getListCellRendererComponent(JList list, Object value,
                                                      int index, boolean isSelected, boolean cellHasFocus){
            JLabel aLabel = (JLabel)value;
            if (isSelected){
                aLabel.setBackground(Color.RED);
            }else{
                aLabel.setBackground(Color.GRAY);
            return aLabel;       
    }

  • How to change duration of Preventive Maintenance cylce in strategy plan?

    Hi,
    How one can change duration of Preventive Maintenance cylce in strategy plan?
    e.g. In IP11 we set Preventive Maintenance schedule as monthly and we want to change it as quarterly i.e. every 3 months from starting date.
    With Best Regards,
    Rajkumar

    Hi Mr Ramesh
    Thanks for reply .
    Kindly guide us about as what steps /Tcode need to be used to perform the following actions as suggested by you :
    a) Delete orders.
    b) Go to IP10 and Do a 'manual call' by entering the planned date to create orders for the deleted packages.
    Or
    Reschedule the Whole Maintance plan by entering appropriate dates.
    c) Also please clarify , that how the new Orders will get generated against the Deleted Orders .
    With Thanks and Rgds
    Sonia

  • How to change options in Run time menu while labView was running

    Hello Good Afternoon,
        I m Using LabView 8.5.How to change the options in Run time menu for any control while Labview was running
    Thanks 
    Jai
    Jayavel
    Solved!
    Go to Solution.

    Hi Jai,
    Try the below attached VI and let me know if u still need some explanation.
    Rgds,
    Venky
    Attachments:
    Run Time Menu.zip ‏6 KB

  • How to change the position of a menu?

    Hello,
    I'm a new dreamweaver developer so I would like to ask you
    few questions.
    If I have a sprite menu that is positioned by default in the
    left border of the page, how can I change it's position inside the
    page?With css?How?
    I'd have to put inside my page also a logo image but, just as
    menu, I am unable to put it in the right part of the page; so I was
    wondering how to change its position too.
    Thank you,
    Kind Regards, Luke14free

    You would change its position by changing the position of its
    container. We
    would need to see your page and its code to know how to do
    that.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "luke14free" <[email protected]> wrote in
    message
    news:f2pntm$lf1$[email protected]..
    > Hello,
    > I'm a new dreamweaver developer so I would like to ask
    you few questions.
    > If I have a spry menu that is positioned by default in
    the left border of
    > the
    > page, how can I change it's position inside the
    page?With css?How?
    > I'd have to put inside my page also a logo image but,
    just as menu, I am
    > unable to put it in the right part of the page; so I was
    wondering how to
    > change its position too.
    > Thank you,
    > Kind Regards, Luke14free
    >

  • How to change duration of selected still image Clips?

    iMove is great in all its simplicity. However coming from the Windows (Pinnacle Studio) side I have yet a few mysteries to solve: Changing duration of a single still image clip is trivial, but it seems impossible to do the same operation selecting two or more clips. Did I miss anything? You can specify the duration and apply to all clips, but I have found no way to apply e.g. 4 sec duration to half of the 220 slides in my slideshow. Cmd+R on 100 still images seems like a fairly unintelligent approach. Hints, anyone?

    Hi
    Anybody?
    I'm having the same problem.
    I have 500 stills in my timeline (iMovie 06 HD) and there seems to be no way to change the duration of more than one still at a time.
    This cannot be right. Please tell me what I am missing!
    According to another thread about this issue, the answer was that after I select my group of stills in the timeline, I should be able to open "Media" and "Photos" in iMovie, and then set the stills duration settings that way.
    But the button "Show Photo Settings" is greyed out, so I am unable to set the group stills duration.
    Any help?
    PLEASE?

  • How to change the color of navigation menu text?

    Hello guys,
    is there any way to change the color of navigation menu text? (Home, Contact About us,etc)
    Thank you,
    Cheers

    To create your own navigation bar, you can use a textbox and use colour fill with any colour you want and then enter the names of your pages in this and create hyperlinks to these pages. The text can then be any colour you want.
    You can also use shapes if you want to and use the shapes to create individual buttons.
    To hide the original nav bar, go to page and it has a couple of boxes with hide nav bar and include in page. Uncheck these and the original nav bar will disappear. You can't delete them however.

  • How to change hover state on spry menu dropdowns?

    I've spent 4 hours making changes to the style sheet. I cannot figure out how to make the drop-down menu background change when you mouseover. The text color changes, but the background doesn't. I keep making changes to the stylesheet, and sometimes I see no difference.
    Also... trying to change the font color on the main menu text. Style sheet LOOKS right, but doesn't display any change.
    ALSO, my border is wider than the submenus. They are both set to 15ems. Maybe I don't understand ems??? I appreciate all your help out there! Sorry for not taking out all comments from code...
    http://duenorthdesign.com/pcm/index2.html
    ul.MenuBarHorizontal {      margin: 0;      padding: 0;      list-style-type: none;      font-size: 100%;      cursor: default;      width: 748px; } /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */ ul.MenuBarActive {      z-index: 1000; } /* Menu item containers, position children relative to this container and are a fixed width */ ul.MenuBarHorizontal li {      margin: 0;      padding: 0;      list-style-type: none;      font-size: 100%;      position: relative;      text-align: left;      cursor: pointer;      width: 8em;      float: left; } /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */ ul.MenuBarHorizontal ul {      margin: 0;      padding: 0;      list-style-type: none;      font-size: 100%;      z-index: 1020;      cursor: default;      width: 15em;      position: absolute;      left: -1000em; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible {      left: auto; } /* Menu item containers are same fixed width as parent */ ul.MenuBarHorizontal ul li {      width: 15em;      font-size: 12px;      background-color: #C2CA9A;      color: rgba(0,0,0,1); } /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */ ul.MenuBarHorizontal ul ul {      position: absolute;      margin: -5% 0 0 95%; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible {      left: auto;      top: 0; } /******************************************************************************* DESIGN INFORMATION: describes color scheme, borders, fonts *******************************************************************************/ /* Submenu containers have borders on all sides */ ul.MenuBarHorizontal ul {      border: 1px solid #61270e; } /* Menu items are a light gray block with padding and no text decoration */ ul.MenuBarHorizontal a {      display: block;      cursor: pointer;      background: 61270e;      padding: 0.5em 0.75em;      color: ffffff;      text-decoration: none; } /* Menu items that have mouse over or focus have a blue background and white text */ ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus {      color: #61270e; } /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */ ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {      background: transparent;      color: #61270e; } /******************************************************************************* SUBMENU INDICATION: styles if there is a submenu under a given menu item *******************************************************************************/ /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal a.MenuBarItemSubmenu {      background-image: url(../images/bkd_navtop.jpg);      background-repeat: repeat-x;      color: rgba(255,255,255,1);      font-family: "Yanone Kaffeesatz", Verdana, Geneva, sans-serif;      width: 149px;      font-size: 23px; } /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenu {      background-image: url(SpryMenuBarRight.gif);      background-repeat: no-repeat;      background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal a.MenuBarItemSubmenuHover {      background-image: url(SpryMenuBarDownHover.gif);      background-repeat: no-repeat;      background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover {      background-image: url(SpryMenuBarRightHover.gif);      background-repeat: no-repeat;      background-position: 95% 50%; }

    The good news is, Spry components generate their own CSs files so you know where to start when customizing. From there you can either go into the CSS file itself, or use the CSS styles panel in Dreamweaver.
    if you're looking within the CSS file, you first need to find the block the styles the particular element you want to change, and tweak the values. However, if any of the attributes are inheriting their states from a parent rule, then you need to add that attribute to override the parent setting. So that means making sure you're using the right attribute and getting the syntax right.
    If you use the CSS panel, select all, find you way to the correct style sheet, expand it and find the rule you need to change. You can set these parameters in the area underneath, or just double click the rule in the upper tree and display the CSS rules dialog. This is my favorite as it displays exactly what is contained in the style sheet in visual form. You can change values easily and add new attributes knowing that it will write the correct syntax. This should make it very easy to add hover states for the background and text, dimensions for the submenus and borders. For sizes and borders, I prefer pixels, but you can also add borders per side of the containing box - it doesn't have to be the same border all the way around.

  • How to change duration of multiple photos

    Greetings - I'm trying to change the duration of multiple photos in iMovie. Basically, I'm trying to change the duration of about 300 images (to make a time-lapse movie), but can't for the life of me figure out how to do it.
    I need to change the duration of every photo to 0:03, but when when I do so, it automatically imports the photos with a duration of 9:29, and I can only change the duration of individual photos after import. I made a time-lapse move a while ago but can't remember how to do it. Any thoughts?

    Select a group of your stills in the time line. (I would do maybe 30 at a time, because to do the whole 300 at once might overwhelm the machine -- though you could try.) Then go to Media > Photos > Show Photo Settings. In the Show Photo settings dialogue box, set your duration to 0:03, and then hit Update. The selected photos should all update to 0:03. You may need to remove the transitions first.
    Another way would be to set your duration for 0:03 on the first photo that you import into your timeline. Then all other photos that you import afterwards will have that same duration.

  • How to change boot up music/sound?

    Hi,
    Does anyone know how i can change the music of my mac mini when i switch it on?
    I'm getting tired of that sound and it keeps making me jump in my quiet room!
    I've already tried going into system preference/Sounds to no avail.
    thanks

    Hi guys,
    Strange thing is....
    The boot up chime still comes from my mac (internal speaker) when the external speakers are plugged into the socket of the computer, yet when i play music they come from my external speakers..
    This means i have no control over where the chime comes from, it will always come from the internal speakers of the mac.

  • My email address has changed and when I try to play purchased songs it asks me to authorize another computer under the old email address.  How do I play the music that I have purchased?  My account is current with the new email address.

    My email address has changed and when I try to play purchased songs it asks me to authorize another computer under the old email address.  How do I play the music that I have purchased?  My account is current with the new email address.

    You may have already done this, but try de-authorizing your computer (through the iTunes:Store menu) and then re-authorizing it.

  • How to change the duration of a sequence of stills all at once

    Hi.
    I know how to change the duration of one still, but changing the duration of many seems elusive.  I've gone to the Help menu and typed "Duration."  That points me to the menu where I would change the duration of one still.
    Thanks for your help!
    Roxane

    edit:
    For items already in the timeline, Select the each item in the timeline, right click and select "change speed" from the popup menu. You can not change the duration of a group of slides, only one at a time.
    To change images that are already imported but not in the timeline, there are two ways to go - the brute force method and the item by item method.
    Brute Force: Delete the stills from the Browser, change the duration of still setting in User Preferences>Editing to what you want, then reimport the stills. They will come in with the new duration. Changing the User Preference setting only affects stills imported after the change, it has no effect on material already in the Browser.
    Item By Item: Go to the still in the Browser and change the duration for it. Right click on the time and copy it. Select the next still image time, paste the new time in, rinse and repeat. If you have a lot of stills and they are well organized (ie all in the same folder), the brute force is probably faster.
    x
    Message was edited by: Studio X to correct factual errors in the original post

  • Inconveinient video menu how to change?

    hi,
    I have a 16gb itouch and a 5.5 gen video and before on my video when you selct videos it is all in a list and categorized not spilled out everywhere. does anyone know how to change the itouches video menu so that when u select videos it goes like movies, tv, music videos, podcasts, cause i find it really annoying haveing al my movies in a list to then see a folder with tv and then see spiled music vids again

    The video menu is organized.
    You will see a Header for Movies-movies are listed underneath.
    TV shows are next-header for TV shows-then the shows are listed. If you have multiple episodes of same show-you see listing for TV show, tells how many episodes-if you select, goes to screen showing the episodes for that show.
    Etc, etc.

Maybe you are looking for

  • Table of Contents (.hhc) Not displaying in Web browser

    Hi, I have just upgraded Robohelp Version 7 to 9.0. I have table of contents(.hhc) in the left frame and "Updates_and_Revsions.htm" in the right frame. After my first TOC update in the Robohelp version 9.0, i am not able to see anything in my left fr

  • How can i get two default browsing tabs

    I would like to have two default tabs, so a main one and another one on the right hand side of the screen

  • Changes to Master Data

    Hi All Which are the things need to be considered while choosing between following two options to transfer the changes to the master data from R/3 to APO. 1.Transfer of Data Changes Using ALE Change Pointers 2. Online Transfer Using Business Transfer

  • BOE Publications performance issue in source database.

    Hello all, I have a set of BO Publications, that run nightly. The source documents are Crystal Reports that runs on Sybase stored procedures. On days when the publication runs for over 20 dynamic recepients, the tempdb in Sybase, set at 1.5GB is fill

  • Do I have to????

    When "sync-ing" ( if thats the proper term ) Do I have to sync all my files when it says sync or do I have a choice of what to sync? Or can I prevent my music from doing the sync thing & just sync my other stuff P.S. : My Library on iTunes does not m