Hi,
I'm attempting to get the JW FLV Player, FLV Media Player Module and XSPF Playlist to work together as intended. I've installed all of the latest versions and I get the "No suiteable model found for playback of this file" error message inside the player.
Here is a link to an example: http://drupal.theuptake.org/node/21
Here is the playlist it generates at http://drupal.theuptake.org/node/21/xspf
−
<playlist version="1">
<title>future Generations</title>
<info>http://drupal.theuptake.org/</info>
<annotation/>
−
<trackList>
−
<track>
<creator>mcintee</creator>
−
<location>
http://drupal.theuptake.org/sites/default/files/generations.flv
</location>
<info>http://drupal.theuptake.org/node/21</info>
<meta rel="type">flv</meta>
<title>future Generations</title>
<identifier>21</identifier>
</track>
</trackList>
</playlist>
Using the FLV Media Player Module and specifying the video path by hand works as long as it is a relative path and not the absolute path. http://drupal.theuptake.org/node/20
So It does not appear to be the FLV Media Player Module or the JW FLV player that is having the problem.
Is this a bug or am I doing something wrong? I have seen this error message on other drupal site installs apparently set up the same way: http://crescentmedia.kirkdesigns.co.uk/video/rory-drums
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | XSPF Module compiled090630.zip | 24.21 KB | mmcintee |
Comments
Comment #1
arthurf commentedSo this bug has come up before and as far as I know, it's a mistake in how the type value is declared. Instead of:
It should be:
I've actually removed this from the development branch of xspf_playlist- can you give that a try and let me know if that fixes this issue for you? Unfortunately, there are a large number of other changes that are in there as well...
Comment #2
mmcintee commentedI can only find the 6.x-1.0-alpha2 release. I've checked the "see all releases" link and do not see a development branch. Can you point me the right direction?
Comment #3
iaminawe commentedI am also interested in this fix please.
Comment #4
mmcintee commentedOK... I figured this out. There are three files that need to be changed.
/modules/xspf_playlist/xspf_playlist_thumb/xspf_playlist_thumb.module
/modules/xspf_playlist/xspf_playlist_node/xspf_playlist_node.module
/modules/xspf_playlist/xspf_playlist.module
I know that because I go here:
http://cvs.drupal.org/viewvc.py/drupal/contributions/modules/xspf_playlist/
and go through each folder and find all files in Drupal 6 that are newer than the last release.
I go to the page for each file and find the "download" link, copy and paste the code into a new file... then replace that file on the server with the new one. This is of course after backing up the server and keeping a copy of the file I am replacing.
Attached are the original files from the last release and the new ones that were updated.