It would be nice if you could implement an easy way to set a background image for mp3-files via ckeditor-UI. At the moment I have to change the generated html-code manually.

Furthermore disadvantageous:

First I use the ckeditor-UI to get the mp3-file into my webpage. Then I change the generated code like this to set the background image:

<object classid="clsid:xxx" height="300" width="400"><param name="flashvars" value="image=/yourpath/yourimage.jpg&amp;file=/yourpath/yourfile.mp3" />
<param name="allowFullScreen" value="true" />
<param name="quality" value="high" />
<param name="movie" value="/sites/all/libraries/mediaplayer/player.swf" />
<embed allowfullscreen="true" flashvars="image=/yourpath/yourimage.jpg&amp;file=/yourpath/yourfile.mp3" height="300" quality="high" src="/sites/all/libraries/mediaplayer/player.swf" type="application/x-shockwave-flash" width="400">
</embed>
</object>

If I would change this via ckeditor-UI again (maybe I have to change the mp3-file or anything else), all my additional html-statements get lost. :(