I want to avoid using an image on the splash screen of the video. I am going to be delivering the video's from simplecdn over rtmp and i have been using the following config to start testing, which does not produce the splash image.

Is it indeed correct that with rtmp I have to create an image to use as splashscreen?

Here is my config:

<a style="display:block;width:640px;height:384px;" id="flowplayerexample"></a>
<script type="text/javascript">
$f("flowplayerexample", "/swf/flowplayer-3.1.3.swf", { 
    clip: {  
        url: 'mp4:floralive/ImObservingaPhenomanontry4.mov',  
        provider: 'simplecdn',  
		autoPlay: false,
		autoBuffering: true,
		accelerated: true,
		scaling: 'fit'
    }, 
    // streaming plugins are configured under the plugins node  
    plugins: { 
        simplecdn: {  
            url: '/swf/flowplayer.rtmp-3.1.2.swf',  
            netConnectionUrl: 'rtmp://e1f1.simplecdn.net/play'  
        } 
    }     
});
</script>