예제 #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')
예제 #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')
예제 #3
0
파일: table.py 프로젝트: chadberg/whipper
 def writeFile(path):
     targetPath = common.getRelativePath(path, cuePath)
     line = 'FILE "%s" WAVE' % targetPath
     lines.append(line)
     self.debug('writeFile: %r' % line)
예제 #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'))
예제 #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'))
예제 #6
0
 def writeFile(path):
     targetPath = common.getRelativePath(path, cuePath)
     line = 'FILE "%s" WAVE' % targetPath
     lines.append(line)
     self.debug('writeFile: %r' % line)
예제 #7
0
파일: table.py 프로젝트: dioltas/morituri
 def writeFile(path):
     targetPath = common.getRelativePath(path, cuePath)
     lines.append('FILE "%s" WAVE' % targetPath)
예제 #8
0
파일: table.py 프로젝트: megies/morituri
 def writeFile(path):
     targetPath = common.getRelativePath(path, cuePath)
     lines.append('FILE "%s" WAVE' % targetPath)