SCORM Converter

Hi Folks,
I have some files with Ext . ulc and .lf  can any one please provide inputs how to convert it to a scorm file.
Thanks
Kumar

Here I recommend a powerful yet easy to use 6 in 1 Video Converter Ultimate – The Combination of Video Converter, Youtube Downloader, Video Editor, Video Player, DVD Ripper & DVD Creator.
You can use it to: Download Youtube & Other Online Videos With One Click; Convert Video & Audio to Any Format You Want; Edit Videos With Built-in Advanced Video Editor; The Ultimate DVD Toolkit; Transfer Video Without USB Cable

Similar Messages

  • Publish as SCORM item or convert to Captivate 2

    Hello again everyone,
    Upon completion of my project, I found that the group to whom
    I am to hand-off the project is using Captivate 2. I am using
    Captivate 3.
    The overall goal is to get the product into a SCORM
    compatible format. They usually do this on their side through
    Captivate 2, however, because I developed the project in Captivate
    3, they are unable to open my project files.
    My question is (1) Is it possible to convert a Captivate 3
    project to Captivate 2 format? If so, how and are there any
    reprecussions (format changes, functionality changes, etc.), and
    (2) Is it possible to Publish into a SCORM compatible item directly
    from Captivate 3? If so, how?
    Thanks again for all your time, it is greatly appreciated,
    Tim Bridge

    Sorry, you cannot convert from Captivate 3 back to version 2.
    Yes, you can publish as a SCORM solution, using options
    within the Quiz Manager menu, and then in Publish menu.

  • How do I save a SCORM package in Packager?

    I use eLearning Suite's SCORM Packager to create multi-SCO objects for my LMS.  It will create the package, but it won't let me save the info for further use - the save button is inactive.  Is there something I need to do to activate this functionality?  I'm getting tired of re-entering the manifest information every time I need to regenerate the package.

    Thanks, I will try that process.
    I used to be able to convert Pages document easily to iPhoto before I upgraded to Lion.  Used to be able to go to: File > Print> PDF (bottom left corner of print dialog box)>Save as PDF to iPhoto.
    Now if I do that I have option to save as PDF to iTunes but not to iPhoto.
    The advantage of saving Pages to iPhoto was that it was very easy to send email of collages of photos created in Pages.

  • Converted CP3 projects will not publish correctly in CP4

    We recently started using CP4 and have no problems with projects created in CP4.  However, we are experiencing problems with CP3 Projects which are converted to CP4.
    When we publish to SCORM 1.2, we do not get a zip file though it is selected.  We get only 4 files created - the main htm file, the full screen htm, the swf and the standard.js.  I have checked and rchecked our settings and can find nothing amiss. 
    I have searched all over and can find nothing referring to this problem.
    Has anybody run across this problem?  We would Really appreciate any help with this.
    Thanks,
    Ron

    You may want to search the forum for other posts related to the manifest and such SCORM files not being published. I've not seen the published results not be .zipped when they're selected to be, so that's odd, but it may be related to the same manifest/SCORM issue (SCORM settings not correct so .zip file setting ignored?).
    First, try unchecking the .zip option, Save As a new file, open the new file, check the .zip option, publish.
    Second, you must have scored interactions in the CP lesson for the SCORM items to be published. Check your Advanced Interaction panel. Are there scored interactions listed?
    Third, you have all the proper settings in the Publish > Quiz section? SCORM and such choices?
    If everything exists as it should, two other options I can think of:
    1. Try to copy all slides out of the lesson and paste them into a new, blank one. That may help reset whatever problems CP is having.
    2. Search these boards, or await someone else, for some preferences or such file that can be deleted. I don't recall specifics but there's some file that holds various CP settings that seems to get corrupted...
    HTH
    Erik

  • LMS / Scorm not updating the "cmi.suspend_data"

    Hi Guys,
    Dont know if anyone can help me but i am trying to get my Flash program to work with a LMS using SCORM.
    At the end of the module all i want to do is update the string.  It traces fine in Flash but doesnt actually update the LMS
    This should update a string when a module is complete. The code is below and any help would be great
    package classes
    import com.pipwerks.SCORM;//for SCORM support
              import classes.Main;
              import flash.display.MovieClip;
              import flash.events.*;
              public class ScormCode extends MovieClip
                        private var scorm:SCORM;
                        private var lmsConnected:Boolean;
                        private var lessonStatus:String;
                        private var success:Boolean;
                        public var VarLMSErrorMc:Boolean = false;
                        public var userFirstnameString:String = "";
                        public var completedModule:Boolean;
                        //Variable that is ticked once a page is COMPLETE
                        public var modulecompleted:Object = {
                        module1: 0,
                        module2: 0,
                        module3: 0,
                        module4: 0
                        public function ScormCode()
                                  trace("SCORM Intialized");
                                  //Initialize SCORM object (pipwerks SCORM class)
                                  scorm = new SCORM();
                                  //Connect to LMS. Can only be done ONCE.
                                  lmsConnected = scorm.connect();
                                  //Ensure connection was successful before continuing.
                                  if (lmsConnected)
                                            //Get course status
                                            lessonStatus = scorm.get("cmi.core.lesson_status");
                                            //Setup username
                                            var username_data:String = scorm.get("cmi.core.student_name");
                                            var splitter:Array = username_data.split(" ");
                                            var firstName:Object;
                                            firstName = splitter[0];
                                            userFirstnameString = String(firstName);
                                            //If course has already been completed, kill connection
                                            //to LMS because there's nothing to report.
                                            if (lessonStatus == "completed" || lessonStatus == "passed")
                                                      //DO SOMETHING
                                                      modulecompleted.module1 = 1;
                                                      modulecompleted.module2 = 1;
                                                      modulecompleted.module3 = 1;
                                                      modulecompleted.module4 = 1;
                                                      completedModule = true;
                                                      //Set course to complete
                                                      success = scorm.set("cmi.core.lesson_status","completed");
                                                      scorm.save();
                                                      scorm.disconnect();
                                            else
                                                      //If course has NOT been completed yet, let's
                                                      //ensure the LMS knows the course is incomplete
                                                      //by explicitly setting status to "incomplete"
                                                      success = scorm.set("cmi.core.lesson_status","incomplete");
                                                      var suspend_data:String = scorm.get("cmi.suspend_data");
    //Is suspend_data empty? Check the length of the returned string.
                                                      //If there's nothing saved, the LMS will return an empty string ""
                                                      if (suspend_data.length > 0)
                                                                //suspend_data is not empty, so we must have
                                                                //saved something in the last course attempt.
                                                                //Remember, we saved a our progress variables in
                                                                //a comma-delimited string; we can convert to an
                                                                //array using string.split(",").
                                                                var arrModulecompleted:Array = suspend_data.split(",");
                                                                //Assign the value to each of our planets.
                                                                //Be sure to convert string "1" to integer 1.
                                                                //The order of the array items was specified in
                                                                //saveCourseStatus() when we created the
                                                                //comma-delimited suspend_data string.
                                                                modulecompleted.module1 = parseInt(arrModulecompleted[0],10);
                                                                modulecompleted.module2 = parseInt(arrModulecompleted[1],10);
                                                                modulecompleted.module3 = parseInt(arrModulecompleted[2],10);
                                                                modulecompleted.module4 = parseInt(arrModulecompleted[3],10);
                                                      saveCourseStatus()
                                  else
                                            /* VarLMSErrorMc = true;*/
                                            //Ruh-roh...
                                            trace("Could not connect to LMS.");
                        public function checkComplete():void
                                  if (modulecompleted.module1 && modulecompleted.module2 && modulecompleted.module3 && modulecompleted.module4)
                                            setCourseToComplete();
                                            completedModule = true;
                                            trace("COURSE NOW COMPLETED!!!");
                                  else
                                            trace("COURSE NOT COMPLETED YET__________________________________________^^^^^");
                                            trace("M1: " + modulecompleted.module1 + ", M2: " + modulecompleted.module2 + ", M3: " + modulecompleted.module3 + ", M4: " + modulecompleted.module4);
                                            saveCourseStatus();
                        public function setCourseToComplete():void
                                  //Set lesson status to completed
                                  success = scorm.set("cmi.core.lesson_status","completed");
                                  //Ensure the LMS persists (saves) what was just sent
                                  scorm.save();
                                  //Disconnect from LMS;
                                  scorm.disconnect();
                        public function saveCourseStatus():void
                                   var suspend_str:String = modulecompleted.module1 + "," + modulecompleted.module2 + "," + modulecompleted.module3 + "," + modulecompleted.module4;
                                  //Send suspend_data string to LMS
                                  trace("M1: " + modulecompleted.module1 + ", M2: " + modulecompleted.module2 + ", M3: " + modulecompleted.module3 + ", M4: " + modulecompleted.module4);
                                  scorm.set("cmi.suspend_data", suspend_str);
                                  //Ensure the LMS persists (saves) what was just sent
                                  scorm.save();

    Hi Guys,
    Dont know if anyone can help me but i am trying to get my Flash program to work with a LMS using SCORM.
    At the end of the module all i want to do is update the string.  It traces fine in Flash but doesnt actually update the LMS
    This should update a string when a module is complete. The code is below and any help would be great
    package classes
    import com.pipwerks.SCORM;//for SCORM support
              import classes.Main;
              import flash.display.MovieClip;
              import flash.events.*;
              public class ScormCode extends MovieClip
                        private var scorm:SCORM;
                        private var lmsConnected:Boolean;
                        private var lessonStatus:String;
                        private var success:Boolean;
                        public var VarLMSErrorMc:Boolean = false;
                        public var userFirstnameString:String = "";
                        public var completedModule:Boolean;
                        //Variable that is ticked once a page is COMPLETE
                        public var modulecompleted:Object = {
                        module1: 0,
                        module2: 0,
                        module3: 0,
                        module4: 0
                        public function ScormCode()
                                  trace("SCORM Intialized");
                                  //Initialize SCORM object (pipwerks SCORM class)
                                  scorm = new SCORM();
                                  //Connect to LMS. Can only be done ONCE.
                                  lmsConnected = scorm.connect();
                                  //Ensure connection was successful before continuing.
                                  if (lmsConnected)
                                            //Get course status
                                            lessonStatus = scorm.get("cmi.core.lesson_status");
                                            //Setup username
                                            var username_data:String = scorm.get("cmi.core.student_name");
                                            var splitter:Array = username_data.split(" ");
                                            var firstName:Object;
                                            firstName = splitter[0];
                                            userFirstnameString = String(firstName);
                                            //If course has already been completed, kill connection
                                            //to LMS because there's nothing to report.
                                            if (lessonStatus == "completed" || lessonStatus == "passed")
                                                      //DO SOMETHING
                                                      modulecompleted.module1 = 1;
                                                      modulecompleted.module2 = 1;
                                                      modulecompleted.module3 = 1;
                                                      modulecompleted.module4 = 1;
                                                      completedModule = true;
                                                      //Set course to complete
                                                      success = scorm.set("cmi.core.lesson_status","completed");
                                                      scorm.save();
                                                      scorm.disconnect();
                                            else
                                                      //If course has NOT been completed yet, let's
                                                      //ensure the LMS knows the course is incomplete
                                                      //by explicitly setting status to "incomplete"
                                                      success = scorm.set("cmi.core.lesson_status","incomplete");
                                                      var suspend_data:String = scorm.get("cmi.suspend_data");
    //Is suspend_data empty? Check the length of the returned string.
                                                      //If there's nothing saved, the LMS will return an empty string ""
                                                      if (suspend_data.length > 0)
                                                                //suspend_data is not empty, so we must have
                                                                //saved something in the last course attempt.
                                                                //Remember, we saved a our progress variables in
                                                                //a comma-delimited string; we can convert to an
                                                                //array using string.split(",").
                                                                var arrModulecompleted:Array = suspend_data.split(",");
                                                                //Assign the value to each of our planets.
                                                                //Be sure to convert string "1" to integer 1.
                                                                //The order of the array items was specified in
                                                                //saveCourseStatus() when we created the
                                                                //comma-delimited suspend_data string.
                                                                modulecompleted.module1 = parseInt(arrModulecompleted[0],10);
                                                                modulecompleted.module2 = parseInt(arrModulecompleted[1],10);
                                                                modulecompleted.module3 = parseInt(arrModulecompleted[2],10);
                                                                modulecompleted.module4 = parseInt(arrModulecompleted[3],10);
                                                      saveCourseStatus()
                                  else
                                            /* VarLMSErrorMc = true;*/
                                            //Ruh-roh...
                                            trace("Could not connect to LMS.");
                        public function checkComplete():void
                                  if (modulecompleted.module1 && modulecompleted.module2 && modulecompleted.module3 && modulecompleted.module4)
                                            setCourseToComplete();
                                            completedModule = true;
                                            trace("COURSE NOW COMPLETED!!!");
                                  else
                                            trace("COURSE NOT COMPLETED YET__________________________________________^^^^^");
                                            trace("M1: " + modulecompleted.module1 + ", M2: " + modulecompleted.module2 + ", M3: " + modulecompleted.module3 + ", M4: " + modulecompleted.module4);
                                            saveCourseStatus();
                        public function setCourseToComplete():void
                                  //Set lesson status to completed
                                  success = scorm.set("cmi.core.lesson_status","completed");
                                  //Ensure the LMS persists (saves) what was just sent
                                  scorm.save();
                                  //Disconnect from LMS;
                                  scorm.disconnect();
                        public function saveCourseStatus():void
                                   var suspend_str:String = modulecompleted.module1 + "," + modulecompleted.module2 + "," + modulecompleted.module3 + "," + modulecompleted.module4;
                                  //Send suspend_data string to LMS
                                  trace("M1: " + modulecompleted.module1 + ", M2: " + modulecompleted.module2 + ", M3: " + modulecompleted.module3 + ", M4: " + modulecompleted.module4);
                                  scorm.set("cmi.suspend_data", suspend_str);
                                  //Ensure the LMS persists (saves) what was just sent
                                  scorm.save();

  • Scorm pkg made up of number of FLV files takes time to load in LMS

    Hi everyone,
    I m creating the scorm packages in captivate. The source, i have received in MP4 format which I am converting into FLV files. I have loaded these FLV files on to slides in captivate. This way I am creating the scorm package using scorm 1.2 settings.
    Problem: I have loaded the scorm package to LMS and tested it. It takes longer to load the files than the usual time. Can I reduce this time frame somehow? I know video needs a buffering time, but if there's any way to reduce this time - it would be a great help.
    Pls help..
    Thanks & regards
    Vikas

    Hi Vikas,
    The time it is taking is because of the size of the project and the load on the bandwidth at your end.
    Basically, you need to reduce the size of your package. So, to do that encode your FLV videos to a smaller size using Adobe Media Encoder. And then add them to the slide again and re-publish the SCORM package.
    Tip : While Encoding, Keep the level as Baseline or Low and Target Bitrate as least as possible, it would display your the expected file size at the below, when you use custom encoding settings.
    Good Luck.
    Anjaneai

  • FLV, SCORM, SumTotal Issue

    Hi Everyone - I'm trying to use a few videos in a Captivate course that needs to be SCORM compliant. When the videos are FLVs, they won't play in our LMS (SumTotal not sure of the version but I believe it is older maybe 6). When i converted them to SWF they work fine in our LMS, however, they do not have any playback controls (which are required because the videos are on one page). Any thoughts on why they're not playing in our LMS as FLVs?
    Thanks!

    The most likely reason is that your LMS web administrator has not allowed the FLV mimetype to permit serving up FLV content.  Get him/her to check that FLVs are allowed on the web server for starters, and then check if there is also another permission to be set in SumTotal for this type of content.

  • Director Movies in SCORM packages

    Hi All,
    We are new to SCORM packages. We would like to convert already existing Director movies (Extension .DCR) to Scorm packages.
    Can you please suggest me a right tool to build the SCORM package in 2004 3rd edition. We want final output to work on IE and firefox.
    We would like to have the content in below format. Each Course consists of 3 Sections (Pre-Test, Lesson and Post Test)..
    1. Pretest
    a.    Pretest will consists of 10 questions which will be randomly picked from Question bank of 20.
    b.    Pretest scores need to be update to LMS
    2. Lesson
    a.    Each lesson will consist of subchapters
    b.    Each sub chapter will consists of one or more director movies
    c.    Bookmarking need to be done at subchapter level
    d.    Sub Chapter completion status needs to be tracked in LMS considering all sub chapters are of equal weightage (Which can change in future). If user completes 4 sub chapters out of 8 sub chapters, LMS need to be intimated that 50% of Chapter is completed
    3. Posttest
    a.    Posttest will consist of 10 questions which will be randomly picked from Question bank of 20.
    b.    Posttest scores need to be update to LMS
    Thanks
    Ande

    Hi RodWard,
    Thank you for your reply.
    We have hundreds of hours of DCR movies. So convering to FLA is not an option.
    Do you know any other tool that can might be helpful.
    Thanks
    Pradeep Ande

  • Publish HTML file in Dreamweaver CS6 (in eLearning Suite 6) to SCORM 2004 - How?

    I have an HTML page I want to publish as a SCORM 2004 package from Dreamweaver CS6.  I don't have any interactions - I just want to track if a learner opened / viewed the file.  This ought to be EASY, but there is no clear "Click here to publish to SCORM" button. 
    Thanks,
    Laura

    As far as I know, DW has never had any kind of SCORM support by default.
    I know there are SCORM extensions, but don't know if they work in DWCC without being converted to the new extension type.

  • How to create a TOC for my captivate scorm

    Hi,
    I am trying to use Captivate 2 to convert a 50 slide
    powerpoint presentation into a V1.2 SCORM object .
    The object opens when I publish and upload to my site, but it
    only shows 1 entry (for the 1st slide) in the table of contents.
    I guess the ppt is OK - I get a 50 entry TOC when I publish
    the ppt as a webfile, so I guess I need to set a parameter in
    Captivate 2 before I publish my Scorm in Captivate.
    I cant see anything to set (but as a real novice, its quite
    possible that Im missing something obvious?)
    Can someone please help out - Im real stuck at the moment.,
    Thanks
    Martin

    I am using Captivate 2 and created a very nice main menu just
    using buttons with a Jump to Slide option set for each. This allows
    me to create a topic menu to chunk my course into smaller, more
    manageable pieces. One thing, though, is that at the end of each
    topic, I have a RETURN TO MENU button on the slide for the user to
    click - or - he/she can just click the page forward button and go
    directly into the next topic w/o returning to the menu. This seems
    to work but there is not indication on the main menu that the topic
    has been completed (I used to do this in Authorware using
    scripting).

  • SCORM 2004 content in OLM

    Hello,
    I am new to OLM. I realize that OLM 11i supports only SCORM 1.2 content. What happens with SCORM 2004 compliant courses inside OLM? Will OLM run them, give errors, etc. Do they necessarily have to be converted into SCORM 1.2?
    Jasmina

    Hello again,
    Now, I tried to upload some SCORM 1.2. content. While the course material done with Breeze is successfully uploaded and run in OLM, the Flash courses do not run. The error is: "Unable to find an API in a parent window". At the same time I installed an open source environment "Ilias" and the same Flash courses run without any error.
    Is there something wrong with the course content [I reapeat, all uploaded courses run on another LMS "Cobent" and open source "ilias"without any problem] or maybe something with the OLM configuration?
    Thank you
    Edited by: user9011561 on 26-Jan-2010 06:17

  • SCORM Publishing Issue

    We are trying to publish a course organized as separate
    daisy-chained files, so we can provide the user feedback on
    interactions and quizzes throughout the course, to a single SCORM
    2004 folder. Our question is, how do we publish the separate
    project files into one zip file and load it into our SCORM player
    so that the user's experience will be seamless as they move from
    one project to the next within the same course? Or, how do we
    generate multiple daisy-chained project files that use one Manifest
    for SCORM purposes? We published separate project files (as Flash
    outputs), zipped them and then tried to upload them to the SCORM
    player. But it stopped uploading after the first project, we think
    because it found a manifest file and stopped, as it can only take
    one manifest file per course.
    Whew, that was a mouthful.

    > Unfortunately, we have not yet resolved this issue. We
    are using a SCORM
    > player (vendor Rustici) that conforms to all SCORM 2004
    standards, including
    > sequencing.
    Have heard/read good things about them, so I'll trust that's
    all true.
    > However, we still need to determine whether Captivate
    has the
    > ability to generate SCORM 2004 compatible sequencing
    project files. Zipping the
    > multiple, daisy-chained project files and uploading them
    to the player does not
    > work, we believe because of the individual manifest
    files for each project. Is
    > there a way to create one manifest file for multiple,
    linked project files?
    Captivate can't do this on its own but you're right (I'm
    pretty sure)
    that this all has to be handled by one big custom manifest
    file..which
    you'll have to customize yourself.
    There is a manifest builder extension for DW from the Adobe
    Exchange but
    I don't know if it would help in this case.
    Doesn't Rustici have some sort of Manifest Builder tool? Or I
    know I've
    seen references to a couple others out there. A web search
    should reveal
    a tool that may help...
    > My understanding is that publishing the full course in
    one
    > project file in Captivate is not an option because I
    can't report back on all
    > the interactions & quizzes appropriately with the
    current set-up of the Review
    > Quiz function, and that a project file of this size
    would be problematic.
    You should be able to report on all the interactions, though
    I agree
    that trying to scatter a variety of quizzes throughout the
    lesson would
    likely be a problem. CP seems to just work with one set quiz
    (though
    I've not used that feature much). Regardless, you're
    definitely correct
    that working with such a large CP file would probably bring
    headaches of
    its own.
    > So we
    > are trying to break each section into its own project
    file and daisy-chain
    > them. But if I cannot generate those files in a way that
    the SCORM 2004 player
    > can recognize and deploy, then I don't know what else to
    do.
    I think you're on the right track with the manifest
    customization but
    figuring that out is a chore in itself. Perhaps look at tools
    that
    create such manifest during the publishing process to gain
    some insight
    as to the structure? I believe Thesis (by HunterStone) does
    this when
    converting Office documents to SCOs.
    Ultimately, you need to do something CP can't handle. So your
    best bet
    is to either search for a 'manifest maker' tool, research the
    depths of
    how to structure the manifest manually, hire out the process,
    or use a
    different tool.
    Wish I had better suggestions!
    Erik
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - eLearning
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    Authorware Tips!

  • SCORM packaging from FCPX??

    I need to create SCORM packages for my Learning Management System (LMS) with my FCPX projects.  I was told by Apple that this was possible when I bought the program.  I cannot find where to do this. What am I missing?  Would Compressor make this easier?  I have searched and searched, but I am finding very little that is helpful.  Please help!

    Hi Stacey,
    Great question. I'm part of the SCORM Cloud team at Rustici Software. We specialize in SCORM and I think we  have a solution for your problem.
    You can create SCORM packages using your exisiting videos pretty easily using ScoTube. ScoTube is a tool inside of SCORM Cloud that converts your existing videos, or even videos on YouTube, into SCORM courses. All you have to do is sign up for a free trial account to be able to convert your videos. Keep in mind that the trial account does have  a 100MB storage limit and you can only create 10 registrations.
    When it comes to delivering your video courses to your LMS, you could either export your course (requires a paid account) as a stand-alone course and import it in to your LMS environment or you can use Dispatch. Dispatch is a package that is hosted on SCORM Cloud but sent to your LMS. With Dispatch, you remain in control of your content and you get unparalled tracking and reporting on what's going on between your learners and your courses.
    If you would like a demo of how this works inside of SCORM Cloud, I'd be happy to show you around. Feel free to contact me directly at jena.lawing<at>scorm<dot>com.
    Thanks!
    Jena
    <Email Edited by Host>

  • Transfer mark from Flash animation to SCORM

    So this is the situation: I have a quiz made in Flash CS5 (AS3), that I put into an Animation slide in a Captivate 5.5 project. I need to be able to collect the mark from the Flash file, and transfer it to the Captivate project, which can then (via SCORM) transfer the mark to the client's LMS. Does anyone know how I might be able to do this? Any help is appreciated, thank you.

    I recommend you convert your Flash SWF into an interactive widget, which would then give you the ability to assign it with a score in Captivate to be reported naturally to SCORM.
    Information about coding widgets can be found here: http://www.infosemantics.com.au/widgetking/

  • Scorm html5 content from Presenter 10 and Moodle

    Hi, after publishing html5 content as Scorm 1.2. zip from Presenter 10 and upload to Moodle 2.7. the content is playing as small ,,banner,, . I can see only playbar and very very small slides wich I can not extend or can not make full screen mode. Audio play, playbar works, only slides are something like miniatures. Have please any ideas?
    Yarik

    I have tried the remove and re-add and it makes no difference. I can't now get the Presenter presentation with video in mp4 format to display or play. I am not sure if it is there or not as when viewing on an iPad it says it is buffering but never actually stops buffering. I can see it on my computer fine and it plays fine, but some of the reason for publishing to html 5 is so as it can be seen by people using tablets.  I just can't seem to get it to work no matter what I try.
    So to recap:
    1. using a presentation published using an older version of Presenter that contains flv videos
    2. republishing the presentation using Presenter 10 to a Connect Content Library using HTML 5
    3. have to convert the flv to mp4
    4. on a computer using a variety of browsers the presentation plays fine.
    5. on a tablet (iPad tried at this stage) the slides without video plays fine, the slides with video just continually says buffering
    On the second point of Presenter throwing up an error message, it's not so much that it throws up the error message as I can cancel that. It's more to do with the fact that it throws it up each time I try to publish a presentation that includes video that is of a certain duration.  I have followed the whole kill the process as suggested and while this does indeed stop the problem it just comes back when I open PowerPoint again and try to publish.

Maybe you are looking for

  • Remove namespace,xml tag in OSB

    OSB In Proxy Service: Once I get response from Business Service 1, I need to send that as request to Business Service 2. Business Service 1 response xml is <Reference>123</Reference> Business Service 2 request xml should be <ReferenceId>123</Referenc

  • Camera/jpeg picture number not shown in Photos ?

    Hi  In iPhotos the JPEG picture number was shown but cannot find this in Photos, has it been removed ?

  • Problem outgoing (Mac)Mail

    Since a couple of days i can't send anymore emails by Macmail. receiving mail ain't no problem. The settings are already doublechecked by my provider. They said it must be a Mac problem. Anybody else with the same problem or better, the solution? ;-)

  • Integration Builder in German, not English

    We have three different XI installations running, all 3.0 SP16. In one of these installation, the Integration Builder is always in German instead of English. All language settings are set to EN. The other two installations don't behave like this and

  • Lightroom Slideshow 1080P/720P/ 720x480 - IPad 3

    These formats no longer show on my IPad 3 at one time they did. I have created slideshows that are linked through a URL to my website for several years now I have created them in 720p format and been able to veiw on my IPad 3, IPhone, Web etc. Recent