How do I batch convert many kinds of files to PDF/A

I have thousands of files to convert to PDF/A for archival purposes. In Acrobat Pro when I convert to PDFs to PDF/A, 5/6 times there is an error that pops up. Errors are often, "Embed fonts (even if text is invisible)" or "Fix glyph width information" and the PDFs end up my error folder. 
When I try to convert Word Docs to PDF/A, my computer (a mac) hopelessly tries to open Word over and over again, and ends up at a blank word document, and the whole process stalls.
I've been trying to figure this out for days and am close to resigning myself to the 20 hours it will take to do each one individually on a free online PDF converter that doesn't ever have errors- which seems crazy, because what's the point of having Acrobat Pro??
Thanks

I'm moving to Win8.1 and I don't want to loose my manual sorting.
Manual sorting is not meant for a permanent sort order nor is it designed to do so, when switching to a new window or other sort order you will loose the previous sort order. However there is a way to retrieve the last sort order used with a script Paul Riggott once wrote. But I'm not sure you can transport this sorting to a new system version because when you install a system from scratch you also need to recache the files for the Bridge Cache library. It might be possible to also copy the hidden file with the last sort order but that would mean a trial and error procedure.     
Check this post, at the bottom is also a link for the site where you can get the script and how to install and use it:
http://forums.adobe.com/message/4748987#4748987
Personal I would use batch rename to keep the sort order safe. You can select all files in the content window and add a sequence number in front (with enough digits to match your number of files) of your existing filename. In this way you can easily resort your collection when your manual sorting is lost for whatever reason and also the files will have the correct sort order on your system folder also.

Similar Messages

  • How do I Batch Convert JPEG to PNG files?

    Any idea how I would convert a large number of jpeg's to png files in Photoshop CC?

    You could do it like this: http://www.santoshgs.com/blog/189/how-to-batch-convert-png-to-jpeg-using-photoshop-cs2/
    But can I be honest? I'd do that with a more efficient and far faster conversion utility like IrfanView. Photoshop is incredibly slow for this type of work. For example, I did a quick test to demonstrate the difference in performance:
    folder with 10 images in jpg format, 5600px by 5600px. Simple jpg to png batch.
    Photoshop: over six minutes.
    IrfanView: one minute and 40 seconds.
    That's a rather big difference - and with large numbers of images I just do not have the time to wait for Photoshop to finish the job. It's too slow.
    Another issue is that during the conversion process Photoshop cannot be used - while with a simple conversion utility you can leave it running in the background, and continue to use PS for other work if required. This matters if you have hundreds of images to convert.
    Btw, Irfanview (windows only) is free to download @ http://www.irfanview.com/
    The batch processing you can find under File-->Batch Conversion <b>
    ImageMagick is also free and open source. It is a command line tool, and easy to use for conversions.Will also work on a mac. But it is much slower than IrfanView, a tad faster than PS.
    http://www.imagemagick.org/script/convert.php
    http://www.ofzenandcomputing.com/batch-convert-image-formats-imagemagick/

  • How do I batch convert separate avi files in Premiere Elements 11 to separate mp4 files

    How do I batch convert separate avi files to separate mp4 files

    For batch conversions, I use DigitalMedia Converter by Deskshare. My version is an older one (2.7), and there is a newer version, in two flavors, "regular" and "pro." I do not recall what limit on number of files is, but have had about 10 in the conversion queue. The newer version, and especially the Pro version, has probably expanded the number of files in the queue, but I could not quickly find what that max number is. While not opensource freeware, my copy was only about US$40. I was so impressed, that I bought two licenses - one for each of my editing computers. I have been meaning to upgrade to the new Pro version, but as old 2.7 works for what I need to do, just have not gotten around to it.
    Now, Premiere Pro can do batch conversions too, through the AME (Adobe Media Encoder), but that would be a much, much more expensive solution.
    I am certain that there are other conversion programs (some might also be free), that can do batch conversions, and with the H.264 CODEC for your MP4 output.
    One caveat: if your AVI files are SD (Standard Def), you will NOT be pleased if you convert to MP4 in HD (High Def), as there will be up-rezzing, and the results will not be pretty. If you need to up-rez to HD, when using SD material, you might want to look into something like Red Giant's Magic Bullet Instant HD. Many users have been impressed by its up-rezzing capabilities, though some have not.
    Also, I think that Corel's video editor has an up-rezzing capability, but have never used it, so cannot comment directly - might be great, or not so great.
    Good luck,
    Hunt

  • How do you batch convert pdfs into single page tiffs?

    How to you batch convert pdfs to single page tiffs?

    If you mean that you want a separate TIFF file for each page in the PDF, try using the saveAs JavaScript method in a batch process (Action): http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.524.html

  • Batch convert of old eps files

    Hi,
    at first sorry for my english. It is not very well, but I try.
    We have many eps file, which are created with older illustrator versions.
    At this time we change to cs3.
    How can I batch convert all the old eps files to the new "standard".
    eps options are shown in the attachment.
    Thanks.

    This is my (hopefully) corrected CS4 version:
    -- Call the Process
    try
         tell application "System Events" to set processName to (first item of (every process whose name contains "Illustrator"))
         processName
    on error
         display alert "Warning" as warning message "Adobe Illustrator is not open. Please open."
         return
    end try
    -- Search for eps files
    set allFiles to paragraphs in (do shell script "find " & quoted form of POSIX path of (choose folder) & " -iname \"*.eps\"")
    -- Files found?
    if ((count of allFiles) is 0) then
         display alert "Warning" as warning message "No .eps files found."
         return
    end if
    -- Process files
    repeat with nFile in allFiles
         my runConvertEPS(nFile)
    end repeat
    -- Sub-Functions
    -- Convert
    on runConvertEPS(nFile)
         tell application "Adobe Illustrator"
              try
                   activate
                   set theCurrentFileLocation to (nFile as POSIX file)
                   -- Open File
                   open file theCurrentFileLocation with options {update legacy text:true ¬
                        , update legacy gradient mesh:true} without dialogs
                   -- Select the file
                   set theCurrentFile to the current document
                   -- Save and overwrite
                   save theCurrentFile in file theCurrentFileLocation with options {class:EPS save options ¬
                        , artboard range:default ¬
                        , CMYK PostScript:true ¬
                        , compatibility:default ¬
                        , compressed:true ¬
                        , embed ICC profile:false ¬
                        , embed linked files:true ¬
                        , font subset threshold:default ¬
                        , PDF compatible:true ¬
                        , save multiple artboards:true ¬
                        , overprint:preserve}
                   -- Close
                   close theCurrentFile
              on error
                   -- Close all windows
                   try
                        close every document without saving
                   end try
                   -- Write the error to log
                   tell me to my logErrorByFile(nFile)
              end try
         end tell
    end runConvertEPS
    -- Save Format
    on logErrorByFile(nFile)
         try
              set writeContents to ((current date) as string) & ": " & nFile & return
              set pathToFile to (path to desktop folder as string) & "EPS Log.txt"
              set the pathToFile to the pathToFile as text
              set the openFile to open for access file pathToFile with write permission
              write writeContents to the openFile starting at eof
              close access the openFile
         on error errorReport number errorNo
              try
                   close access file pathToFile
              end try
         end try
    end logErrorByFile

  • How do i convert several large pages files to pdf?

    how do i convert several large pages files to pdf?

    Hello:
    Open Pages.  Go to the menu bar>file>export.  Select PDF.  The size of the file should be irrelevant.
    Barry

  • Is there a way to easily batch convert hundreds of video files to h.264, while retaining the original dimensions, metadata, etc.?

    I am organizing my library of stock video footage so is easily view (show to clients) and access. I need advice for two things:
    First: What is a good program to catalog footage in? I am considering using iTunes because I already have it and I could setup smart folders to easily organize footage.
    Second: I would like to encode all the footage to h.264 so I can preview it in Quicktime and add it to an iTunes library. My problem is all the footage is in a wide variety of dimensions, formats, framerates, strange codecs etc. I have access to Adobe Media Encoder and Apple Compressor. Is there a way to easily batch convert hundreds of video files to h.264, while retaining the original dimensions, metadata, etc.?
    I have tried using a watch folder in AME but it freezes every time I add the folder...
    Thanks for any help!

    "including library and music folders) from my computer"
    Did you move the entire iTunes folder the hold Option, select Choose library and select the iTunes folder you moved?

  • How well does keynote convert MS office powerpoint files?

    How well does keynote convert MS office powerpoint files? A colleague prepares Powepoinr presentations and if they send them to me will I be able to edit the content and send it back to them?

    There are numerous threads about this question, you might profit from looking at some of them.
    Preategui, KN does open PP docs, unless something's wrong. If you could describe, as exactly as possible, what you do, and what happens, we can probably sort this out.
    That said, back to the OP: converting from PP to KN or vice-versa is easy enough, but they don't always translate exactly - remember, they're different programs, differently written, with different capabilities. The simpler the presentation, the fewer the differences will be; the more bells and whistles (animations, transitions), the differences become greater. Be aware that fonts often cause problems: the standard Mac font set is not identical to the standard Windows font set, and some people might be using custom fonts. About the only way to be sure your Windows recipient will see a KN presentation exactly as it was constructed is if it's exported to QT, but that wouldn't suit your purpose at all.
    If the editing you want to do is limited to text and other content, you shouldn't have too much of a problem. But I'd stay away from changing formatting, animations and transitions.

  • Is it possible to batch convert all form responses into individual PDF forms?

    Is it possible to batch convert all form responses into individual PDF forms?

    Sorry we do no offer an automatic way to do this.
    Gen

  • Converting a word 2000 file into pdf using Adobe Acrobat Standard X

    I reinstalled my Adobe Acrobat Standard X today, and tried to convert a *.doc word file into pdf, but the application could not open the word file and got stalled. I remembered that last time I installed the application the same probelm cropped up and I had to install a Microsoft patch that was required to do this, What is the patch file and how do I get it?

    I answer my question myself. I have solved it myself. The answer can be found by searching adobe website. But I give it here if it can be useful to others. Go to control panel. Go to Add or remove programs. Click on Modify in the listed Adobe program. Click Next in the box that appears. Select Modify. Click on + sign against pdF maker to expand. Click on X sign against 'this feature is not available' which shifts on to the little box on the left of Microsoft Office. Click on Apply. Quit. Once the Microsoft Office becomes disabled in Adobe, Word will open in all places.

  • Converting Multi page .eps files to .pdf Preview is broken

    I have in the past used Preview to convert multi page .eps files into
    .pdf files. Since I have upgraded to Tiger 10.4.3 Preview will no longer work.
    Does anyone know how to uninstall Tiger 3.03 version and go back to 2.xx version? Are there any utilities to do this for me? On my older mac (9.x) I have Adobe distiller.
    Thanks
    Max

    I have just copies the older version of Preview onto this machine and am running 2.10 of Preview to solve this problem.
    Max

  • I just read the tutorial and did exactly what it was telling me to do, and I still can't get it done. Once I have selected the file, I get a box that pops up that says "Subscribe now to convert unlimited number of files to PDFs. Subscribe Now.  I already

    I just watched the tutorial and did exactly what it was telling me to do, and I still can't get it done. Once I have selected the file, I get a box that pops up that says "Subscribe now to convert unlimited number of files to PDFs. Subscribe Now.  I already have done this! I am a subscriber!  Arrrrhhhgggg!

    Hello Kathie,
    Please let me know what exactly are you trying to do using Adobe online service.
    You might try accessing the same service for some other PDFs and check.
    Have you signed up correctly at "https://cloud.acrobat.com/" using your Adobe ID credentials.
    If the same message pops up, then please visit Contact Customer Care as they could let you know if there is any problem with your account.
    Hope to get your response.
    regards,
    Anubha

  • Unable to convert the multiple PS files to pdf

    Hi
    I have distiller server 8 version we are unable to convert the multiple ps files to pdf.
    Here is the ps code:
    /prun { /mysave save def       % Performs a save before running the PS file
            dup = flush            % Shows name of PS file being run
            RunFile                % Calls built in Distiller procedure
            clear cleardictstack   % Cleans up after PS file
            mysave restore         % Restores save level
    } def
    (H:/705819_test.ps) prun
    (L:/Instruction sheet.ps) prun
    (H:/705820.ps) prun
    When we run this combine ps  through acrobat distiler it is fine, but through distiler server i couldnt get the pdf
    Could any one check and help me.
    Regards,
    Vinoth

    We couldnt convert the ps to pdf via distiller server?

  • Why can't I convert .odt and .doc files to .pdf?

    why doesn't my reader say it can't convert .odt and .doc files to .pdf?

    ...or a subscription to PDF Pack?  See this document for supported file types: http://forums.adobe.com/docs/DOC-1496
    What exactly happens when you try to convert such a doc?

  • Convertion of any document file to PDF file

    java code for convertion of any document file to PDF file.
    correspondig packages.

    hi,
    answer is POI
    **POI**
    Site
    http://poi.apache.org/Api
    http://poi.apache.org/apidocs/index.htmlExamples
    http://www.google.co.in/search?hl=en&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=7WV&q=POI+examples&btnG=Search&meta=

Maybe you are looking for

  • I accidently deleted the playlist selected for updating thing...

    i was adding new songs to my ipod and i guess there were too many songs there so it asked me if i wanted it to choose some songs randomly... so i chose "ok" but actually i didnt really want it to choose songs on its own so i deleted the list that was

  • Scanning with Snow Leopard

    HP Scanner will not initialise with Snow Leopard using iMac or MacBook Pro. A work around has been found. Insert a memory stick into the front of the all-in-one HP. I used a 64MB in the MS/DUO slot. Press scan menu. Select the option--Scan To Memory

  • TS2972 One of my computers is working but the other one isn't

    One of my computers is working but the other one isn't, so it isn't a network problem. I've restarted iTunes, logged out and logged back into home share and the library still isn't coming up. What's the problem and what should I do?

  • Parsing xml with entity definitions inside it

    Hello All, I am trying to parse an xml file using DOM parser which has entities defined inside it for eg: <!ENTITY sample SYSTEM "sample_data" NDATA sample_ndata > and we are referring to the sample in some tag as value for attribute. When we try to

  • Partially downloaded TV show episode, suddenly starts over...

    I am living in Uganda, accessing the internet with a SLLOOOWWW dial up connection. I have purchased a season pass to a TV show, and have been downloading available episodes. Twice now, a show has been excruciatingly close to complete (after over 12 h