2012-01-30 12 views
0

私はビデオを実行するために私のアプリケーションでjwplayer 5.7を使用しています。私は自分のカスタムjに必要なカスタムタグを使用してプレイリストを作成しようとしています。以下は私のxmlプレイリストの抜粋です。jwplayer xml playlistカスタムタグ

<title>Webisode 200 Playlist</title> 

<item> 

    <title>My first video</title> 

    <media:credit role="author">Adam Houston</media:credit> 

    <media:content url="rackspace_url" type="video/x-flv" /> 

    <jwplayer:deanlongdescription>Very long description goes here.</jwplayer:deanlongdescription> 

</item> 

<item> 

    <title>Other Video 202</title> 

    <media:credit role="author">Brent Purcell</media:credit> 

    <media:content url="rackspace_url" type="video/x-flv" /> 

    <jwplayer:deanlongdescription>Very long description goes here.</jwplayer:deanlongdescription> 

</item> 

jwplayerフォーラム/ドキュメントによると(私はタグが含まれるようにjwplayer名前空間を含める必要がありますが、私はjwplayer.getPlayersを行うとき)[0] .getPlaylistItem()。firebugのdeanlongdescriptionは私が他のプロパティにアクセスできるのに対し、私は定義されていませんs。助言がありますか??

よろしく

答えて

1

私がしなければならないすべては、次のようにRSSタグに名前空間を含めることで、

を解決策を見つけた:メディア:RSSバージョン= '2.0'' のxmlns \

< = 'http://search.yahoo.com/mrss/' xmlns:jwplayer = 'http://developer.longtailvideo.com/trac/wiki/FlashFormats \>

そしてそれぞれの内部では< \ jwplayer:custom_tag> custom_value </jwpl ayer:custom_tag>

それは簡単です!