FLVplayback Not Loading FLVs

I'm using a remote hosting service for my FLV storage (
http://www.blip.tv). When I load
FLVs remotely into my player, they just seem to load infinitely
without play control. All except for 1. There is 1 video that
actually loads and plays just fine, which indicates to me it might
not be a problem with the host.
Below are testing-purpose links. (This is a php script which
passes the flv link to my player). The first one will work and load
correctly, the second link loads forever.
http://behindlacrosse.com/videos.php?video=http://blip.tv/file/get/Treschonde-BehindLacros seEp3249.flv
http://behindlacrosse.com/videos.php?video=http://blip.tv/file/get/Treschonde-BLSummer2006 2549.flv
I've tried this with several different flv's, and only that
first one above ever loads. I'm not doing anything complex with my
code, I use the following actionscript:
_root.playback.play(vidurl);
I've traced the vidurl variable to ensure that the urls are
correct. So I'm really stumped on this one.
One more interesting note.. in Firefox, on that website
linked above, if you click on any of the other videos in the list,
they won't load. It's like the player locked up. But in Internet
Explorer, you can still click other videos to bypass the currently
loading one.
Any help or suggestions at all? I appreciate anything.

This is the way I work with videos.
Each video is in a differente frame.
Name you FLV playback like movie1, movie2, etc.
You may have a frontpage that links to each video or place a
button on the keyframe where you want specific video to play. For
example, on movie1, place a button. On movie2, place another
button.
The code below is used assuming you customized your video
controller.
// in a MovieClip named Video Controller insert a play, pause
and stop buttons and a slider//
stop();
import mx.video.*;
movi1.contentPath = "EditedFlash/Text_Edited.flv";
movi1.playButton = VideoControl.my_playButton;
movi1.pauseButton = VideoControl.my_pauseButton;
movi1.stopButton = VideoControl.my_stopButton;
movi1.seekBar=VideoControl.my_seekButton;
var cuePt:Object = new Object ();
cuePt.time =0.5;// title - no voice//
cuePt.name = "Pt1";
cuePt.type = "actionscript";
movi1.addASCuePoint(cuePt);
movi1.addASCuePoint(3.2, "Pt2");
var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObject:Object): Void{
if(eventObject.info.name=="Pt1"){
_root.Texto.gotoAndStop("uno");
if(eventObject.info.name=="Pt2"){
_root.Texto.gotoAndStop("dos");
movi1.addEventListener("cuePoint", listenerObject);
//second cue point//
movi1.addEventListener("cuePoint", listenerObject);
listenerObject.complete = function(eventObject:Object):Void {
_root.Texto.gotoAndStop("uno");
movi1.addEventListener("complete", listenerObject);
Hope this helps.

Similar Messages

  • More FMS & Flash CS3 not  loading FLV

    I consider myself an intelligent fellow, but getting Flash
    CS3 to stream vis FMS is killing me. I've read the posts here where
    people are describing similar situations. I've read several
    websites that show kinda similar methods of getting this done, but
    none are working! The docs on FMS & CS3 are like in an infinite
    loop "see AS2.0/3.0 documentation on how to stream videos" &
    when you get there "See FMS documentation on how to stream
    videos"!!
    I've read this & did it all, no dice:
    http://www.mcalister.cc/ddd/flv/index.html
    Read this which linked me to above, no dice:
    http://livedocs.adobe.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveD ocs_Parts&file=00003495.html
    Here is my config:
    SERVER running FMS2, Windows Server 2003, IIS6, offsite, but
    am able to RDP in.
    File structure:
    C:\Program Files\Macromedia\Flash Media Server
    2\applications\ForRentFlash\streams\small\Cosmo_Small.flv
    C:\Program Files\Macromedia\Flash Media Server
    2\applications\ForRentFlash\main.asc (sole content being:
    load(components.asc))
    Where: ForRentFlash = appName
    small = instanceName
    Flash CS3 development locally & testing movie produces
    WHITE SCREEN.
    Component Inspector for FLVPlayBack AS3.0 dropped on stage:
    Source Content Path:
    rtmp://1.2.3.4/ForRentFlash/small/Cosmo_Small.flv (of course with
    correct IP)
    No matter how I go about this, I end up with: FAILED TO LOAD
    rtmp://1.2.3.4/ForRentFlash/small/Cosmo_Small.flv.
    Port 1935 was opened on the firewall of the remote
    server.

    Try placing your flv files in a _definst_ directory.....
    Here is how mine are set up:
    C:\Program Files\Macromedia\Flash Media Server
    2\applications\aniridia\streams\_definst_\V032v.flv
    I don't use any .asc files, but I'm fairly certain that they
    would be in the root of the " aniridia " directory (which is the
    application), rather than in the " aniridia\streams\_definst_ "
    directory.
    My videos would not stream until I put them in the _definst_
    directory.
    I use an xml playlist with my flv player to call my videos.
    My stream syntax looks like this:
    rtmp://mydomain.com/aniridia
    Don't reference the flv file name.
    Good luck!

  • Swf does not load flv on server

    This has been asked before but it doesn't appear to
    have been answered... On my local workstations the swf loads and
    runs the flv fine. They are both in the same directory. When I
    upload the pair to a server (windows 2003) the swf no longer loads
    the flv file. I've tried multiple workstations and two servers with
    the same result. No matter where I put the swf/flv pair and no
    matter how I try to load the swf (direct URL, in an HTML page by
    itself or in the web page) the result is the same....
    When I imbed the video in the swf it runs fine, so, the swf
    runs okay it is specifically the loading and running of the flv
    file by the swf file on the server. I don't think it's a network
    issue because I've tested my workstations across the network and it
    works fine. It is specifically when the swf tries to load a flv on
    a server. I don't get an error message, just a blank swf holder.
    It's not the flash code because I've tried multiple playback
    components and they all give me the same resutl. Again, it appears
    to be specifically related to the swf loading the flv on the
    server.
    It appears to be something that has happened in the last few
    months (maybe I missed an update/) because I know it worked when I
    first uploaded the site. It appears to have stopped working in the
    last six weeks. I don't check my site on a daily basis but I last
    updated my site about the end of January and it was working then...
    I'm using studio 8...
    THANKS...

    quote:
    Originally posted by:
    jcasanova
    Is the path
    http://www.yoursite.yadayada/yadayada.flv
    right?
    Are you referring to the url in the object on the html page?
    Is that supposed to be the swf?
    <param name="movie" value="
    http://www.yoursite.yadayada/yadayada.swf"
    />
    tyroners,
    If you have found a solution, please post it! I have been
    working on this all day with no luck. Runs fine on localhost, but
    on my WIN2003 server, it just shows the blank swf. I did read that
    you also need to upload the skin swf file to the same directory if
    you are using one.
    I will post too when I fugure this one out
    Thanks
    G

  • FLV will not load on macintosh

    thanks in advance for any help.
    i'm relatively new to flash but have executed a simple site
    for a demo reel with several progressive downloading .flv's. i
    figured out everything well enough -- actionscript 3 for
    navigation, etc. -- with the exception of one maddening problem:
    all works beautifully on PC platform and all browsers. on
    macintosh, on both FIREFOX and SAFARI, the SWF loads, but the FLV
    files will not load. users see red adobe "flv" icon instead of the
    FLVPLAYER.
    this briefly describes the site:
    HTML loader page. link loads SWF and goes to 1st frame, which
    is static. buttons in SWF go to other frames that hold FLVPLAYERs
    with content paths to specific FLV files.
    all is being served from a linux box, and, again, all is
    golden for PC users across browsers. on the MAC -- no video.
    i've tried absolute links to the SWF in the HTML. i've tried
    using dreamweaver to embed the SWF rather than use the
    adobe-generated HTML. i've tried monkeying with the .js code, but i
    can't crack this this behavior and now i'm over my head . . . .
    none of this makes any sense to me, because it seems that if
    the SWF loads, all should be good at that point. isn't that the
    idea of FLASH? it's a tidy cross platform wrapper for your
    interactions, animation and media?
    is this a known problem? am i missing something basic? is
    there any help out there?

    This forum is for the Shockwave Player - the plugin for running Adobe Director files in a browser. You need a forum for the Flash Player - the Shockwave Flash plugin. Blame Macromedia for confusing the name space of the 2 separate and distinct plugins

  • Externally loaded FLV

    In my SWF fie, I have an externally loaded FLV file.
    I now want to add another FLV that will load and play
    automatically when the first one is finished.
    I actually want the SWF to jump to a new scene when the first
    movie is done.
    How can I do that/ what the actionscript?
    Steven

    Hey Steven,
    I am not very sure but just giving a shot answering it...
    You can use FLVPlayback.complete event to detect the
    comepletion of first flv and set the path of other flv on complete.
    Something like this:
    import mx.video.*;
    my_FLVPlybk.contentPath = "
    http://www.helpexamples.com/flash/video/clouds.flv";
    var listenerObject:Object = new Object();
    // listen for complete event; play new FLV
    listenerObject.complete = function(eventObject:Object):Void {
    if (my_FLVPlybk.contentPath == "
    http://www.helpexamples.com/flash/video/clouds.flv")
    my_FLVPlybk.play("
    http://www.helpexamples.com/flash/video/water.flv");
    my_FLVPlybk.addEventListener("complete", listenerObject);
    Hope that works...

  • Load flv file

    How to load a flv from 10 second to 20 second ?

    BruceMCE wrote:
    > I have 3 flv files that I would like to load onto the
    stage via corresponding
    > buttons. I put one of the flv files on the stage and
    named the Instance
    > "player" and assigned the following action script to a
    button:
    > on (release) {loadMovie(player.nonstoprockplayer.swf);
    > }
    The action is incorrect to start with, so is the entire
    arrangement.
    If you want to load SWF, you need to load it in level or
    movie clip holder
    not in FLV file. It's like trying to load something in a GIF
    or JPG file
    on flash's timeline. Just does not work like that. Level or
    holder MC only.
    Secondly, if you load FLV you don't load them in holder movie
    clip but into
    a FLVplayback components and not with loadMovie action.
    Check for FLV Playback, under the Components section in your
    help files.
    You will find action samples on how to set it up.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Dreamweaver embedded flash content will not load in IE7

    My company standard is IE7
    I'm charged with developing flv that will auto play on PC from a removable thumb drive.
    in addition it should be able to launch a url.
    I'm using CS4 Flash and Dreamweaver
    developing on a Mac.
    I've used action script 3 to program buttons that start, stop and launch url
    I've worked everything out on a Mac.it works fine in Mac environment.
    I've gotten swf files to autoplay on PC
    the PROBLEM?
    when I try load the html web page on the PC with IE7 the flash content (either a swf or flv embedded using Dreamweaver) does not load.
    IF I leave the IE specific html in the code IE7 returns a message that flash player needs to update. - IT has installed the latest version of flash player.
    if I extract the sniffer/alternative code the flash content does not load there is no message
    If the swf file auto loads and plays then Why is that a problem?
    action script -  to launch url execution launches as a security warning and the trusted settings window
    not very seamless eh?
    so the alternative is to play the flash content embedded in html and create launch url button in html . . . but ofcourse flash content won't load in IE7.
    I've not been able to test the code on any other version of IE
    I hope this is enough information to help if not let me know what you need to know . . .
    thanks in advance for any time you all spend on this.
    M

    So right now you have a SWF file that plays and FLV file and it's not loading in IE7.  Is the testing server that you are using NOT on your local machine?  The reason I ask this is because IE will typically block content if it is hosted on the local machine and treat it as a security risk, prompting the message you refer to.
    Also would it be possible for us to see the code you are using for the plugin?  Most users here will be able to help troubleshoot any issues with the HTML code if we can see it, however, there is a possibility that the fix may be in Flash, in which case you should cross-post this in the Flash forum as well for assistance just in case.

  • Flash content will not load in IE7

    My company standard is IE7
    I'm charged with developing flv that will auto play on PC from a removable thumb drive.
    in addition it should be able to launch a url.
    I'm using CS4 Flash and Dreamweaver
    developing on a Mac.
    I've used action script 3 to program buttons that start, stop and launch url
    I've worked everything out on a Mac.it works fine in Mac environment.
    I've gotten swf files to autoplay on PC
    the PROBLEM?
    when I try load the html web page on the PC with IE7 the flash content (either a swf or flv embedded using Dreamweaver) does not load.
    IF I leave the IE specific html in the code IE7 returns a message that flash player needs to update. - IT has installed the latest version of flash player.
    if I extract the sniffer/alternative code the flash content does not load there is no message
    If the swf file auto loads and plays then Why is that a problem?
    action script -  to launch url execution launches as a security warning and the trusted settings window
    not very seamless eh?
    so the alternative is to play the flash content embedded in html and create launch url button in html . . . but ofcourse flash content won't load in IE7.
    I've not been able to test the code on any other version of IE
    I hope this is enough information to help if not let me know what you need to know . . .
    thanks in advance for any time you all spend on this.
    M
    To the moderator I apologize for an earlier "test" post I was unaware nay ignorant of a test forum . . .

    I am having the very same problem and have done exactly the same... generated my html through flash professional CS5.  It works great in IE8 but is just a blank page in IE7.  You did not post the solution, did you find one? 
    My flash generated code is here http://www.asessippi.com/test/calendar.html will all of the supporting files in the same folder, and nothing else in there. 
    Any suggestions?

  • "Movie not loaded..." swf error on html

    Hi everybody!
    I have a problem when i export a swf and html in flash, because when i upload it to my server and try it online i get the message "Movie not loaded..." when i click in a blank window where it should have played.
    In the activity window i can see that everything is loaded (such as the AC_RunActiveContent.js file) and i know that my server is configured to swf and flv in MIME types.
    The website is http://www.dscdesign.org/flash.html
    and the html code is as follows:
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>flash</title>
    <script language="javascript">AC_FL_RunContent = 0;</script>
    <script src="AC_RunActiveContent.js" language="javascript"></script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script language="javascript">
    if (AC_FL_RunContent == 0) {
    alert("This page requires AC_RunActiveContent.js.");
    } else {
    AC_FL_RunContent(
    'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
    'width', '900',
    'height', '600',
    'src', 'flash',
    'quality', 'high',
    'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
    'align', 'middle',
    'play', 'true',
    'loop', 'false',
    'scale', 'showall',
    'wmode', 'window',
    'devicefont', 'false',
    'id', 'flash',
    'bgcolor', '#ffffff',
    'name', 'flash',
    'menu', 'true',
    'allowFullScreen', 'false',
    'allowScriptAccess','sameDomain',
    'movie', 'flash',
    'salign', ''
    ); //end AC code
    </script>
    <noscript>
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="900" height="600" id="flash" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="flash.swf" /><param name="loop" value="false" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />     <embed src="flash.swf" loop="false" quality="high" bgcolor="#ffffff" width="900" height="600" name="flash" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
    </noscript>
    </body>
    </html>
    appreciate your help

    Thank you for the really quick answer
    When it opens the menu buttons should appear immediately such as small animation in loop and the file should load fast because is less than 400Kb.
    Well, the swf loads images and texts from xml files and also some tween animations in a folder. It seems everything is uploaded with the right path (i´m going to confirm that some more times).
    But also the site index with an .flv animation and 2 flash buttons without any external linkage isn´t appearing at http://www.dscdesign.org/

  • Button to load flv

    hi, all
    long time listener first time caller, i need some help with a
    button, basically the button needs to load a flv through a video
    instance not a flv player, I know it sounds a bit cheeky to be
    asking someone to help but I have tried most avenues and Im still
    stuck.
    thankyou

    The
    NetStream
    constructor example always worked for me as the basic starting
    point. Be sure to follow the instruction to create the my_video
    instance of the Video object.

  • "Could not load scene into memory. Your document may be damaged." Lost whole timeline.

    Please help me - I have been working on a Flash CS6 file for a while now, and just got the message "Could not load scene into memory. Your document may be damaged." The file is not big, all it contains is 3 layers - one embedded video FLV file and 2 layers on top that only contain brushstrokes. The file is on my external hard-drive and now I get the message when I open it on either of my computers. I read feedback that I should re-link or re-import my assets, so I re-made the FLV file and imported it to replace the old one that it said couldn't be found. The problem is the timeline is completely empty. Even once I import the new video, the timline only has one "layer 1" with only one blank keyframe. Where is the rest of my work? I am good with backing up but was just away for a week and got a lot of work done so I couldn't back it up until I was back home... and obviously that isn't happening now.
    Please help if you have any idea where my work has disappeared to.

    Hi GregirArt,
    Can you please check your PublishSettings.xml file whether is there any duplicate profile entries?
    You can check the same by renaming your .fla to .zip and extract the zip file to open the PublishSettings.xml
    If you find multiple duplicate profile entries then please remove all the duplicate entries from the file and rename the file back to .fla and see if that helps.
    Thanks!
    Mohan

  • FLVPlayback not working-- URGENT

    greetings and thanks in advance..
    i am in desperate need for help. make FLVPlayback in flash,
    placed swf in dreamweaver, uploaded the swf file, and skin, but
    video STILL does not play. nothing comes up. everything is in root
    directory. I absoutely do not know what to do.
    here's my code:
    <td height="315" align="center"
    valign="middle"><script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','370','height','296','title','sloans','src','febvideo07','quality','high','pluginspage ','http://www.macromedia.com/go/getflashplayer','movie','febvideo07'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
    width="370" height="296">
    <param name="movie" value="febvideo07.swf">
    <param name="quality" value="high">
    <src="febvideo07.swf" quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="370"
    height="296"></embed>
    </object></noscript></td>

    If your trying to make this work with IIS6 then you must add
    the MIME type file extension.
    Goto-->
    Windows
    2003 Server does not stream FLV videos
    Also goto
    http://www.gotoandlearn.com/
    It has some great FREE Flash tutorials

  • Movie not loading since player 10 update

    I have a client that with a flash website that we did not create but that we are hosting, so we do not have the source files. Since updating to flash player 10, the swf file load screen appears, but then I get a black box and it says "Movie Not Loaded". I assume it's trying to call an external .flv file, but since I don't have the source files I'm not positive. The site still works fine on browsers with Flash Player 9. Any suggestions?
    Here is the URL - http://www.footsaver.us
    Thank you!

    Hi, I would start a thread in the Flex or Action Script forums to receive better help. A list of the Adobe Forums are here under
    Select Forum  http://forums.adobe.com/index.jspa
    The Flash Player is a browser plugin, not a standalone Player.
    Hope that helps.
    Thanks,
    eidnolb

  • Adobe Flash Player "Movie Not Loaded" on Browsers?

    On Browsers (Firefox, Chrome) Adobe Flash Player does not display and only shows a white empty space that, when right clicked, says "Movie not Loaded".
    Can someone help me to fix this issue?

    Im able to stream youtube video.Bt when i try to stream a local video, white
    screen occurs.
    This is my code
    <object width="630" height="312" classid="clsid:D27CDB6E-AE6D-
    11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0">
                       <param name="salign" value="lt"/>
                      <param name="quality" value="high"/>  
                      <param name="scale" value="noscale"/>
                       <param name="wmode" value="transparent"/>
                      <param name="movie" value="http://geekfile.googlepages.com/flvplay.swf"/>
                       <param name="FlashVars"                              value="&streamName=http://localhost:8080/resources/video/demo-video.flv&skinName=http://geekfile.googlepages. com/flvskin&autoPlay=true&autoRewind=true"/> 
                           <embed     width="630"
                                  height="312"
                                                                  flashvars="&streamName=http://localhost:8080/resources/video/demo-video.flv&autoPlay=true&autoRewind=true&skinName=http://geekfile.googlepages.co m/flvskin"
                                   quality="high"
                                  scale="noscale"
                                  salign="LT"
                                  type="application/x-shockwave-flash"
                                   pluginspage="http://www.macromedia.com/go/getflashplayer" src="http://geekfile.googlepages.com/flvplay.swf"
                                   wmode="transparent">
                              </embed>
                </object>

  • HP Laserjet M2727nf - Firmware not loading to Printer

    My printer display was not working so I ordered a new one.  But as I read some postings it seems to be by formatter board.  I baked the formatter board.  After I baked it, the display would show: Hewitt Packard >>>>>.  I did the below
    but the firmware utility update is not going to the printer.  The display shows ***BootDimm*** Ready 2 download.
    I have left the jumper on and have taken it off to upload the firmware to the printer.  Nothing has happened.   I have not even seen the display changing to erasing firmware, then programing firmware.
    I baked the board and it started to work.  I then Download the firmware utility update for my printer.  I Removed the printer left cover. Turned the printer on while it’s was connected by usb. Jumper or short the 2 pin connector - the display read "ready to load firmware".  I heard the printer usb driver connect / initialize in windows-
    Next I started the HP firmware update utility, select your printer from drop down list.   However the display did not change to erasing firmware, then programing firmware; finally it will display "firmware rom upload complete" - or  something close to that.  The computer did do this:  the progress bar on the firmware update utility in windows completed and displayed the smiley face (about 3 min).  Then I turned the printer off - unpluged it and disconnect the usb cable from the printer. It did not load.  So where did I go wrong. 

    Apple included the Gimp-Print driver "HP Laserjet 6 Series" for that printer. Does that show up?

Maybe you are looking for

  • Some apps are not working on my ipod

    i had buy an game app but it is not working it keep on restarting

  • MAC BOOK PRO WILL NOT START- COMPLETELY DEAD!

    I forgot to power down my mac book pro last night. I closed the lid & forgot to go back & turn it off completely. This morning it will not power up. The machine is completely dead. The power supply wasn't connected overnight so I assume the battery h

  • How to find HR Approvers data

    Dear All, I am facing a problem with getting approvers data from HR module. please tell me how to get this approvers data . Thanks & Regards, Srinivas.

  • How to change the email client for the 'Review' features.  Acrobat Pro X

    Acrobat Pro X (10.1.2) was installed on a system that used Lotus Notes (v8.5) email client, all was well.  The system was then upgraded to MS Outlook 2010, so Outlook is now the email client on system.  While reading a PDF document an email address c

  • Photoshop CS3 and APSB10-10

    I can't find anything from Adobe stating whether APSB10-10 does effect CS3, only CS4.  Does anyone know if it is an actual vulnerability for CS3?  This has come up on a security scan and several websites say it effects CS3, but Adobe has not stated a