BIG Encore problem - Interactive dvd based on menus - blurry menus

Hi, I am making a DVD based on clickable menus. The idea is to create a DVD portfolio, where the user can click through different screens, a lot of them with images, some only videos. I am creating the menus in photoshop - using rather small text. When the menus are imported to Encore, they look ok in the editing mode, but in the preview, the text gets blurry and unreadable - this also happens to some extent with the bigger text, edges also get very pixeled. The format I am working with is 1280 x 720, 72dpi (but i guess the dpi doesn't matter when it's video), RGB color, PAL widescreen square pixel... I have tried a lot of different formats, both bigger and smaller, but it doesn't get better. I have tried to do this in so many different ways now, but simply cannot find a solution - which seems strange to me, as I have seen DVD menus before with small type, without it being blurry (for example describing different episodes of a TV show) - Is there another program that would be better for this project, as I am also worried that the images will be very pixelated... I also tried to export the project, but it is still blurry. Another problem I have, is that the highlights of text buttons appear a few pixels left of the original button - I used the correct layer names, and only text in one color. the highlight is white. I hope someone can help me with this!
First image: a dummy menu in encore (editing mode)
Second image: the menu exported as dvd (folder)

Welcome to the forum.
Why are you starting with 1280x720 PS files when you are trying to create a 720x576 PAL SD DVD?  The downscaling alone would account for your quality loss.
-Jeff

Similar Messages

  • How do I make interactive DVD/Blu-Ray menus with motion?

    So, adobe doesn't support Encore anymore which means I can't use dynamic link to AE to create interactive DVD/Blu-Ray menus with motion.... or can I? Is there something I'm doing wrong? While in Encore, I go to dynamic link and boom, dynamic link to AE is not highlighted. If I can't make an interactive menu with motion using adobe, then what can I use? This is causing a major problem for me and my clients. (if i over looked the answer to this in another post, my apologies)

    You can use the "Create After Effects Composition." This prompts you to create an independent version of the Encore PSD menu file, and opens the layered file in AE CC and creates a new composition with appropriate settings. AE no longer has mpeg export, so you export from AE to AME.
    There were some workflow options that I did not play with much, but they were never what I saw as the basics for using AE to create the motion background.
    You need to understand these two help pages:
    Adobe Encore * Menu timing and looping
    http://help.adobe.com/en_US/encore/cs/using/WSF49EA5DB-3743-49c2-9831-F66328B192F8.html
    Adobe Encore * Using After Effects to enhance menus
    http://help.adobe.com/en_US/encore/cs/using/WSA5513911-0AD1-440c-BDAD-2E0E806B425E.html
    I'm not sure what you mean by "interactive" unless you just mean creating navigation.

  • Adobe Encore probleme exportation DVD

    Bonjour
    J'ai crée 2 diaporamas que j'ai ajouté à mon projet encore. Mais lorsque j'exporte mon projet je perds en qualité.
    Si quelqu’un a des astuces sachant que je n'utilise qu'un car du DVD.
    Merci d’avance

    Il y a moins de 20 minute de vidéo, 1go sur 4 est utiliser lors de l'exportation, j'aimerai pouvoir augmenter la qualité lors de l'exportation pour être au plus près de la qualiter des vidéos de mon projet qui sont en HD.

  • Is Encore the tool to make an interactive DVD?

    I've never used Encore, but is it the Adobe tool I should use to make an interactive DVD? 
    I need controls like, pause, loop, start, stop. Those kind of controls.
    I particularly need to make my animations have a control that allows the speaker of the presentation to loop the animation indefinitely until he wants to continue with his talk.

    No. You asked in what I think is the right place: Director.

  • An Interactive DVD Menu-Like project

    I am working on a project that requires a Main looping video with buttons to link to different videos, and a button to link back to the Main video - think of it as an interactive DVD. I created it in Encore but the problem is the computers this will be displayed on do not have blu-ray drives and the DVD really cuts the quality at full screen.
    Is this something that could be done in flash? I have minimal training with Flash, but am up for learning. If anyone has pointers or reference links that could help me out that'd be great.
    thanks.

    If you did it in encore then your target was making a blu-ray, correct?
    I presume you want to do what Encore does and make a "Computer" version of your DVD menus?
    Have you tried Encore's File->Build->Flash... ?

  • The problem of function-based reuse

    I read the quoted text as follows from a book authored by a Microsoft developer. I googled and found a lots of quotes of it, but did not find any explanation.
    ============
    With languages like C, the basic unit of reuse is the function. The problem with function-based reuse is that the function is coupled to the data it manipulates. and if the data is global, a change to benefit one function in one reuse context damages another function used somewhere else.
    ============
    C uses libraries widely,which is of function-based reuse. Can anybody kindly give me a scenario when this problem happens?
    Java is typically object-based reuse, and I admit that my question is not a Java one. But I feel it would help to understand more about the concept or benefits of design of Java language. So, thank you to allow me to post this question here,
    Edited by: 799160 on Sep 30, 2010 12:38 PM
    Edited by: 799160 on Sep 30, 2010 12:57 PM

    This is what I got out of reading the quote you posted:
    I suppose something like the following could happen:
    You (being a general person) have been given a class to modify. You look at the code for the first time and it has a bunch of methods and some class variables in it. Some of the methods use the class variables. How can you be sure if you change the functionality to change a class variable in one method won't affect the other methods when they are used? This problem can be solved by learning what everything does, how it interacts and the correct way to use it. But then again, if you don't think about it and just make changes...Oops!
    Perhaps another abstract example would make sense:
    Imagine a calculator that could be used by 2 people at the same time? I bet it'd come up with some funny answers :)
    I wrote up a short example of this, hopefully it makes some sense:
    public class SuperBigProgram
         private int globalVar;
         public static void main ( String[] args )
              new SuperBigProgram();
         public SuperBigProgram()
              System.out.println("I'm a super big program.");
              globalVar = 0;
              //Let's pretend these series of events occur during the program:
              doItHighChanceActivity(); //1
              doItHighChanceActivity(); //2
              doItHighChanceActivity(); //3
              //Whoops super rare event occured!
              doesNotHappenALot();
              doItHighChanceActivity(); //4????    but is really 5.
          * This happens A LOT!
         private void doItHighChanceActivity ()
              superUtilityMethod();
              System.out.println("globalVar: " + globalVar);
          * This utility method does some awesome utility stuff for our Super Big Program.
          * This changes some global data.
         private void superUtilityMethod()
              globalVar++;
          * This does not happen a lot, if at all.
         private void doesNotHappenALot()
              //Hey I don't happen a lot but I'm reusing this really cool utility method that contains global data...
              //Code reuse for the win!
              superUtilityMethod();
    }Here is the output:
    I'm a super big program.
    globalVar: 1
    globalVar: 2
    globalVar: 3
    globalVar: 5
    Edited by: kilosi on Sep 30, 2010 1:22 PM

  • Flash Video with DVD-like motion menus -- Is this possible?

    Hi all,
    I just joined this gropup. I have some SMIL 2.0 presentations
    with synchnorized multiple audio (several languages supported) and
    video as well as DVD-like still and motion menus. These are
    semi-transparent menus and actually are super-imposed over main
    playback area (root layout in SMIL).
    Can Flash Video has menus in it?
    Can this type of a/v synchronization and menuing be done in
    Flash Video?
    I don't want to write as SWF with menus since clips and # of
    menus on screen and placement might be different from video to
    video. These are for some training videos.
    To give a background, in SMIL I have an application server
    (Jboss) which is dynamically creating SMIL based upon database,
    user inputs and menu selections. What is basically sent back to the
    browser is SMIL page markup including playlist of clips up to next
    menu point. Once all clips are watched and user selects menu button
    to continue then a new SMIL is generated and processs repeated.
    I am thinking off porting this over to Flash Video because
    currently clients need RealPlayer (has SMIL 2.0) support to be
    downloaded and installed. Another local app to manage!
    Any ideas or recommendations?
    Thanks and kindest regards,
    -Mark

    You can build interactive DVDs with video and audio, but no Word documents (at least not as part of the interactivity). DVD SP can certainly be used to create interactive DVDs. The advantage is that interactivity will extend to DVD players, not just computers.
    If you want very rich interactive content, with Word docs, PDFs, etc. Then the best program would be Director. However there are some caveats with Director.
    1) The learning curve for Director is extremely steep. You would be better off hiring a freelancer who already knows the program, then spending all the time learning all the ins and outs of the program.
    2) Director is essentially a dead program. Since Adobe acquired it a couple of years ago, they have made no upgrades of the program. Nor have they made any announcements on continued development.
    3) The content you develop will only be playable on computers, not DVD players.

  • Help for-offline interactive forms based on sending receiving mails in ABAP

    hello friends i am struck with a requirement of my client.
    I am new to Forms and WEBDYNPRO and I have to cover a scenario where I have to develop,'offline interactive forms based on sending receiving emails '..
    i browsed a bit and with all the luck found a very good resource.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cacb9a7d-0c01-0010-1281-be4962c9ab3e
    but the problem is it is in JAVA.. I dont know JAVA..I know ABAP..
    can any one give me similar tutorial in ABAP or any other related links ..
    waiting to give Big Reward Points...

    Try these links...
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/lw/uuid/90e279fe-0107-2a10-bc85-bd96ab9738a7
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5087262b-59ef-2910-abb1-957000b7c3d4
    Hope they help.....
    Rao

  • Offline interactive forms based on sending receiving emails in ABAP

    hello friends i am struck with a requirement of my client.
    I am new to Forms and WEBDYNPRO and I have to cover a scenario where I have to develop,'offline interactive forms based on sending receiving emails '..
    i browsed a bit and with all the luck found a very good resource.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cacb9a7d-0c01-0010-1281-be4962c9ab3e
    but the problem is it is in JAVA.. I dont know JAVA..I know ABAP..
    can any one give me similar tutorial in ABAP or any other related links ..
    waiting to give Big Reward Points...

    Hi,
    Go thru this [Article|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9051b07e-0c01-0010-87bc-e3d527153a31].
    Regards,
    Padmam.

  • Problem burning dvd

    Okay, so our racing season is about to begin, so Im ready to start making videos again.  However, my computer is not cooperating.
    I don't actually think this is an Encore problem I think its a hardware problem, but I didn't know where else to ask so here is the scenario...
    Hardware being used: 
         Verbatim  DVD-R printable (I have been using these same ones for 2 years)
          Fujifilm  DVD-RW (I usually use on of these for my first dvd so I can test it and make sure I have it working properly, so I don't waste regular DVDs)
         Sony  DVD multi recorder drive (I have 2 of them in my computer)
    So I tried to do a direct burn from Encore without menus using a Verbatim DVD---failed source code 37303
    decided to make an image file.
    Tried to burn the image file to Verbatim DVD----failed no explaination
    Treid to burn the image file to Fujifilm RW DVD----success
    Verbatim----failed
    another Fujifilm----success
    Switched Drives:
    Verbatim---- Success
    Verbatim----- Success
    In other words the 1st drive would burn to the Fujifilm, but not Verbatim
    2nd drive burned to verbatim no problems.
    I have been using the 1st drive for about 2 years now and have had many coasters and when I start having problems with it I go to the 2nd drive and it seems to work good.
    Today was the first day that I was actually able to be pretty confident in the conclusion that the 1st drive is bad or going bad.  Would that be your conclusion? or is it possible there is something else going on here. Is it possible that for whatever reason the 1st drive just doesn't work with the Verbatim dvds well?  and if Im in the market for a new drive what is recommended?
    Thanks again
    Tonya

    Tonya,
    Is the firmware identical in both burners? Is it the latest?
    ImgBurn, besides being a great free burning utility, will do several other things for you. It'll survey your burners at the hardware level, and will tell you the firmware in each. It will also give you info on your blank media. Check out both.
    The Sony site should show you the latest firmware available for your burners. I would update/flash, if there are newer offerings. Check the instructions, as the exact procedure can differ. For my LG, it's just run an executable, while for my Plextor, it's a bit more involved, yet still simple. I also recommend that one mix brands of burners on a system. Some burners just like certain discs better than others. The LG handles about 95% of all DVD discs, but when it does not like one, the Plextor usually does.
    I do not think that it gets better than Verbatim for blank media. I use it and Taiyo Yuden exclusively. Still, ImgBurn will check the mfgr. of your blank disc. I only hope that Verbatim has not followed Memorex's business model of buying the cheapest media possible and rebranding it. TDK, once a respected brand seems to have done just that.
    Good luck,
    Hunt
    PS - not being able to Burn to Folder, or Burn to Image, might well be a sign that there are other problems, like with the Project, or the computer.

  • Creating interactive DVD from HTML

    I want to create interactive DVDs from html. The end product will be a website stored and browsable on the DVD using the remote control to navigate the menus. Can I do this with Encore?

    No
    Do a forum search for eDVD, since I'm not sure if the link below is current
    Sonic/Roxio eDVD
    for ADVANCED Content

  • Porting/converting an interactive DVD to Flash/SWF/FLV?

    Is it possible to make a complete mirror port or conversion of an existing interactive DVD to Flash (swf+flv) so that I can put it online and interact with it with my mouse through a flash enabled browser, just like were running on a DVD player, with all the existing interactivity (menus, chapters) intact? I know about Adobe Encore CS4:
    http://www.adobe.com/products/premiere/e... (See "Publishing of DVD projects to the web")
    but I can't see that you can import an exisiting DVD into Encore. You would first have to build your own menus, chapters, timeline, etc., then you could export it to Flash...
    If this is not possible in Encore CS4, how can I do this?  Thanks

    It's not possible with Encore - you must have an Encore project, and DVD is not an importable source in Encore.
    I don't know if there is even any software in existence which could do what you are asking.

  • Problem with Inspector pull-down menus

    I have this weird problem with DVD Studio Pro all of a sudden. I'm wondering if a recent update might have broken something, and how I can fix it.
    The problem is that certain pull-down menus in the Inspector are not responding anymore. Important ones too, like "set target" and "end jump," Remote Control functions, as well as ones I don't use as often like Shape (button shape?). I click on them and nothing happens, although sometimes the default "not set" text disappears. These menus are in the same place in the Inspector, so this may or may not have something to do with it, I have no idea.
    At any rate, I can't make a DVD without these functions, and I usually need to make a DVD once or twice a week. Although it has been two weeks since I last used it.
    I am almost positive that nothing has changed with my system since I used it last, besides Apple Software Updates.
    Version 2.0.5, OSX Tiger. I know, time to upgrade, but I don't control the budget.

    Just the Inspector, i haven't found any other problems.
    Quicktime was updated a few days before the problem started. On May 27th I ran the updates for Quicktime 7.4.5, ProKit 4.5, iTunes 7.6.2, and Safari 3.1.1. I noticed the problem with the DVDSP Inspectors the next time I ran the program on May 29.
    I understand the ProKit is for a later version so I'm a bit mystified as to why I was offered the update, however I've installed previous ProKit updates without any problems.
    A clean install will certainly be my next step. But I have to wait for a lull in real work activity before I can get into that. Luckily I've remembered that I can accomplish a lot of what I needed the inspector for under the Connections tab, so it's a little less urgent now.
    I'm usually pretty careful about running updates, and I usually ignore them for a few weeks (or longer) before I run the updates so I can monitor the internet for other people's disasters. But I got lazy this time. Maybe there are not too many DVDSP v2 installations out there. And maybe I need to increase the pressure on my company to update my software!
    On that note, this experience is helping my case with convincing them to replace one of the old Avids with a new FCS suite, so it might become a moot point. Will the license allow me to operate DVDSP4 on a different machine or does it have to stay on the main suite, if we go that way? We like to process the output on another box, so the editors can get on with the next project.

  • DVD-based AVCHD?

    Any word on if DVD based AVCHD's are supported with the latest QT upgrade? I've not had any major problems with Log and Transfer with the transcode to ProRes, other than the humongous file size. Archiving is impractical with these files and I've been dutifully creating AVCHD DVD's from my Canon HF100 using Canon's optional AVCHD burner. It's still an act of faith as so far, the discs are just shiny coasters until Apple gets around to supporting them. And, alas, native AVCHD support within FCP would be also nice, though I can live with the current need to transcode.

    Make a copy of the entire folder structure to a DVD, not just the media files (= clone the memory card). FCP 6.0.3 Log&Transfer reads my cloned DVD-disks just as the originals. At least this works fine with my Sony HDR-CX6 material (.mts-files). I use only 4 Gig sticks, so they fit on a single DVD for archiving.

  • Clean DVD Studio Pro menus?

    I've never figured out how to get 'clean' DVD Studio Pro menus.  It is as if the quality of the menu is sub-standard.  Every year or so I ask in the forums about this ... if there is some way to get a quality that at least matches the MPEG 2 of the master that is being authored.
    I've been through the app countless times to see if there is somewhere I can set the quality of the 'menu' ... nope, or I'm missing it somehow.
    I've done my backgrounds the exact pixel size of the menu, I've included the text in the graphic, I've added the the DVD Studio Pro text, used their templates ... the end result is ALWAYS sub-standard.
    I'm wondering if anyone has had similar issues ... and discovered a solution?
    Or.  If someone can recommend a Mac software DVD authoring app that can deliver nice clean menus ... ?
    And that doesn't cost $2,500 if possible.
    All ears,
    Ben

    Hey Russ,
    I was wondering about that.  What is the rental thingie?  I will go check it out.  Not crazy about shelling out hundreds and hundreds of big bucks.  Though once my FCP 7 (which I love) starts to not-work because of system upgrades, I'll probably move to Premier et. al.  After being an utter fan and faithful since the inception of FCP.  Sigh.
    Much appreciated,
    Ben

Maybe you are looking for