-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathparse_file.py
39 lines (30 loc) · 1.25 KB
/
parse_file.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copyright (C) 2017 DataArt
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import argparse
import numpy as np
from scipy.io import wavfile
parser = argparse.ArgumentParser(description='Read file and process audio')
parser.add_argument('wav_file', type=str, help='File to read and process')
def process_file(wav_file):
sr, data = wavfile.read(wav_file)
if data.dtype != np.int16:
raise TypeError('Bad sample type: %r' % data.dtype)
# local import to reduce start-up time
from audio.processor import WavProcessor, format_predictions
with WavProcessor() as proc:
predictions = proc.get_predictions(sr, data)
print(format_predictions(predictions))
if __name__ == '__main__':
args = parser.parse_args()
process_file(**vars(args))