
Audio Only Streaming Image
Streaming an audio-only (MP3) file via RTMP loses its image when I click play. I've tried including the image with the file in the sources as well as outside of the sources and neither (or both) solves the issue. I've also tried with files that have the .MP3 file ending and with those that don't. I've seen other questions regarding this on this site and the solution was to place your image outside the player and trigger the API call to play the video with onclick. This seems to be a hack. Is there an actual solution to this or is it a known issue that images do not work with streaming audio-only files?
JS:
jwplayer("player").setup({
sources:
[
{ file: "rtmp://domain:1935/vod/MP3:file.MP3", image: "poster.jpg"},
{ file: "http://domain:1935/file.MP3/playlist.m3u8", image: "poster.jpg"}
],
image: "poster.jpg",
width: 640,
height: 540
});