Movie with flv only runs locally

Greetings-
I built a Flash movie using the FLVPlayback component and
attached a .flv movie in its source. As far as I know the movie
file is not embedded in the timeline, it is attached as a separate
file for reference to the .swf.
I published the movie and can play the resulting movie, as
expected, locally. However, when I FTP the files up to my server
the Flash player object appears to load (on IE I get the "Click
here to activate this control" message) but nothing happens. I mean
nothing. No movie, no error messages, no "please wait, loading..."
nothing. I checked the local file security on the server in
question and everything appears in order, even the MIME types are
set correctly (as a test I put another .swf file in the same
directory on the server, called it directly and it loaded fine; my
movie in question simply does not play). This makes me wonder what
I'm doing wrong in the publishing part of my Flash process. Why
would it play OK locally but not on my server? And why would
another .swf file play from the same directory and not my movie
file? Again, I can not find any errors to speak of, I viewed the
source, tried hardcoding the paths to the movie and the swf for
testing and still nothing. Did I miss a chapter in publishing?
Thanks in advance,
Rich

OK, this is getting crazy.... so I started over, again. I
imported the video into my Flash movie, Published it and it ran as
expected locally. Since my website is using ModelGlue framework for
ColdFusion, I decided to try and eliminate as much doubt as
possible so I put my files (html, swf (Flash movie and skin) and
F4V) onto the root of my site:
http://www.cfsnap.com/cervicalTractionDevices.html
(notice I'm not even using a .CFM page, straight up html)
Now the movie seems to appear but the status bar has been
running for about 10 mins, as if it can't find the actual F4V movie
file.
So I tried to access the swf file directly and get the same
result, the flash movie appears but the movie (F4V) does not.
So as to rule out my own insanity I uploaded and tried:
http://www.cfsnap.com/chart-and-graph.swf
which works. Except that chart-and-graph.swf was built in
CS3, my movie files were built in CS4.
For grins I'm upgrading my Flash player right now. The
installer is forcing me to close my browser so I'll post again as
to the success or failure of this action.
Thanks,
Rich

Similar Messages

  • Hangs with Master only running

    Have been 4.7.25 with replication capabilities. Starting Master only running and no slaves hangs after a while.
    The db put() hangs.
    On attaching debugger the thread is waiting on mutex lock.
    Tried to see who has locked the mutex and another thread is locked the mutes and the trace is
    #0 0x00007ff7415c0f4b in read () from /lib/libpthread.so.0
    #1 0x00007ff6bd0db7dc in __repmgr_select_loop (env=0x7ff6b84611f0) at ../dist/../repmgr/repmgr_posix.c:666
    #2 0x00007ff6bd0dbea5 in __repmgr_select_thread (args=0x7ff6b84611f0) at ../dist/../repmgr/repmgr_sel.c:56
    #3 0x00007ff7415ba3ea in start_thread () from /lib/libpthread.so.0
    #4 0x00007ff741123cbd in clone () from /lib/libc.so.6
    #5 0x0000000000000000 in ?? ()
    (gdb) up
    #1 0x00007ff6bd0db7dc in __repmgr_select_loop (env=0x7ff6b84611f0) at ../dist/../repmgr/repmgr_posix.c:666
    666                    if (read(db_rep->read_pipe, buf, sizeof(buf)) <= 0) {
    Looks like when the queue is full we try to wake up this thread from __repmgr_wake_main_thread().
    This function is sending one byte only in pipe. and the read is trying to read 10 bytes as buf is defined as buf[0].
    Is this the cause of the his hang up ??
    Can somebody at Oracle check this out.
    Thanks

    Thanks for taking time to look into this.
    We are running on linux Redhat and Ubuntu servers.
    What we noticed after adding fprintf statements to function that is writing to pipe and the function reading from pipe, we noticed that in the beginning that the write and read works properly.
    But after while the select() call triggers a read ready on the reap_pipe handle (spurious one). This leads to read hanging and the log also indicates that no write has happened earlier for the read to succeed.
    I patched it up in a different way and this SEEMS to solve this issue. I would like you to verify if this has any ramifications.
    I am using the db-4.7.25.NC .tar.gz and these line numbers below correspond to this download image from your site.
    1. File : repmgr/repmgr_posix.c : original line number 327
    Set the read pipe to non blocking mode
    db_rep->read_pipe = file_desc[0];
    db_rep->write_pipe = file_desc[1];
    /* PATCH: to not block on read upon spurious select() */
    __repmgr_set_nonblocking(db_rep->read_pipe);
    2. Same File : repmgr/repmgr_posix.c : original line number 767
    Since we made it non-blocking we need handle this condition appropriately.
    if (FD_ISSET((u_int)db_rep->read_pipe, &reads)) {
    * PATCH : this handle has been made non-blocking now
    * to avoid getting blocked on read due to spurious select()
    * wake-ups; this was causing the mutex to be locked
    * and no db operations was possible after that
    if (read(db_rep->read_pipe, buf, sizeof(buf)) <= 0) {
    switch (ret = errno) {
    case EINTR:
    case EWOULDBLOCK:
    if (db_rep->finished) {
    ret = 0;
    goto out;
    } else {
    break; /* simply retry later*/
    default:
    ret = errno;
    goto out;
    } else if (db_rep->finished) {
    ret = 0;
    goto out;
    The above two changes made this problem go away and we do not see the master hanging any more.
    Could you please verify if this is logical and does not cause any issue with the way the system is supposed to work.
    Thanks
    Raj

  • Problem with flex3/coldfusion8 running locally

    Hello all:
    i am a novice flex3 user, and i am having trouble running
    flex with cf8 (am also a novice cf8 user).
    i have teied to run several example cf3/cf8 apps (one from
    adobe website, one from lynda,com) with code pre-written so i am
    pretty sure the "core" code is not the issue (??) but i keep
    getting error mesages that appear to be java-related. I am running
    the develop (free) version of cf8 using the web-based administrator
    to configure, etc ... i am running it from my local computer
    (localhost:8100); i run windows xpsp3. i am running these examples
    on two computers and getting the same error message, provided below
    ... any help or suggestions would be appreiated.
    Thank you -- Bob
    ERROR MESSAGE:
    404
    /myProject/myProject.html
    java.io.FileNotFoundException: /myProject/myProject.html
    at
    jrun.servlet.file.FileServlet.service(FileServlet.java:349)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:284)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at
    jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

    i think error 404 means the file doesn't exist... assumably
    the myProject.html file in this case... go to your webroot and
    check if that file is where it says it should be.
    not sure if this is any help... i am busy sucking at trying
    to get flex and cf to speak via livecycle and find i can't run any
    of the online examples i find... so, if i am wrong about this you
    know why :)

  • FLV files run locally but not on website

    My flash video plays back when I do a preview, but after uploading the FLV files and the new page to the web site all I have are blank squares, not videos. What's up?

    Your welcome

  • Movies with iTunes Extras show only HTML code and not title screen when double clicked.

    I only noticed this after some iTunes updates.  Any movies that have iTunes Extras donot show the "Title Screen" when double clicked.  They only show HTML script.  I can still watch the movies, and can access the extras by going to the folder they are in, but thats a pain.  I have purchased other movies with extras since encountering the problem and have the same issue.  I run windows Vista on a 32-bit system. I have all updated drivers.  I have searched the web for an answer but couldnt find anything.  It is prob something insanely easy.  Any help would be appriciated.
    Example of text that appears when double clicking:
    <!doctype html>
    <html>
    <head>
         <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
         <meta name="hdtv-fullscreen" content="true" />     
         <meta name="hdtv-cursor-off" content="true" />          
         <title>Paul (Unrated) [2011]</title>          
         <!--      TuneKit      -->   
      <script type="text/javascript" src="TuneKit/src/TuneKit.js" charset="utf-8"></script>          
         <!--      Styles      -->     
         <link rel="stylesheet" href="css/shared.css" type="text/css" media="screen" />     
         <link rel="stylesheet" href="css/home.css" type="text/css" media="screen" />     
         <link rel="stylesheet" href="css/chapters.css" type="text/css" media="screen" />     
         <link rel="stylesheet" href="css/features.css" type="text/css" media="screen" />     
         <link rel="stylesheet" href="css/more.css" type="text/css" media="screen" />          
         <!--      Controllers      -->     
         <script type="text/javascript" src="controllers/data.js" charset="utf-8"></script>     
         <script type="text/javascript" src="controllers/home.js" charset="utf-8"></script>     
         <script type="text/javascript" src="controllers/chapters.js" charset="utf-8"></script>     
         <script type="text/javascript" src="controllers/features.js" charset="utf-8"></script>     
         <script type="text/javascript" src="controllers/more.js" charset="utf-8"></script>
    </head>
    <body>
         <div id="bleed">          
              <div id="navigation">             
                   <img id="pic0" class="picBLANK" src="images/home/Paul_mm_background_01.jpg"/>            
              <img id="pic1" class="picBLANK" src="images/home/Paul_mm_background_01.jpg"/>             
                   <img id="pic2" class="picBLANK" src="images/home/Paul_mm_background_02.jpg"/>            
              <img id="pic3" class="picBLANK" src="images/home/Paul_mm_background_03.jpg" />            
              <img id="pic4" class="picBLANK" src="images/home/Paul_mm_background_04.jpg" />            
              <img id="pic5" class="picBLANK" src="images/home/Paul_mm_background_05.jpg" />            
              <img id="pic6" class="picBLANK" src="images/home/Paul_mm_background_06.jpg" />            
              <img id="pic7" class="picBLANK" src="images/home/Paul_mm_background_07.jpg" />            
              <img id="pic8" class="picBLANK" src="images/home/Paul_mm_background_08.jpg" />            
              <img id="pic9" class="picBLANK" src="images/home/Paul_mm_background_09.jpg" />            
              <img id="pic10" class="picBLANK" src="images/home/Paul_mm_background_01.jpg" />             
                   <div id="vid" class="vid_bg">               
                        </div>          
              </div>     
         </div>
    </body>
    </html>

    The fix from this other post worked for me.
    https://discussions.apple.com/message/17691332#17691332
    FIX:
    Go into "Get Info" and set the Album name to the name of the movie for both the movie and the "Extra".  This will fix it.

  • Strange issue with some laptops only getting local...

    Hi everyone, this is a long post so appreciate you reading it.
    The problems not my house (im a BT infinity user) but my Dads,
    Long story short, he has 4 laptops which have always connected to the homehub and internet fine. Its an original V.1 homehub I believe.
    After some local exchange work which BT informed him about, once it came back online he can only connect one laptop to the internet
    All 4 connect to the home hub, but 3 only have local access and cant see the internet. The home hub is definitely connecting to the internet, no issues and one laptop still works. Cant find anything unusual on the homehub.
    I have tried everything, resetting back to factory, removing/changing security, changing SSID, removing all traces from the laptops that don’t work of the connection then resetting the homehub again, even deleting all devices out of the homehub and letting them reconnect for the first time but nothing works. Whatever I change though, the original laptop always connects to the internet.
    Even connecting one of the laptops via Ethernet doesnt work (although I didnt personally do this and am relying on my dad confirming this, so need to recheck)
    I am bringing down an old home hub I have and I pretty sure that will fix it, as I took one of his laptops home and it connects to my homehub fine, but im desperate to know why this is happening. I cant stand not getting to the bottom of something like this.
    Interestingly the only laptop that works is a Vista machine, the rest are W7. I even tried doing a system restore to a few weeks previous in case Microsoft had patched something that broke them, but still no joy.
    Could it be a firmware update on the Home hub or a Windows 7 / wireless network card issue ?
    Any suggestions ?
    Thanks

    mr_cy wrote:
    Thanks for the suggestions.
    interestingly the one issue the home hub did report was that it couldnt find a BT DNS server.  it didnt seem to cause any issues though as the one laptop that does work could browse the internet no issues.
    Also did ipconfig and the other laptops were all assigned a dhcp address (if I remember correctly both IP4 and IP6 addresses), but no dns server.
    It just doesnt make any sense !!
    Try manually assigning the DNS Server on each of the Laptops --- usually the same as the Gateway IP address.
    Check this with the Laptop that can connect to the Internet.
    Also check the Network settings.
    Is the Network setup correct on those Windows 7 laptops are the settings set for "Public" or "Private" networks?
    Edit
    I see it is the older Homehub version, IPV6 (inbuilt on Windows 7) could be causing problems uncheck that option from the Adaptor(s) settings if you can.
    As well as ipconfig /all try the following.
    Route print
    route print |findstr /C:"Default"
    to check that there is an assigned default gateway
    "I have this awful feeling someone is watching every move I make (one of my pet hates is router location tagging)." Marvin (A paranoid Android)

  • I just installed Firefox on a new HP 600-1120 with Windows 7 and it is only running in "safe" mode. Why? How do I get it to run in "regular" mode? How does "safe" mode differ?

    I just installed Firefox on a new HP 600-1120 with Windows 7 and it is only running in "safe" mode. Why? How do I get it to run in "regular" mode? How does "safe" mode differ?

    > So now my question is, how can i fix this problem?
    Use the Toshiba recovery disk or the Toshiba HDD recovery option.
    If you dont have the Toshiba Recovery disk try the HDD recovery:
    http://aps2.toshiba-tro.de/kb0/HTD1303440001R01.htm
    This works only if the recovery image files from Toshiba are still on the HDD:
    If you installed the system using another disk as Toshiba recovery disk, this recovery option will not work.

  • Can i run microsoft on my macbook pro I'm wanting to buy a quoting software product called solo assist but it only runs on microsoft. all our office and business is set up with apple.

    Hi i am wanting to purchace some quoting software for my business the program i am looking at is called SoloAssist and only runs on microsoft software, We changed over all our office and foremen to apple about a year ago and love the product. The main office computer is a macbook pro and has no CD drive. I have been told that i may be able to use a parrarlell program to run microsoft.
    i am a builder by trade and not really up to date with this sort of detail could anyone please shed some light on this for me or let me know what i will need or if its even possible.
    Thanks

    Yes you can install Miscosoft Windows on a mac.  Read this: http://support.apple.com/kb/ht1461.  Parallels is also an option: http://www.parallels.com/products/desktop/

  • Any Problems using SSL with Safari and the move with Internet explorer to require only TLS encryption.

    Any Problems using SSL with Safari and the move with Internet explorer to require only TLS encryption.

    Hi .
    Apple no longer supports Safari for Windows if that's what you are asking >  Apple apparently kills Windows PC support in Safari 6.0
    Microsoft has not written IE for Safari for many years.

  • Print only the external movie with its current applied settings?

    Hi,
    I'm making a flash application for a paint company to test various paints on different objects. But I got a little problem.
    Which is here...
    Here is my code....
    /* Print Button Function Here.....*/
    print_btn.addEventListener(MouseEvent.CLICK,printPage);
    function printPage(evt:MouseEvent) {
        var printJob:PrintJob = new PrintJob();
        if (printJob.start()) {
            if (uiLoader.source.width>printJob.pageWidth) {
                uiLoader.source.width=printJob.pageWidth;
                uiLoader.source.scaleY=uiLoader.source.scaleX;
            printJob.addPage(Sprite(uiLoader.source));  
            printJob.send();
    Actually I have a movie clip which contains a Print Button and a uiloader.
    uiloader loads differnt external movies.
    I applied a code to Print button to print those movies.
    This code is working good but problem is, it print the both (main_movie & external_movie) with its actual colors not with the current applied colors.
    I want to print only External movie with its current color settings (applied by user) not actual default colors.
    So can any one tell me how can i do this?
    Thank for help....

    use:
    print_btn.addEventListener(MouseEvent.CLICK,printPage);
    function printPage(evt:MouseEvent) {
        var printJob:PrintJob = new PrintJob();
        if (printJob.start()) {
            if (uiLoader.width>printJob.pageWidth) {
                uiLoader.width=printJob.pageWidth;
                uiLoader.scaleY=uiLoader.scaleX;
            printJob.addPage(uiLoader);  
            printJob.send();

  • Export a Movie with with the chart only - no background

    I need to integrate charts into a training film I am doing and I am having a problem. I need to export the chart to QT as the chart only so I can import it into Final Cut and use it as an overlay on top of other footage.
    I understand transparency and "No background" come into play here be no matter how I export the chart/QT move has a background.
    Is this even possible...how do I do this?
    Thanks a lot.
    M

    1. You MUST set the background of each slide to NONE. It will look black I think (possibly white) but make absolutely sure it's set to NONE for every slide.
    2. You must check the include transparency function in the QT export window
    3. You MUST MUST MUST choose either PNG or Animation as the QT codec, and then you MUST choose Millions+ (not just Millions) as the color in the setting for that codec.
    That will get you a QT movie with included alpha channel and no background.
    If you need more details on how to get to those screens just post back.

  • On my mac I have both Quicktime X and Quicktime 7 pro. Both applications seem to be crashing quite often lately. This happens when playing all files types. I notice it more with .flv file. It usually happens when i grab the time slider bar and try to move

    On my mac I have both Quicktime X and Quicktime 7 pro. Both applications seem to be crashing quite often lately. This happens when playing all files types. I notice it more with .flv file. It usually happens when i grab the time slider bar and try to move it. The apps will freeze and I have to "force quit" to get them to close. Sometimes putting the computer to sleep and waking it up helps. Is there a way to remedy this?

    Oops, I needed to update my profile. I have snow leopard now

  • I am running Elements 11 on Windows 8.  When I use the healing tool, the entire image moves with the cursor.  How do I fix???  Thanks!

    I am running Elements 11 on Windows 8.  When I use the healing tool, the entire image moves with the cursor.  How do I fix???  Thanks!

    With the Healing Brush Tool selected, in the Tool Options, click on Clone Overlay and check Clipped.

  • Running with Smartband only

    Hi everyone,
    I know others have posted about this, but I can't find an answer to my specific problem...
    I went running today, with my Smartband only, leaving my phone at home. When I got back LifeLog showed my run, down to the closest minute, but then when I went back on an hour or so later the run had disappeared, it's still showing my steps but the running value is down to 0. Does anyone know why this may happen?
    Thank you in advance!

    I'm still struggling with this, tried resetting it etc and it's still the same. Did a 20 minute jog today, at 12pm I took a screenshot and the running had tracked, by 12.23pm it has disappeared. I'd not disconnected my Smartband or anything. My partner still has the same problem with his smartband and phone. I've noticed that my Smartband will only connect with Bluetooth, when I turn it off and try to connect with NFC only my phone turns Bluetooth on automatically. Could that be affecting it? Thank you all for your help once more.

  • My youtube videos are only running for a few seconds, then stop.  Is this an issue with my macbook?

    My youtube videos are only running for a few seconds, then stop.  Is this an issue with my macbook?

    Go step by step and test.
    1. System Preferences > Other/ Flash Player > Advanced >  Delete  All
         Press the "Delete All" button
         Install Adobe Flash Player.
        http://get.adobe.com/flashplayer/
        http://get.adobe.com/flashplayer/?PID=7105813 
        Follow the prompts.
        Quit Safari.
        Restart computer. Relaunch Safari.
    2.  Enable Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow  plug-ins"
        Enable it.
        Press " Manage Website Settings" button for more options.
    3. Check  whether you are currently  in  YouTube HTML 5 trial.
         http://www.youtube.com/html5
        At the bottom  left of the page  uncheck the box beside
       "You are currently in the HTML5 trial".
    4. Reset Safari.
        Click Safari in the menu bar.
        From the drop down select "Reset Safari".
        Click "Reset".
    5. Turn off Extensions, if any.
        Safari > Preferences > Extensions
         Now try YouTube.
    Best.

Maybe you are looking for