Problem in publishing the audio to .f4u in Captivate 5

Hi,
I am using the trial version of Captivate 5. I have a .cp file which contains audio as well and it was created in Captivate 3. I opened this file in Captivate 5 and try to publish to .f4v and got the problem is audio. The female voice sounds like a male voice and in slow motion.
Is this because I am using trial version of Captivate 5?

Hi,
1. Please open the original project in Captivate 3. i.e. the .cp file in Captivate 3
2. Go to menu "Audio > Audio Settings"
3. Change the bitrate to 96kbps or 64kbps
4. Change the Encoding ferwquency to 44Khz
5. Save and close the project
6. Now open the same project in Captivate 5
7. publish the project
Audio should play correctly now..
Hope this helps.
Regards,
mukul

Similar Messages

  • Hi all. I want to make audio chat with my brother. I use iChat on my MBP. He uses Gtalk on his windows PC. The problem is that the audio icon is gray. Is there anyway? Can iChat make voice chat with Gtalk on windows?

    Hi all. I want to make audio chat with my brother. I use iChat on my MBP. He uses Gtalk on his windows PC. The problem is that the audio icon is gray so I cannot start audio chat. Is there anyway? Can iChat make voice chat with Gtalk on windows or not? I am confused.

    HI,
    You need to satisfy several things along the way
    Account type
    You need to have a Jabber or Google mail Account your self.
    If you have a Google Mail Account then it needs the "Talk" option Enabled in your Google account Settings ( A Facebook with "Chat" enabled is also a  valid Jabber ID to use in iChat).
    Connection Method
    This is about which apps can connect to which apps for Video ro Audio to work.
    iChat Video when using a Jabber account is iChat to iChat Only.
    iChat connects using a process called SIP (Session Initiation Protocol)
    Jabber based Apps if they have  an A/V module connect using protocol called Jingle.
    Needless to say Google do their own version of this that is written in to the web Browser Plugin that allows Video Chats (there are PC and Mac versions), and in the PC app called GoogleTalk.
    However it is also not that compatible with other Jabber apps.
    See Jingle here
    This claims, now, that Google had a hand in writing the Protocol.
    Also in the "Clients Supporting Jingle" list many more version of Google products are mentioned with extended info. (it suggests that someone at Google has been editing the page).
    Can iChat make voice chat with Gtalk on windows or not?
    The specific answer to this to be clear is NO.
    We are talking about different Apps (or web Browser Plugins) using different Internet Protocols that are not compatible.
    The simplest thing is to get the Web Browser Plugin (However there can be issues with the  Flash Plugin)
    At one time Google used Flash to do Video Chats and it would seem their Plugin is very close to this part of Flash.
    See the Known Issues and the "Google Talk Plugin Disables iSight On Mac" item.
    Options
    Use a Web Browser yourself with the Plugin.
    Use a Flash Base Site such as MeBeam  (Flash has to be enabled in your Browser and the instructions are simple on the page)
    Try to find a Jingle capable Mac Jabber Client (app) ( I have not found one).
    9:42 PM      Monday; July 23, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Problem in Publishing the certificate to directory server

    I am having problem regarding the publishing the certificate.I am using iPlanet CMS 4.7 and iPlanet directory server 5.1
    In the CMS >certificate manager > publishing module > mapper
    It provides(manuals) two options to enable the publishing to directory server, i.e
    1)create entry automatically(default plug -in)
    2)Manual entry in directory and mapper to map it.
    I tried both way.When automatically create option is selected it fires an error:
    Failed to create the CA entry.There may be entries in the directory hierachy which do not exist.Please create them manually.
    I am not able to figure out the problem,even if I create certificate hierachy in the directory server it gives the same error.Can anyone figure out the problem so i can publish certificate.Pleae mail me the solution if anybody knows.Thank you

    Hi,
    1. Please open the original project in Captivate 3. i.e. the .cp file in Captivate 3
    2. Go to menu "Audio > Audio Settings"
    3. Change the bitrate to 96kbps or 64kbps
    4. Change the Encoding ferwquency to 44Khz
    5. Save and close the project
    6. Now open the same project in Captivate 5
    7. publish the project
    Audio should play correctly now..
    Hope this helps.
    Regards,
    mukul

  • Problem in publishing the messgae

    Hi,
    I am publishing the object in the AQ using JMS APIs.But it is
    throwing a JMS exception stating JMS-108: Messages of type
    ObjectMessage not allowed with Destinations containing payload
    of type SYSTEM.NEW_MESSAGE_TYPE.
    Can anybody suggest me where I am going wrong.
    I have created the payload/Queuetable as show below:
    CREATE TYPE new_message_type AS OBJECT
    (timestamp DATE,
    doc VARCHAR2(2000));
    begin
    DBMS_AQADM.CREATE_QUEUE_TABLE(
    queue_table =>'new_docs_table',
    multiple_consumers =>TRUE,
    queue_payload_type =>'new_message_type',
    compatible =>'8.1');
    end;
    And in the java code to publish is:
    AQjmsObjectMessage obj_message
    =AQjmsObjectMessage).createObjectMessage());
    DocMessage m_ncDoc = new DocMessage();
    String tempDoc = "hello all";     
    m_ncDoc.setDocument(tempDoc);
    m_ncDoc.setTimeStamp(new Date());
    obj_message.setObject(m_ncDoc);
    myPub.publish(tp,obj_message);     
    mySession.commit();

    Hi,
    The problem is that the queue type and the payload type do not
    match.
    You can do one of the following:
    1. If you wish to use a queue with
    user-defined ADT like SYSTEM.NEW_MESSAGE_TYPE, then you need to
    generate a java class that maps to this type using Jpublisher.
    I'm not sure if DocMessage was generated using Jpublisher. If
    not then you'll have to generate CustomDatum interfaces for
    NEW_MESSAGE_TYPE using Jpublisher. Check JDBC documentation on
    using Jpublisher
    Then you must use createAdtMessage instead of
    createObjectMessage. The rest of the code is fine.
    2. The other option is that you store a Serialized java object in
    the queue. For this you'll have to create the queue table with
    SYS.AQ$_JMS_OBJECT_MESSAGE. Then you can have your own Java
    class which implements Serializable. In this case you can use the
    code as is with createObjectMessage
    You can check aqjmsdemo04.java and aqjmsdemo06.java in
    $ORACLE_HOME/rdbms/demo for examples of both AdtMessage and
    ObjectMessage
    Hi,
    I am publishing the object in the AQ using JMS APIs.But it is
    throwing a JMS exception stating JMS-108: Messages of type
    ObjectMessage not allowed with Destinations containing payload
    of type SYSTEM.NEW_MESSAGE_TYPE.
    Can anybody suggest me where I am going wrong.
    I have created the payload/Queuetable as show below:
    CREATE TYPE new_message_type AS OBJECT
    (timestamp DATE,
    doc VARCHAR2(2000));
    begin
    DBMS_AQADM.CREATE_QUEUE_TABLE(
    queue_table =>'new_docs_table',
    multiple_consumers =>TRUE,
    queue_payload_type =>'new_message_type',
    compatible =>'8.1');
    end;
    And in the java code to publish is:
    AQjmsObjectMessage obj_message
    =AQjmsObjectMessage).createObjectMessage());
    DocMessage m_ncDoc = new DocMessage();
    String tempDoc = "hello all";     
    m_ncDoc.setDocument(tempDoc);
    m_ncDoc.setTimeStamp(new Date());
    obj_message.setObject(m_ncDoc);
    myPub.publish(tp,obj_message);     
    mySession.commit();

  • (MacOSX Lion 10.7.4) The problem of connecting the audio interface (USB and FireWire), grained acoustic distortion!?

    When you connect the audio interface to usb or firewire grained acoustic distortion, there is no loud noise in the acoustics! In the old "iMac24 Snow Leopard" was not like this!
    Just bought the iMac21 lion, installed the new drivers and the two interfaces of different firms is presented, this acoustic problem.
    I understand it comes from a usb and firewire!?
    Help Me_____
    Sorry for my english

    Well, it's been a few days and with no response I thought I'd look for another solution. I've been trying this software called iVPN, apparently it's like a front-end to OS X's built-in VPN server. Anyway, I disabled the VPN Server from the Server app, turned on iVPN and was VPN-ing from my iPhone over 3G in notime. It's a great app, though it kinda ***** that the server can't do what it's built to do. Since VPN was the big reason I got Server in the first place, I'll probably uninstall it and stick with OS X's built-in file sharing and iVPN.

  • Problem while publishing the models - it is taking much time

    Hi,
    I am facing one issue while publishing the models.Previously when Re-publishing the models in Configurator processing pending publications usually took 3 to 5 minutes per model. Currently it is taking 15-20 minutes per model to process. Please suggest me the possiblities to identify the root cause of the issue.
    Thanks in advance.
    Regards,
    Purushoth

    You'll probably want to gather a trace for the Process a Single Publication concurrent request. You can turn this on by selecting ' enable trace' on the program definition. You'll need your dba to review the trace to identify which parts of the program are taking the longest.
    If you haven't run CZ Purge for awhile, try running it. Also find out how often stats are gathered for the CZ schema.
    Thanks,
    Jason

  • Problem while publishing the service

    Hi,
    I have installed the SAP netweaver Trail sP1 Preview JAVA EE server.
    I have also installed the Preview _Dev Studio.
    The Application server is up and running fine
    http://<hostname>:50100/
    I followed the
    "Web Services Testing and SAP NetWeaver Application Server, Java EE 5 Edition"
    arcticle written by Mamoon Yunus.
    I could create the web service as mentioned in the document.
    But when i try to publich it it fails it gives aerror message "Publishing failed".
    One thing which i noticed is the Webservice is try to published on http://<hostname>:50000/ and thats the reason i think the publishing fails.
    How can i chage the port number form 50000 to 50100.
    What ahsould be steps followed form developer studio
    Best Regards
    Manoj

    Hi Vladimir,
    Thanks for the help.
    I could test the webservcie with the SOAPSonar tool and it worked fine.
    Only one thing i would like to address
    is that the p;ublishing of the webservice on the SAP server was very slow.
    For almost 3 hours the dialog was showing  "publishing.......".
    Then finally i cancelled it and i got a message that service was deployed sucessfully.
    I had the windows 2003 server m/c with 1GB RAM on whihc both the SAP server and netweaver studio was running.
    Can this be the problem of slow publishing
    Best Regards
    Manoj

  • Problem while publishing the report in web

    Hi all
    I need to create a report using 10g report builder and publish it in web.
    I downloaded evaluation version of 10g report builder and oracle SOA suite 10.1.3.1.0 and installed in my local system.(Is the any configuration required after installation?)
    report builder details are as below:
    Report Builder 10.1.2.0.2
    ORACLE Server Release 10.1.0.4.2
    Oracle Procedure Builder 10.1.2.0.2
    Oracle ORACLE PL/SQL V10.1.0.4.2 - Production
    Oracle CORE     10.1.0.4.0     Production
    Oracle Tools Integration Services 10.1.2.0.2
    Oracle Tools Common Area 10.1.2.0.2
    Oracle Toolkit 2 for Windows 32-bit platforms 10.1.2.0.2
    Resource Object Store 10.1.2.0.2
    Oracle Help 10.1.2.0.2
    Oracle Sqlmgr 10.1.2.0.2
    Oracle Query Builder 10.1.2.0.2 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle ZRC 10.1.2.0.2
    Oracle XML Developers Kit 10.1.0.4.2 - Production
    Oracle Virtual Graphics System 10.1.2.0.2
    Oracle Image 10.1.2.0.2
    Oracle Multimedia Widget 10.1.2.0.2
    Oracle Tools GUI Utilities 10.1.2.0.2
    Now I am able create a report but dont know where to deploy the report so that i can publish it in web.
    I read some white papers in net but could not follow the steps.
    Plz guide.
    Regards,
    Satya

    Hi Satya,
    for testing purposes you can start the OC4J comming with the Developer Suite and call your report in the browser like:
    http://<your-machine>:8889/reports/rwservlet?report=<your_module>&destype=cache.....
    You can include in <your_module> the path to your module.
    Regards
    Rainer

  • Is there any way to publish the .SWF(not MP4) from Captivate 7 while creating a Video Demo project?

    Hello all,
    I am upgradiing to Adobe Captivate 7. The previous version I used was Captivate 4.
    I found a new feature (Video demo) in the latest Captivate 7 which generates an MP4 video output when the project is published. The feature records exactly the way I want.
    Unfortunately, MP4 video does not help me. I require an SWF file to place in my LMS.
    Is there any way to get an SWF output using the same(Video Demo) feature?
    Any help would be appreciated.
    Thanks,
    Kartik

    Hi there,
    It is possible to publish a video demo project as .swf by adding the video demo slide in a blank project.
    1. Create a blank project, select the desired Project size.
    2. From the Blank project, click on 'Insert>Recording Slide' menu option.
    3. Press 'Ok' to the button.
    4. Click on the 'Video Demo' option from the recording dialog.
    5. Perform recording
    6. Once you are done with recording, delete the first blank slide present in the project
    7. Click on Publish, select the 'SWF output' option.
    Thanks,
    Nimmy Sukumaran.

  • The ppt animations doesn't pause in the player but the audio does.

    I've imported an animated PPT into Captivate 7. The audio is added into Captivate. After publishing the project. The ppt animations doesn't pause in the player but the audio does. When you click the play button again the audio and animations are out of aliment. Is there any way to make the PPT animations pause in the player?

    Im on a Mac.  Adobe Captivate 7 & PPT Office 2011.
    The animations in Power Point are timed to go with audio. One animation is with previous. Building out bullet lists with graphics.
    Lisa

  • Videora - The Audio & Video Loose Synch throughout movie -

    Hello!
    Videora seems to work great! However, I have converted several movies and halfway throughout the film, it becomes VERY obvious that the audio and video are not synched up correctly.
    Does anyone know what the problem is? The audio and video are perfectly synched in the original file, just when I encode it and play the new file - it's all screwy.
    Picture quality and audio are great, however, it needs to be aligned more correctly.
    ANYONE ELSE HAVE THIS PROBLEM!?!? Please help me! Thank you!!!

    First thing to check is that the footage from your camera and the FCE Sequence you use those files in exactly match in all areas: Audio and video.
    Can you provide the details here?
    Al

  • The audio book icon disappeared

    I have 2 related problems.  First, the audio book icon disappeared from my iPod nano.  Second, when I add audio books to my iPod using iTunes (even when I had the audio book icon) it puts the audio books in with music and then the books won't play in order.  This means that I can't listen to the books from the beginning to the end and I have to try to hunt for the next chapter.
    Can anyone help?
    Thanks

    You don't have to make a playlist. I was checking if you did a create a playlist which might have led to it showing in music app. Check to make sure the media kind is audio books. You can do this by:
    Right click on audio book -> Get info -> Info. Here make sure the media kind is audiobook.
    Hope this helps!

  • Allow server to publish only Audio

    Hi,
    My clients use Flash Media Live Encoder to publish the audio+video to my server.
    In some case, I want to allow my clients to publish only Audio and no video but I cannot control it via the FMLE, they can even select the video to publish.
    I wanted to know if there is any way in which on the server side, I can allow my client to publish only Audio and no Video?
    Thank You.

    Are you asking whether you can publish audio-only streams along with audio-video streams in say same MBR set - if that's the use case right now you cannot do it with FMLE - niether achive it on server-side.
    But if you just want to publish audio-only single stream that is possible using FMLE - you just need to uncheck the Video Check box - this will publish audio-only stream,

  • When I publish a video, I lose half of the audio in "audio 2". I can hear it while editing. How do I fix this?

    I published a video as an mpeg, and when I listened to the final product it was missing some music I had in the "audio 2" slot. How do I fix this?

    Cameron
    Is the problem Audio Track 2 music from any of your royalty free music websites? Is the sound missing in the export
    standalone audio files
    or
    audio that is linked to video?
    What is directly under or above these files on the Timeline?
    Download and install the free codec utility named GSpot.
    And, tell us the readouts for Audio name, codec, and status.
    GSpot Codec Information Appliance
    If also video component of the file, then please include the Video name, codec, and status information from the GSpot readout.
    See what information you can put together on the properties of those royalty free audio files, including file extension. Are you dealing with Stereo or 5.1 channel (AAC or Dolby Digital)?
    As for project preset, versions 11 and 12 were designed so that the project takes charge of setting the project settings based on the properties of
    the first file drag to the Timeline. Sometimes it does it right. Sometimes not. If not, then you set the project preset manually using the properties of
    your file. See ATR Premiere Elements Troubleshooting: PE11: Accuracy of Automatic Project Preset (New Project Dialog) Setting
    Lots of additional questions...curious how you hear the Audio 2 audio in Edit area but not in the exported file which you report as
    Publish+Share>Computer>MPEG under the preset "MPEG2 1920x1080i 30.
    Any export setting customization going on under the Advanced Button/Video Tab and Audio Tab of that preset?
    Please review and consider and then we will decide what next.
    Thank you.
    ATR

  • Problems with a Published PDF audio/video that runs out of synch

    Hi,
    I have a large (30minute) video, with a combination of audio,  flash videos with and without embedded music, and screens.
    I published the captivate project to PDF, and then ran it using Abode Reader X and Flashplayer 11.01.
    It played fine.
    However, I am getting feedback from various people that when they try and run the video, the initial embedded flv file (with music) starts off and then suddenly the entire PDF file goes wild displaying screens in 1 second intervals in no apparent pattern with the music from the embedded flv file still playing in the background, eventually the voice over starts but obviously out of synch as the slides still appear in these 1 second intervals.
    I ran a few tests to see if this strange behaviour had anything to do with the Adobe Reader or Flash Player installed, but there seems to be no pattern.
    I even upgraded one system to Adobe Reader X and Flashplayer 11 but still experienced this same problem.
    Does anyone have any suggestions as to why this might be happening for some users and not for all? Or what other settings I might try looking at to solve the problem?
    Thank you,
    Tannis

    We will need a lot more information about those Videos. This ARTICLE will give you ideas on the info that will be so very useful for us to help you.
    This ARTICLE will give you some background on Video formats/CODEC's.
    Good luck, and please let us know more about those files. A screen-cap of G-Spot would be very useful.
    Hunt

Maybe you are looking for

  • Link QM to decentral LES/WM

    Hi @ all! Is anybody experienced in linking QM (Enterprise 4.7) to a decentral LES (ECC 6.0)? We are using Handling Unit Management (HUM) and delivery scenario to flange on. I'm searching for a proper solution to flag HU for quality inspection and to

  • Open,save,view pdf through form

    Hi! 1)I have to open a pdf using open dialog box(get_file_name) 2)then saved it to a "new" location without openinig dialog box 3)then view that file from the "new" location. currently i am using api but "one" dll should be in orant\bin to run this f

  • App. Store Fetching Another ID

    I have entered My Apple ID and When in App. Store i am downloading App. That is Fetching another Old user Apple Id. and Type for Password.

  • Constrains between two controls

    Hi, i have two controls on the FP, each with values from 0 to 512. Is is possible to connect this controls, that if the control 1 has a value of e.g. 130, the second one can't set to a lower value? I need this for the control 2 as well, so that if yo

  • Customer master table

    Can u please tell me customer master line item table & is their any specific like debit line item table and credit line item table available in sap. please give me explanation above this question