When I use jwplayer with following config everything is OK.
jwplayer('someId').setup({
'flashplayer': '/js/jwplayer/player.swf',
'file': 'awesome.flv',
'streamer': 'rtmp://some.server.com:1934/vod',
'width': '220',
'height': '190'
});
When I use dojo with following config:
new Flash({
path: 'rtmp://some.server.com:1934/vod?file=awesome.flv' ,
width: 220,
height: 190
}, this.someId);
Flash place holder is visible, but no controls to play stream and in the console I can see error that have no meaning for me...
Building SWF failed.
[Break On This Error]
comboPendingTimer = null;
dojo.js (line 648)
What is wrong with dojo flash config? Another thing is how to tell dojo to use object
tag? Right now it uses some strange embed
tag...
Dojo version 1.7.2 documentation not that helpful http://dojotoolkit.org/reference-guide/1.7/dojox/flash.html