-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.py
108 lines (88 loc) · 3.85 KB
/
app.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# We need to import `request` to access the details of the POST request
# and `render_template`, to render our templates (form and response).
# We'll use `url_for` to get some URLs for the app in the templates.
from flask import Flask, render_template, request, url_for
import unicodecsv
import random
import os
import thread
import subprocess
import glob
import fnmatch
import shutil
from moviepy.audio.io import AudioFileClip
from operator import itemgetter
#from pydub import AudioSegment
import timeit
os.chdir('/home/audio_labeler/')
## Returns duration of any media file using ffprobe
def media_duration(media_path):
return float(subprocess.check_output(['ffprobe', '-v', 'quiet', '-of', 'csv=p=0', '-show_entries', 'format=duration', media_path]).strip())
## Creating a list of file IDs in the "clips" directory
#complete_clip_ids = list(set([item.split('____')[0] for item in os.listdir('clips') if '____' in item]))
## Creating a list of every media file in the "media" directory
media_paths=[]
for root, dirnames, filenames in os.walk('/home/audio_labeler/media'):
for filename in fnmatch.filter(filenames, '*'):
media_paths.append(os.path.join(root, filename))
media_paths = [item for item in media_paths if item.lower()[-4:] in ('.mp3','.mp4','.wav')]
# Initialize the Flask application
app = Flask(__name__)
app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 0
label_count_dict = {}
# Define a route for the default URL, which loads the form
@app.route('/',methods=['POST','GET'])
def form():
## Dealing with form data from the last round, if applicable
try:
classname=request.form['classname']
if request.form['button'] == 'Apply Label':
write_classname = classname
else:
write_classname = request.form['button']
audio_file_id=request.form['audio_file_id']
start_time=request.form['start_time']
output_csv_path='/home/audio_labeler/output_table.csv'
with open(output_csv_path,'a') as fo:
label_duration = 1
fo.write(audio_file_id + ',' + \
str(float(start_time)) + ',' + \
str(float(label_duration)) + ',' + \
'''"''' + write_classname + '''"\n''')
shutil.copy(output_csv_path,'/home/audio_labeler/static/output/output_table.csv')
except:
classname=''
try:
os.remove('/home/audio_labeler/static/' + request.form['temp_wav_filename'])
except:
pass
default_buttons=["Background Speaker","Music","Silence","Multiple Speakers","Not Sure", "Noise",""]
try:
if write_classname not in default_buttons:
label_count_dict[write_classname] += 1
except:
try:
if write_classname not in default_buttons:
label_count_dict[write_classname] = 1
except: pass
label_counts = map(list, label_count_dict.items())
label_counts = sorted(label_counts, key=itemgetter(1))[::-1]
## Launching new round
#audio_filename=random.choice([item for item in os.listdir('/home/audio_labeler/clips') if item[-4:].lower() in ('.mp3','.wav','.mp4')])
media_path = random.choice(media_paths)
audio_file_id = media_path.split('/')[-1][:-4]
duration = media_duration(media_path)
start_time = int((random.random()*(duration-5.0)))
snd = AudioFileClip.AudioFileClip(media_path)
temp_wav_filename = str(random.random())[2:] + '.wav'
snd.subclip(start_time,start_time + 5).write_audiofile('/home/audio_labeler/static/' + temp_wav_filename)
response = render_template('form_audio.html', audio_file_id=audio_file_id, \
start_time=start_time, classname=classname, temp_wav_filename=temp_wav_filename, \
media_path=media_path, label_counts=label_counts[:15])
return response
# Run the app
if __name__ == '__main__':
app.run(threaded=True,
host="0.0.0.0",
port=int("8000")
)