1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-18 16:41:14 +02:00

Work on Scripts.

Add script for spectrograms.
Add Script for 'after' with effects examples.
Add space and dc bias to afters script.
Add docimages_all.py script to call all scripts.
Shared part of scripts extracted into docimages_core.py
This commit is contained in:
James Crook
2018-02-15 19:00:55 +00:00
committed by Paul Licameli
parent aae9349f2e
commit 8ab9345268
6 changed files with 431 additions and 300 deletions

View File

@@ -0,0 +1,12 @@
# docimages_all.py
# Sends commands to get images for the manual.
# Execs all the docimage scripts.
# Make sure Audacity is running first and that mod-script-pipe is enabled
# before running this script.
exec( open("docimages_tracks.py" ).read() )
exec( open("docimages_labels.py" ).read() )
exec( open("docimages_spectro.py" ).read() )
exec( open("docimages_after.py" ).read() )