Anfänger: .flv startet nicht

Hallo!
Folgendes Problem:
Ich will eine .flv Datei auf meiner Seite abspielen.
Nun habe ich das Problem dass mir der Player angezeigt wird, das Video jedoch nicht.
Könnt ihr mir sagen was ich falsch gemacht habe?
Die player.swf liegt im selben ordner wie meine video.flv

Hier der Code:

  
  
<object type="application/x-shockwave-flash" data="http://localhost:8080/foobar/resources/video/player.swf"  
    width="176" height="200" id="player">  
  <param name="allowScriptAccess" value="sameDomain"/>  
  <param name="movie" value="http://localhost:8080/foobar/resources/video/player.swf"/>  
  <param name="quality" value="high"/>  
  <param name="scale" value="noScale"/>  
  <param name="wmode" value="transparent"/>  
  <param name="flashvars"  
    value="videoFile=http://localhost:8080/foobar/resources/video/video.FLV&autoPlay=true"/>  
</object>  
  

  1. @@Anfänger:

    <object type="application/x-shockwave-flash" data="http://localhost:8080/foobar/resources/video/player.swf"

    Kann es sein, dass Browser, die das 'data'-Attribut auswerten, sich gar nicht um die 'param'-Elemente kümmern?

    Sollte das Flash-Video nicht mit im URI stehen?

    <object type="application/x-shockwave-flash" data="http://localhost:8080/foobar/resources/video/player.swf?file=http://localhost:8080/foobar/resources/video/video.FLV">

    <param name="flashvars" value="videoFile=http://localhost:8080/foobar/resources/video/video.FLV&autoPlay=true"/>


    Das ist ungültiges HTML. [HTML401 §B.2.2]

    Live long and prosper,
    Gunnar

    --
    Erwebsregel 208: Manchmal ist das einzige, was gefährlicher als eine Frage ist, eine Antwort.