-
Notifications
You must be signed in to change notification settings - Fork 0
/
acrcustom.py
61 lines (49 loc) · 2.08 KB
/
acrcustom.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
#-*- coding:utf-8 -*-
import os
import sys
import json
from acrcloud_scan_files_libary import ACRCloud_Scan_Files
if __name__ == "__main__":
#ACRCloud Scan File Example
is_debug = 0 #display the log info, or is_debug=0
start_time = 0 #scan file start time(seconds)
stop_time = 0 #scan file end time(seconds), or you can set it to the duration of file
step = 30 #the length of each identified fragment (seconds)
rec_length = step
#your acrcloud project host, access_key, access_secret
config = {
"host": "identify-eu-west-1.acrcloud.com",
"access_key":"YourKeyHere",
"access_secret": "YourSecretHere"
}
#export dir
export_dir = "./"
filepath = sys.argv[1]
acr_sfile = ACRCloud_Scan_Files(config, is_debug)
stop_time = acr_sfile.get_duration_by_file(filepath)
#get a list of recognition results
result_list = acr_sfile.recognize_file(filepath, start_time, stop_time, step, rec_length)
#export to csv
export_filename_csv = filepath + ".csv"
acr_sfile.export_to_csv(result_list, export_filename_csv, export_dir)
#export to xlsx
#export_filename_xlsx = filepath + ".xlsx"
#acr_sfile.export_to_xlsx(result_list, export_filename_xlsx, export_dir)
#iterator to get the result of each fragment
result_list2 = []
with open(filepath+"_raw_result.lst", "wb") as wfile:
for item in acr_sfile.for_recognize_file(filepath, start_time, stop_time, step, rec_length):
result_list2.append(item)
filename = item["file"]
timestamp = item["timestamp"]
res = acr_sfile.parse_data(item["result"])
title = item["title"]
#title = res[2]
print filename, timestamp, title
wfile.write("{0}\n".format(json.dumps(item)))
#get results with played-duration
#filter_results = acr_sfile.apply_filter(result_list2)
#export the results to xlsx
#export_filtername_xlsx = filepath + "_with_duration.xlsx"
#acr_sfile.export_to_xlsx(filter_results, export_filtername_xlsx, export_dir)