i have a custom field called embed, there i put a flv file location, such as
video.com/flvs/video.flv
in the theme file i have
<embed src="http://video.com/wp6/wp-content/plugins/flv-embed/flvplayer.swf" width="480" height="360" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=<?php $key="embed"; echo get_post_meta($post->ID, $key, true); ?>" />
so the player loads the flv from the embed custom field section
this works great, it replaces having a plugin and you can have the player wherever you want. a video theme called tv-elements uses this method too.
now the thing is my content is usually in multiple parts, so i was looking around at streaming sites, and tvshack.net
has a part selection, that is probably in ajax, so the whole page does not have to reloaded, i have been looking around of how this could be done, and nothing yet,
example
http://tvshack.net/tv_shows/K_Ville/season_1/episode_3/
any ideas guys, tx in advance