playbackStateあるんだけどこれじゃ駄目なのか?
from objc_util import ObjCClass

MPMPCsysMP = ObjCClass('MPMusicPlayerController').systemMusicPlayer()
q = []
for i in range(MPMPCsysMP.numberOfItems()):
q.append(MPMPCsysMP.nowPlayingItemAtIndex(i))
#print(q)
print('-- 再生リスト --')
if q!=None:
for item in [item.title() for item in q]:
print(item)
print('--------------')
print('再生中: ',MPMPCsysMP.nowPlayingItem().title())
print('再生リストの位置: ',MPMPCsysMP.indexOfNowPlayingItem())
print('playbackState: ',MPMPCsysMP.playbackState())
'''
playbackState
1再生中
2一時停止
'''
print('repeatMode: ',MPMPCsysMP.repeatMode())