Audio stuttering problems with certain exported MP4 files

I'm currently running Captivate 6.1.0.319 on my old and decrepit Pentium 4 machine that has 4GB of RAM and is running Windows 7 SP1. I'm developing an online training course on RoboHelp 10 for Udemy, and they require all lecture files to be in MP4 format. Unfortunately, some of the MP4 files I generate from Captivate have audio stuttering starting a few seconds into the generated video and nothing I try fixes the problem.
All the videos are being recorded with video dimensions of 1360 x 978 pixels. I import the .cptc file I recorded into the .cptx file, and then I import an MP4 audio file into the .cptx file. When I finish editing the .cptx file, I publish it to an MP4 file using the highest video settings and the highest variable bitrate audio settings.
I have tried the following to try to fix the problem:
Turned off SWF compression.
Created a new .cptx file and copied the slide from the problem .cptx file into the new one, and published that new .cptx file.
Disabled all software operating in the foreground and the background.
Tried generating the MP4 file on my laptop; the laptop runs the same version of Captivate on Windows 8.
As I said, Captivate generates some MP4 files perfectly without any stuttering, and others have the stuttering problem. If this problem sounds familiar, it's because I wrote a couple of messages about this a few months ago and despite some good suggestions, I wasn't able to solve the problem. I've spent my time during the past few months trying to find another program that will convert SWF files to one of the formats Udemy supports -- MP4, MOV, or FLV -- without success. Captivate exports to SWF and HTML5 format files without any trouble at all. But MP4 generation is spotty and I need to get this resolved so I can get this project off my plate and start making money off it.
If you have any further questions, please let me know. I look forward to hearing your suggestions.
Thanks,
Eric Butow

Hi,
I am having the same issue and cannot figure out what is causing it, as it occurs randomly - but fairly frequently  - when I publish to mp4. And it is not tied to the project - seems to be something happening during the publishing. The issue might occur one time when pubishing a project and if republished again it may or may not occur again. I would be very interested in finding exactly what is causing this and any step that are tested and proven for getting away from the problem.

Similar Messages

  • Problem with an exported Mov file

    I used Quicktime pro to “export for web” a video file. The problem I’m having is that when I open the file It only plays a small portion of the video, about 5mins of a 30min video. The video length shows 30min and after the video stops the counter and progress bar continue to run for the remainder of the video. I really wouldn’t be worried if the file hadn’t also been lost from the camera during the process.
    Any help on getting this video to play correctly would be appreciated.
    Thanks
    Eric

    OK. I checked the specs on your camera and it seems to make H.264 (video) which should work just fine in QuickTime version 7.
    Export for Web is a feature of QuickTime Pro and it "converts" your file to other destination formats (iPhone, Desktop machine and "cellular") along with writing the needed html page code. I've never had any issues when using the Export for Web feature.
    When you open the .html file (the ReadMe.html) in a browser you must have an Internet connection (because some of the special javascript files are served from Apple servers).
    Have you tried just double clicking on the Desktop.m4v found in the folder created by the Export to Web feature? Do they play as intended?

  • Audio Sync Problems With Share YouTube -- OSX not iOS

    I've replicated this several times. It's maddening and bizarre. *Share YouTube*
    Exporting a FCPX video using the "SHARE" menu and choosing YouTube causes the resulting upload to be out of sync when viewed in Safari or other browsers on iOS
    Viewing the same video on the iPad with the built in YouTube app, the video plays in sync
    Viewing the same video on AppleTV 2 (with the 5.1 update), the video plays in sync.
    If I export using Export Media menu item under the SHARE menu, and then from QuickTime Player choose Export For Web (under the File menu) and manually upload, the video is in sync.
    Note, that using
    Feel free to try on this short simple and silly video http://www.youtube.com/watch?v=cGTQNMJdPRQ&list=UUiDxioBFJCPC-8OUFifsx8A&index=2 &feature=plcp
    Anyone else experience this. Is this a bug or a feature? Rather not go through three steps to upload a simple YouTube video.

    We've got the same problem and yep, it's infuriating that are so few posts about it.
    It doesn't happen with every video, but the vast majority of files that we've tried to either export directly to YouTube from QTX or export locally and then manually upload to YouTube end up with shockingly bad audio sync (and also some colour issues, but that's another story).
    As a small video production company we were chuffed to bits with the improved export speed in QTX and quick to make use of it. But when we realised there was a problem, we had to revert back to using QT7's painfully slow export.
    We've run experiments on a brand new iMac and MacBook Pro running the most up-to-date version of OS X and still no joy. Always the same audio sync problems with the same video files.
    In the meantime however,  we've found that the settings advised on this YouTube help page have given us the best (albeit slow) results at both 25fps and 30fps when exporting from QT7:
    http://support.google.com/youtube/bin/static.py?hl=en&guide=1728585&topic=172857 0&page=guide.cs

  • Problem with SWF export and audio looping

    When I export from Keynote into SWF, I get an odd audio looping problem when playing the SWF files. Here's the workflow:
    Create Keynote presentation (includes transitions typically, but also happens with presentations that don't).
    Record audio using Audacity, convert using iTunes to MP3 in order to be able to export from Keynote to Flash (Keynote can't export WAV files).
    Drop in MP3s onto slides. Sync up my transitions with audio.
    Export Keynote file to SWF, including the audio.
    Play SWF file either directly using Safari or when posted using Firefox. Audio plays, but a certain length into the audio the audio file seems to re-initiate and play over itself.
    Anybody seen this? Anyone know how to solve it?
    This is pretty critical for us (work related). We are using Keynote to create educational content SWF files, and we only discovered this problem after release.
    Thanks for your help!
    Michael

    The helper class using IText:
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.pdf.PdfContentByte;
    import com.lowagie.text.pdf.PdfImportedPage;
    import com.lowagie.text.pdf.PdfReader;
    import com.lowagie.text.pdf.PdfWriter;
    public class PDFHealer
       public static InputStream heal(InputStream in) throws DocumentException, IOException
          try
             ByteArrayOutputStream out = new ByteArrayOutputStream();
             PdfReader reader = new PdfReader(in);
             // we retrieve the total number of pages
             int n = reader.getNumberOfPages();
             // step 1: creation of a document-object
             Document document = new Document();
             // step 2: we create a writer that listens to the document
             PdfWriter writer = PdfWriter.getInstance(document, out);
             // step 3: we open the document
             document.open();
             // step 4: we add content
             PdfContentByte cb = writer.getDirectContent();
             int i = 0;
             while( i < n )
                document.newPage();
                i++;
                PdfImportedPage page1 = writer.getImportedPage(reader, i);
                cb.addTemplate(page1, 0, 0);
             // step 5: we close the document
             document.close();
             ByteArrayInputStream ret = new ByteArrayInputStream(out.toByteArray());
             out.close();
             return ret;
          finally
             in.close();

  • I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

    I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

    I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

  • Why does my exported mp4 file look so bad when it is viewed in adobe acrobat pdf file?

    I have embedded an mp4 (exported from premier pro cs6) video file into adobe acrobat and its not sharp viewing of my video anymore. It was a sharp video when viewed in both premier and the exported mp4 files, but once embedded in acrobat it looses sharpness, anyone know what the problem might be? Could my settings  in adobe acrobat be wrong? I would think the problem is in adobe acrobat since the exported mp4 video views crisp and clear before its embedded, any ideas to assure sharpness with my video after its embedded into the adobe acrobat pdf?
    Hoping someone has an answer to this, I think my problem might lie within the adobe acrobat settings????
    or maybe there is no way around and I need to expect this video not to look as crisp and clear after I embed it into acrobat.... as it is when viewing in premier pro, mp4, etc.????
    Any helpful information would be greatly appreciated.
    Someone Im sure is taking theri exported premier files and embedding them to create pdf files? Would love to hear if anyone has encountered this issue.
    Thanks so much in advance for any help offered.

    Hi Dave,
    I just completed a test and comparison between the two PDF's,
    compared the file as you suggested with the floating option and changing setting to actual size of the original premier pro / mp4 file size and
    the old pdf that did not utilize the floating and file size option.
    I do notice a slight difference. The PDF with the floating window with the match of the media clips original dimensions appears to be crisper.
    I will be having the final pdf document set utilizing this method for the embeded mp4 movie and hope that the department doing this (next stage of this job) will agree that this is better to use your steps to embed all the video files into a pdf.
    Thanks so much for your time.
    Hope you had a happy holiday, and hope you have a very happy and healthy new year.
    Thanks, Amy

  • Many problems with the 'Export to Text' (.txt) in CR Xi

    Hi,
    I have listed many problems with the 'Export to Text' (.txt) function of CR Xi.
    These problems are related to this export format only (meaning everything works fine in the Viewer or in the 'Export to PDF')...
    - Multi-columns layout do not export as Multi-column (export only a one column);
    - Numeric values with parenthesis for negative values or with a fix currency sign at the leftmost position are not exported correctly;
    - Fields having a Suppress formula which is "WhilePrintingRecords" do not appears when exported;
    - Fields with 'Suppress double value' checked are not always suppressed when exported to Text.
    - 'Keep Group Together' flag is not working.
    - 'Reset Page Number After' simply does not works when exported to text;
    - 'Keep object together' on TextBox/Section is not working.
    - Whenever a group is ending on the last line of a page, the the following page as the same Group header as the previous group with no records until the page is filled, then the PageBreak and PageHeader is missing but the records of the following group appears.
    I would like to know what is the status of the 'Export to Text' function (is it a deprecated function not supported anymore???).
    If still supported, when will these bugs be fixed???
    Thanks

    Hi Rene
    Export to Text is supported till date. Crystal Reports 2008 also supports this with Keep together working however when I tried with format with multiple columns, it didnot show up in the exported text file.
    Regards
    Sourashree

  • Problem with Append mode in File Receiver

    Hello,
    I am facing some problem with Append Mode in File Receiver.
    In channel config, i have given :
    Construction Mode : Append
    File Type : Text
    Message Protocol : File Content Conversion
    The size of the file which i am trying to send is about 9.5MB.
    I got this error,
    "Recovering from loss of connection to database; message
    loaded into queue by recover job: System Job (Failover Recovery)".
    So, it would seem that there was a loss of connnection to the database    
    while the file was being written.
    Note -  XI successfully recovered from the connection loss and   
    successfully wrote the file, however since the communication channel  
    was set to append, it appended to the partial file that was written   
    before the database connection loss. This is not correct. The file    
    should have been overwritten after the recovery even though the communication
    channel was configured to append.                                     
    Can anyone help me on this regard.
    Thanks,
    Soorya.

    Hi Venkat,
    I would suggest u to split the file in to chunks if u face any problem in processing at a time in append mode and also
    Memory Requirements are must 4 processing huge files:
    Q: Which memory requirements does the File Adapter have? Is there a restriction on the maximum file size it can process?
    A: The maximum file size that can be processed by the File Adapter depends on a number of factors:
    o The most important one is the size of the Java heap, which is shared among all messages processed at a certain point in time. In order to be able to process larger messages without an out of memory error (OOM), it is recommended to increase the size of the available Java heap and/or to reduce the concurrency in the system so that fewer messages are processed in parallel.
    o Another factor negatively influencing the maximum message size in releases up to and including XI 3.0 SP 13 is an enabled charcter set (encoding) conversion if the message type is set to "Text".
    o Using the transport protocol "File Transfer Protocol (FTP)" also uses more memory for processing than the transport protocol "File System (NFS)" (up to and including XI 3.0 SP 13).
    o If the Message Protocol "File Content Conversion" is used in a File Sender channel, consider that not only the size of the input file affects the File Adapter's memory usage, but even more the size of the XML resulting from the conversion, which is usually a few factors larger than the original plain text file.
    To reduce the memory consumption in this scenario, consider configuring the setting "Maximum Recordsets per Message" for the sender channel. This will cause the input file to be split into multiple smaller mesages.
    Plz do refer the following links:
    U may plan the availability of ur communication channel using "Planning Availability Times" feature
    http://help.sap.com/saphelp_nw04/helpdata/en/45/06bd029da31122e10000000a11466f/frameset.htm
    /people/sravya.talanki2/blog/2005/11/29/night-mare-processing-huge-files-in-sap-xi
    hi check the below links for reference
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10748ef7-b2f0-2910-7cb8-c81e7f284af5
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7086f109-aaa7-2a10-0cb5-f69bd2affd2b
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2498bf90-0201-0010-4884-83568752a857
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cc1ec146-0a01-0010-90a9-b1df1d2f346f
    Regards,
    Vinod.

  • Problem with RTPExport output video files

    Hi, I have a problem with RTPExport output video files. One side streams H263/RTP(AVTransmit2.java) and other write this steam to a file by RTPExport.java. When network conditions are ideal, output video file has same fps and same number of frames like original file. Problem occures, when theres packet lost in network, then output file has different fps,and also has less frames like original video(because it didnt write missing frames to file, and thats why it get shorter). Pls how can I achieve output file that will have the same fps like original one? How to write to file an identical copy of what I can see while receiveing video with AVReceive2.java? Its there a way to modifi rtpexport or avreceiver to do this? Thanks a lot!

    Trubka wrote:
    When network conditions are ideal, output video file has same fps and same number of frames like original file. Problem occures, when theres packet lost in network, then output file has different fps,and also has less frames like original video(because it didnt write missing frames to file, and thats why it get shorter). Okay, first off, the second file is smaller on purpose. RTP intentionally drops packets that are old/out of order in order to make sure real-time video stays as close to real time as it can. This is by design, so there's really nothing that can be done about it.
    How to write to file an identical copy of what I can see while receiveing video with AVReceive2.java? Technically speaking, what you're getting in the RTPExport is exactly what you got on the receiving end. Any frames that are dropped during transmission will not be seen by the receiver, nor saved by the receiver.
    Pls how can I achieve output file that will have the same fps like original one? I'm not 100% sure that you can, but, you can give the following idea a try. I make no guarentees that it'll work, but it should work for you...
    [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/RTPConnector.html]
    That example is an example of a "custom transport layer" for RTP connections. Essentially, it's some code that's handed the RTP packets on the transmission end, and it's expected to deliver those RTP packets on the other end. And it doesn't care about how they get from A to B, only that they do.
    If you were to replace the UDP socket in that example with a TCP socket, you would be guarenteed not to drop packets due to network reasons. Every RTP packet you were handed by the transmitter, you would then hand to the receiver. There is no guarentee that none of the packets would be cast away as "old" by the RTP protocol itself, but there's also no guarentee any of them would be. It's a crap-shoot at best, but it's certainly worth a try.

  • I have problem in quicklook for mp4 files in my mountain lion

    I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

    I guess you are calling BDC right after some event which is locking the data or before the commit of previous data could happen. Sometimes data update needs time. You can try using WAIT statement right before it and wait for 1 or 2 seconds and see if it works.
    If it does, I would recommend you to check the lock on the corresponding object and when lock is removed update the data as waiting for 2 seconds for a larger set of data will just make the program a bit slow. Depends on the amount of data though, if it is just one set of transaction, you may use WAIT for 2 seconds.
    Regards,
    Aabhas

  • Problem with Preview and PSD files - random gray square

    Hi guys, hope you can help...
    I've got a problem with Preview and PSD files.
    If I open in Preview both an original jpg straight from my reflex and the photoshop version of the same picture, the psd file presents a gray square (of what it seems unrendered image) in a random area of the photo (sometimes in the center.). The square is quite big...
    If I zoom in or zoom out it disappears...if I scroll to another photo and then back to the psd, the square it's there again...sometimes in a different position.
    I've tried the same psd on my older iMac with leopard...and got no problem at all.
    I suspect it got something to do with my Ati...
    (this is the second iMac 27...the first went back for gray banding on the lcd screen and flickering and yellow tinge........)
    Thanks for your help.
    DAve.

    maybe I'm onto something...
    I've just found out that opening Preview in 32bit mode (instead of default 64bit) works flawlessly with any psd files. If I switch back to 64bit mode, Preview is much faster but the gray square comes back...
    It seems like the i7 is much faster than the Ati....
    Any more realistic ideas?

  • I have problems with seeing my bookmarks, file, view, edit...buttons. I tried other shortcuts. I noticed that all of my bookmarks are located in the Internet Explorer browsers, how can I restore setting back to Mozilla Firefox?

    I have problems with seeing my bookmarks, file, view, edit...buttons. I tried other shortcuts. I noticed that all of my bookmarks are located in the Internet Explorer browsers, how can I restore setting back to Mozilla Firefox?

    Is the menu bar missing (the one containing File, View, Edit etc)? If it is, the following link shows how to restore it - https://support.mozilla.com/kb/Menu+bar+is+missing

  • I have a problem with running an EXE file on win2000, the Lab View is 5.1 and I do not know if it is 16 bit...

    I have a problem with running an EXE file on win2000, the Lab View is 5.1 and I do not know if it is 16 bit...what should I do?

    Hi Arika,
    The drivers that you need to install to make your executable work depends on what your executable is doing. To get started, you need to have the LabVIEW Run-Time Engine installed on your target machine (the Win2000 machine you are planning to use) in order to run your executable. Next, you need to determine what drivers your executable uses, if any. For example, if you are using GPIB instrument control, you will need to install the NI-488 drivers on your target machine. If you are performing data acquisition, you will need to install NI-DAQ drivers. If you are doing image acquistion, you will need to install NI-IMAQ drivers.
    All these drivers are available for downloading on ni.com. To get the drivers, go to ht
    tp://www.ni.com/support , click on the link that takes you to Drivers and Updates (under Option 3), and click on the links to get to the driver(s) you need. For example, if you need the LabVIEW 5.1.1 Run-Time engine, click on the All Drivers and Updates by Application link on the main page (http://www.ni.com/softlib.nsf/). Then click on the LabVIEW link, Windows 2000, Run Time Engine, and then you will see the link to get to the page to download the LabVIEW 5.1.1 Run-Time Engine.
    I hope this information helps.
    Best Regards,
    Wilbur Shen
    National Instruments

  • Problem with saving a pdf file to computer. Continually get an error message " This document could not be saved. There was a problem reading this document (21).

    Need advice on a saving file issue. I'm having problem with saving a .pdf file to computer. Continually get an error message " This document could not be saved. There was a problem reading this document (21). This is new as this error message just recently started to pop-up.

    More information about this issue can be found here:
    https://forums.adobe.com/thread/1672655
    A "quick" fix that worked for me was to uninstall Adobe... then download the base install for Adobe Reader 11.0.
    Then download each of the individual updates and run them sequentially. 
    I've installed back up to the last security update which is version 08 and have been able to do normal Save As operations.
    You will have to disable automatic updates in order to stay at version 08 until Adobe resolves this issue in a later release.
    http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Windows
    Adobe Reader 11.0 - Multilingual (MUI) installer    AdbeRdr11000_mui_Std
    Adobe Reader 11.0.01 update - Multilingual (MUI) installer    AdbeRdrUpd11001_MUI.msp
    Adobe Reader 11.0.02 update - All languages    AdbeRdrSecUpd11002.msp
    Adobe Reader 11.0.03 update - Multilingual (MUI) installer    AdbeRdrUpd11003_MUI.msp
    Adobe Reader 11.0.04 update - Multilingual (MUI) installer    AdbeRdrUpd11004_MUI.msp
    Adobe Reader 11.0.05 security update - All languages    AdbeRdrSecUpd11005.msp
    Adobe Reader 11.0.06 update - Multilingual (MUI) installer    AdbeRdrUpd11006_MUI.msp
    Adobe Reader 11.0.07 update - Multilingual (MUI) installer    AdbeRdrUpd11007_MUI.msp
    Adobe Reader 11.0.08 security update - All languages    AdbeRdrSecUpd11008.msp

  • A problem with importing layered PSD file into Flash

    Hi.
    There's a problem with importing layered PSD file into Flash.
    If I import a layered PSD file, some part the color of the lower layer is shown at the edge of objects or shadows. Instead, if I crop each layers first and import them, there's no problem.
    If the higher layer has brush or transparent effects, it becomes worse.
    Any help with this problem?
    Thanks.

    How was the original art created? Was the original RGB or CMYK? What is the resolution of the Photoshop file? Flash only works well with RGB and 72 pixel per inch resolution. If your original art is not set this way, then Flash will attempt to convert it as it imports it. Flash uses the sRGB color space. You'll get the best color translation if your Photoshop file is using this color preference.

Maybe you are looking for

  • How to turn off cs6 photoshop print settings

    i recently installed cs6... from cs5.. i have a canon wide format printer that i am accustomed to using when printing my photos... however NOW when i choose to print, it brings me to a Photoshop print settings dialog box... unfortunately, this dial;o

  • How do I find what revision of VISA I'm running

    I'm sure this is simple, how do I determine the current revision of ni VISA installed on my computer

  • Service PO for Asset material

    Hi I want to send an Asset material for service through service PO to a vendor for certain sort of service, after finishing the process at vendor , the same material should go to other plant in the same company but not to the issued plant. How can I

  • Calculating acquisition cost

    How can the landed cost be calculated for something that is bought but the actual cost inclusive of freight and duty unknown at the time of entering the req? Only freight costs are known at receipt. Customs duties are known with the AP invoice and no

  • Apex and Oracle workFlow.

    Hi , Can anybody tell me how to integrate the Oracle Workflow in APex. I m not looking only for Oracle workflow. Except creating the PLSQL workflow from scratch anything which will surve the purpose will help. Eagerly wiating for replies .... :) Rega