私はビデオを実行するために私のアプリケーションでjwplayer5.7を使用しています。自分のカスタムjsに必要なカスタムタグを使用するプレイリストを作成しようとしています。以下は私のxmlプレイリストの抜粋です。
<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 forums / docによると、タグを含めるためにjwplayer名前空間を含める必要がありますが、firebugでjwplayer.getPlayers()[0] .getPlaylistItem()。deanlongdescriptionを実行すると、未定義になりますが、他のプロパティにアクセスできます。助言がありますか??
よろしく