I've got the these links to videos:
rtmp://video.autotrader.com/ondemand/multimedia/qa/ATCMedia/2009-04/01/v-00000038816-19-22-19
http://www.mediacollege.com/video-gallery/testclips/20051210-w50s.flv
rtmp://video.autotrader.com/ondemand/multimedia/qa/ATCMedia/2009-06/29/v-00000051255-18-22-55
rtmp://video.autotrader.com/ondemand/multimedia/qa/ATCMedia/2009-04/01/v-00000038800-18-42-28
http://media.autotraderstatic.com/model_info/media/WheelsTV/1onONE/1onONE_09_Cadillac_Escalade.flv
We are switching to the long tail player and all of the above videos work in our old player. The videos with no extensions and/or rtmp protocols dont appear to be working. I tried running them on a server and I got error 2048 if I run them local i get 2032 error. I'm running them in flex. Where urls & titles are being set through a function
private function changeMovie(url:String,title:String):void{
playerObject.config['title'] = title;
playerObject.config['streamer'] = url;
playerObject.config['type'] = 'video';
// playerObject.config['file'] = url; --tried it
// playerObject.config['type'] = 'flv'; --tried it
playerObject.view.sendEvent(ViewEvent.LOAD,url);
}thanks for your help.
Anthony
The RTMP URI must be broken into streamer and file, probably something like this:
streamer=rtmp://video.autotrader.com/ondemand/multimediafile=qa/ATCMedia/2009-06/29/v-00000051255-18-22-55
Generically:
'streamer': 'rtmp://domain/application/instance','file': 'prepend:path(s)/filename.ext',
instance, prepend, path(s), and ext are optional depending on your server configuration.
If your RTMP source is a CDN, you may need to use one of these types: http://developer.longtailvideo.com/trac/wiki/FlashFormats#Streamingservers