to have translated titles in the playlist i modified line 42 of the file jw-player-plugin-for-wordpress/media/JWPlaylistGenerator.php
wrapped $playlist_item->post_title with __()
from:
echo "\n\t\t\t".'<title>' . esc_attr(stripslashes($playlist_item->post_title)) . '</title>';
to:
echo "\n\t\t\t".'<title>' . esc_attr(stripslashes(__($playlist_item->post_title))) . '</title>';
btw, i'm using qtranslate, so a media with the title [:pt]Meu titulo[:en]My title will render in the correct language inside the playlist
http://wordpress.org/extend/plugins/jw-player-plugin-for-wordpress/