
FLV Relative path problem
There is something very strange ...There is something very strange going on with relative paths and I just cannot get my player to play the movie without using actual paths. Can someone tell me why this is not working:
My webpage with querystring is at:
http://www.mydomain.com/playmovie.html?x=1234&y=12345
In the EMBED (and param) tags I have:
src="mediaplayer.swf" (the player is in the same folder as playmovie.html)
the movies are in a folder called "files", so the movies are at:
http://www.mydomain.com/files/movie1.flv
http://www.mydomain.com/files/movie2.flv
http://www.mydomain.com/files/movie3.flv
In the EMBED (and param) tags I have:
flashvars="width=320&height=240&file=files/movie1.flv"
but the movie will not play no matter what. it only seems to work if i put either an actual path in or put the movie in the same folder as the player and use:
flashvars="width=320&height=240&file=movie1.flv"
What exactly does the player consider relative? "files/movie1.flv" should be relative to the player. am i wrong?