No image displayed where folder names have spaces
OK, so I am slowly migrating my website away from Flash to HTML5. I noticed today while coding my playlist using rss format that images do not display properly when a space occurs in the folder (subdirectory). The following example demonstrates the issue.
Note: My server is Windows/IIS OS.
Example:
All music folders that contain a "space" in the folder name will NOT display the image associated with the music file being played properly. I tested this twice by creating identical folders with the exception of adding underscore characters where spaces normally appear in the folder name.
This only affects the display of the images. It does not affect the music files which may reside in sub-folders that have spaces in the folder name.
NO image is displayed!
<item>
<title>Avenged Sevenfold - So Far Away</title>
<jwplayer:image>[metal]/Avenged Sevenfold/Nightmare_AlbumArt.jpg</jwplayer:image>
<jwplayer:source file="[metal]/Avenged Sevenfold/Nightmare/Avenged Sevenfold - So Far Away.mp3" /> </item>
Image displays properly!
<item>
<title>Avenged Sevenfold - So Far Away</title>
<jwplayer:image>[metal]/Avenged_Sevenfold/Nightmare_AlbumArt.jpg</jwplayer:image>
<jwplayer:source file="[metal]/Avenged_Sevenfold/Nightmare/Avenged Sevenfold - So Far Away.mp3" />
</item>
Second Example
NO image is displayed!
<item>
<title>We Are The Fallen - I Am Only One</title>
<jwplayer:image>[metal]/We Are The Fallen/WATF_AlbumArt.jpg</jwplayer:image>
<jwplayer:source file="[metal]/We Are The Fallen/Tear The World Down/10 - I Am Only One.mp3" />
</item>
Image displays properly!
<item>
<title>We Are The Fallen - I Am Only One</title>
<jwplayer:image>[metal]/We_Are_The_Fallen/WATF_AlbumArt.jpg</jwplayer:image>
<jwplayer:source file="[metal]/We_Are_The_Fallen/Tear The World Down/10 - I Am Only One.mp3" />
</item>
I would rather this issue be fixed than rename all the folders on my server with spaces in the folder name. This would also require updating all the playlist.xml files used with earlier versions of JWplayer.
Thoughts / Comments?