mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 07:39:42 +02:00
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
13 lines
383 B
Python
13 lines
383 B
Python
# 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() )
|