Getting smaller file sizes

Hi
I'm starting to use Acrobat 3d using large .wrl files from Unigraphics.
The .wrl files are about 17 MB and the Acrobat 3d files I'm creating are about 3.5 MB.
Is there any way I can reduce the Acrobat 3d file size to create a faster working file? I had hoped to see a bigger compression than this.
Any help appreciated.

Hello,
You also can reduce size of your PDF file by using the following settings:
- Import your wrml as PRC path way (import tab)
- Uncheck attributes (import tab)
- Select Compress tessellation (Optimize tab)
- Unselect "Add default view" (General tab)
- Select "Blank preview" (General tab)
Can you please indicate us size of the PDF obtains using these settings?
Thanks

Similar Messages

  • Best way to get small file size/best quality- starting from Logic?

    I am in the process of embedding 3 mp3's into a PDF to submit as a portfolio. The PDF also has text, and two scores included, and with the 3 embedded mp3's it can't be more than 10mb.
    So my question is: When bouncing a project out of Logic, what is the best method for getting the smallest file size, but retaining the best audio quality? And once it's out of Logic and it is an mp3 or other type of audio file, is there a best format for compressing it further, and still maintaining the relative quality?
    I bounced out the three projects into wav's. Now I am using Switch for Mac to compress them down to smaller Mp3's. I basically need them to be about 3 mb each. Two of the recordings sound OK at that size, but they are just MIDI(one project is piano and string quartet, the other is just piano- all software instruments. The recording that combines MIDI and Audio and has more tracks (three audio tracks and 10 Midi/software instrument tracks)and sounds completely horrible if I get it under 5 mb as an mp3. The problem is that I need all three to equal around 9mb, but still sound good enough to submit as a portfolio for consideration into a Master's program.
    If anyone can help I would really appreciate it. Please be detailed in your response, because I am new to logic and I really need the step by step.
    Thank you...

    Hi,
    user5716448 wrote:
    ... Trying this
    REGEXP_SUBSTR ( 'cus_postcode'
    , '(\d+)\D*$'
    , 1
    , 1
    , NULL
    , 1
    'cus_postcode' (inside single-quotes) is the 12-character literal consisting of c, u, s, underscore, p, o, another s, t, another c, another o, d and e. It doesn't contain any digits.
    If you want to use a column called cus_postcode, then lose the single-qutoes.
    >
    where postcode for example DI19 1RI
    Would expect 1 - first number after space starting from right but getting blank.
    What am I doing wrong?
    Thanks

  • Ntsc to pal conversions with small file sizes

    I'm trying to convert a file from NTSC to PAL, which I have done successfully in the past. However, the file needs to be under 200MB (the video is 3.40) and I can not seem to get it any lower than 346 MB using the dv-pal setting and everything as low as possible and the sound set to mono. Any suggestions?
    Thanks,
    Christy

    DV PAL is a set data rate - 3.56 MB/s when run at 25 fps.
    If you want a smaller file size you have two choices -
    1. convert the file to another codec that allows for smaller frame sizes, slower frame rates and increased intra and inter frame compression.
    2. If it must be DV/PAL, cut the length of the video to reach your 200mb limit.
    Of course there is the third choice of simply giving them the larger file because that's what an un-compromised DV/PAL version of the file will be.
    x

  • Using compressor Small file sizes?????

    Can anyone help me with this. I get a lot of request from clients to have the video I edit for them compressed to very small files sizes so they can be emailed. At the same time the client complains about the quality of the video. I'm looking for some suggestions on how I can maximize quality but at the same time keep the file size low. Should I encode at MPEG-1 or MPEG-4 to do this? What about the other codecs, H.264 for example. Should I be making adjustments inside compressor to get low file size and better quality? What settings are those? Please help.

    Are you asking how to find the smallest files and sync those? Or are you asking how to make the big files smaller without making duplicates. If the former, you can sort your library by file size or make a smart playlist that looks for files below a certain size. If the later, you really can't. You'd have to downsample the tracks which would create a smaller copy.

  • Help ...how to get the file size on a server

    Hi.I use this code to parse a file that is on a server.
    The question is: how can i get the file size (bytes size)?
    Thanks.
    //Open the file for reading:
    URL u = new URL(entry);
    InputStream inputXML = u.openStream();
    //Build document:
    DocumentBuilder builder = factory.newDocumentBuilder();
    doc = builder.parse(inputXML);

    Try this instead:
    URL u = new URL(entry);
    URLConnection conn = u.openConnection();
    // get the file size
    int size = conn.getContentLength();
    // open the input stream from the URLConnection (which is functionally the same as opening it directly from the URL)
    InputStream inputXML = conn.getInputStream();
    Shaun

  • I am trying to make a pdf of a file and I need to get the file size to be no bigger than 10MB. What is the best way to do this

    I am trying to make a pdf of a file and I need to get the file size to be no bigger than 10MB. Even when I save it, the image quality at minimum the file size is 10.9 MB. What is the best way to do this

    @Barbara – What purpose is that PDF for? Print? Web?
    If web purpose, you could convert CMYK images to sRGB. That would reduce the file size as well.
    A final resort to bring down file size is:
    1. Print to PostScript
    2. Distill to PDF
    That would bring file size down even more. About 20%, depending on the images and other contents you are using, compared with the Acrobat Pro method. If you like you could send me a personal message, so we could exchange mail addresses. I could test for you. Just provide the highres PDF without any downsampling and transparency intact. Best provide a PDF/X-4.
    I will place the PDF in InDesign, print to PostScript, distill to PDF.
    Uwe

  • How to get the file size (in bytes) for all files in a directory?

    How to get the file size (in bytes) for all files in a directory?
    The following code does not work. isFile() does NOT recognize files as files but only as directories. Why?
    Furthermore the size is not retrieved correctly.
    How do I have to code it otherwise? Is there a way of not converting f-to-string-to-File again but iterate over all file objects instead?
    Thank you
    Peter
    java.io.File f = new java.io.File("D:/todo/");
    files = f.list();
    for (int i = 0; i < files.length; i++) {
    System.out.println("fn=" + files);
    if (new File(files[i]).isFile())
         System.out.println("file[" + i + "]=" + files[i] + " size=" + (new File(files[i])).length() ); }

    pstein wrote:
    ...The following code does not work. Work?! It does not even compile! Please consider posting code in the form of an SSCCE in future.
    Here is an SSCCE.
    import java.io.File;
    class ListFiles {
        public static void main(String[] args) {
            java.io.File f = new java.io.File("/media/disk");
            // provides only the file names, not the path/name!
            //String[] files = f.list();
            File[] files = f.listFiles();
            for (int i = 0; i < files.length; i++) {
                System.out.println("fn=" + files);
    if (files[i].isFile()) {
    System.out.println(
    "file[" +
    i +
    "]=" +
    files[i] +
    " size=" +
    (files[i]).length() );
    }Edit 1:
    Also, in future, when posting code, code snippets, HTML/XML or input/output, please use the code tags to retain the indentation and formatting.   To do that, select the code and click the CODE button seen on the Plain Text tab of the message posting form.  It took me longer to clean up that code and turn it into an SSCCE, than it took to +solve the problem.+
    Edited by: AndrewThompson64 on Jul 21, 2009 8:47 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Can i have a smaller file size for songs that i put on iphone vs mac

    i have ripped a lot of my cds  to itunes on my MBA. i used the aac high quality setting.
    is there a way that i can upload lower quality/smaller size versions of the songs that i will put on my new iphone ?
    Q2: once i rip cd into itunes (on my MBA)... is there an easy way I can  later decide to save space and re encode them at 128 instead of 256 (for example).
    i notice that you cant just willy nilly copy/delete from the itunes media folder because itunes doesnt seem to 'refresh' with the new files.
    thx!

    1. the ONLY place i see where you can set the sampling rate,etc  is under preferences/general/'when a cd is inserted"....    am i missing something?
    No.
    2. when i want to add an existing mp3 file (from outside the apple realm) , i am using itunes "add to library" and browsing to some mp3 file(s) . it doesnt give me a option to convert it to an m4a format... it seems to just add it to the itunes library without changing the mp3 file ....    do i have any option here?
    You don't need to convert formats and I would not recommend you do so. You will simply lose quality.
    To answer your original question...
    can i have a smaller file size for songs that i put on iphone vs mac
    If you want smaller files on the iPhone, see my post above which converts them when syncing to theiPhone.
    If you really want to convert when adding songs to iTunes...
    iTunes prefs > General - Import settings as you want.
    Hold Option (Mac) or Shift (Windows) and choose  File > Create New Version > Convert AAC (or what your settings are in previous step).
    This will convert and add the file instead of adding the file then converting and having 2 of the same song in iTunes.

  • Get the file size of a file on the server.

    okay.. for my download manager i need to get the file size. I tried using the available method of inputstream, and the getContentLength() of URLConnection, which worked but only for webpages. so does anyone know how to do this? Sun does it in SDM, but i dont think the source is included. ill download it again and check.
    thanks.

    content-length is not guaranteed to be anythingi dont think so. correct me if i am wrong..
    http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#s
    c4.4 states -
    " When a Content-Length is given in a message where a
    message-body is allowed, its field value MUST exactly
    match the number of OCTETs in the message-body.
    HTTP/1.1 user agents MUST notify the user when an
    invalid length is received and detected."
    this sort of guarantees that if a file is being
    downloaded the content-length gives the size of the
    file. i am able to confirm this by sniffing the
    traffic of my download manager.This is only guaranteed if the content length field is present. :-)
    However, looking two paragraphs up:
    'All HTTP/1.1 applications that receive entities MUST accept the "chunked" transfer-coding (section 3.6), thus allowing this mechanism to be used for messages when the message length cannot be determined in advance.'
    There is mechanism built in for cases where the size cannot be determined.
    Regards,
    Bhaveet

  • What's the best settings to Export movie for smaller file sizes?

    Hi, I've been working on some helmet cam footage which was taken with Xvidmpeg4.avi and was advised to convert it to dvavi for editing in PrE, this created a huge file to work with, the original footage was 206mb and the finished edited dvavi file is now 1.56gb, what settings can I use to export the movie with a much smaller file size, but hopefully try to retain some quality, to upload to places like Vimeo? I thought I would try to export it in the same as the original footage Xvidmpeg4.avi thinking this might compress it again to something like the 206mb of the original and the original was good quality footage, but PrE just hangs up with a box stating 'Xvid Status (Not Responding)' and when I try to cancel that the whole thing crashes and closes? So when I go to File > Export > Movie, what would be the best settings in:
    General > File Type ?
    Video > Compressor
    lots of options under compressor if I select the file type as Microsoft AVI, so I'm guessing something under that would compress it to a smaller file size but what, I could spend all night trying different settings so hoping for some advice?
    Or, if I'm completely in the wrong place for the settings and should be doing something else please tell me?
    Thanks, Gav

    Thanks for the replies, but to me it's still confusing - simply because there are so many settings, if I go to Share/Personal Computer I'm then presented with a whole load of settings
    NTSC Flash Video
    MPEG
    DVAVI
    Windows Media
    QuickTime
    and under each of those is a lot more advanced settings?
    I'm guessing I wouldn't use flash or quicktime, so which of the others would I use and what are the advanced settings to use as I can't find anything that is .wmv or .mov
    What I've done with other videos that I've exported from PrE as dvavi is then to put it through Windows Movie Maker, Publish Movie, This Computer, then put the settings to Windows Media DVD Quality (PAL) (3.0 Mps) - this seemed to be the only setting that reduced the file size considerably but still had good quality, but it's still about twice the original file size?
    This all seems long winded to me, open original file, convert original file, output another file, then output the file again in something else which then results in loss of quality and a larger file than the original? I'm ending up with lots of files, was hoping just to edit in Premiere then export/publish that edited clip and that would be it, then upload to the net.
    Is it not possible to just edit my original footage and save it, just like you would with something like a word document, should I be using something else and not Premiere?
    Thanks.

  • Why Is "Export Small File Size" Large?

    Hi, I work in CS3.  Out of 100 brochures, I have two brochures that will not export to a small file size PDF. The settings for export are all the same.  What else should I be looking for?  The sizes are usually 1 MG.  These particular 2 brochures are 5 - 6 MG.  What can I look for to correct this?
    Thanks

    Small size is very dependent on the contents being exported to PDF. Images are readily compressed. Text and vector data isn't. Thus, if your content is primarily text and vector, it is very unlikely that the content can be compressed signficantly more via change of settings.
    Another factor that can relate to image compression is use of any duotones that use spot colors. Such images cannot be JPEG-compressed, only ZIP-compressed.
              - Dov

  • How to export in a small file size in FCP7 ?

    Hi,
    I'm filming with a GoPro camera on 720p 60fps.
    resulting files are MP4 files wich I convert to Apple ProRes files.
    Now when I want to export my movie, it has a VERY big file size..!
    Can anyone tell me how to export my movie in a smaller file size.
    It doesn't has to be the smallest file size, just small enough so I can upload it on the internet etc.
    Thanks very much,
    Yannick.

    Export a reference video (command-E, current settings and "self-contained" should not be marked.
    Then import to compressor, use one of the h.264 settings... Start with the LAN setting and go from there.

  • With Premiere elements 11, when Publish/Share (saving) a finished video, selecting H.264  .mov file type, what are the recommended Codec and Aspect settings for a crisp video and a small file size?

    With Premiere Elements 11, when Publish/Share (saving) a finished video, selecting H.264  .mov file type, what are the recommended Aspect and Codec settings , for a crisp video with a small file size?

    Gary Krouse
    We will customize a very detailed reply, but
    (a) What are the properties of your source media?
    (b) What did you or the program set as the project preset to match the properties of the source media?
    (c) What specific requirements do you have for this H.264.mov export file?
    File size can be a compromise between bitrate, file size, and quality.
    Thanks.
    ATR

  • Small file size, but still high quality?

    Hello, I am filming weddings for clients but I am unable to export them with a small enough file size so that they are able to see it on their slower computer. And it is a pain when it doesn't even fit on a dvd. These videos are somewhere around 2 hours long. I would also like to have them still HD. The only way I have been slightly succesful is to upload them to youtube then download them off again. Is there a way to do this? I have already tried H.264.  Thank you for your time!

    Use the Adobe Media Encoder and h.264. It's currently your best option for small file size and HQ playback. You should also use AME to encode for DVD. 2 hours will easily fit on a DVD. If you want HD then burn a BluRay. That format will also hold a nicely compressed 2 hr movie. It's done all the time. You just have to learn about encoding for distribution. The standard presets are very good.

  • Exporting to PDF - How Can I Get A Small File Size When Using Lots of Vector Art?

    I am trying to create a small PDF file for e-book distribution purposes. My Indesign pages contain a variety of photographs, vector icons and vector maps.
    A publisher in Britain who does similar books on a Mac using Creative Suite was able to create a 22-page document very similar to mine (similar icons, graphics, density, etc) that is only 2.84 mb, a small fraction of the file size that I'm getting! I've included a sample page of his below, which is a low-res jpeg, but on the original PDF all of the text and images (except the jpeg cliff background) are super sharp - they look like vectors when you zoom in. I've also included screenshots of his PDF export settings.
    I don't know if he's exporting directly out of Indesign, but my best guess is that he is.
    My vector-based icons, numbers and maps are bloating my PDFs considerably. When I remove them, the Indesign and exported PDF file sizes drop dramatically. For the life of me, I can't figure out how he got such small PDF files sizes using so much vector art! The PDF graphic compression settings don't seem to include any options for vector art.
    My vector art graphics (numbering, icons, maps) are all saved as Illustrator AI files and then placed in Indesign as linked graphics. My best guess as to why I can't achieve smaller PDF files is I'm either doing something wrong with the vector graphics themselves or handling/exporting them improperly out of Indesign.
    I am using CS4 for PC and am on a Dell Machine running Windows 7.

    I am trying to create a small PDF file for e-book distribution purposes. My Indesign pages contain a variety of photographs, vector icons and vector maps.
    A publisher in Britain who does similar books on a Mac using Creative Suite was able to create a 22-page document very similar to mine (similar icons, graphics, density, etc) that is only 2.84 mb, a small fraction of the file size that I'm getting! I've included a sample page of his below, which is a low-res jpeg, but on the original PDF all of the text and images (except the jpeg cliff background) are super sharp - they look like vectors when you zoom in. I've also included screenshots of his PDF export settings.
    I don't know if he's exporting directly out of Indesign, but my best guess is that he is.
    My vector-based icons, numbers and maps are bloating my PDFs considerably. When I remove them, the Indesign and exported PDF file sizes drop dramatically. For the life of me, I can't figure out how he got such small PDF files sizes using so much vector art! The PDF graphic compression settings don't seem to include any options for vector art.
    My vector art graphics (numbering, icons, maps) are all saved as Illustrator AI files and then placed in Indesign as linked graphics. My best guess as to why I can't achieve smaller PDF files is I'm either doing something wrong with the vector graphics themselves or handling/exporting them improperly out of Indesign.
    I am using CS4 for PC and am on a Dell Machine running Windows 7.

Maybe you are looking for

  • Autoclearing for GL line items

    Hi All, I am trying to clear line items from the GL accounts which are having different Profit center & different Material with same assignment field for that i have changed the rule for Document clearing, i have just mentioned field  ZUONR for clear

  • Embedding html for use in a tilelist

    In my app I have several images which I've defined as public vars like this:- Bindable][ Embed(source="assets/images/skynews_small.png")]  public var image10:Class; These images are then contained within an array collection which serves as a dataprov

  • My apps are presenting in German. How do I get them in English?

    My Apps store is presenting in German and my iPad is set to English.  how do I set the Apps store to list its content in English?  I am new to iPad!

  • Notify requisitioner when requisition is converted to PO

    I have a requirement to trigger a Workflow whenever Purchase Requisition is converted to Purchase Order or Outline Agreement, then notify requisitionor that the PO or OA has been created for their PR. There is a thread posted October 2009. Unfortunat

  • Airplay streaming stops when you turn off the iPad screen

    Hi All, If you are streaming something from your iPad using Airplay, and you hit the button to turn off the iPad screen, it seems that the streaming stops... Is there any way to fix that?  I mean, if you are watching a long video, for example, you do