Reputation: 169
<param
name="flashVars"
value="config={'playlist':['screenshot.jpg',
{'url':'video.mp4','autoPlay':true}]}"
/>
which config key = value, should I put to hide the controls in flowplayer?
Upvotes: 2
Views: 2844
Reputation: 31
This works for me:
<param name="flashVars" value="config={'plugins': {'controls': null}, 'playlist':['screenshot.jpg', {'url':'video.mp4','autoPlay':true,'control':null}]}" />
'control':null should be under config's plugin property
Upvotes: 2
Reputation: 4882
According to http://flash.flowplayer.org/plugins/flash/controlbar.html
Simply: 'control':null
So:
<param
name="flashVars"
value="config={'playlist':['screenshot.jpg',
{'url':'video.mp4','autoPlay':true,'control':null}]}"
/>
Upvotes: 0