Esempio n. 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')
Esempio n. 2
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')
Esempio n. 3
0
 def writeFile(path):
     targetPath = common.getRelativePath(path, cuePath)
     line = 'FILE "%s" WAVE' % targetPath
     lines.append(line)
     self.debug('writeFile: %r' % line)
Esempio n. 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'))
Esempio n. 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'))
Esempio n. 6
0
 def writeFile(path):
     targetPath = common.getRelativePath(path, cuePath)
     line = 'FILE "%s" WAVE' % targetPath
     lines.append(line)
     self.debug('writeFile: %r' % line)
Esempio n. 7
0
 def writeFile(path):
     targetPath = common.getRelativePath(path, cuePath)
     lines.append('FILE "%s" WAVE' % targetPath)
Esempio n. 8
0
 def writeFile(path):
     targetPath = common.getRelativePath(path, cuePath)
     lines.append('FILE "%s" WAVE' % targetPath)