Changeset 1e1a2c9 for python/scripts
- Timestamp:
- Nov 20, 2013, 2:47:51 AM (11 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- dedeffc
- Parents:
- d4c0932
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/scripts/aubiocut
rd4c0932 r1e1a2c9 115 115 (options, args) = parser.parse_args() 116 116 if not options.source_file: 117 print "no file name given\n", usage 118 sys.exit(1) 117 import os.path 118 if len(args) == 1: 119 options.source_file = args[0] 120 else: 121 print "no file name given\n", usage 122 sys.exit(1) 119 123 return options, args 120 124
Note: See TracChangeset
for help on using the changeset viewer.