CP 6 issue with inserted videos

Hi All,
I have an issue with inserted videos in CP6. They play in preview (F8) but not in published output (swf nor html).
This is what I do:
The videos created with CP6, Record new Demo
output cpvc
open cpvc in CP 6
publish see settings below:
Now I want to insert the captured and published demo into my training CP6 project
click 'Video' on menu bar -> Insert Video -> select 'Event Video' -> browse to the file on my computer -> select file (mp4) - click OK
Video gets loaded into CP6 project with default skin
Before save the changes of the project I change the settings on the property panel to:
Now I preview my project
Press F8
Preview is generated
video demo plays automatically as expected
This all even works well with multiple demo videos on one slide which can be selected by clicking different show me buttons (advanced actions created to show and hide according videos)
BUT now I publish my project and nothing works anymore, videos do not show on scene and cannot be selected with respective show me buttons
     Publishing settings are:
At the end of the publishing dialogue I click to view output in web browser (IE9) and there starts the trouble:
IE shows up withfollowing dialogue:
I allow blocked content and select cancel in the following dialogue box:
And the training loads, everything works fine except the videos integrated to start automatically there is a blank space nothing.
Does anyone have an idea solution for me?
I am so puzzled and do not know hoe to proceed...
Thanks in advance for your reply!!!
Stephanie

Hi RodWard,
Thanks for your fast reply!!!
The video files are present in the same folder as the SWF publish location.
The drive letter is on my local PC with multiple partitions and not a network drive.
Flash global security settings are set for E:
To your last suggestion about file naming I did the following:
Generate new mp4s
Name them only with alphanumerics ie. DemoScroll
insert them into project
preview OK
publish and check if demos are in folder - yes they are
open html in IE9  - NOK!!!
Now frustration rose...
So I tried one thing that I had not yet tried - open html in FireFox and there it is OK :-)
I do not understand....BUT we need to be able to support IE!!!!
Do you think there are specific settings that need to be changed in IE to make it work?
I would highly appreciate a suggestion what to look for in IE...
Do you think it is related to IE9?  ´
Since I have IE 9 and CP6 I also get the LMS messages and actriveX message when viewing projects in browser.
Looking forward to your help.
Thanks in advance Stephanie

Similar Messages

  • Quality issues with inserted video file

    Hello,
    can anyone help me with a video problem in Captivate 6.1, please!
    I’m currently working on a Captivate project where I need to include a movie file.
    I have the same movie in two different formats .mov and .wmv, which are both looking just great when I watch them with any player on my Windows7 system or on the Mac of my colleagues.
    When inserting the movie the encoding to .flv takes place by the Media Encoder, which also seems to be working just fine.
    But when playing the project in Captivate, the inserted video shows such a bad quality, that I’m not able to use it like this.
    I already have tried different things (inserted as event video or multi-slide synchronized video; changed the slide quality to high; encoded the movies to .f4v files with the Media Encoder; installed a new windows codec package) but nothing leads to an acceptable result.
    Which settings do I need to change in Captivate/in the Media Encoder to receive a good video quality?
    What else could I do to improve the quality of movies for Captivate projects?
    Is there any minimum requirements for movies concerning file format, encoding, or anything else?
    Thank you so much in advance for your help,
    Sabine

    Hello Varun,
    thank you very much for your reply.
    I tried unchecking the compression options, doesn’t help
    I haven’t yet published the project, the problems occur already when playing the project in Captivate.
    The project resolution is 1280x720.
    The resolution of the .mov-file of the video is 1920x1080 (12000Kbps, if this information is any helpful…)
    The resolution of the .wmv-file of the video is 1280x720 (3000Kbps…)
    Maybe the problem occurs already during encoding, the .flv that is created by the Media Encoder doesn’t look that good anymore, I just played it separately (not in a Captivate project).
    Are there any settings I could check for the Media Encoder?
    Thanks,
    Sabine

  • Issue with Insert in SP

    Gurus,
    I have an issue with inserting rows into temp table through SP.
    Here is my proc. its running fine. After the execution completed when i try to select the rows from srini_temp table its showing 0 rows. Whats wrong here.
    CREATE PROCEDURE BO_HR_RPT.SRINI_TEST AS
    BEGIN
    insert into BO_HR_RPT.srini_temp (
    COURSE_TITLE,
    COURSE_ID,
    CLASS_NO,
    DELIVERY_METHOD,
    LEARNER_OWN,
    DURATION,
    score,
    VENDOR,
    START_DATE,
    END_DATE,
    INSTRUCTOR_NAME,
    TRANS_STATUS,
    LEARNER_NAME,
    LEARNER_EMP_TYPE,
    INSTRUCTOR_OWN,
    INSTRUCTOR_EMP_TYPE,
    EFFT_PERIOD,
    YEAR,
    AS_OF_DATE,
    LMS_SOURCE,
    REPORT_CATEGORY)
    SELECT COURSE_TITLE,
    COURSE_ID,
    CLASS_NO,
    CASE WHEN COURSE_ID LIKE 'TIS%' OR COURSE_ID LIKE 'TIWEB%' OR COURSE_ID LIKE 'TIVLAB%' OR COURSE_ID LIKE 'TIWVT%'
    OR COURSE_ID LIKE 'STARELT%' OR COURSE_ID LIKE 'TIELT%' OR DELIVERY_METHOD ='Web Based Training'
    OR DELIVERY_METHOD = 'e-Learning or via backend Import' THEN 'E-Learning'
    WHEN DELIVERY_METHOD = 'IDL' THEN 'IDL'
    WHEN DELIVERY_METHOD = 'IDL Replay' THEN 'Replay'
    ELSE INITCAP(DELIVERY_METHOD) END AS DELIVERY_METHOD,
    RTRIM(LEARNER_OWN) as LEARNER_OWN,
    CASE WHEN LMS_SOURCE ='SABA' THEN ROUND(DURATION/60,1)
    ELSE DURATION END AS DURATION,
    CASE WHEN SCORE='0' then '' else score END as score,
    CASE WHEN (vendor_name IS NOT NULL) AND (UPPER(SUBSTR(COURSE_ID,1,2)) = 'TV') then vendor_name
    WHEN COURSE_ID LIKE 'TIWEB%' then 'SKILLSOFT'
    WHEN COURSE_ID LIKE 'TIVLAB%' then 'ELEMENTK'
    ELSE 'N' END AS VENDOR,
    START_DATE,
    END_DATE,
    INITCAP(INSTRUCTOR_NAME) AS INSTRUCTOR_NAME,
    TRANS_STATUS,
    INITCAP(LEARNER_NAME) AS LEARNER_NAME,
    INITCAP(LEARNER_EMP_TYPE) AS LEARNER_EMP_TYPE,
    RTRIM(INSTRUCTOR_OWN),
    INITCAP(INSTRUCTOR_EMP_TYPE) AS INSTRUCTOR_EMP_TYPE,
    trim(initcap(TO_CHAR(TRUNC(NVL(END_DATE,START_DATE)),'MONTH'))) AS EFFT_PERIOD,
    TO_CHAR(TRUNC(NVL(END_DATE,START_DATE)),'YYYY') AS YEAR,
    TRUNC(ADD_MONTHS(LAST_DAY(load_date) ,-1)) AS AS_OF_DATE,
    LMS_SOURCE,
    REPORT_CATEGORY
    FROM BO_HR_RPT.ELM_GLD_MASTER_BASE
    where ROWNUM <= 10
    ORDER BY COURSE_ID,CLASS_NO,START_DATE,END_DATE,INSTRUCTOR_NAME;
    COMMIT;
    END;
    Thanks for great help.
    Srini

    Are you completely sure this isn't a global temporary table?
    it really would explain your problems!
    Have you got access to run a
    select tablename from all_tables where TEMPORARY = 'Y'[pre]                                                                                                                                                                                                                                                                                                                                                                                                           

  • Is there an issue with streaming videos direct from itunes? I

    Is there an issue with streaming videos direct from itunes? I have good wifi but films just buffer , doesn't happen on flixster on netflix , wonder if there is any tweak to watch a film uninterrupted , because it is very frustrating? Thanks

    Apple appears to be having trouble with the iTunes Store servers right now.
    (81070)

  • Issues with games, video card issue?

    Hi,
    I have been having issues with games lately. Mostly they are hidden object games from  Big Fish, but they start up then minimize, it doesn't crash completely just minimizes, I click on it again and it works for a few seconds and minimizes itself again and again. I am unable to play the games because it keeps minimizing. could this be an issue with my video card? I have attempted updating it but it doesn't seem to help. Any ideas?

    Ok OK, Update...
    the games work perfectly on my father's HP which runs windows 7...so it definatly is NOT because of not updated stuff....I really dont know what else to do at this point....no suggestions from anyone?!?!?!

  • Unable to publish projects with inserted video - error message The Flash video can not be loaded

    I've created a project in Captivate 6 with two slides that have inserted videos in them
    Both the videos were created in Captivate 6 by publishing those projects as mp4 videos
    They play fine in the previews but when publishing I get the error saying the Flash video can not be loaded for both of those slides and in the output files the area for the video is blank.
    I have checked that the videos are not open anywhere else as I saw on a previous post this was the issue but the only place they are in use is in the project I am trying to publish.
    Below are my settings and the error message
    Any suggestions would be greatly appreciated.

    Your screenshot indicates you are publishing to a folder on a network drive.
    Have you:
    Verified whether or not the video file exists at the published folder location? (It should ideally be sitting in the same folder as the SWF that calls it.)
    Verified that the folder location is set up as a trusted location in your Flash Global Security settings?

  • Issues with exporting video from MacBook Pro to flash drive

    I cannot sucessfully transfer [export] video taken on my gopro camera, from my MacBook Pro to any flash drive and play them on other computers.  For some reason the files are not playable, even with quicktime.  They will not play with ANY of my video softwares such as divx or any AVCHD software on a windows computer.  I need to make a presentation for a club trip in a few days! Can any one please suggest what is wrong?  They play on the Mac using Flip player but not quicktime!
    Oh, and I don't have issues with transfering or exporting Jpegs or other photo formats.  Only video.
    Message was edited by: gmob25

    hmmm.. the files from GoPro are already mp4 format.  The Flash is already FAT32, brand new 16gig...
    I am new to Macs but have no problems with PC's.  I suspect that because the files are exporting as shadowed files which won't play and are very small kb files, yet they are actually in excess of 140 mb each that it might have something to do with the iphoto software?  That's where the pics and video are, they imported to there by default, not to a folder in the home folder [which is where I would have expected them to be]
    By the way, the GoPro is already in mp4 format so it is easy when transferring to computers. No need to convert. I tried converting them to see what the outcome might be, and none worked!  I tried every format I could find using Video converter ultimate software, which is excellent.
    And the problems began when quicktime wouldnt play the file, the screen was black.

  • Issue with imported video in after effects!

    Let me start by saying I am putting together a video editing portfolio.
    I have the final video edit complete and have brought it into after effects, after exporting it as a current settings out of Final Cut Pro 7. I then, accomponied it with motion graphics that include my contact info all within after effects.
    The problem starts here in AE: when I press play on the timeline the entire video moves very sluggish.. Then I exported out of after effects and the final export is still sluggish with the audio cutting in and out (viewing in quicktime player) !.. Is the video supposed to be imported into after effects by a certain format and if so what? or is it supposed to be exported out of after effects by a certain format or way, and if so what? Basically I'm at the end of this process and just need to export the final video with the motion graphics out correctly so that it plays smoothly without complications.
    I've looked all over and can't seem to find a steady answer to this problem. Thanks in advance, much appreciated!

    When previewing, make sure that you're using RAM preview to get real-time playback:
    http://helpx.adobe.com/after-effects/using/previewing.html#use_ram_preview_to_play_video_a nd_audio
    See this regarding the issue with your output file stuttering:
    http://forums.adobe.com/thread/684381
    Most important, start here to learn the basics:
    http://adobe.ly/AE_basics

  • Issue with synced videos

    I have a 120 GB Classic, and some of the videos I have synced do not play completely. The iPod lops off the last minute or two of each file. It's not all the files, just certain ones.
    Rebooting/resetting the iPod didn't work.
    Deleting and reinstalling the files in iTunes AND the iPod, then re-syncing, in iTunes didn't work.
    Resetting the "end time" in EACH file didn't work.
    I'm out of ideas. Anyone else care to take a crack at it?

    Okay, I don't know if this will help anyone else, but I figured out MY issue at least. It turns out it wasn't an issue with the iPod at all, it was an issue with the programs I was using to convert.
    Apparently, there is a SLIGHT difference between an straight MPEG4 format and an iPod format. There were two different settings in my programs. One for an MPEG4 and one for an iPod (and before anyone asks yes I did try to use the "convert to iPod" function in iTunes, and it said it was already in the proper format).
    Once I re-converted the files into the "iPod" setting they all worked just fine. So I guess if you are converting home movies, etc. for your iPod, double checkyour programs. There may be a seperate setting for iPods.
    Hope this helps.

  • Issues with photos/videos not uploading in chronological order..

    I have been having issues with Adobe Bridge not uploading my photo/video files (from a CF card) in chronological order. When uploading I select to rename the files by shot date + 01.. etc. For photos the first image then becomes the last image after uploading, and for video files everything is out of order. Not sure why as the only other thing I have selected to add is copyright info. Also having issues with Bridge not converting raw files to DNG (which has led me to use Adobe DNG Converter - not terrible, but hopefully there is a reason?). I think it is a problem with Bridge, as photos uploaded to my website - something completely non-Adobe related are also then thrown out of order.. so it seems to be an issue with files that have come through Bridge at some point. Any advice is much appreciated.

    I just noticed that iTunes is now accepting 'some' videos. They are all the same file type (mp4), but iTunes is just randomly choosing which videos it wants add to the Library & not.
    I'm still not getting any results when it comes to the Photos.
    ... and one last thing ... only random songs are displaying the album art on the iPod. Yhey ALL appear in iTunes. If i restore my iPod & re-load everything, some of the songs that DID have artwork appearing on the screen now don't.
    This is really messed up! Wonder if the eventual Vista-compatible iTunes will fix this problem ...

  • Issues with youtube videos / flash player on mac os x lion

    I ve' been trying to play youtube videos on my new upgraded mac os x lion (10.7.2) and the videos wont play. The sound also is bit scattered and the screen jusht flashes ocassionally with no video at all.
    I suppose this is to do with the flash player or plugin comtability issue. Does any ohter user has seem this sought of behaviour? Any remedies are much appreciated.
    Thanks,
    NK.

    fyi: http://bugs.adobe.com/jira/browse/FP-7388

  • Playback pauses and audio sync issues with live video stream

    I'm seeing playback pauses about every three seconds and audio sync issues with our live demo stream when using the OSMF/Strobe player.  It happens on both our 2Mbps 720p stream and our 480p 750Kbps stream so it does not seem to be related to higher resolution/bandwidth streams.  It also happens if I point directly to a stream asset or if I point to a .f4v with both streams listed for dynamic so it does not seem to be related to dynamic streaming specifically.
    The same live streams play back very well without pauses or audio sync issues in the Akamai's dynamic player and even slightly better with JW 5.2.
    I have viewed the OSMF/Strobe playback on three different laptops of various age (3 months to 2 years) and two are Windows and one is Linux.  I have also tried the various buffering options on the Flash Media Player Setup and Strobe setup and it has not made a noticeable difference.
    To see the stream with the Akamai player, go to:  http://live.kulabyte.com
    To see the stream with the OSMF/Strobe player, go to:  http://live.kulabyte.com/osmf
    I do not have JW set up for public viewing yet, but the two above show the distinct difference.
    We are really hoping to start pointing our customers towards the OSMF player because of the support provided by the community and Adobe, but we have to get the quality of the playback to be acceptable first.
    If someone has ideas on debugging I can PM the actual video assets to you.
    Thanks,
    Tim

    Hi Tim,
    You need to add this setting:
    dynamicStreamBufferTime=8
    The actual value can be higher or lower. The best practice is to use a value that is twice the keyframe distance. Anyway, try different values and see which performs the best for your content.
    I know that the setup page does not contain this option and it is not documented in the UserGuide. We simply missed it. Sorry.
    Also note that the dynamic buffering algorithms are not being used for dynamic streaming content. I tried to explain this here:
    https://sourceforge.net/adobe/smp/wiki/Dynamic%20Buffering/
    Looking forward to your confirmation that this solved your issue.
    -Andrian

  • Safari issues with Tabs, Video, and Java

    Hi.  I updated to Lion and Safari 5.1 and did all the software updates.  I have a MacBook from 2008.  For some reason, I am having a lot of issues with Safari.  I hope someone knows what I am doing wrong.
    1.  Every time I open Safari after I turn on my computer or it wakes up from sleep, I have to do an internet test to get the computer to realize I am still connected to my house WiFi.
    2. The computer goes to sleep after 30 secs.  Can I change this somehow?
    3. I cannot open any videos from YouTube or vidoes my friends have posted on Facebook.
    4. I used to be able to drag a link over an existing tab and it would automatically go there.  Now I have to drag it to the + sign to get it to open.  (command click still works)
    5.  I tried to check my plug-ins to see if that was the problem.  I put all of my internet plug-ins in the trash and added them one by one.  Safari seemed to work a lot faster, but then as soon as it went to sleep, I had the same issues.  Also, I can't find Java anymore (not in my trash, didn't delete anything from the trash) and I did the java test on a website and it's not showing what it's supposed to.  All the software updates say it is fine, but obviously it isn't.
    I know this is a lot of stuff, and most of it is probably due to me not really understanding how my mac works.  I've been looking through the forums to see if anyone else has all of these issues; after an hour and a half of reading discussions, I gave up.  Any advice would be really appreciated.  Thank you.

    So, while waiting for some help, I've been continuing my own research. 
    3. It turned out that it wasn't Java messing with my videos.  I just needed version 10,3,181,34 of Adobe Flash and now all videos are working.   Hope that helps if anyone else was having similar issues.  Here's the link if you need to find out which version you have: http://www.adobe.com/software/flash/about/
    4.  It turns out that there are several other discussions regarding people who can't drag and drop links into Tabs on Safari.  My solution was to write to Apple to ask if they can put that feature back in.
    5. I'm not sure if I am still having Java issues, but so far everything I am needing to upload and watch is fine.
    One and two are still annoying, so I'll continue to look for solutions.  If anyone has any suggestions, I'd appreciate them.  Hope this helps someone as much as it helped me.  I don't want to throw my computer against a wall every 5 seconds now.

  • Audio issue with Youtube video

    I am creating some videos to upload to Youtube. I am having a problem with audio. I am creating and uploading using Adobe Premiere CC and Media Encoder. When I upload the video to Youtube, I have no issues. The problem I am facing is when I play it on mobile phone, I get now audio tracks (vocal) playing through the phones speaker. I do get the audio track I rendered through After Effects. However, I can hear the vocals On a PC, Ipad etc. I can hear the vocals through a headphone plugged into the phone or via bluetooth. I am using the H.264 codec with youtube 1080 settings. Any suggestions and yes I have tried a different phone to see if it was and issue with the phone.

    This might be your problem:
    Re: 1 of 2 audio tracks missing on certain browsers (h.264)

  • ITunes having issues with music videos

    I recently bought an album with some music videos in it and iTunes is having some issues playing them correctly. The audio is not in sync with the video. Seconly, the audio does not sound correct, it is making a skipping sound as if the audio is from a CD that has a scratch on it.
    I know that this issue is with how iTunes is playing it back, because when I play it in another video program it works fine.
    Just in case it will help, I am running iTunes 11.1.3.8

    Are the videos the right kind of files to play in itunes?  If not they need to be converted.
    Not sure if I am allowed to mention the software needed to convert so you may have to use google to find that.

Maybe you are looking for