* morituri/image/table.py:

Extract one function to write a FILE line.
This commit is contained in:
Thomas Vander Stichele
2011-05-22 17:17:33 +00:00
parent 4c0036611e
commit 041a492f67
2 changed files with 12 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2011-05-22 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/image/table.py:
Extract one function to write a FILE line.
2011-05-22 Thomas Vander Stichele <thomas at apestaart dot org>
patch by: Ross Burton <ross@burtonini.com>

View File

@@ -528,6 +528,10 @@ class Table(object, log.Loggable):
"""
lines = []
def writeFile(path):
lines.append('FILE "%s" WAVE' % os.path.basename(path))
# header
main = ['PERFORMER', 'TITLE']
@@ -549,7 +553,7 @@ class Table(object, log.Loggable):
# add the first FILE line
path = self.tracks[0].getFirstIndex().path
counter = self.tracks[0].getFirstIndex().counter
lines.append('FILE "%s" WAVE' % os.path.basename(path))
writeFile(path)
for i, track in enumerate(self.tracks):
# FIXME: skip data tracks for now
@@ -561,7 +565,7 @@ class Table(object, log.Loggable):
if not track.indexes.has_key(0):
index = track.indexes[1]
if index.counter != counter:
lines.append('FILE "%s" WAVE' % os.path.basename(index.path))
writeFile(index.path)
counter = index.counter
lines.append(" TRACK %02d %s" % (i + 1, 'AUDIO'))
for key in CDTEXT_FIELDS:
@@ -577,7 +581,7 @@ class Table(object, log.Loggable):
for number in indexes:
index = track.indexes[number]
if index.counter != counter:
lines.append('FILE "%s" WAVE' % os.path.basename(index.path))
writeFile(index.path)
counter = index.counter
lines.append(" INDEX %02d %s" % (number,
common.framesToMSF(index.relative)))