Menu's being skipped in DVDSP3

Hiya,
I'm new to DVDSP and have just finished making my first DVD and it successfully burned to disk (finally, after the annoying bitrate too high and audio error messages :P.).
However, when I play it in the Mac DVD player it skips the intro movie to my dvd and the language selection menu and takes you to the English part of the menu (there is English and German). This also happens in VLC Media Player.
However when I try the DVD on my girlfriends Windows laptop, it plays fine in Windows Media Player, Power DVD and Inter Actual Player! Though it still skips them on her VLC
If anyone can help me sort this out, I'd greatly appreciate it,
cheers,
churchoffunk

yeah we were on the same page .
Cool just wanted to make sure, so on the media type error check this thread and also the resolution -
http://discussions.apple.com/thread.jspa?messageID=3019514&#3019514
I encoded most of the video into mpeg2 with compressor on 2 pass vbr and all of the audio into ac3. One video i left i .mov file because when i compressed it in compressor it destroyed the quality and when i let dvdsp encode it the quality is fine.
As mentioned in the thread above, one of the resolutions for "media type not supported" was better media, and bad media can cause skipping.
Also high rates of encoding can cause skipping on burned DVDs (but usually not when opening from the Hard Drive in Apple DVD Player) - as to the one .mov file you may also want to export the audio anyway as an AC3 to use. What are the settings in DVD SP for encoding for the project, and what type of .mov file is it? Is this used the spots where skips occur? Just for a test, if you remove this .mov does the skip stop?
which then leads to a language selection menu (with background music ac3). These are the menu's it is skipping and going the english menu route.
Does this menu have any scripts attached to it? Have you set a timeout for it to jump to the English menu?

Similar Messages

  • One item being skipped

    Syncing a blackberry curve with Outlook 2003 on Exchange 2003.  Using internet email for blackberry.  When syncing, the data moves between the device and Outlook without an issue.  However, I constantly get an error message about one item being skipped.  It will say Address Book Handheld 0: Outlook 1 and to 'see the log file for details'.  I look at the log file but can't really get a clear picture of what is going on.  It also repeatedly tells me it is going to add items to the Calendar, even though they have already been synchronized.  I removed Desktop Manger entirely and downloaded and reinstalled the newest version.  I exported all contacts to a PST, deleted them, synched to empty the contacts, imported back to Contacts and resynched.  Same message.  Do I have a corrupt Contact?  How do I find out?

    Hello kimscoles,
    It looks like you might want to check out this article for your skipped contact during synchronization "Records skipped during synchronization using BlackBerry Desktop Manager".
    hope this helps
    -tg
    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)!

  • Burning CD's works fine, BUT when playing the cd, seconds are being skipped

    Hi,
    Burning CD's works fine here, but when I play the completed CD, every 30 seconds a second of the song is being skipped. It's like it jumps one second forward.
    Any ideas for this problem?
    I already tried to solve it by rebooting and burning the playlist a second, or even a third time, but even this ended up in CD's I can't use.
    Thx!

    i've got a similar problem (see posting 25th nov.) i've no solution - have you got an answer? thx

  • Invoice numbers are being skipped

    hi all,
    our client is running on 4.6c.
    Oflate we have noticed that invoice numbers are being skipped. we are able to create invoice and save it... but when we are trying to display the invoice. it throws the error the invoice is not available.
    what could be wrong?
    thanks,
    jaya.

    Hello Jaya
    We faced similar problem.
    I woluld like to advise as follows
    Check the table VBRK for docuement number list, then check how many numbers are missing. Then find out wheter it is periodically missing.
    Please let me know how are you creating the invoices. If it is through Z program then you need to check the logic specifically for delay part as the invoice created will be in process for some time and then gets saved.
    Thirdly you need to check after you save the docuemnt that is there any update flow error.
    In such case also the system saves the docuemnt generates the number but is not able to mark the tabkle entries.
    Hope this helps you.
    Best Regards
    Raghu

  • Random Records are being skipped while uploading data in PSA from CSV File

    Hi Experts,
    I am facing issue in data uploading in PSA through CSV file, Random Records are being skipped while uploading data in PSA.
    First Load
    We have flat file (.txt in CSV format), which contains 380240 Records.
    We are uploading the flat file data into PSA from Application Server. But it uploads Only 380235 records, 5 Records are being skipped.
    Second Load
    We have re-generated same file next day, which contains same No of Records (380240), but this time it uploads Only 380233 records, 7 Records are being skipped.
    We found 1 skipped record (based on key columns combination, by cross verifying from source and PSA table) from First load. But same records (combination of key column) is available in second load. It means same records are not being skipped every time.
    Earlier (5 months ago) , We have loaded 641190 Records from flat file in same PSA and all records (641190) were uploaded successfully.
    There is no change is Source, PSA and flat file structure.
    Thanks & Regards
    Bijendra

    Hi Bijendra,
        Please check in the file if at the begining if it has got any excape sign then that record may be skipped so the records may be mssing
    Please check the excape sign like ; if they are present at the beginign that recor entirely will be skipped.
    Regards
    vamsi

  • Quicker photos are being skipped in playback ??? and export problem

    The photos in my project that are around 00:00:00:10 and less are being skipped over when i replay everything. A few of the photos need to be set at a quick speed so i can get a moving stop animation effect. Can anyone help me with this problem, it would be greatly appreciated. Also when i export the video as a quicktime file and play it, only goes for 2 seconds? The total duration should be 1min. I have also double checked that i dont have anything specifically selected. HELP ME PLEASE !

    Need some detail: photo height and width, seqeunce settings, export settings, which Premiere version and comp specs.

  • Section of Math being Skipped

    Hi, small Problems Occurring here:
    int Od =0;
    int O = 0;
    public void actionPerformed(ActionEvent event)
              if (event.getSource() == Hone)
    { i++;Ttl.setText("\t\t\t\t Total: " + i);Od++;Ovrs.setText("\t\t\t\t"+ O + "."+ Od +" Over's");}
              if (Od == 6)
              int Od =- 6;
              O++;
         } The problem being, here when Od = 6 my Program Does "O++" but Skips "int Od =- 6;"
    BTW I am trying to get Od to get to 6 then reset to 0, if you didn't figure it out! =p
    i have tried:
    if (Od == 6)
              int Od =0;
              O++;
         }Thanx In advance

    The variable Od is being redefined inside the code block that is executed when your condition (Od == 6) is true. Remove the "int" in front of the line "int Od =- 6".
    The code snippet below clearly shows how this happens. The "int someVar = 20" redefines (just for the block of code it lives in -- in this case the two lines) a new someVar with a value of 20, but the original someVar is still at 18 as shown by the second print out.
    * Code snippet for question at
    * http://forum.java.sun.com/thread.jspa?threadID=5303379&tstart=0.
    public class DontDoThis
       public void dontDoThis(final int passedInVar)
          if ( passedInVar == 18 )
             int someVar = 20;
          System.err.println("Inside Conditional Scope: " + someVar);
       public static void main(final String[] arguments)
          final DontDoThis me = new DontDoThis();
          int someVar = 18;
          me.dontDoThis(someVar);
          System.err.println("Outside and after Conditional Scope: " + someVar);
    }Running this example will print out:
    Inside Conditional Scope: 20
    Outside and after Conditional Scope: 18

  • Header and Footer Items in Adobe Muse? Also Menu text being cut off half way.

    How can I make the header and footer items load faster in Adobe Muse? I am hosting with Business Catalyst. Everything else loads almost immediatly on my web page, but my Header and Footer graphic- wood grain picture- take almost 10 seconds to load, and almost a minute to load on mobile devices.
    As well, my menu's are not loading correctly on other peoples devices. On my lap top everything looks fine, but on other peoples devices the text in my menus is only loading half way? -only shows half the text.
    Still working on my site, but to see what I am talking about you can visit the web page I am in the middle of building at www.bkskin.com
    Please give me some advice if any of you have some, thank you.
    Megan Burnett

    Hello,
    It seems to be an issue with the Font that you have used.
    You have used Bubble-one font and if you check this font in Google Chrome it is cut off and if you check in Firefox, it comes up fine.
    Please have a look at this link in Google Chrome and Firefox and you will see the difference : http://www.google.com/fonts/specimen/Bubbler+One
    I would suggest you to use some other font in order to fix it.
    Regards,
    Sachin

  • Dropdown Menu bar being hidden by the Textarea

    My problem is that the menu bar does show up, but the text area is over the dropdown menu. You can see the drop down menu start but then is hidden under the textarea. I hope that a good enough discription.
    The frame is a typical JFrame that contains a BorderLayout. My class TheFrame is an extention of JFrame. In the CenterPanel I have a Text area. In the south panel I have another BorderLayout with a text area as the center and a button for the east panel. The menu is going under the text area in the center panel. This might be a bug with the borderlayout?
    public TheFrame(){
    super("Com");
    getContentPane().setLayout(new BorderLayout());
    JMenuBar menuBar = new JMenuBar();
    setJMenuBar(menuBar);
    menuBar.add(getMyMenuBar());
    getContentPane().add(getCenterPanel(), BorderLayout.CENTER);
    getContentPane().add(getSouthPanel(), BorderLayout.SOUTH);
    pack();
    private JMenu getMyMenuBar(){
    JMenu menu = new JMenu("File");
    menu.add(createConnectItem());
    menu.add(new JMenuItem("test"));
    return menu;
    private JMenuItem createConnectItem(){
    JMenuItem connect = new JMenuItem("New");
    ActionListener listener = new ConnectMenuItemActionListener(com);
    connect.addActionListener(listener);
    return connect;
    }

    I don't see the textarea in the code you posted.
    But I know that the described problem comes up when
    you use "TextArea" unstead of "JTextArea".
    "TextArea" is an awt component and "JTextArea" is
    the corresponding swing component. You should not
    mix awt and swing components in the same GUI.
    However, "TextArea" has the scrolling facility already included.
    With "JTextArea" you must use JScrollPane if you need
    scrolling.
            JScrollPane scrollpane = new JScrollPane();
            JTextArea textarea = new JTextArea();
            scrollpane.setViewportView(textarea);

  • Video in 16:9 Motion menu preview being cropped

    I can't find any discussion on this but am maybe asking the wrong question.
    How do I get the 16:9 preview buttons on a 16:9 motion menu to play without cropping the top and bottom of the source clip? I don't understand why a 16:9 clip doesn't fill a 16:9 preview window- and can't find any setting which fixes this.
    4:3 preview windows play fine.
    Hope someone can help.
    Thanks, Steve

    I'm not sure that you're describing what's happening well. Can you describe what you're doing in a little more detail? Or could it be you're actually doing letterboxing, not 16:9?
    Alex

  • Worklfow step being skipped

    I have a workflow based on notifciations that when it reaches the step display notification it appears to skip over it.  IN the log you can see that the path has reached the end and passed through the step that calls the method to display the task.  In the technical details part of the log it has a status of "logically deleted" against thsi particular step.  In the QA system the same worflow has a status of "ready" at this step and the workflow correctly assigns the task to an agent, but in dev no agent is assinged, and the wf just goes to complete.  Any ideas?
    Both systems has the agent assignement set to 'General'.

    This question has been marked as "answered". What was the solution?

  • Hunt Group Issue - DN being skipped over

    Hello,
    I am trying to set up a Hunt Group which hunts, top down, to four different extensions (A,B,C,D).
    This is working as expected apart from one particular extenstion...C. When start or middle of the Line Group this extension gets skipped over completely even though the user is logged into their phone and direct calls to that extension get through fine. When C gets put to the end of the Hunt Group the call gets terminated rather than the extension ringing with a "Line Busy" message.
    I have checked the Directory Number and Extension Mobility Profile settings of extension C against those that do work (A,B,D) and I believe everything is set the same...I can see no obvious reasons why C will not ring. I have also checked with the user that no DND/call forwards are set up. I have also created an entirely new Directory Number and associated it with user C's EM-Profile...the same thing happens.
    Am I potentially missing something here? For the life of me cannot see why this is happening.
    Thanks,
    -David

    David,
    Two things come to mind..
    1. Does the user have HLOG softkey? If so perhaps the user has accidentally logged out of the hunt group
    2. Have you tried logout/login back to EM?
    Please rate all useful posts
    "opportunity is a haughty goddess who waste no time with those who are unprepared"

  • Is my street being skipped over in getting fibre?

    I'm connected to the Inverness Culloden exchange and I've been awaiting the fibre upgrade for a while now and now it's finally been upgraded. Now the cabinet I'm connected (I think) to is apparently being upgraded on the 15th of April according to dslchecker.bt.com but it doesn't seem to be giving me any information for fttc on the exact street I live on: Cranmore Drive, only for the areas around me. All the areas around me have a set date for the upgrade on both the dsl checker site and BT's infinity check so I'm a bit perplexed as to whether or not it's coming at all or if it's just missing info on the sites.
    I've already called and emailed BT directly about this but they've told me they have no idea what's going on and that I should just ask one of their guys in a van if I happen to see one... but I figured it wouldn't hurt to check here. I just want to find out if I'll be able to get fibre when it comes. Also I had a look around to see if there was another cabinet I could be connected to but there doesn't seem to be any. Any help would be appreciated.
    Solved!
    Go to Solution.

    Thanks for the reply but I put in my details on the site it and doesn't say anything about the cabinet being upgraded despite the fact I'm 99.9% certain I'm connected to one that is. Heres what I get when I put in my address or phone number.
    All the areas directly around me that are connected to the cabinet say that it will be getting fttc enabled on the 15th. It's just my street that seems to be different. Unless there's some secret cabinet just for my street that I'm unaware of.

  • Songs with Lyrics being skipped

    Hello, I have about 100 songs randomly in my iTunes list that have added lyrics to them, and although they play fine on my computer, when I try to play them on my iPod (60gb video) they skip about 90% of the time. I don't view lyrics really, but it's annoying when I want to hear a song and it won't allow me to. I have just deleted all my songs with lyrics that I could find, but I was wondering if there was a solution that would allow me to keep the lyrics.
    All my songs have album art if that matters.

    I have this problem ,but a didnt check if it was associate with the one whos got lyric,i have mp3 and aac,and one song that i buy at the music stores did that.
    Somethime the 2 firts song skip but mossly the firts one,mp3 and aac,Ive just check and it seem to associate whit lyric but not all the time
    And its log to turn it off when its happen!
    I call apple et they send me a box to return to get repair ,but i go at the store where i buy it,and the give another one,i put only 700 song to starte and it was working good,after i put everythig 7500 song,and it starte doing the problem,im always using the shuffle maybe its that,and my labrairie is on an another hardrive
    Should i put my labrairie on the main hardrive ?

  • Songs being skipped

    Since I have received a new iPod, certain songs will not play anymore. How do I fix this?

    Carissa,
    Did you buy the songs from I-Tunes, or did they come from CDs. I found that all the songs I bought from Itunes would get skipped on my ipod (even though they played fine in Itunes on my computer). I unchecked the option "show album art" under "Preferences" and it solved the problem.

Maybe you are looking for

  • Flight Sim keyboard shortcuts

    Has anyone got the keyboard shortcuts / commands for Flight Sim on an iMac running Windows?  As in Bootcamp Window. I looked an someone spoke aobut comcast, but that's not the case here. It used to be F1-F4 did engine speeds, and F5-F8 did flaps, but

  • How to make settings of root folder , while creating customize JSP Pages.

    Hi All, I am developing customized BI Beans Application.While the development ,I gose to compnent pallete and try to access BI Beans Objects which are on same workspace . But in the location tab it shows root foloder and only one object . I am unable

  • Can't save preferences in LXDE

    I installed LXDE and I like it. I must adjust the monitor resolution from the default however. But when I reboot, it doesn't remember what I set. Do I need to save it somehow? Or perhaps there is a permission issue that it's not saving itself?

  • TS3694 What now? " The iPhone could not be updated. An unknown error occurred (6).

    What do I do now that unknown error (6) has occured when trying to put IOS 7.02 on my iPhone4?

  • Illustrator and InDesign Unable to drag objects

    I have suddenly become unable to drag items in InDesign and Illustrator. I may mention at the same time my Photoshop is not working either. I solved these problems two weeks ago by uninstalling Adobe Creative Suite CS5, running adobe cloud cleanup to