Kodi Community Forum

Full Version: Correct usage of xbmc.Player.getPlayingFile??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
when i'm trying to get the actual playing movie with the following method the python interpreter gives me an error saying something about "needs argument".

movietitle = xbmc.player.getplayingfile()

what have i done wrong?
try
movietitle = xbmc.player().getplayingfile()
thank you very much! :thumbsup: :idea: