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

Change To Pydub

parent b3044ede
No related branches found
No related tags found
1 merge request!14Resolve "Add New Names For QA People"
#!/bin/bash
pip3 install pyaudacity
\ No newline at end of file
pip3 install pydub
\ No newline at end of file
# Audacity Control Script - Automatically Processes All Voice Lines
# https://manual.audacityteam.org/man/scripting_reference.html
# # Audacity Control Script - Automatically Processes All Voice Lines
# # Note you need to enable the audacity pipe (in the preferences/modules menu)
# # https://manual.audacityteam.org/man/scripting_reference.html
import pyaudacity
# import pyaudacity
def ProcessTrack(_InputTrackName, _OutputTrackName):
# def ProcessTrack(_InputTrackName, _OutputTrackName):
# Firstly, setup new project
pyaudacity.do("New")
# # Firstly, setup new project
# pyaudacity.do("New")
# Now, Import Audio
pyaudacity.do("ImportAudio")
# # Now, Import Audio
# pyaudacity.do("ImportAudio")
def Main():
# def Main():
ProcessTrack("Test.wav", "TestOut.wav")
# ProcessTrack("Test.wav", "TestOut.wav")
if __name__ == "__main__":
Main()
\ No newline at end of file
# 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