本文整理匯總了Python中Playlist.Playlist.add方法的典型用法代碼示例。如果您正苦於以下問題:Python Playlist.add方法的具體用法?Python Playlist.add怎麽用?Python Playlist.add使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Playlist.Playlist
的用法示例。
在下文中一共展示了Playlist.add方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: add
# 需要導入模塊: from Playlist import Playlist [as 別名]
# 或者: from Playlist.Playlist import add [as 別名]
def add(self, ref, extra=None, isBatch=False):
data = extra
if extra is None or extra.get(eMediaDatabase.FIELD_FILE_ID, 0) <= 0:
data = self.getDetailsByRef(ref) or data
if data is None:
path, filename = os_path.split(ref.getPath())
data = { "file_uri" : ref.getPath(), "title" : filename, }
Playlist.add(self, ref, data, isBatch)