flashembed("player", http://releases.flowplayer.org/swf/flowplayer-3.1.5.swf", {
// "config" parameter is a complex JSON object, not just a simple value
config: {
clip: {
autoPlay: false,
autoBuffering: true,
url: 'http://e1h13.simplecdn.net/flowplayer/flowplayer.flv'
}
}
});
This code is working fine with my html
But it downloads the flowplayer from:http://releases.flowplayer.org/swf/flowplayer-3.1.5.swf
and video file fromhttp://e1h13.simplecdn.net/flowplayer/flowplayer.flv
If I have the player and the flv file in the same folder where there is my HTML file ... then what would be my code??
I am trying this:
flashembed("player", "/FlowPlayerDark.swf", {
// "config" parameter is a complex JSON object, not just a simple value
config: {
clip: {
autoPlay: false,
autoBuffering: true,
clip: '/video.flv'
}
}
});
But this code doesn't work :(
Can anyone solve this problem ??
// "config" parameter is a complex JSON object, not just a simple value
config: {
clip: {
autoPlay: false,
autoBuffering: true,
url: 'http://e1h13.simplecdn.net/flowplayer/flowplayer.flv'
}
}
});
This code is working fine with my html
But it downloads the flowplayer from:http://releases.flowplayer.org/swf/flowplayer-3.1.5.swf
and video file fromhttp://e1h13.simplecdn.net/flowplayer/flowplayer.flv
If I have the player and the flv file in the same folder where there is my HTML file ... then what would be my code??
I am trying this:
flashembed("player", "/FlowPlayerDark.swf", {
// "config" parameter is a complex JSON object, not just a simple value
config: {
clip: {
autoPlay: false,
autoBuffering: true,
clip: '/video.flv'
}
}
});
But this code doesn't work :(
Can anyone solve this problem ??
