Audio in Menus and DVD file Sizes

Hi
I'm remaking a DVD from scratch, from a DVD which was made in a different DVD authoring program. The DVD size of the original is 1.9Gb. They had 10 audio tracks each in their own menus. The audio tracks played in full.
Now when I add an audio track to a DVD Studio Pro, standard menu I set the duration of the menu to the length of the Audio track. This results in the menu size increasing which then takes my DVD well over the 4.7Gb file size once all the tracks are entered the same way.
Is there any other way of having audio in a menu, that doesn't take up so much room? It seems crazy considering the audio files are 4-8Mbs. I guess it's having to render the video as well.
Thanks
Dave Motion

Is there any other way of having audio in a menu, that doesn't take up so much room?
Yes. Use Compressor to encode your audios to Dolby 2 (AC3). Take any of the existing AC3 preset in Compressor and change the following settings to keep your audio level:
Encoding Preset: None
Dialog Normalization: -31
Hope that helps !
  Alberto

Similar Messages

  • Editing PDF and keeping file size small

    We are having lot of difficulties in keeping the PDF file small after editing. Our PDFs have text and fields and are used in a browser. They need to be updated multiple times a year to reflect change in text.
    PDF was created from MS Word 2010 using Acrobat X.
    Word had only Arial and Verdana fonts.
    When PDF was created from word, settings were set to "Never Embed" fonts. Till this point, all seems fine.
    Now, the moment we try to edit text (even add a letter), PDF prompts that fonts may be embedded and file size increases by 20-30KB.
    Checking File-Properties-Fonts show that font has changed to "Arial, Bold  Type: True Type (CID), Encoding: Identity-H". Before editing, font type was not CID.
    Under Optimization, there is no embedded font and we unchecked “subset all embedded fonts in optimization”. Save the file.
    Still File size is higher by 10k-20K - though only one word was added.
    Questions:
    How to avoid font type CID getting added automatically by Acorbat? It seems it takes more space and we don't need it. We couldn't find a way to remove/replace it.
    How to keep the file size not increasing much? Every time we edit with only few words added and do optimize, etc. still file size increases by 10-20 KBs.
    thanks
    apjs

    As these PDFs are used as electronic agreement forms and have fields/Javascript, recreating them from word requires lot of work. We do understand if there are substantial changes then we should recreate from word as PDF is not designed for major editing. However, in most cases we are trying to edit few lines of text and still file size is increasing by 10-20K.
    We have tried Save As but so far optimization option gives us better results in terms of reduction in file size.
    We do use common fonts - like Arial, Verdana, Times New Roman. We understand that we should embed uncommon fonts but we avoid uncommon fonts as embedding increases PDF file size.
    CID is coming up even when common font like Arial is being used.
    Thanks for trying to help us.

  • Problem exporting '.txt' file size 23 KB and '.zip' file size 4 MB

    I am using Apex 3.0 version screen to upload '.txt' file and '.zip' file containing images.
    I can successfully export '.txt' file and '.zip' file containing images as long as '.txt' file size is < 23 KB and '.zip' file size < 4 MB from database table 'TBL_upload_file' to the OS directory on the server.
    processing of Larger files (sizes 35 KB and 6 MB) produce following Error Message.
    ‘ORA-21560: argument 2 is null, invalid or out of range’ error.
    Here is my code:
    I am using following code to export Documents from database table 'TBL_upload_file' to the OS directory on the server.
    create or replace procedure "PROC_LOAD_FILES_TO_FLDR_BYTES"
    (pchr_text_file IN VARCHAR2,
    pchr_zip_file IN VARCHAR2)
    is
    lzipfile varchar(100);
    lzipname varchar(100);
    sseq varchar(1000);
    ldocname varchar(100);
    lfile varchar(100);
    -- loaddoc (p_file in number) as
    l_file UTL_FILE.FILE_TYPE;
    l_buffer RAW(32000);
    l_amount NUMBER := 32000;
    l_pos NUMBER := 1;
    l_blob BLOB;
    l_blob_len NUMBER;
    l_file_name varchar(200);
    l_doc_name varchar(200);
    a_file_name varchar (200);
    end_pos NUMBER;
    begin
    -- Get LOB locator
    SELECT blob_content,doc_name
    INTO l_blob,l_file_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_text_file;
    --get length of blob
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_file_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file);
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    utl_file.fflush(l_file); --flush pending data and write to the file
    -- set the start position for the next cut
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos captures length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    --- zip file
    -- Get LOB locator to locate zip file
    SELECT blob_content,doc_name
    INTO l_blob,l_doc_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_zip_file;
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_doc_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file); --flush out pending data to the file
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    l_pos:=1;
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    UTL_FILE.fflush(l_file); --flush pending data and write to the file
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos contains length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    -- Close the file.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-20214,'Screen fields cannot be blank, Proc_Load_Files_To_Fldr_BYTES.');
    WHEN TOO_MANY_ROWS THEN
    RAISE_APPLICATION_ERROR(-20215,'More than one record exist in the tbl_load_file table, Proc_Load_Files_To_Fldr_BYTES.');
    WHEN OTHERS THEN
    -- Close the file if something goes wrong.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    RAISE_APPLICATION_ERROR(-20216,'Some other errors occurred, Proc_Load_Files_To_Fldr_BYTES.');
    end;
    I am new to the Oracle.
    Any help to modify this scipt and resolve this problem will be greatly appreciated.
    Thank you.

    Ask this question in the Apex forums. See Oracle Application Express (APEX)
    Regards Nigel

  • Simple crop and the file size triples

    Good day,
    I'm trying to figure out why a video encoded using AME comes out with a much bigger file size than the original. Even if all I'm doing is using it to trim the source file. No change in settings, bit rate, dimensions etc.
    In the current example I'm taking a webex recordings and trimming out some dead space in the beginning. I've lowered every setting (video and audio) I can to it's lowest potential and the resulting file looks worse than the original and is triple the file size. Both the source and the result are .mp4.
    Please assist. The is making the files go from email-able to not. Making a video shorter shouldn't make it larger....
    Thank you for your help.

    When encoding to virtually ANY format, you will be able to set the BITRATE. This determines how big or small an output file is. Apparently, the file you are creating is running about 3x the bitrate of the source file. You can adjust the bitrate under the VIDEO tab in AME.
    Not knowing the specs of the source, I can't suggest how to export. Perhaps if you post a screen shot of your export panel in AME, that will help. Note that if you choose "HD 1080p" H.264 preset that will be much larger than say "YouTube 1080p", there are many options.
    Thank you
    Jeff Pulera
    Safe Harbor Computers

  • SWF and FLV file  sizes

    Hello,
    I have an flv file and the same flv file in an swf file. Both
    files are the same size. So, it seems that it doesn't matter,
    whether you import an flv file or an swf file, to keep your file
    size small. Is this correct ?
    Thanks,
    Paul

    > I have an flv file and the same flv file in an swf file.
    Both files are
    > the
    > same size.
    That's just a coincidence.
    There is different baggage / overheads with FLV vs SWF. So
    you will usually
    get some differences .. sometimes SWF smaller, other times
    FLV. However,
    the actual video payload is the same in both, and the audio
    is similar too,
    and they are the bulk of the file size. So there shouldn't be
    a huge
    difference in file size between SWF an FLV.
    Jeckyl

  • OCR and Reducing file size

    I have a large document (a book) that I am trying to scan. I will be scanning it chapter by chapter. The book was printed in grayscale, so I don't have a pure BLACK AND WHITE document. I would like to optimize the file size, but I have a few questions about that.
    Currently running:
    Windows 7
    Acrobat Pro X
    Epson GT-S80 High-speed scanner
    1. What is a good typical workflow? I have tried scanning the documents to PDF using the scanner's software then opening them up in Acrobat to OCR them. I have tried using Acrobat's Scan feature with OCR being one of the steps in the scanning process. I have tried letting both softwares do their own color mode detection, where they will mix black and white and grayscale to reduce the file size, but have typically told it to stick with grayscale because that gives me the cleanest and clearest document. Does anyone have any recommendations on getting a good quality image and using a mix of black and white, as well as grayscale, or should I keep using just grayscale?
    2. I am having some trouble, I think, with the file size. I have a 12 page document I believe was either scanned at 300 dpi or was scanned at full resolution because I used CLEARSCAN, and downsampled everything to 300 dpi. I don't remember exactly, but that file is about 2.20 MB in size, and I think that runs about 185K per page. I would think there could be a way to get a smaller file.
    3. For text recognition purposes, this document is not ideal because it is a collection of powerpoint slide sheets (2 - 3 slides per page), and in some cases there is text on top of image in the slides, and it seems very hard to discern.
    4. Once a document has been scanned, and OCR has been run on it, I was under the impression that the OCR is in a separate layer, and that (if Searchable Text is chosen), you basically have a scanned image with another layer of searchable text. Because the OCR'd text is "there somewhere", is it possible to remove the scanned image text, and have just the raw recognized text, similar to if I created the document in Word, and created a PDF?
    5. Sort of back to number 1, suppose I am stuck with leaving the scanned image behind, and just running OCR, what is the optimal way to reduce the file size of the PDF? I had read that running your scan at 600 dpi may help with the text recognition. The same article suggested doing the higher resolution scan and using the ClearScan because it would  a) recognize the text better and  b) convert the text image to actual text and reduce the file size. From there, should I then just run the PDF optimizer to downsample the images to a certain DPI to further reduce the size?
    Hopefully you all can understand what I am saying and help fill in some gaps.
    Thanks,
    Ian

    Let us know if this tutorial helps you with your workflow Acrobat X: Taking the guesswork out of scanning to PDF.

  • Exporting Pdf's for the Web, maintaining quality and keeping file size down

    1) I don't have acrobat Pro yet.
    I've been trying to export a small document 14 pages for email, and I can't get the file size down below 26 mgs even when I'm compromising images to an extremely poor quality. I have not had this problem with Cs3 previously. Not sure why the file size is so high. I don't want to have to down sample everything in other programs, would kind of defeat the purpose of proofing out the program in the first place. I'm wondering if the extra file size is related to metadata?

    What preset are you using? How many images, and how large are they? how much vector art?
    The first thing to do is to remove all unused swatches and styles from the document, then do a "save as" to remove the excess undo information, then try again.
    And next time you should ask this type of question in the InDesign forum for your platform. This area is for discussing new features users would like to see. :)
    Peter

  • Projector and dir file size grow 7X unexpectedly - dcr remains the same.

    I’m updating a Shockwave project that is also available
    for download (so size matters and I’ve got a dcr and exe of
    the same project). Last year the file sizes were as follows: dir =
    933kb, dcr = 203kb, exe = 4,857kb … all reasonable. I started
    with last year’s file, eliminated numerous redundant scripts
    and cast members (including an unused font), combined the
    functionality of scripts that were similar, streamlined the
    operation of other scripts, updated some internal data, replaced
    the one and only bmp with a new one for this year (same size),
    saved and compacted … and for all my effort to clean up this
    year’s version I get the following: dir = 33.9Mb, dcr =
    224kb, exe = 37.5Mb The xtras are an obvious suspect but I went
    down the list and they’re the same as last year, the only
    outside xtra being POM (which hasn’t changed since 2006) I
    recompiled last year’s project and the sizes were still
    reasonable, so Director isn’t broke. Anyone know what's up?
    PS: I made a dummy copy of this year's movie, elminated
    everything (all sprites, all cast members, all xtras), save and
    compact, and the dir file is still 33Mb?!?!?
    PPS: Well, I copied everything into a fresh document, spent
    about an hour making sure scripts not attached to sprites didn't
    get left behind, re-attached the required xtras, and now I'm back
    down to a 4.4Mb projector but I'm not sure why.

    Thanks Mike. The odd thing is the results above were after a
    “save and compact” (as a matter of habit I always
    compact). Even with everything stripped out of the file I
    couldn’t get Director to jettison whatever garbage had gotten
    lodged in. On the plus side, moving the cast and score to a fresh
    document not only cured the problem but also allowed me to
    eliminate some legacy xtras that were no longer being used (this
    project has been updated yearly since 2002).
    PS: Flash's memory and file size audit report is really nice
    for trouble shooting this kind of problem, it would be nice if
    Director gets the same feature.

  • How do I completely crop a PDF so that the cropped data is removed and the file size is reduced?

    How do I completely crop a PDF so that the cropped data is removed and the total file size is reduced?
    When I use the "Crop" function, the cropped data still remains in the file and there is no reduction in file size. I need a way to truly crop a PDF using Acrobat software.

    When you export, try to get the full file path or else you will have to do a lot of manual searching.
    If you downloaded the picture from Messages, the picture is stored in your User Library/Messages. to make your User Library visible, hold down the option key while using the Finder “Go To Folder” command. Enter ~/Library/Messages/Attachments. 
    If you prefer to make your user library permanently visible, use the Terminal command found below.
    http://osxdaily.com/2011/07/04/show-library-directory-in-mac-os-x-lion/
    You might want to bookmark the command. I had to use it again after I installed 10.8.4. I have also been informed that if you drag the user library to Finder it will remain visible.

  • SHA256 and LARGE file sizes

    Some of the people who digitally sign a PDF add about 32k to the file size (AA pro 9.0.0, Hash Alg SHA1) and others who sign the same PDF add 3200k to the file size (AA pro 9.3.4, Hash Alg SHA256)
    We had a 79k Doc file that after 4 signatures was 12 MB in size using 9.3.4 and the same file with 4 signatures was 217k using 9.0.0
    Question 1) Why are the 9.3.4 signatures adding 3 MB to the file for each signature?
    Question 2) Where can we control which hash alg someone uses (get everybody using SHA1)?

    no they do not - and all our signatures are created the same way using the same procedure - the only difference is the Adobe version

  • How do find all database slog size and mdf file size ?

    hi experts,
    could you share query to find all databases log file size and mdf file (includes ndf files ) and total db size ? in MB and GB
    I have a task to kae the dbs size  around 300 dbs
    ========               ============     =============        = ===        =====
    DB_Name    Log_file_size           mdf_file_size         Total_db_size           MB              
    GB
    =========              ===========               ============       ============     
    Thanks,
    Vijay

    Use this ViJay
    set nocount on
    Declare @Counter int
    Declare @Sql nvarchar(1000)
    Declare @DB varchar(100)
    Declare @Status varchar(25)
    Declare @CaptureDate datetime
    Set @Status = ''
    Set @Counter = 1
    Set @CaptureDate = getdate()
    Create Table #Size
    SizeId int identity,
    Name varchar(100),
    Size int,
    FileName varchar(1000),
    FileSizeMB numeric(14,4),
    UsedSpaceMB numeric(14,4),
    UnusedSpaceMB numeric(14,4)
    Create Table #DB
    Dbid int identity,
    Name varchar(100)
    Create Table #Status
    (status sql_Variant)
    Insert Into #DB
    Select Name
    From Sys.Databases
    While @Counter <=(Select Max(dbid) From #Db)
    Begin
    Set @DB =
    Select Name
    From #Db
    Where @Counter = DbId
    Set @Sql = 'SELECT DATABASEPROPERTYEX('''+@DB+''', ''Status'')'
    Insert Into #Status
    Exec (@sql)
    Set @Status = (Select convert(varchar(25),status) From #Status)
    If (@Status)= 'ONLINE'
    Begin
    Set @Sql =
    'Use ['+@DB+']
    Insert Into #Size
    Select '''+@DB+''',size, FileName ,
    convert(numeric(10,2),round(size/128.,2)),
    convert(numeric(10,2),round(fileproperty( name,''SpaceUsed'')/128.,2)),
    convert(numeric(10,2),round((size-fileproperty( name,''SpaceUsed''))/128.,2))
    From sysfiles'
    Exec (@Sql)
    End
    Else
    Begin
    Set @SQL =
    'Insert Into #Size (Name, FileName)
    select '''+@DB+''','+''''+@Status+''''
    Exec(@SQL)
    End
    Delete From #Status
    Set @Counter = @Counter +1
    Continue
    End
    Select Name, Size, FileName, FileSizeMB, UsedSpaceMB, UnUsedSpaceMB,right(rtrim(filename),3) as type, @CaptureDate as Capturedate
    From #Size
    drop table #db
    drop table #status
    drop table #size
    set nocount off
    Andre Porter

  • Strange Menus and Currupt File Systems? Help!

    I recently replaced my ibook's HD with a new one, every thing has been fine until just recently. Mysteriously on my control click menus and other pop up windows like save and open, all system text has turned into code. use the following url for an example http://i6.photobucket.com/albums/y218/whatapileof/menu.jpg . The text is now N21 and things like that. Any ideas? When i tried to do a HD repair in disc utility, the permissions are fine but when i repair the disc it fails each time. I have tried to reinstall the OS but that also fails. I am guessing that the menu text and this repair issue are hand-in-hand. Only thing i can think of is doing a re-format. There’s no other issues that i can spot and the problem is bearable. Im used to doing reformats with windows. never thought i would have to with OSX though. Any ideas how to avoid?? Cheers.
    (This message was previously in the ibook section of the discussion, no one could really help so i have moved it to a more viewed section. Dan)

    As the error is on the system drive i have used the install dvd of 10.4 and used disc utility from that menu to repair the disc. The only error message displayed says only "disc unable to be repaired" and when you re-install the OS without reformatting it states "Mac OS X cannot be installed." and makes you restart. I havnt tried fsck. Do you recommend still trying it? can you remind me how to get to the command line whilst OS X is booting up. I haven’t moded the OS nor installed any haxies. I didn't notice any changes until a few days after i installed the last peace of software which i believe was the new version of firefox and i cant think of a time where the computer had incorrectly shut down or malfunctioned. Might as well face it, i'm going to have to re-format and reinstall.
    Thanks for the help

  • Trying to email a video and the file size is to large to attach.

    Trying to email a friend a video and it says the file size is to large to attach.  How do I change this?

    Go into your photo-video program and change the file size to the smallest resolution possible. Also limit the video to less than 30 seconds to a minute.
    Then try sending again. The problem you are having is because the file is too large to send via the method you are using.
    Good Luck

  • Comparing count and combined file sizes of specific file types in target folder and subfolders

    Hi all,
    I have a script that I use to delete files with a certain file extension in a folder and its subfolders. I would like to enhance to the script by counting the total number of files and their combined size in MB that the script is deleting and use this information
    in a popup where a message will say something like "X No. Files deleted totalling YMB
    The existing script so far is:
    get-childitem  -include *.****.rfa -recurse | foreach ($_) {remove-item $_.fullname}
    Can any advise what I need to add as I'm quite new to powershell.
    Thanks

    So you do not know how to write a simple output statement.  I think you need to start here:
    http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx
    Not specifically within Powershell no, like I said I only started looking at it this week as an alternative to VBS.
    Nothing is being declared.  You need to learn the basics of PowerShell.  We cannot teach you one line at a time.
    Really? So the author of
    this website is talking rubbish is he? ("Once data is assigned to a PowerShell variable, it’s automatically declared.")
    I never asked for line-by-line hand holding nor am I someone who wants others to write the entire code for me. Examples of previous scripts that perform similar or partial operations would have been a good way to guide a new user unfamiliar to this topic.
    Additionally posting modified(incorrect) and unfinished script examples without clearly stating what your code is doing nor that additional lines of code need to be added before the script will operate as outlined in the original post is confusing to someone
    with 0 experience in this area.
    On forums I frequent that are relevant to subjects which I have good experience with, whenever I respond to a genuine query of that has an example of what they are trying to create/modify, I will happily provide a full example and/or explain what I
    have done so the OP understands exactly what I did to achieve their request in my example. For someone with your points tally (and likely a respected poster amongst your peers on this site) responding with what is essentially "RFTM Noob" I trust you can understand
    is somewhat disappointing.

  • How can I burn Audio-CD's and .cue files on my iMac.

    Since a few months I stepped over from Windows to iMac, I am satisfied I did that, but now I am at a point that I regret it !!
    I tried for the first time to burn an Audio-CD on my mac, first with the help of the programs BURN and SimplyBurn, but I did not succeed to get a Audio CD that also worked on my Stereo set. Also trying to burn a .cue file was a dissaster.
    I also tried Finder and iTunes, well the with Finder burned CD did not play on my Stereo, iTunes did not burn my music, maybe because it was not downloaded from iTunes, because the burn entry was not in the menu bar.
    I also went to an help desk, but the gave me some unclear answers.
    So you can imagine I'm very disapointed, not succeding to burn a simple CD or .cue file, right now I'm happy I did not get rid of my Windows machine.
    Please a solution for this "problem" and what kind of burn programs can you advise I should use, and that I stay in the Apple communtiy and not go back to Windows ??
    JMGD.

    Thanks for your answer. But I tried to burn an image with the program BURN yesterday, without succes. The file I tried to burn was a 350MB big file to a CD, BURN told me the file was 1.5TB big !!!! and did not burn it.
    I burned it on my Windows machine with NERO and that worked ! 
    Also today Itried to burn a normal Mp3 album to disk with BURN, without result, I got an answer from BURN telling me "One of the volumes on this medium is still in use" not nowing what this means !!
    JMGD

Maybe you are looking for

  • Not able to run a JSP file in Tomcat 5.5

    Hello friends i am new to JSP programming. I recently designed a application to enter values of certain field in a database (Using SQL Server Database) i used a file name Register.jsp, so when the action is performed by clicking submit button it use

  • Help with controlling a flash video in director

    I have imported a flash file into my director movie and would like a replay button but can not find the correct lingo. The flash file is called equation. Any help appreciated!! thank you

  • Line width in J2ME

    Hi all, How can I draw a line/polyline with a given width. I am looking for something similar to Stroke with with in Swing. If I am not wrong there is no direct API to achieve this. Can anyone help me do it in some way. Thanks in advance D M

  • E Recruiting- error on saving the candidate data

    Hi Guys, When I create and save the external candidate I am getting the following error on the Recruiter portal.  Settings in table u2018INRDPu2019 looks fine. I am I missing some thing? Please let me know. Candidate number 00000000 does not exist

  • Ipod does not store movies.

    Hey, I'm wondering if anyone can help me with this. I converted a bunch of video files into the appropriate mp4 format to put vids on my ipod...they show up and play fine on iTunes...but for some reason they dont show up on my ipod. I have a fifth ge