Publishing to mp4 almost doubles the file size

I have been trying to find someone in the forum with a similar problem but with no success. I hope someone can help me.
I have a Captivate 7 file that is 59 MB.
The resulting mp4 file after publishing is 107 MB.
When I publish the same file to swf it is 18 MB.
Why is the mp4 file so large and how can I reduce its size? I did not have this problem in Captivate 5.5. The mp4 file always was smaller than the cptx file.
There was one strange thing with this file. I had imported 5 images that were around 300K in size and in the Captivate library they showed up as huge files (I think it was something like 60MB per file). I deleted the images from the library after I discovered it and just imported new versions ofthose images. That solved the problem in the library. Could this have something to do with the size of the mp4 file.
I have already tried to create a new project and just copy all slides over. That did not make a difference.
Here is a screenshot of my file sizes
Any help is very much appreciated.
Angela

RodWard, thanks for your answer. I wanted to publish using Cap 5.5 but I wasn't able to get my Cap 7course into Captivate 5.5. Whenever I tried to copy the slides or even objects from 7 to 5.5., I got an error message. How can I publish a course using Captivate 5.5. if the course is created in Captivate 7.
I have checked every setting three times and they are all correct meaning they are the same as I had them in Captivate 5.5.
I also tried to create a new project and pasted all slides into the project, then published it. That made no difference.
I have created 20 of theses courses in Captivate 5.5 and they all have the same parameters (it's a series of youtube videos https://www.youtube.com/user/BAEXPERTS). No exercises, no screen recordings, just images, voiceover, and some animation. They always have a similar length and the 20 of them that I created in Captivate 5.5 had around 20MB to 40MB and this one is 105MB. The whole course/video has only 19 slides. In all my other 20 videos/courses, the mp4 file is smaller than the Captivate file.
Also, I am not sure whether this is related, but Captivate 7 crashes many times a day (sometimes every 15 minutes - it looses the ability to paste and when I close the program to restart Captivate 7, it crashes). It seems to be related to my using the clipboard to paste images. Since I use many images in my videos/courses it is too time consuming to save every file. I usually open them directly from an online source in Fireworks and then paste the image into Captivate. I always open it as Administrator because I read that on the forum but it hasn't helped. Captivate 5.5 also lost the ability to paste on a regular basis but it never crashed when I tried to close Captivate as a results of this loss of functionality.
Thanks, Angela

Similar Messages

  • Does opening an image from iPhoto in another app double the file size?

    I'm told (the usually unreliable sources;-) that when you open an image from iPhoto on an iPad into another appson the iPad, Photo Manager Pro for example, it actually duplicates the image: in effect doubling the file space taken up on the iMac. For example, if you had 10, 10 MB images in iPhoto on your iPad, and you opened them to the Photo Manager, it makes a copy, I'm told. If that is correct, you'd now have 20, 10MB images on your iPad; and if you opened those in a image editor on your iPad, you'd now have 30, 10 MB images! Is this correct?
    If so, pretty soon all the storage space would be taken up?
    Is that true, and if so, what's the workaround?
    Thanks
    Haly2k1

    Not necesarilly, the app will portray the photo from your library, not make a duplicate.
    Hope this helps.

  • How can I convert a Microsoft Publisher doc to PDF when the file size is LARGE?

    I have a Microsoft Publisher document that I need converted to PDF. Typically I have no issues converting from Publisher to PDF (and usually can just do it through the "save as" feature in Publisher.) However, this particular file is laden with graphics and therefore very large. I was able to convert it once, but it made some of the graphics as blank boxes. When I try again to convert, it gives me an error message.
    Is there a way to conver a LARGE Publisher file to PDF without losing any of the images contained within the document? Please help!

    Try emptying the Temp folder. Are you using PDF Maker (not sure that is available for Publisher) or the MS plugin? If PDF Maker, try turning off the tags and reducing the amount of bookmarks needed to a minimum. As an alternative, simply print to the Adobe PDF printer -- will typically give a smaller file and not run into these creation problems for large document, but you will not get bookmarks or such in the conversion process.

  • I import mp4 1920X1080 - the file size is 320MB . I publish it as same mp4 and it takes 2GB . Why? Why is it that huge? HELP!

    I import mp4 1920X1080 - the file size is 320MB . I publish it as same mp4 and it takes 2GB . Why? Why is it that huge? HELP!

    hi,
    *Thank you for you response. *
    *I found where to set the bit rate and it solved the problem. (the default
    was very high...)*
    Now it takes same space and the quality is the same as the original.
    Thank you!
    Oren
    2014-09-11 3:54 GMT+03:00 A.T. Romano <[email protected]>:
        I import mp4 1920X1080 - the file size is 320MB . I publish it as
    same mp4 and it takes 2GB . Why? Why is it that huge? HELP!
    created by A.T. Romano <https://forums.adobe.com/people/A.T.+Romano> in *Premiere
    Elements* - View the full discussion
    <https://forums.adobe.com/message/6719671#6719671>

  • Each time I download an HD movie my ISP shows a transaction of almost double the movie advertised size, help/

    I have downloaded 2 movies from ITunes usiing BigPond, each time my activity record from the ISP shows almost double the movie's advertised size - any ideas?

    Welcome to the Apple Community.
    Most ISP's will give an unlimited download account nowadays, subject to reasonable use, others may have caps after which you need to pay for additional data. Check with your ISP as to what your data plan includes, FWIW, I would think any data cap below 50 GB per month is unreasonable these days, unless you are on a satellite connection or something, if you are on such a plan, I'd consider negotiating a better deal or moving to another ISP.

  • Why the files my program create are created twice each file double ? And why sometimes the files size are too small ?

    My program is using Queue of type Uri to create Queue of urls and then i'm using webbrowser to navigate each Uri from the Queue in it's turn and get the url(html) source content and save it to the hard disk.
    The problem is sometimes the text files on the hard disk are small like 90KB or 60KB and sometimes they are as they are suppose to be 300KB or 200KB.
    This is a button click event where i'm calling two methods:
    private void toolStripButton3_Click(object sender, EventArgs e)
    GetHtmls();
    CheckQueue();
    This is the GetHtmls method code:
    private Queue<Uri> myUrls = new Queue<Uri>();
    private bool isBusy = false;
    private void GetHtmls()
    for (int i = 1; i < 49; i++)
    adrBarTextBox.Text = sourceUrl + i;
    targetHtmls = (combinedHtmlsDir + "\\Html" + i + ".txt");
    Uri targetUri = new Uri(sourceUrl + i);
    myUrls.Enqueue(targetUri);
    sourceUrl contain website address: http://www.tapuz.co.il/forums2008/forumpage.aspx?forumid=393&pagenumber=
    And i'm adding to it the numbers and create the pages.
    And add them to the Queue.
    THen the CheckQueue method:
    Uri uri;
    private void CheckQueue()
    if (isBusy)
    return; // We're downloading some page right now, don't disturb
    isBusy = true; // OK, let's get started
    if (myUrls.Count == 0) // No more pages to download, we're done
    isBusy = false;
    return;
    uri = myUrls.Dequeue(); // Get one URL from queue
    getCurrentBrowser().Navigate(uri);
    It suppose to Navigate to each Uri(html address) in the Queue.
    And the browser document completed event:
    private void Form1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    // If page loaded completly then do something
    int urlnumber = uri.ToString().IndexOf("pagenumber=");
    string number = uri.ToString().Substring(urlnumber + 11);
    int num = Int32.Parse(number);
    targetHtmls = (combinedHtmlsDir + "\\Html" + num + ".txt");
    StreamWriter writer = File.CreateText(targetHtmls);
    writer.Write(getCurrentBrowser().DocumentText);
    writer.Close();
    isBusy = false; // We're done
    CheckQueue(); // Check next page in queue
    In the completed event i'm getting the page number and build the string for the text file then write the html source content to the text file.
    In the end i have on my hard disk 48 text files.
    The problems are:
    1. Sometimes it seems like it's not finishing navigating to the current uri or maybe some other reason maybe server side problem and creating small size files with source content inside but not all the source content. Sometimes the text files size are each
    file 99KB or 70KB and sometimes the size of them are about 300KB and 200KB and this is the right sizes 300KB 200KB.
    2. The text files on my hard disk suppose to be 48 different files each file should contain the source if the html page of the 48 pages. But on my hard disk the 48 text files are duplicated for some reason.
    This is the file on my hard disk:
    Some of the files are 205KB 350KB 175KB and some of the files sizes are 85KB 94KB 35KB 
    Why some of the files it didn't navigated to the end or maybe didn't got all the source ?
    And why it's making each second file the same like the one before ? It suppose to create 48 different files but i'm getting two identical files each navigation.

    I solved it now.
    This is what i did:
    It's a bit slow process since i'm waiting for each page to be loaded into the webbrowser but it does the work.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Collections;
    using System.IO;
    using System.Net;
    namespace WindowsFormsApplication1
    public partial class Form1 : Form
    private string sourceUrl = "http://test.test";
    private string htmlsTargetDirectory = "Test Htmls";
    private string appDir = Path.GetDirectoryName(@"C:\Users\chocolade1972\AppData\Local\Test_Images\Test Images\Test Htmls");
    private string combinedHtmlsDir;
    private String targetHtmls;
    private int counter = 1;
    private StreamWriter w;
    private string uri;
    private bool htmlloaded = false;
    public Form1()
    InitializeComponent();
    webBrowser1.ScriptErrorsSuppressed = true;
    combinedHtmlsDir = Path.Combine(appDir, htmlsTargetDirectory);
    if (!Directory.Exists(combinedHtmlsDir))
    Directory.CreateDirectory(combinedHtmlsDir);
    private void Form1_Load(object sender, EventArgs e)
    GetHtmls();
    timer1.Enabled = true;
    private void GetHtmls()
    uri = sourceUrl + counter;
    targetHtmls = (combinedHtmlsDir + "\\Html" + counter + ".txt");
    webBrowser1.Navigate(uri);
    private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    if (e.Url.ToString() == uri)
    targetHtmls = (combinedHtmlsDir + "\\Html" + counter + ".txt");
    htmlloaded = true;
    StreamWriter writer = File.CreateText(targetHtmls);
    writer.Write(webBrowser1.DocumentText);
    writer.Close();
    FileInfo fi = new FileInfo(targetHtmls);
    var size = fi.Length;
    w = new StreamWriter(combinedHtmlsDir + "\\test.txt", true);
    w.WriteLine("File Size " + size);
    w.Close();
    private void timer1_Tick(object sender, EventArgs e)
    if (htmlloaded == true)
    uri = sourceUrl + counter;
    myurls.Add(uri);
    webBrowser1.Navigate(uri);
    htmlloaded = false;
    counter += 1;

  • How can I reduce the file size of my .cp project file?

    I am working in CP3 and creating training programs via computer simulations.  Generally I try to eliminate any unnecessary animation in my slide (use of scroll bars, drop down menus etc.) because these seemed to increase my file size.  I do have audio narration on almost every slide and I know that this helps to bump up my size.
    Here's what I found to be so odd.
    I have to create a new training module and I simply opened one of my .CP projects and did a SAVE AS with a new file name.  I reduced the number of slides from 25 to 3.  The three slides I kept are the title slide, closing slide and one slide that I'll call a content slide that has the color for my highlight boxes and text formatting.  (I keep the content slide so I can simply copy and paste the boxes as I need them.)  I removed all the audio.  Finally I saved the new project.  Imagine my surprise when the new file is 96,333 KB with only 3 slides, no audio and no animation.  This is almost the same size as the original file.  I published my 3-slide project, thinking it might change the size, but that was wishful thinking.
    I telelcommute from my home and I am required to check these files out of a secured document library each time I need to update them.  The upload time is KILLING ME!
    What am I doing wrong?  The Information section shows the file size as 783.9KB which seems more in line with what I would expect.
    Any help, as always is appreciated.

    Hi BIMB,
    Here's my guess, others can correct if I'm way off.
    What you see as the file size under the Cp4 Storyboard View Information is what the published file size would be sans any unused pics, audio, or swfs. So it should be relatively small given you only have 3 slides in your project.
    What you see as the 'save as' version reflects all of the pics, audio, and/or .swfs you still have in your project's library.
    Now if you've actually removed the audio files and pics from the Cp Library, then I'm not sure.
    Curious to know if this helps,
    Keith

  • How can I reduce the file size of 3 videos?...

    ...without losing quality? These three videos are as follows in terms of size and length of the video:
    1) 148MB 19minutes
    2) 357MB 18minutes
    3) 164MB 14minutes
    I tried using a video converter to reduce the bit rate in order to reduce the size, which i know affects the quality, but that did not actually work to reduce the file size this time.
    I thought perhaps i should ask my forum friends for help on this matter. How,if at all, can I get all three of these MOV's under 100mb or to a total of 300mb for all 3 and preserve quality? It has to be able to play on an ipad (MOV or MP4). Thanks for your help!

    I think that the point that David was trying to make is that reducing the amount of information originally provided by a product or part of it in order to make it smaller will inevitably reduce the efficiency of the product itself.
    However, you don't have access to the original masters? Then you might be after a good compromise, meaning a video that can display decent quality while playing at its original frame size (say on the web).
    Does this mean that there is no real way to reduce the size without losing quality?
    If your target is the web there is a way to reduce the file size and still make it look decent enough. Re-compression means loss of source information but video compression is an art on its own and can produce some amazing results!
    Not without testing though.
    Now back to my previous post, use Compressor to try to reduce the file size and compare the result quality. Trust your eyes and be honest with yourself.

  • Can I tell the file size of my .folio without an iPad?

    I've been searching everywhere for this answer, but alas, it has escaped me. How can I tell the file size of my .folio? I'm sure this is really simple. I'd like to be able to see the final file size of my folio without an iPad.

    I think if you log into acrobat.com, you should see your folio there, too.
    You see the article sizes and may be able to add them together.
    Be catuous, editing your folio through acrobat.com might break it.
    —Johannes
    (mobil gesendet)
    Am 13.12.2011 20:33 schrieb "Sheenz1701" <[email protected]>:
       Can I tell the file size of my .folio without an iPad?  created by
    Sheenz1701 <http://forums.adobe.com/people/Sheenz1701> in *Digital
    Publishing Suite* - View the full discussion<http://forums.adobe.com/message/4082274#4082274>

  • How can I reduce the file size when PDF Optimizer does not do much?

    I have a PDF form that exists of 48 pages. 44 pages are forms / have form fields, the other 4 are just informative. Each form-page has approx. 80 fields (checkboxes, text fields).
    When I started setting up the PDF form the file size was 12 MB and I had placed fields on 21 pages. Then with 34 pages the file size was 19 MB. And with 40 pages it was 35 MB big! Finally with 44 pages the file size is 34 MB.
    So I searched with Google and found some tips. Using the "PDF Optimizer" option inside Acrobat for example. So I did, and the file was reduced only with 3 MB... 31 MB was the file. Also used the option "Save as.... Optimized".... no difference. I also found a suggestion about removing embedded fonts. Using the "Audit Space Usage" option I noticed the fonts taking many MegaBytes:
    * Content Streams: 5.287.000     15,09 %
    * Fonts:                24.556.810     70,08 %  !!
    * Acrobat forms:      3.349.164    12,05 %
    In the older PDF version (I saved and kept this one too) with just 21 pages with form-fields, the  "Audit Space Usage" shows:
    * Content Streams: 5.292.000     40,14 %
    * Fonts:                 1.290.224     9,79 %
    * Acrobat forms:      1.588.758    12,05 %
    So I could save many many MegaBytes by -UnEmbedding- fonts. But if I do this (unembed ALL fonts), the file size stays almost the same!?!?!? Why? What can I do to reduce the file size? I would like it to be 8 MB if possible (32 MB -  24 MB = 8 MB)?
    Thank you for your help!

    If you have authored the form, reduce the number of different fonts for the content and form fields.
    Any font used in a form field will cause that font to be embedded into the PDF.
    If you are going to Optimize the PDF be very careful with forms. Optimization does a lot of removal of items and rearranging of items which can really mess up forms.

  • Why are the file sizes of exported jpegs so small?

    I shoot raw, studio portraits mostly. I import to Lightroom 5 as DNG and then edit. Upon exporting as jpegs, the file sizes end up way too small, some of the cropped and/or black &amp; white conversions as small as 560 KB, even with slider to 100%. Un-cropped color photos are ending up from 1.5 to 3MB. What am I doing wrong?

    Jim,
    Thank you for your response. I think some of the difficulties in this thread are that there have been more than one person reporting issues, which may or may not be exactly the same or different from the initial one reported by the original poster. Then, anyone else commenting can easily intermix bits and pieces from any or all of the other posters interrelated issues. Also, I should have added to my last response in clarification what I meant about the overall dimensions. I was referring specifically to inches, not file size, not resolution.
    My very first post was a thank you to Rusty's post for his comment about how he had noticed his Resolution setting had been changed from ppi to ppcm. I didn't say anything about printing. In fact, I never even stated what my issue was. I was merely thanking him for sharing information. So, for anyone to tell me that I didn't know what my issue is, that I didn't understand was quite laughable to me. And then the other two posters were almost equally ridiculous, who said that since they didn't experience the same conditions as myself and another person, it couldn't be a programming error.
    Trust me, I understand explicitly about resolution, image size, dimensions, file size and how they are all interrelated. Resolution is essentially the density of pixels. (And I'm still used to dpi vs ppi, that's how long I've been working with the concept.) I often help other people understand in whichever mode is most comfortable for them to grasp the knowledge of how to know what size image they need/want to capture and print depending on the types of measurements shown on their equipment used and by whomever they might be working with for finish work.
    I have a set process, I have set image sizes, I have an action recorded in Photoshop to shrink my images to 24" x 36" and save them in the proper folder with the proper name and another to shrink them to 8" x 12" and place them in the proper folder with the proper name. I am meticulous, so when the first image imported into Photoshop and it was 18.898" x 28.346", un-cropped, I couldn't figure it out. The file size was still just as large, the resolution was still 72, I hadn't changed any settings in Lightroom or Photoshop, the ONLY thing I had done was install an update. It didn't make sense to me that with the pixel dimensions still being the normal size, all of the sudden the inch dimensions were smaller. And I did need to be able to have the capability for a larger print size if/when I do want to print.
    I hope that I'm being clear now. I really was just trying to post a thank you initially. I hadn't expected all of this excess.
    I apologize for the troll statement. It wasn't meant for you directly, it was more for the grouping of comments which in my opinion didn't seem to be useful for the discussion and were instead just baiting. I shouldn't have allowed my bad mood to permeate my own comment regardless. I am also sorry for any other statements I made which might have come across wrong. I was trying to be funny with my first comment about programmers, but it might not have come across that way. I hadn't expected the rude and unnecessary comment back which I received, and that's where the trollish comments came from. That's why I only responded to that person once, despite the string of poking posts.

  • Images cut from Microsoft Word document being picked up in the file size by Acrobat distiller

    Hello All;
    I have a large MS Word document (book manuscript) with almost 400 images (all grayscale) and found that the tiff images needed to be replaced with jpegs to reduce the file size. I created the jpegs, cut the tiff images from the document, and inserted the replacement jpeg image for each tiff image cut. It reduce the file size in Word from 595 Mb to 210Mb. However, when I ran the distiller, it is somehow picking up the file sizes of the tiff files as it still gives roughly the same output (595 Mb) for the Acrobat document. Is there a way I strip out the tiff image overhead from the pdf or a way I can cleanse it from the MS Word document? Thanks in advance.

    Acrobat automatically compresses images when a PDF is made, usually doing something equivalent to JPEG (it's your choice, check the creation options).
    So, changing from TIFF to JPEG in the original file will usually make not a bit of difference to the original file size. 
    There is no simple 1 to 1 connection between the size of a Word document and a PDF. Some things are bigger, some are smaller.
    You can experiment with Save as ... optimized PDF settings. Also, use Audit Space Usage in that dialog to see what is using the space.

  • When I narrate my keynote presentation, why is the file size so huge?

    When I narrate my keynote presentation, why is the file size so huge?

    Here are the steps so you can see all the files that make up your Keynote…
    Go to the Finder and find your Keynote file and make sure that it has the .key extension on it. If it doesn't, click it and command i to view info and uncheck the box that says Hide Extension.
    Delete the .key and change to .zip and then click the use .zip in the dialog box that comes up
    Double click the new .zip file and it will change it to a folder
    Open the folder there are the files
    Close the folder and add .key to the end of the name and click Add in the dialog box (this will change it back to a Keynote file)
    You might be able to do this and convert the voice narration to a smaller format.

  • JPEG images opened in Photoshop double in file size upon save. Why?

    I've noticed that jpeg files I open in Photoshop (fresh off the sansdisk card) pretty much double in file size (from, say, 3MB to 6MB) after they're saved. This occurs even if I don't change the image size at all and simply save as a jpeg after touching up the levels and sharpness (no major restorative work on the image at all).
    Can anyone explain this to me?

    JPG format saves disk space by using a coding scheme (called huffman) in which small numbers use fewer bits than small numbers. What is saved is differences between neigbor pixels (the idea being that there is usually much similarity between neighbor pixels). Smaller inter-neigbor differences need fewer bits than large differences. When you adjust tonality, the adjusted image most likely uses a bigger portion of the tonal range than the original image did, and the inter-neighbor differences are increased. A sharpness boost also increases differences between neighbor pixels, particularly so if you boost sharpness so much that noise is increased, and more bits are needed to store the differences.
    Another thing is that when you open a JPG image into an image editor, the editor uncompresses the image. When you re-save it, you have to select a compression ratio, and it may not necessarily be the same ratio that the original was compressed with.
    Best regards,
    Antero

  • Why is that saving as PDF increase the file sizes?

    Hola
    I've been notice that when I save a file as PDF, in CS5  it increase the file size to double that before.
    Even saving it with the same setting than before.
    For example, most of my Business Card file that I sent to print, use to be 1.5 or so megabytes
    Now if I open the same file, --or a new file-- and save it, it will increase it to double that size
    Any ideas?
    Thanks

    Hola and Thanks for your help
    Ok, I've been using Photoshop since version 6 or so (around year 2000)
    Just upgrade to CS5
    Before, for example, I'll make a file in PS, merge the layers, open a new file whit the same dimensions, resolution etc,
    and save this file as PDF to send to printers.
    Tthe file(s) that I have or were create them in CS4, than saved as PDFs have a file sizes of 1 to 2 megabytes as average.
    The NEW files (in the same sequence) that I create now, have an average of 3 Mbytes
    Even do, I save them with the same --I believe-- setting in PDF
    There's may be a new feature in PDF save dialogue box that I'm not getting?
    or, it just more information that it is put into?
    Thanks

Maybe you are looking for

  • Application not accessible over VPN

    I have written a windows service application that opens a TCPIP port (and posts a listen) on a server. A matching client application can connect and works perfectly when the client computer is on the local network. When I am connected to the server u

  • Pivot Source Filter is Broken

    I built a pivot table based on combining three identical spreadsheets.  The pivot table appears to work, but if I filter on a field in the source table, it does not filter the entire table - only the top part of it, based on the first imported spread

  • Menu shortcut shows text and not symbol

    Hi, I set an accelerator on an action that I use in a menu item like this: action.putValue(ACCELERATOR_KEY, KeyStroke.getKeyStroke(KeyEvent.VK_PERIOD, InputEvent.CTRL_MASK));In the menu item, I get something like: <menu text> Ctrl-PERIOD note the wor

  • Selecting Multiple Images Quickly

    Hi To free up some iPhone memory, I want to delete a good 500 images off my iPhone Camera Roll. I sorted out the photostream on the iMac but cant do the smae with the camera roll. Anyone know how to do this without having to tap the screen 500 times?

  • My xpreia not found in about phone software updates

    After buying this phone and spending ages setting it all up, I find that I can not activate the my xperia feature.  Sony website says go to settings/about phone/software updates to find options but nothing is there, just stating that phone is up to d