This commit is contained in:
clinton-hall 2014-09-19 15:24:28 +09:30
parent c29a42b9b8
commit 296f52ed30

View file

@ -584,7 +584,7 @@ def combineVTS(vtsPath):
concat = ''
m = 1
while True:
vtsName = 'VTS_%02d_%s.VOB' % (str(n+1), str(m))
vtsName = 'VTS_%02d_%s.VOB' % (n+1, str(m))
if os.path.isfile(os.path.join(vtsPath, vtsName)):
concat = concat + '%s|' % (os.path.join(vtsPath, vtsName))
m += 1