Skip to content
Snippets Groups Projects
Commit 85142d2e authored by Thomas Liao's avatar Thomas Liao
Browse files

Setup Test Script

parent f75f518b
No related branches found
No related tags found
1 merge request!14Resolve "Add New Names For QA People"
# Audacity Control Script - Automatically Processes All Voice Lines
# https://manual.audacityteam.org/man/scripting_reference.html
import pyaudacity
def ProcessTrack(_InputTrackName, _OutputTrackName):
# Firstly, setup new project
pyaudacity.do("New")
# Now, Create
pyaudacity.do("New")
def Main():
ProcessTrack("Test.wav", "TestOut.wav")
if __name__ == "__main__":
Main()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment