Inserting a FLV file into CS5.5 project

Hello,
If anybody is able to help me with my question I would be forever grateful.
1. I use CS5.5 and I have published a captivate demonstration as a MP4 - then converted it to a FLV file using Adobe Media Encoder. 
2. I have then inserted the FLV file into another captivate CS5.5 project and published the file as a flash file.
Problem - The FLV file plays when previewing in web browser, and also plays on a public file location.  Problem occurs when I load the published file onto a web server I get a connection error when I get to the slide with the FLV file.
I am really stumped with this one.  Has anybody any ideas?
Thanks
ali

Hi Rod,
Attached is a screen dump.  I can understand why when I publish the final flash version to a web server that it does not recognise the path of the FLV file as it is on my local drive.  However when I attempt to place the file name of the file sitting on the web server I get another error message (Refer to screen dump 2).  Obviously I am missing something
I am missing here.  Thanks ali

Similar Messages

  • Problem Inserting Flash Video (flv) File into Site

    Hi -
    I'm having problems inserting a Flash Video (.flv) into my webpage.  I'm using Dreamweaver 8.
    I'm going to: Insert -  Media - Flash Video, browsing to the .flv file that's in my local site folder, entering the settings.
    In Dreamweaver, there's a big gray box w/ flv icon in the middle.  But when I go to preview, the screen is empty, no video.
    I'm creating the .flv file w/ Screen Mimic (a screen capture recording software).  This could be a problem w/ the Screen Mimic file because I have no problem inserting other flv files supplied to me by others.  This is the first video that I've made that I'm trying to insert. 
    If anyone has any suggestions, I would be most appreciative.
    thanks!
    Stacey Stanley

    This could be a problem w/ the Screen Mimic file because I have no problem inserting other flv files supplied to me by others.
    That would my guess too. Here are few other things to consider:
    1)  Does your FLV filename contain any spaces or special characters?  If so, rename it without spaces as these can cause problems.
    2)  Output Screen Mimic project to a QuickTime MOV file.  Then use Adobe Flash Encoder to convert the MOV to FLV.
    3)  When you tested your page, was it a live page on remote server?  Did you upload the page and all supporting files to server (Scripts folder, SWF, FLV...)?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics |  Print | Media Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • Problem importing Premier Pro CS4 files into CS5

    I have loaded Premier Pro CS5 onto a spanking new 64 bit machine.  When I import a CS4 project file into CS5, it asks me to locate the raw video files but nothing else.  All titles with graphics in them are without the graphics. The text is OK.  The graphics have disappeared.  How do I import a project so the titles are complete and don't have to be rebuilt?  .

    Can you please give your system specs?
    In particular, how many physical HDD you have as well as memory. OS, CPU etc.
    Also - what are the scratch disc settings in Premiere?
    Finally - what is the video type - SD? HD?
    Please give as many details as possible as it sounds like your system is going into overdrive.

  • Adding a .flv file into dreamweaver

    I'm wondering how I can put a .flv file into a web page. It
    is not a .swf. I'm working with Dreamweaver MX 2004.
    When I put my .flv video into the page, it refuses to accept
    it when I want to preview. Any suggestions? Source plugins required
    or something? Also, I'm working on a Mac.
    The .flv file is mine, not created in flash, but pulled back
    from daily motion.com where it was compressed by their servers and
    is an .flv file. Is this doable?

    Edmond4 wrote:
    > Actually, I've been looking, and I don't have the option
    of "insert Flash
    > video" in my version of Dreamweaver. Initially, there
    was some mention of a
    > plugin. I try and get that warning popup again to see
    what it says but I don't
    > get it now.
    >
    > If I do insert "Flash" then I put the .flv file in. It
    gives me the option to
    > "play" in the property inspector, but the file doesn't
    play, nor if I preview
    > in the browser. So I don't have the "Insert < flash
    video" option in my
    > version of DW.
    You need a Flash file to load the Flash Video file, they are
    not the
    same. See this
    http://www.jeroenwijering.com/?item=JW_FLV_Player
    Steve

  • How to insert a image file into oracle database

    hi all
    can anyone guide me how to insert a image file into oracle database now
    i have created table using
    create table imagestore(image blob);
    but when inserting i totally lost don't know what to do how to write query to insert image file

    Hi I don't have time to explain really, I did have to do this a while ago though so I will post a code snippet. This is using the commons file upload framework.
    Firstly you need a multi part form data (if you are using a web page). If you are not using a web page ignore this bit.
    out.println("<form name=\"imgFrm\" method=\"post\" enctype=\"multipart/form-data\" action=\"FileUploadServlet?thisPageAction=reloaded\" onSubmit=\"return submitForm();\"><input type=\"FILE\" name=\"imgSource\" size='60' class='smalltext' onKeyPress='return stopUserInput();' onKeyUp='stopUserInput();' onKeyDown='stopUserInput();' onMouseDown='noMouseDown(event);'>");
    out.println("   <input type='submit' name='submit' value='Submit' class='smalltext'>");
    out.println("</form>"); Import this once you have the jar file:
    import org.apache.commons.fileupload.*;Now a method I wrote to upload the file. I am not saying that this is correct, or its the best way to do this. I am just saying it works for me.
    private boolean uploadFile(HttpServletRequest request, HttpSession session) throws Exception {
            boolean result = true;
            String fileName = null;
            byte fileData[] = null;
            String fileUploadError = null;
            String imageType = "";
            String error = "";
            DiskFileUpload fb = new DiskFileUpload();
            List fileItems = fb.parseRequest(request);
            Iterator it = fileItems.iterator();
            while(it.hasNext()){
                FileItem fileItem = (FileItem)it.next();
                if (!fileItem.isFormField()) {
                    fileName = fileItem.getName();
                    fileData = fileItem.get();
                    // Get the imageType from the filename extension
                    if (fileName != null) {
                        int dotPos = fileName.indexOf('.');
                        if (dotPos >= 0 && dotPos != fileName.length()-1) {
                            imageType = fileName.substring(dotPos+1).toLowerCase();
                            if (imageType.equals("jpg")) {
                                imageType = "jpeg";
            String filePath = request.getParameter("FILE_PATH");
            session.setAttribute("filePath", filePath);
            session.setAttribute("fileData", fileData);
            session.setAttribute("fileName", fileName);
            session.setAttribute("imageType", imageType);
            return result;  
         } And now finally the method to actually write the file to the database:
    private int writeImageFile(byte[] fileData, String fileName, String imageType, String mode, Integer signatureIDIn, HttpServletRequest request) throws Exception {
            //If the previous code found a file that can be uploaded then
            //save it into the database via a pstmt
            String sql = "";
            UtilDBquery udbq = getUser(request).connectToDatabase();
            Connection con = null;
            int signatureID = 0;
            PreparedStatement pstmt = null;
            try {
                udbq.setUsePreparedStatements(true);
                con = udbq.getPooledConnection();
                con.setAutoCommit(false);
                if((!mode.equals("U")) || (mode.equals("U") && signatureIDIn == 0)) {
                    sql = "SELECT SEQ_SIGNATURE_ID.nextval FROM DUAL";
                    pstmt = con.prepareStatement(sql);
                    ResultSet rs = pstmt.executeQuery();
                    while(rs.next()) {
                       signatureID = rs.getInt(1);
                    if (fileName != null && imageType != null) {
                        sql = "INSERT INTO T_SIGNATURE (SIGNATURE_ID, SIGNATURE) values (?,?)";
                        InputStream is2 = new ByteArrayInputStream(fileData);
                        pstmt = con.prepareStatement(sql);
                        pstmt.setInt(1, signatureID);
                        pstmt.setBinaryStream(2, is2, (int)(fileData.length));
                        pstmt.executeUpdate();
                        pstmt.close();
                        con.commit();
                        con = null;
                if(mode.equals("U") && signatureIDIn != 0) {
                    signatureID = signatureIDIn.intValue();
                    if (fileName != null && imageType != null) {
                        sql = "UPDATE T_SIGNATURE SET SIGNATURE = ? WHERE SIGNATURE_ID = ?";
                        InputStream is2 = new ByteArrayInputStream(fileData);
                        pstmt = con.prepareStatement(sql);
                        pstmt.setBinaryStream(1, is2, (int)(fileData.length));
                        pstmt.setInt(2, signatureID);
                        pstmt.executeUpdate();
                        pstmt.close();
                        con.commit();
                        con = null;
            } catch (Exception e) {
                con = null;
                throw new Exception(e.toString());
            return signatureID;
       }

  • Is it possible to Load External SWF files into Flex Mobile projects?

    Hi Guys,
    I'm trying to load an external asset in this cse (a SWF file) into my flex project (Apple IOS IPAD), don't get any luck. Can any one suggest a solution ?

    In Apple's words, "No interpreted code may be downloaded or used in an Application except for code that is interpreted and run by Apple's Documented APIs and built-in interpreter(s)".
    Hence external swfs cannot be loaded in iOS.

  • Inserting flash .swf file into template

    I want to insert a flash file into the right sidebar to appear on all pages of the website.  I know I need to do this via the template.  I think I need to click in the insertion point, then copy the code (make sure the files are in the correct location).   I've done this before with galleries ect..  but not in DW and not from a template.  What's a little confusing is there are 3 templates.  The first is in it's own folder (design template), the other two (theme 01 design & theme 01 design from template) are in the root folder, but the theme 01 design one doesn't seem to be changeale.  Which template should I be working with?
    www.wranglergirl.net
    Thanks from a newbie!  Amy

    Are each of these 'templates' actually DW templates (i.e., are they named with a *.dwt extension)?  If so, then they must all be located within the Templates folder at the root level of the site - it doesn't sound like that is the case.  Also, why do you need three templates?  Finally, which version of DW are you using?  It's likely that you will have to make any links to your Flash element with ROOT relative links to be successful.

  • Can I insert the image file into PDF file  in Adobe X Standard ?

    can I insert the image file into PDF file in Adobe X Standard ?

    http://matt.coneybeare.me/how-to-make-an-html-signature-in-apple-mail-for-maveri cks-os-x-10-dot-9/

  • How to insert a JPG file into a Table from a Form?

    I create a Schema and a Table as follows:
    SQL> create user myphoto identified by myphoto;
    User created.
    SQL> grant connect,resource to myphoto;
    Grant succeeded.
    SQL> create table myphoto.photo_table
    2 (photo_id varchar2(10) primary key,
    3 photo_content blob);
    Table created.
    I would like to build an Oracle Form with a Text Item to enter the full path and filename to be uploaded and inserted into the photo_table; and a Push Button to insert the jpg file into the photo_table.
    Can any one give me details on how this could be done?

    Hi,
    have a look at webutil on otn.oracle.com/products/forms ---> Webutil
    Webutil has the capability to load files into the database.
    Frank

  • How to insert a gif file into a table?

    Hi,
    I need to insert a gif file into a table. Can anyone tell me where I can find the information on how to create this kind of table, how to insert a gif file into a table and how to select?
    Thanks,
    Helen

    Hi Helen,
    You could read about that in the documentation which is available online.
    For a starter: BLOB. And I bet there are many examples to be found on the web.
    Good luck. :)
    Regards,
    Guido

  • How can I insert a completed file into another PDF file I am developing?

    How can I insert a completed file into another PDF file I am developing?

    Please refer : http://acrobatusers.com/tutorials/how-to-insert-a-pdf-into-a-pdf

  • HT3529 How do I insert a pdf file into my message?

    How do I insert a pdf file into my message? please help!

    thank you James! I suspected that this could be the solution, but i am new to iPads and it is a pain to find a file on iPad in order to do this operation, in windows there is windows explorer and i cannot see anything like that on iPad.. any hints would be appreciated!

  • Can you open InDesign CS files into CS5?

    Hi all,
    My former company wishes to upgrade their ooooooooooold software to the latest version:) They currently have InDesign CS and want to make the leap to CS5. The question is...will it be possible to open their current CS files into CS5 once they make the switch? This is really important of course.
    Thank you very much in advance for your help:)
    Christine

    Did you try https://www.adobe.com/cfusion/tdrc/index.cfm?ref=sup&product=indesign?
    Anyhow, if it fails, it should be the latter, or something else busted; Creative Suite Trial Versions says:
    CS5.5 trials
    Creative Suite 5.5 product trials will be available for download soon.  Be notified when they are available. 
    Back to top
    CS5 trials for suites
    Trials of CS5 products are still available for download, below.

  • How can insert a MSWORD file into jdevloper form?

    Dear forums
    i am a user of jdevloper
    and working on client\swing.
    i want to insert a microsoft file into my form
    but i have no idea abt it.
    so plz help me....
    thanks

    You might want to read a little bit about Jakarta's POI and see if it can help you.
    http://jakarta.apache.org/poi/

  • How to convert a .flv file into a Youtube sharing .mov file via Compressor?

    I'm trying to convert a .flv file into a Youtube sharing .mov file via Compressor but every time I submit it, it fails due to error code -50. It worked two hours ago (albeit, very slowly) with another .flv file but now it refuses to even try. Please help!

    Sorry you're having problems, but it's not surprising. The error code is invalid media.
    The easy way is to forget about Compressor and upload the Flash file directly to You Tube with their uploader.
    You'll also save a generation of compression loss.
    Good luck.
    Russ

Maybe you are looking for

  • Is there any way to show vi's called by reference in the hierarchy window

    I've inherited some code and in order to save memory and system resources at run time it calls several vi's by reference rather than including them as sub vi's. Howver I would like to use the hierarchy window to get a more general overview of how the

  • Move BP from CRM 7.0 to ECC 6

    Hello Gurus,   We have a project to move business partners form CRM 7 to ECC 6 EhP4. We need to migrate sales area,  customer groups as well as EEWB custom fields. To map CRM EEWB fields, the table KNA1 is appended however the field names are differe

  • Satellite C640D 64-Bit Windows 7 Windows Error Recovery

    Model PSC36L-003003 SN   XXXXXXXXX Boot is set to hard drive first and CDRW second. Turn on the computer 8 seconds later it goes to Windows Error Recovery. When I choose Launch Startup repair, it goes straight to Windows Boot manager. See #6. When I

  • Buying SIM-Free Iphone4 in the UK ?

    Good evening, I'm visiting london soon i hope , and planning to get Iphone4 , I read somewhere that i can get a SIM-Free IPhone4 from the apple online store .. can I buy it (unlocked) from the Apple local stores in London(physical stores), if yes , w

  • After software update for Lexmark printer, cannot print document as a file is missing. My iMac runs with Snow Leopard.

    I have a Lexmark 3500 - 4500 series printer connected to my iMac via USB (as my iMac won't do the printing wirelessly. My iMac runs with Mac OS X, Snow Leopard, Version 10.6.8. A few days ago, there were several software updates that I have installed