Multiple videos in Captivate 7

If anyone has experience with this scenario, I would greatly appreciate your suggestions --
I have multiple training videos that I want to put together into a single Captivate file. Each video will be on its own separate slide, with a table of contents that navigates to each video. On some slides there will be text and pictures, in addition to the video. The output needs to be compatible with iPad, so HTML5.
Is Captivate a good tool for this, or wil the file size be prohibitive because of the video files (each video is about 15MB). If so, is there some way to smoothly integrate the videos with a link and perhaps store them in a different location on the web?
This project does not need to be compatible with an LMS, although there may be some simple quiz slides included just for the learner's benefit.

No ideas about this?

Similar Messages

  • Embed multiple YouTube videos in Captivate 5.5

    I have multiple YouTube videos that I would like to insert into one Captivate file, each video on a separate slide. If the learner moves away from the slide, I'd like the video to stop. If they should return to the slide, ideally the video would be a the beginning point. 
    I've been searching for a while. I found one where it will play one YouTube video per Captivate file, but not multiple videos. Also that one would show a transparent gray over the video while it played.
    Thank you for any assistance.

    Erik,
    Thank you for replying. I apologize that I did not reply sooner.
    I thought I found a widget that I could embed the YouTube videos within a slide, but was having problems trying to get it to work.
    I changed my plan and now have the video opening in a separate window. Because we do not have a technical person to help us for possible future issues this will be a better direction for us to move in.
    Again, thank you!

  • How do I stop multiple videos from loading at the same time and playing while looking at any article on google news?

    Multiple videos load at once and start playing creating sound mess and sucking up ram. This is happening on Firefox on both Windows 8 and Windows 7 machines. This started about three weeks ago. I have run Avast, malwarebytes, hitman pro, and other malware killers. A new youtube setting appeared in settings, I have unticked everything. The videos do not appear to be youtube based.

    You could enable plugins click-to-play. Also, set the plugins to Ask to Activate rather than Always Activate. I also recommend the extension "Click to Play per-element".
    https://addons.mozilla.org/en-US/firefox/addon/click-to-play-per-element/

  • Multiple video playback issues

    Hi All,
    I would dearly appreciaty any light anyone could shed on this issue - I have run into a couple of Flash bugs that have stumped me for quite a while, and my deadline is aproaching fast.
    Essentially, I would like to play back 3 reasonably high res videos (On2 VP6-S) simultaneously in one Flash App (using flash.video, netstream and netconnect - code only). Unfortunately, when I do this, the video playback drops a lot of frames, however, CPU usage does not go much above 50% - spread over both cores. I'm using a Core2Duo. If I play the same 3 videos simultaneously in 3 separate flash apps (FP10), they play much better (and use close to 100% CPU). I even tried creating it as an AIR app with 3 separate windows (NativeWindow), but that made little difference. I have lodged this as a bug via the Flash Bug Reporting System (http://bugs.adobe.com/jira/browse/FP-2341).
    And yes, I do need to be doing something as crazy as this - it is for a pretty cool kiosk app, so I know what hardware will be used (and it has a good Graphics Card).
    One promising workaround appeared to be playing back a single NetStream in multiple Video instances, as it is NetStream that does the decoding, so I could decode once and present it in 3 places. Two of my video objects are actually the same flv (on different monitors), so there would be a 33% saving right there. If necessary, I could encode both flvs into a single 1920x1200 flv (I've checked - it would play back ok) and then use video.mask to show the relevant bits.
    However, another bug has been reported at http://bugs.adobe.com/jira/browse/FP-920 saying this does not work - Video in the object that last called attachNetStream(ns) will play, all others will freeze. They do mention a workaround that gets both videos to play - reset the size of freezed videos on ENTER_FRAME event. However, I cannot get this workaround to work - my first video is empty (not even frozen).
    So there are a couple of things I would love any feedback on. Firstly, if anyone has insights on how I could get this to work. Secondly, if anyone could try the "multiple videos on one netStream with workaround" code below (simply copy, paste and point to a relevant flv) and let me know if it works and the versions of software they used, I'd be very thankful.
    ---------------Code Begins-------------
    import flash.events.Event;
    import flash.media.Video;
    import flash.net.NetConnection;
    import flash.net.NetStream;
    showRedrawRegions(true); // both the placeholders and the entire window redraws every frame.
    // When only video1 is attached, only video1's region is redrawing
    // When both videos are attached, both video's regions are redrawing, BUT video1 is empty.
    trace ("Capabilities.version = " + Capabilities.version); // = WIN 10,0,22,91 // in Flash CS4 10.0.2
    //var nc:NetConnection = new NetConnection( null ); // Got Eror: 1137: Incorrect number of arguments. Expected no more than 0.
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    // Connect nc here ...? Unnecessary in this case?
    var ns:NetStream = new NetStream(nc);
    ns.client = new Object(); // Simplest way to deal with cuePoints and metaData by doing nothing. For more, see http://blogs.adobe.com/pdehaan/2006/07/playing_back_flvs_with_actions_1.html
    var stream:String = "test.flv";
    var video1:Video = new Video(); // Defaults to size of 320x240
    var video2:Video = new Video(); // Defaults to size of 320x240
    video2.x = 320;
    addChild(video1);
    addChild(video2);
    ns.play(stream);
    video1.attachNetStream(ns);
    video2.attachNetStream(ns);
    // PROBLEM: Video in the object that last called attachNetStream(ns) will play, all others will freeze.
    // See WORKAROUND below for solution:
    //WORKAROUND to stop the first split stream from freezing:
    addEventListener(Event.ENTER_FRAME, onEnterFrame);
    function onEnterFrame(e:Event){
    video1.width = 320;
    video1.height = 240;
    trace ("video1.videoWidth = " + video1.videoWidth);
    trace ("video2.videoWidth = " + video2.videoWidth);
    // When only video1 is attached, video1.videoWidth = 1920, video2.videoWidth = 0
    // When both videos are attached, video1.videoWidth = 0, video2.videoWidth = 1920
    ---------------Code Ends-------------
    Letting me know what exact versions of the following software was used would help a lot:
    - Windows/OS (e.g. XP SP3).
    - App code was written in. (e.g. Flash CS4 IDE 10.0.2, Flash Develop 3.0.1).
    - App code was compiled in. (e.g. Flash CS4 IDE 10.0.2, Flex SDK 3.4.0.6955).
    - Type and Version of Flash Player used (e.g. Standalone Debug Flash Player v10,0,22,91).
    The versions I used are listed above.
    Lastly, for what it is work, I found three interesting/informative results, but they didn't help me:
    - When only video1 is attached, video1.videoWidth = 1920, video2.videoWidth = 0
      When both videos are attached, video1.videoWidth = 0, video2.videoWidth = 1920
    - When only video1 is attached, only video1's region is redrawing
      When both videos are attached, both video's regions are redrawing, BUT video1 is empty.
    - var nc:NetConnection = new NetConnection( null ); // Got Eror: 1137: Incorrect number of arguments. Expected no more than 0.
      So I had to change it to:
        var nc:NetConnection = new NetConnection();
        nc.connect(null);
      Does this mean my NetConnection class is different and maybe incompatible with this workaround?
    Many, many thanks,

    How to view/hear pretty much everything:
    Assuming you already run OS 10.4.9 or above and have Quicktime 7.2, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer from http://uk.real.com/player/
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    The world should now be your oyster!
    You should also have the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

  • Linking to external video in Captivate 7

    I develop video-based training. Each slide includes mostly video. I've been successfully embedding f4v videos into Captivate projects for some time but video quality and file size issues make it necessary to begin linking to videos on external servers.
    I've tried a number of options without success.
    I create a video event, choose the url option, and add the url from the uploaded video. The only usable server choice is the Adobe Media Streaming Service. I've tested the videos on different servers including Amazon since the troubleshooting advice alerted me that only Adobe partners servers will be recognized. The project previews and the progress bar moves as if the video is playing but only the background file is visible. I tried all the preview options - no luck.
    I decided to try the YouTube widget. I uploaded test videos to YouTube, inserted the Interaction widget and added the url, etc. This option results in a successful preview only when I choose the html 5 output in web browser option. Captivate will successfully publish the project but I get "Java Script Error unable to acquire LMS, API content, may not play properly" messages.
    The published file performs like all of the unsuccessful previews. The file loads and acts as if the videos are playing in that the progress bar moves but there is no video, just the slide background image. I tried different output settings like just SWF, just html5, both SWF and html5, different versions of the flash player, etc. I also added the output folder to the Flash Global Security settings in case it was a permissions issue.
    I'm working on a mac so I emailed a zipped file to my PC and tried to open in Internet Explorer to see if the file might play on a different system or browser - same outcome - no luck.
    Making external video work is critical to my work and use of Captivate so I'm hoping there's something I'm missing or misunderstanding about what I need to do.
    Any help or advice will be appreciated.

    I'm continuing to have problems with the YouTube widget. My client sent me YouTube links and when I copied and pasted the new links into the Captivate file and the published and uploaded the file, the links didn't work.
    To review, I uploaded video files to YouTube and used the interactions widget to insert the linked videos. The videos which I uploaded can be previewed in html5 in web browser but not in any other way. When I publish this file and view the file on my system on my browser (Safari) the file opens but the videos do not play. However, when I upload to my ftp site and open the file from there, the linked YouTube videos play.
    So this led me to believe that I have a file that will work at least in html5 output. But when I replace the original YouTube links that I uploaded with new links provided by my client the videos preview in html5 in web browser mode but do not play on my system or when uploaded to my ftp site. All of the videos (mine and my clients) play in YouTube and preview in html5 mode.
    Additionally, when I ouput the html5 file, the quiz doesn't work properly. The radio buttons don't appear on screen so when answers are selected the user has no way of knowing their selections have been accepted. Oddly, the quiz is registering answers since when you submit there is a brief flash during which you can see the buttons but they quickly disappear and results are tallied accurately at the end. But the quiz is unusable without user feedback for selections. You can view this performance beginning on the sixth slide (the beginning of the quiz).
    http://videoactive.org/PreventingObesityOnlinelinks/index.html
    Are html5 output files compatible with Learning Management Systems? Is there a way to use the YouTube widget in SWF output files?

  • Cannot select multiple video clips at a time

    With the previous version, I could simply select all and import all my videos and pictures at once, in the order I copied them to my hard drive. Now, I have to "select entire clip" then, press letter E on every video clip, then, go back and add pictures. This is a huge downgrade from the previous version of IMovie.

    hello ,thanks for jour mail ,but my English is very very bad sorry but
    many thank for your feedback. Hav a nice Day
    Am 09.12.2014 16:57, schrieb carpmusic:
    >
          Replace audio in multiple video clips at one time
    created by carpmusic <https://forums.adobe.com/people/carpmusic> in
    /Premiere Pro/ - View the full discussion
    <https://forums.adobe.com/message/6998981#6998981>

  • Multiple Video Cards - 4 monitors

    I was wondering if there was anyone out there that has a successful installation of multiple video cards. i.e. 1 AGP with dual ports and a PCI with dual ports. I would like to run 4 22" monitors on a G4. Just want to know if there were any reccomendations on card brands/types and configurations
    Have multiple Mac's from G4 733 Giga to G4 Dual drive... Lil help

    I'd reccomend using all ATI cards as they are/were better supported as far as multiple cards and features are concerned. A decent set up would be an ATI radeon 9800pro AGP with an ATI radeon 9200 PCI. Both are dual head and for PCI the 9200 is pretty good.

  • Multiple Quizzes with multiple results (in Captivate 6)

    Hey guys, Thanks for reading!
    Does anyone know if it is possible to do multiple tests with multiple results in captivate 6? or if it is possible to have a pre-test with a quiz, and have separate results for each?
    I've been having a play with captivate 6 and when I put a quiz in, it overrides the results slide for my pre-test.
    Looking at the results slide master properties I can choose to have results for one of my quizzes but not both (even on separate slides):
    It wont even let me insert another slide based on the other result.
    I would like to know if multiple quizzes with multiple results is possible in Captivate 6?, or if I am simply doing something wrong?
    Thanks!

    Sorry for way-late reply...
    It's really more how your LMS handles 'courses' and the terminology it uses.
    Essentially, most often, a 'SCORM Package' (SCO) is a 'course'. I'd rather call each SCO a 'lesson' as, to me, 'courses' should be setup in the LMS with a series of 'Lessons'.
    Regardless of the terminology, each 'SCO' is launched by the LMS and one score can be recorded for it via SCORM.
    So if you need multiple final scores recorded, each of those final scores need to be in their own SCO.
    A common approach is a Pre-Test SCO (or 'lesson', or 'course', whatever term), a 'Content' SCO perhaps with some interspersed scored interactions, and a Post-Test SCO...all three merged together as a 'course' (or whatever term) within the LMS.
    That said, as said, it really all depends on how your LMS handles various SCOs...
    Clear as mud?
    E

  • Playing multiple videos in sequence

    Hello all. I'm a complete newbie to Flash development, but
    have been thrown into it with not just a deadline, but a (to me)
    "complex" project. I have a Flash project which currently opens and
    plays a video as part of whats on "the stage". I now need to add 2
    more videos which will play, in sequence, after the first one
    finishes. I've gone through the tutorials, read the help files, and
    now I'm just feeling a bit "DUH" because I still can't figure out
    how to do this. Anybody out there care to help a poor ol' graphics
    guy avoid the bitter wrath of his boss?

    A single instance of FLVPlayback can handle multiple videos.
    I can't remember what the upper limit is. So you can switch between
    them based on user input. But I believe it can only ever play one
    at any one time. I've used FLVPlayback quite a lot but not for what
    you're describing, so can't answer from direct experience.
    Check out this page, and the trivial example at the end
    (whether its streaming or progressive is irrelevant here, streaming
    should work just as well, but perhaps you need to use SMIL files
    for the streaming contentPath?)
    http://livedocs.adobe.com/flash/9.0/main/00002980.html#wp3780233

  • Play multiple videos in sequence

    Hi,
    I've multiple videos stored in FMS and would like to merge them into a single video object in order to play all of them in sequence (so that a user thinks it's a single longer video). Is it possible?

    This is a link from 3.5 but have you tried this:
    http://www.overdigital.com/2009/08/02/flash-media-server-as-video-editingstitching-tool/

  • Snow Leopard iTunes 10.5 will not play multiple video tracks in QuickTime .MOV files

    I recently discovered that Snow Leopard iTunes version 10.5 won't play multiple video tracks in a QuickTime .MOV file.
    Both video tracks appear and play correctly when playing the file in:
    - QuickTime Player 10 or QuickTime Player 7.7 on the same Snow Leopard machine
    - iTunes 10.3.1 on another Snow Leopard machine
    - iTunes 10.5 on Leopard or Windows 7
    So I think the problem is iTunes 10.5 on Snow Leopard (although I haven't been able to test iTunes 10.4).
    First test file is two 640x480 video tracks side-by-side (total dimensions 1280x480):
    http://160.94.17.23/demo/two-video-tracks-1280x480.mov
    All I see is the first (left) video track, and not the right one.  iTunes "Get Info" command incorrectly reports the video dimensions of the file as 640x480.
    Second test file is two 640x480 video tracks played one after another (duration of 10 seconds each):
    http://160.94.17.23/demo/two-video-tracks-640x480.mov
    All I see is the first video track, and although it reports the correct file duration (20 seconds), the second video track never appears -- it simply freezes on the final frame of the first video track for the last 10 seconds.
    Anyone else see similar behavior?  Unless I'm missing something, I suppose I should submit this as a bug to Apple.

    I have the same problem, i tried re-installing, converting it to AVC H264 but none seems to work so far

  • How do I copy and paste text style for multiple video tracks?

    hello,
    I am creating multiple video tracks with text.  I want to easily copy and paste the style, i.e., Font, Color, Size - rather than having to scroll down the giant list of fonts to find the one I want, then change the color, then change the size - each and every time.  This is arduous.
    I tried copy / paste of one text onto a new video track, but when I type in a different word, it alters the original.
    I have 9 tracks of video for 9 different texts that will pop in and out of my video.  I would like to be able to copy/paste then just change the text.  This would save me a huge amount of time.

    paulrudophmusic
    I know of no way to alphabetized the Adobe Styles that come with the program.
    If you had the time and the inclination, you could rename them all to force them to appear alphabetically, but that does not seem all that practical.
    But, if your interest is in the Styles that you save and you do not hit the Reset File List, the new Styles will be at the bottom of the list and you can name them so that they appear that alphabetically at the bottom of the whole Styles list. But that does not address the matter of you having to scroll to the bottom of the Styles list.
    In some instances, some things that you think that you cannot do in Premiere Elements obvious features, can be done by computer keyboard shortcuts. I check the keyboard shortcuts under the Edit Menu/Keyboard Customization and unfortuately did not find any that would be applicable to this situation.
    As for your changes in one text file popping up unwantedly in another text file, that is because you have text files with the same name. Look into creating duplicates (with different file names) in Project Assets at the onset.
    ATR

  • Multiple video displays

    Hi,
    I'm looking at different methods of sychronizing multiple
    videos accross multiple displays and wondered if the best way to do
    this would be via flash video of a media centre streaming to
    seperate machines and their displays, could anybody advise me on
    this.
    Thanks in Advance
    Jack

    With the new Mac Pro 2009-03 models, Quad-Core Intel Xeon.
    Is it possible to run eight Apple Cinema Display 30" monitors?
    Yes.
    This would require four single-slot Video Cards with two Dual-DVI outputs each.
    The default NVIDIA GeForce GT 120 512MB card has one Dual-DVI and one single DVI, so it would not do the job.
    No. It has one dual-link DVI port and one Mini DisplkayPort. With a Dual-Link Mini DisplayPort to DVI adapter it can run two 30" displays.
    <http://store.apple.com/us/product/MB571Z/A?fnode=MTY1NDA5OQ&mco=MjkyNjI0Mg>
    Likewise with the ATI Radeon HD 4870.
    It also can run two 30" displays when used with the adapter, but it uses too much power to use with three other cards.
    So what Video cards would be specified?
    Four NVIDIA GeForce GT 120 or ATI Radeon HD 2600 XT. You could also use three of these cards and one GeForce 8800GT. It has to be the one made for the 2008 Mac Pro (and is no longer being sold).
    Is this even possible?
    Yes.
    And is there enough power supply available for four such video cards?
    Yes. Apple sells (sold) systems with four of these cards.
    I understand the ATI Radeon HD 2600 XT Graphics 256MB GDDR3 is not compatible with the new systems, and it only offers one Dual-DVI & one Single-DVI port.
    No and no. It is compatible, and has two dual-link DVI ports.

  • How can I set multiple videos to "TV Show"?

    I'm importing an entire season and they all default to "Movie". So, I know that I can set the video type to "TV Show", but if I select more than one video, there is no "Video" tab. Does anyone know how to set the types of multiple videos at once?

    This is a good question and I haven't found a method yet either. This seems to be an oversight on Apple's part.
    Message was edited by: Conal Ho

  • How to import multiple videos to project at once?

    Bonjour, first off, I love the iMovie iOS app, however, I feel it's missing a key feature. Is there a way for me to add multiple videos into a project at once without having to select them individually, and have the screen close, then having to re open it, and search for the other, and so on and so forth.
    It would be so much easier if I could just select multiple videos from the import feature on my phone. The videos take a while as it is to load in the feature, my project is being created from oldest to newest,  so I have to scroll all the way down to the bottom of the list, wait for all the videos to load so I can, and then an only select one so I must repeat the process.
    Any way around this yet?

    Import all your videos into iPhoto's library.
    Step 1: Plug your phone into your computer
    Step 2: open iPhoto (or if you have an iPhone it should open automatically)
    Step 3: click on you phone under "Devices"
    Step 4: hold down the "Command" key while selecting ALL the videos you want to import
    Step 5: Under "Event Name" give all your videos a general title (ie. Vacation)
    Step 5: Import
    Step 6: Open iMovie and look for the event name under Event Library
    Hope this helps!

Maybe you are looking for

  • Help needed in HTTP Tunneling - urgent

    Hi all, I urgently need a working code sample of a client which sends requests to a server that redirects the request to an RMI server via RMI servlet. Does any of you familiar of such a code sample? Thanks

  • Multicast works for a day and then stops

    I'm running multicast in unicast mode on our WLC because I can't enable PIM on wired side yet for a couple reasons.  It works consistently on 3 out of 6 WLAN's.  And the weird thing is the other 3 WLAN's will work for a day, and when I come in the ne

  • Search by tag not working in content search web part

    Hi, I am trying to configure content search web part that only pull result with a specific tags. I have created a document library and assign tags on some document, also configured Managed Meta data service and search service application. Schedule se

  • Error 1701

    Hi. I upgraded my Mac to OS X version (Mavericks), and now iTunes (version 11.1.2.)  shows a message unknown error (1701) for my iPod Shuffle. What should I do? That never happened, but now that I upgraded my system.

  • Daily MRP paramters

    for daily MRP background job, what do you suggest are the paramters that are to be used? is it advisable to use processing key NEUPL?