Skip to content

Commit

Permalink
chipno in dump.
Browse files Browse the repository at this point in the history
  • Loading branch information
anarkiwi committed Oct 28, 2023
1 parent e4f55ea commit a00fd86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions desidulate/sidinfo2dumpcmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ def main():
bname = os.path.basename(path)
dbname = '%s/%u/%s' % (bname, row.song, bname)
dbname = dbname.replace('.sid', '')
dbname = dbname + '-%u.dump' % row.song
dbname = dbname + '-%u.dump.zst' % row.song
dbpath = os.path.join(dname, os.path.dirname(dbname))
vice_cmd = [
'docker', 'run', '--rm', '-v', '%s:/vice' % dname, '-i', VICEIMAGE,
'vsid', '-warp', '-console', '-silent', '-sounddev', 'dump',
'-soundarg', os.path.join('/vice', dbname),
'vsiddump.py', os.path.join('/vice', dbname),
'-warp', '-console', '-silent',
'-limit', str(cycles),
'-tune', str(row.song),
os.path.join('/vice', bname)]
Expand Down

0 comments on commit a00fd86

Please sign in to comment.