我正在尝试读取 disc01.nfo 的内容然后播放
我努力了
link ='bluray://udf%3a%2f%2fC%253a%255cetc%255cdisc1.iso%2f/BDMV/PLAYLIST/00000.mpls'
bluray://udf%3a%2f%2fC%253a%255cetc%255cdisc1.iso%2f/BDMV/PLAYLIST/00000.mpls
当我尝试阅读其中包含此内容的 disc1.nfo 时,它可以工作但它不起作用
import xbmc
# read nfo file for episodes (Show\S01\)
# in this format
file = open('C:\etc\disc1.nfo', 'r')
print file.read()
#link='bluray://udf%3a%2f%2fC%253a%255cetc%255cdisc1.iso%2f/BDMV/PLAYLIST/00000.mpls'
#xbmc.Player().play(item=file.read())
我正在尝试将 disc01.iso/BDMV/PLAYLIST/00000.mpls 映射到 Kodi 中的 TV Show\S01E01
但是我很早就陷入了我的测试脚本中