Export the new track, and deleted both tracks.
(filename)
| 134 | |
| 135 | |
| 136 | def export(filename): |
| 137 | """Export the new track, and deleted both tracks.""" |
| 138 | do_command("Select: Track=1 mode=Set") |
| 139 | do_command("SelTrackStartToEnd") |
| 140 | do_command(f"Export2: Filename={os.path.join(PATH, filename)} NumChannels=1.0") |
| 141 | do_command("SelectAll") |
| 142 | do_command("RemoveTracks") |
| 143 | |
| 144 | |
| 145 | def do_one_file(name): |
no test coverage detected