How to make content fit on one disc.

Sort of new to this. I have a 5.5 GB DVD project I want to fit on one single layer DVD. How do I make it fit without sacrificing too much quality?
Is there an automatic way to change bit rate, etc to make it fit?
Thanks

PDTV is exactly right.
You indicated you left the encoding to default settings of the program.
That doesn't work very well, because the audio is uncompressed, and the settings in the preferences may not be consistent with the length of your video.
For example, if you have 120 minutes of video and the default settings are maximum bit rate of 7.5, it won't fit, and your audio will be uncompressed aiff.
Set a bit rate in Compressor suitable for the length of your video, and encode your audio to Dolby 2

Similar Messages

  • How to make several pushbuttons in one line (on screen)??

    How to make several pushbuttons in one line (on screen)??
    thanks in advance!!!!

    Hi,
    USE
    SELECTION-SCREEN BEGIN OF BLOCK.
    SELECTION-SCREEN BEGIN OF LINE.
    define all buttons between this block.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK.
    selection-screen
    Cheers
    VJ

  • How to make data flow from one application to other in BPEL.

    Hi All,
    I am designing work-flow of my application through BPEL(JDeveloper), I am making different BPEL projects for different functions, like sales manager got the order from sales person and sales manager either approve it or reject it, if he approve it it goes to Production manager and he ships the goods, now I want to keep sales person, sales manger,production manager in seperate BPEL files and want to get the output of sales person to sales manager and sales manager to production manager please help me in dong this.
    I was trying to make partner link in Sales manager of sales person and getting the input from there. I dont know this is right even or not, if it is right I dont know how to make data flow from one application to other.
    Experience people please guide.
    Sales Person -----> Sales Manager ----> Production Manager
    Thanks
    Yatan

    Yes you can do this.
    If you each integration point to be in different process, you have to create three BPEL process.
    1. Create a Async BPEL process 'A' which will be initiated when sales person creates the order.
    2. From BPEL process 'A' call a ASync BPEL process 'B' which has the approval flow. Depending on the input from process 'A' the sales manager will review the order in workflow and approve or reject and send the result back to process 'A'.
    3. Based on the result from workflow, invoke the Sync BPEL process 'C', where you can implement the shipping logic.
    -Ramana.

  • How to make background fit screen

    how to make background fit screen

    go to settings
    go to desktop & screen saver
    there you have a dropdownbox with all the options

  • How to make content horizontal swipe in single standard frame in Indesign CS6?

    How to make content horizontal swipe in single standard frame in Indesign CS6?

    This sounds like a question for the DPS forum. We don't handle DPS questions here:
    Digital Publishing Suite

  • How to burn 2 movie in one disc

    hi guys,
    newbie here..need help...i got 2 clips that gotta burn in one disc..but my client doenst wan a menus..they wan the disc keep looping between this 2 file....somemore its 16:9..if my ori visual is 720*576, can i burn in 16:9 letterbox so that widescreen on normal tv but fullscreen on lcdtv? how will the visual will be? pixelize?...however, wat more confuse me is the steps to to import int he file n burn it..this is my very first time to use dvd studio pro 4..plz help ....
    Message was edited by: ycngjack1

    Hi ycngjack1:
    You're fine putting just video content on your DVD. There's no rule that says you have to have a menu.
    You'll want to set the "First Play" option in DVDSP to your Track that contains your video. By default, a DVDSP project starts with one Menu and one Track with "First Play" set to the menu.
    720x576 is the correct frame size for a PAL MPEG2 stream, whether it's full frame material (4x3) or widescreen material (16x9). You need to be sure to set the "Display Mode" setting for the Track correctly in DVDSP in the Inspector palette. Also, this setting must correspond with your Video Stream for correct results. In other words, you place full frame clips into a full frame Track and widescreen clips into a widescreen Track. If you need to mix the two, you have to address this prior to encoding or importing the clips back in your editing applications (Final Cut Pro, Final Cut Express, After Effects, etc.) and conform your footage to either full frame or widescreen.
    Getting back to your question, "can i burn in 16:9 letterbox so that widescreen on normal tv but fullscreen on lcdtv?" It sounds like you are talking about creating a "hard matte", meaning that your 16x9 image is scaled proportionally to fit within a 4x3 image, leaving black bars at the top and bottom (the letterbox). This will result in a letterbox picture on a 4x3 TV and a pillarbox picture (black on the sides) on a 16x9 LCD TV that's also letterbox inside of that.
    Without actually seeing your source footage, it's hard to tell you exactly what to do.
    For the results that I think you are looking for, you'll want your 16x9 picture to be squeezed into 720x576 (everything should look thin and distorted without black bars at the top and bottom),
    This might also help:
    a. Place your clips into a Track and set the Display Mode to 4:3 (the first setting of four, the others being 16:9 Pan-Scan, 16:9 Letterbox, and 16:9 Pan-Scan & Letterbox).
    b. Set the Track to be the "First Play".
    c. Click the "Simulate" button.
    d. While the Simulator is running, change the Display Mode between the three options: 4:3 Pan-Scan, 4:3 letterbox, and 16x9.
    e. Quit the Simulator and change the Track Display Mode to the next setting, 16:9 Pan-Scan.
    f. Run the Simulator again and change the Display Mode between the three options.
    g. Repeat this until you've done all four of the Track Display Mode Settings.
    This should help you reverse engineer your source footage.
    Good luck!
    -Warren

  • How to make contents of DIV on page I'm leaving fade out?

    I am trying to figure out how to make the contents of a DIV on the page I'm clicking away from fade out. I know how to make the next page load with a fade in. So I'm half way there (I guess).  Wix has a lot of designs that use this effect. Here's a link to an example:
    http://www.wix.com/website-template/view/html/633?originUrl=http%3A%2F%2Fwww.wix.com&numbe r-of-page=1&position-in-page=1
    This is the code that I use to make a DIV load with a fade in:
    I add this CSS code under the DIV that I want to apply the fade in effect to:
         animation: fadein 2s;
        -moz-animation: fadein 2s; /* Firefox */
        -webkit-animation: fadein 2s; /* Safari and Chrome */
        -o-animation: fadein 2s; /* Opera */
    And I add this extra code to the CSS styles sheet:
    @keyframes fadein {
        from {
            opacity:0;
        to {
            opacity:1;
    @-moz-keyframes fadein { /* Firefox */
        from {
            opacity:0;
        to {
            opacity:1;
    @-webkit-keyframes fadein { /* Safari and Chrome */
        from {
            opacity:0;
        to {
            opacity:1;
    @-o-keyframes fadein { /* Opera */
        from {
            opacity:0;
        to {
            opacity: 1;

    Success!!! Thank you! Although I did have to change one more thing. See bold text below.
    One more question. What if I wanted to apply this effect to two ID's instead of one? Would it be as simple as adding a comma and then the ID in quotes like this?.... $(#container", "#footer")
    $(document).ready(function() {
        $("#container").css("display", "none");
        $("#container").fadeIn(2000);
        $("a.transition").click(function(event){
            event.preventDefault();
            linkLocation = this.href;
            $("#container").fadeOut(1000, redirectPage);       
        function redirectPage() {
            window.location = linkLocation;

  • How to make a copy of one company to another

    hi
         i want to have a backup of one company! can anyone help me how to make a copy of an existing company

    Hi,
    you can use the SQL backup and restore
    if you use SQL 2000, open Enterprise manager, right click on the company DB that you wish to back up and choose "all tasks" -> "Backup Database"
    then click "Add" and select the name of your backup
    then press OK and you just made a backup of your company DB.
    for duplicating DB, just create a new empty sql DB and right click on it->All tasks->select Restore database -> select from device -> clickon from device and select the backuped DB to duplicate.
    go to the option tab and make sure the restore path is correct and that Force restore is marked.
    hope it helps
    let me know if you need more info
    Moty Moshin

  • How to make a selection in one photo and move it to another photo

    I have always used Photoshop Elements, from 7 up to 12.  I just bought Photoshop CC.  I am totally confused over it.  There's not photo Bin, that is where I use to drag from the open photo down to the one I wanted the selection in.  I tried doing it
    by making the pictures smaller and dragging them down to the bottom, but then things got messed up and every time I opened another photo to use it open on top of the previous one.  To me this is important as this is what I have done
    in Elements all the time.  I can learn the other stuff about Photoshop later, but this one thing is important to me to be able to figure out.  I make pictures for people who have lost their pets or for birthdays and use a lot of digital scrapping stuff in
    them.  It's always been easy to do so, but now I am totally in a daze over how to do it.  Always wanted Photoshop, but I only have 30 days to decided if I like it and if I can't figure this one thing out I will have to return the program.  Can someone
    point me in the right direction for some tutorials on how to do this one thing?

    Oh,  and I'm not sure what you mean Load Files into Stack.  ??????
    In the menu Edit there is an item Scripts and there is an Item Load …
    If you want to rescale, rotate, … parts of your composition you should work with Smart Objects.
    So see if Photoshop > Preferences > General > Palce or Drag Raster Images as Smart Objects is checked and then use File > Place to put the elements into your layered file.
    Whenever you need to adjust one select it in the Layers Panel and invoke Edit > Free Transform (cmd-T).
    The advantages of Smart Objects are numerous:
    • multiple instances of a SO in a containing document that update simultaneously on saving an edited SO (please note that for a SO to maintain a connection to the external file one needs to use File > Place Linked instead of File > Place Embedded )
    • the possibility of placing vector content as Vector Smart Objects (though this will output as pixels)
    • non-destructive application of Filters
    • non-destructive application of transformation, warp, puppet warp (not all of these are available for Vector SO, but by converting such a one to a regular SO they become applicable)
    • combination of elements of different color spaces
    • the ability to Replace Contents of SO (for example when faking as-of-yet non-existent products by mapping packaging design elements onto images of a blank container and the design is likely to change)
    • Stack Modes for certain combinations of photographic images

  • How to make pages fit to any screen size

    Is there a way to make the pages stretch or condense so that it fits any size screen? I've found where I can adjust the px size of the individual pages but I get white borders at the left/right and bottom edges of the screen that vary depending on the monitor size that I am viewing the page on. Is there a fix for this? Thanks.

    Welcome to the Apple Discussions. By screen size do you mean browser window size? If so you can get rid of the white around the body of the page by using a solid color or tiled image for the browser background which is set in the Inspector/Page/Layout pane.
    Or, if you want the page background to be the same as the browser background do the following;
    1 - set the browser background to what you have the page set to.
    2 - set the page content background to transparent.
    Now the page background will fill the browser's window no matter what size it is. That's how I have my tutorial site setup: http://toadstutorials.info.
    Click to view full size
    OT

  • [solved] Make content fit the TitleWindow's size proportionally

    Hi everyone,
    I have a component which has the super class TitleWindow. It's basically used as a popUp for my application. So it receives a file name and adds it to the popUp using the MXML tag Image.
    This content received is a SWF file, and I had no problems using the tag Image to import it (I'm new to Flex, but I guess there is nothing wrong with it).
    My problem is that my application has a sort of "PowerPoint" style, and is going to be used in some presentations, so I want to make sure it works on all screen resolutions, from 800x600 till 1280x1024. And that's where the problem begins.
    I could simply let Flex determinate the size of my popUp (depending on what is the size of the content, the SWF file), but I simply can't. That's because all of the SWF files are going to be 800x600, and so when you run this app in a 800x600 screen, things get messy. The popUp gets too big (in order to contain the content).
    So the solution was to manually set the size this popUp, based on the user's screen resolution. I did this simply by using:
    this.width = stageWidth * 0.9;
    this.height = stageHeight * 0.8;
    This works great and is exactly what I want.
    However, the content is not being fitted into the popUp correctly anymore. It seems after setting manually the width and height of my popUp, all of those wonderful properties, such as horizontalAlign="center" and verticalAlign="middle",  were lost also. The content is too big when seeing the app in a 800x600 computer, while the popUp is on a correct size.
    So I tried to resize the content also, based on the this.width and this.height. That solves some trouble, but then the problem is that X and Y positions are all messed, and so my content appears on wrong places, depending on the user's resolution.
    Straight to the point: after customizing the width and height of my popUp (TitleWindow) how can I set the content to keep the aspect ratio (don't get distorted, since it's a 800x600 file) and also to be resized according to the dimensions that popUp has? I'm here for like 6 hours just trying and failing to do it, and it must be an easier way to do it in Flex.
    Appreciate any advice.
    Thanks!
    Solved: I changed the Image tag for the SWFLoader tag. Also, added the property horizontalAlign="center". The rest was the same, and this solved my problem :D Weird.. I saw on some tutorials that Image could be used without problems to load SWF files... Well, works, and for sure it must be more correct also.

    Solved: I changed the Image tag for the SWFLoader tag. Also, added the property horizontalAlign="center". The rest was the same, and this solved my problem Weird.. I saw on some tutorials that Image could be used without problems to load SWF files... Well, works, and for sure it must be more correct also.

  • How to make content of DVD so that copies cannot be burned from it. uncopiable.

    How to I format my DVD so that its content cannot be copied by others?

    Hi
    You can't - or rather I can't - Only big companies as EMI, SONY etc can pay for that service.
    So I made a small not on it.
    DVD Copy-protect
    No there is non in standard iDVD.
    The most common solution is to put a logo that stays on top of the full movie.
    e.g.. Copyrighted to . Or made by etc.
    Not even if You buy FinalCut Studio and get DVD-Studio Pro. You will not get this.
    The Copy-protection in DVD-Studio Pro is just a flag set to alert DVD-producers
    to make this in DVD-burning Companies.
    There is such protections to Commercial materials and to astronomical costs.
    And one can figure to what need, when there are no really secure Copy-protection.
    One can only plead to respect the Copyrights
    NEWS ! Karsten got a very interesting solution
    sites.google.com/site/karstenschluter/diy-dvd-copy-protection
    Yours Bengt W

  • How to Make All Events in One Calendar Have Alerts Automatically

    I am a college student majoring in engineering, which means I always have lots of homework due at various times. So to help me keep better track of when my assignments are due, I have started putting the due dates into my calendar. The only problem with that is every time I enter in a new event I have to set up an alert for that particular event. This is extremely annoying having to do this for each assignment. What I am wondering is there a way to make it so that every event in my "Homework" Calendar sends me an alert two hours before the event starts? I know you can make it so that all events send you an alert, but I just want this one calendar to automatically send alerts for it's events. Any help is greatly appreciated!

    Thread is closed.
    'Twas simple, but problem was my lack of knowledge how winhelp is built.
    I needed to Update (synchronizae) document after I linked it and built proper topics and link them with proper document section.

  • How to make two files into one?

    I got two .iso files I would like to make into one file.
    What program can I use for this process? And step-by-step if possible.

    For disk images, if either of them is a read/write image, you can simply mount them both, drag the contents of one into the contents of the other, and unmount again. (Edit: just re-read your post; .ISO files are read-only so you will need to either follow the below instructions, or convert the ISO to a read/write DMG by dragging it into the left panel of Disk Utility and using the Images-Convert menu.)
    If they are both read-only, you'll need to create another disk image to contain them - use Disk Utility for this (File - New - Blank Disk Image), set the required size and properties, and once it's mounted, drag the contents of both .ISO images into it.
    Matt
    Message was edited by: Matt Clifton

  • How to make more cells in one table by DataGridView

    Hello,
    I have a question, Firstly I'm using VB
    How can I make invoice by datagridview I'm trying to type customer information in the Textbox and Inventory Items in datagridview but the problem is datagrid give me one cell and I can type one inventory item only,  I want to put a lot of items for
    one customer. And I bind the datagridview to access db table.
    For more explain , How can I make Invoice and use datagridview for put items into it and save to access database table?
    For example " create invoice in Quick books " something like that Every customer have a gridview and it's have item he taken it.

    The problem with the datagridview is that it can only show one table.
    For more tables 3th party datagrid's are better. 
    Although you can start with using the old datagrid. Despite what is written on MSDN is it a complete different control then the datagridview. You can add in to your toolbox by right clicking on it and then add it.
    The datasource of a DataGrid can be a complete dataset which is showed with all its relations.
    Success
    Cor

Maybe you are looking for