Beispiel #1
0
    def testRelativeOutputDirectory(self):
        directory = '.Placebo - Black Market Music (2000)'
        cue = './' + directory + '/Placebo - Black Market Music (2000)'
        track = './' + directory + '/01. Placebo - Taste in Men.flac'

        self.assertEquals(common.getRelativePath(track, cue),
            '01. Placebo - Taste in Men.flac')
    def testRelativeOutputDirectory(self):
        directory = '.Placebo - Black Market Music (2000)'
        cue = './' + directory + '/Placebo - Black Market Music (2000)'
        track = './' + directory + '/01. Placebo - Taste in Men.flac'

        self.assertEquals(common.getRelativePath(track, cue),
            '01. Placebo - Taste in Men.flac')
Beispiel #3
0
 def writeFile(path):
     targetPath = common.getRelativePath(path, cuePath)
     line = 'FILE "%s" WAVE' % targetPath
     lines.append(line)
     self.debug('writeFile: %r' % line)
Beispiel #4
0
 def writeFile(handle, path, length):
     targetPath = common.getRelativePath(path, m3uPath)
     u = u'#EXTINF:%d,%s\n' % (length, targetPath)
     handle.write(u.encode('utf-8'))
     u = '%s\n' % targetPath
     handle.write(u.encode('utf-8'))
Beispiel #5
0
 def writeFile(handle, path, length):
     targetPath = common.getRelativePath(path, m3uPath)
     u = u'#EXTINF:%d,%s\n' % (length, targetPath)
     handle.write(u.encode('utf-8'))
     u = '%s\n' % targetPath
     handle.write(u.encode('utf-8'))
Beispiel #6
0
 def writeFile(path):
     targetPath = common.getRelativePath(path, cuePath)
     line = 'FILE "%s" WAVE' % targetPath
     lines.append(line)
     self.debug('writeFile: %r' % line)
Beispiel #7
0
 def writeFile(path):
     targetPath = common.getRelativePath(path, cuePath)
     lines.append('FILE "%s" WAVE' % targetPath)
Beispiel #8
0
 def writeFile(path):
     targetPath = common.getRelativePath(path, cuePath)
     lines.append('FILE "%s" WAVE' % targetPath)