kaiw7 commited on
Commit
db4e154
·
verified ·
1 Parent(s): 6dbcfef

Add files using upload-large-folder tool

Browse files
config/eval_for_dpo_config.yaml ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ defaults:
2
+ - eval_for_dpo_base_config
3
+ - override hydra/job_logging: custom-simplest
4
+ - _self_
5
+
6
+ hydra:
7
+ run:
8
+ dir: ./output/${exp_id}
9
+ output_subdir: eval-${now:%Y-%m-%d_%H-%M-%S}-hydra
10
+
11
+ exp_id: ${model}
12
+ dataset: vggsound_dpo #vggsound # vggsound_dpo
13
+ duration_s: 8.0 # todo can be changed?
14
+
15
+ num_samples_per_video: 5 # todo Feb 25
16
+ random_sample: False # todo Mar 12: True is for sampling from training data, False is for sampling from validation data
17
+ sample_size: 10000 #20000 # todo Mar 12
18
+
19
+ # todo May 10
20
+ small_44k_pretrained_ckpt_path: ./output/vgg_only_small_44k_lumina_v2a_two_stream_May17_depth16_caption_beta20000_full_reward_ib_desync_iter2_steps5k/vgg_only_small_44k_lumina_v2a_two_stream_May17_depth16_caption_beta20000_full_reward_ib_desync_iter2_steps5k_ema_final.pth
21
+
22
+ #./output/vgg_only_small_44k_lumina_v2a_two_stream_May12_depth16_caption_beta20000_full_reward_ib_desync_iter1_steps5k/vgg_only_small_44k_lumina_v2a_two_stream_May12_depth16_caption_beta20000_full_reward_ib_desync_iter1_steps5k_ema_final.pth
23
+
24
+ #./output/vgg_only_small_44k_lumina_v2a_two_stream_May7_depth16_caption_beta20000_full_reward_ib_desync/vgg_only_small_44k_lumina_v2a_two_stream_May7_depth16_caption_beta20000_full_reward_ib_desync_ema_final.pth
25
+ #./output/vgg_only_small_44k_lumina_v2a_two_stream_May6_depth16_caption_beta2000_iter1_desync/vgg_only_small_44k_lumina_v2a_two_stream_May6_depth16_caption_beta2000_iter1_desync_ema_final.pth
26
+
27
+ # for inference, this is the per-GPU batch size
28
+ batch_size: 16
29
+ output_name: gen_dpo_data_May17_lumina_v2a_two_stream_depth16_caption_beta20000_full_reward_ib_desync_iter2_steps5k_inference_ema
30
+
31
+ # for iter2 dpo: gen_dpo_data_May17_lumina_v2a_two_stream_depth16_caption_beta20000_full_reward_ib_desync_iter1_steps5k_inference_ema
32
+
33
+ #new_model_lumina_v2a_two_stream_May10_depth16_caption_2000samples_full_reward_ib_desync_iter2_for_dpo_inference_ema
34
+
35
+ #new_model_lumina_v2a_two_stream_May10_depth16_caption_2000samples_desync_to_ib_iter1_for_dpo_inference_ema
36
+
37
+ #new_model_lumina_v2a_two_stream_April12_depth16_caption_2000samples_clap_iter1_for_dpo_inference_ema
38
+
39
+ #new_model_lumina_v2a_two_stream_April12_depth16_caption_2000samples_av_align_iter1_for_dpo_inference_ema
40
+ #new_model_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_inference_ema
41
+ #new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema # todo Jan 14
dpo_training/create_dpo_file.py ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import argparse
4
+ import multiprocessing
5
+ from tqdm import tqdm
6
+ from reward_models.av_align import calculate_av_align_samples
7
+ import pandas as pd
8
+
9
+
10
+ ROOT = '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_inference_ema/generated_videos'
11
+
12
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema/generated_videos'
13
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/generated_videos'
14
+
15
+ def process_av_align(data):
16
+ num_samples = len(data)
17
+ audio_files_list = []
18
+ for i in range(num_samples):
19
+ video_id = data[i]['video_id']
20
+ audio_path = os.path.join(ROOT, video_id, data[i]['audio_path'])
21
+ audio_files_list.append(audio_path)
22
+
23
+ video_file_path = os.path.join(ROOT, data[0]['video_id'], data[0]['video_path'])
24
+ caption = data[0]['caption']
25
+
26
+ scores = calculate_av_align_samples(video_file_path, audio_files_list)
27
+ outputs = {
28
+ 'id': data[0]['video_id'],
29
+ 'label': caption,
30
+ }
31
+ for i in range(num_samples):
32
+ outputs[f'{i+1}'] = scores[i]
33
+
34
+ dpo_outputs = {
35
+ 'id': data[0]['video_id'],
36
+ 'label': caption,
37
+ 'chosen': scores.index(max(scores)) + 1,
38
+ 'reject': scores.index(min(scores)) + 1
39
+ }
40
+
41
+ return outputs, dpo_outputs
42
+
43
+
44
+
45
+ if __name__ == "__main__":
46
+
47
+ json_path = '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_inference_ema/generated_videos.json'
48
+
49
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema/generated_videos.json'
50
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/generated_videos.json'
51
+
52
+ output_dir = '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_inference_ema'
53
+
54
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema'
55
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema'
56
+
57
+ with open(json_path, 'r') as f:
58
+ data = json.load(f)
59
+
60
+ #cores = multiprocessing.cpu_count()
61
+ pool = multiprocessing.Pool(processes=50)
62
+
63
+ results = list(tqdm(pool.imap(process_av_align, data), total=len(data)))
64
+
65
+ saved_output_full = []
66
+ saved_output_dpo = []
67
+ for output, dpo_output in results:
68
+ saved_output_full.append(output)
69
+ saved_output_dpo.append(dpo_output)
70
+
71
+ output_full_df = pd.DataFrame(saved_output_full)
72
+ output_full_df.to_csv(os.path.join(output_dir, 'av_align_score.tsv'), sep='\t', index=False)
73
+
74
+ output_dpo_df = pd.DataFrame(saved_output_dpo)
75
+ output_dpo_df.to_csv(os.path.join(output_dir, 'dpo_av_align.tsv'), sep='\t', index=False)
76
+
77
+ print("Finished !!!")
dpo_training/create_dpo_file_new.py ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import argparse
4
+ import multiprocessing
5
+ from tqdm import tqdm
6
+ from reward_models.av_align import calculate_av_align_samples
7
+ import pandas as pd
8
+
9
+
10
+ ROOT = '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema/generated_videos'
11
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/generated_videos'
12
+
13
+ def process_av_align(data):
14
+ num_samples = len(data)
15
+ audio_files_list = []
16
+ for i in range(num_samples):
17
+ video_id = data[i]['video_id']
18
+ audio_path = os.path.join(ROOT, video_id, data[i]['audio_path'])
19
+ audio_files_list.append(audio_path)
20
+
21
+ video_file_path = os.path.join(ROOT, data[0]['video_id'], data[0]['video_path'])
22
+ caption = data[0]['caption']
23
+
24
+ scores = calculate_av_align_samples(video_file_path, audio_files_list)
25
+ outputs = {
26
+ 'id': data[0]['video_id'],
27
+ 'label': caption,
28
+ }
29
+ for i in range(num_samples):
30
+ outputs[f'{i+1}'] = scores[i]
31
+
32
+ dpo_outputs = {
33
+ 'id': data[0]['video_id'],
34
+ 'label': caption,
35
+ 'chosen': scores.index(max(scores)) + 1,
36
+ 'reject': scores.index(min(scores)) + 1
37
+ }
38
+
39
+ return outputs, dpo_outputs
40
+
41
+
42
+
43
+ if __name__ == "__main__":
44
+
45
+ json_path = '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema/generated_videos.json'
46
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/generated_videos.json'
47
+
48
+ output_dir = '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema'
49
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema'
50
+
51
+ with open(json_path, 'r') as f:
52
+ data = json.load(f)
53
+
54
+ # Manager for inter-process communication
55
+ manager = multiprocessing.Manager()
56
+ return_dict = manager.dict()
57
+
58
+
59
+ processes = []
60
+
61
+ for each_data in data:
62
+ p = multiprocessing.Process(
63
+ target=process_av_align,
64
+ args=(each_data))
65
+
66
+ processes.append(p)
67
+ p.start()
68
+
69
+
70
+ for p in processes:
71
+ p.join()
72
+
73
+ cores = multiprocessing.cpu_count()
74
+ pool = multiprocessing.Pool(processes=cores)
75
+
76
+ results = list(tqdm(pool.imap(process_av_align, data), total=len(data)))
77
+
78
+ saved_output_full = []
79
+ saved_output_dpo = []
80
+ for output, dpo_output in results:
81
+ saved_output_full.append(output)
82
+ saved_output_dpo.append(dpo_output)
83
+
84
+ output_full_df = pd.DataFrame(saved_output_full)
85
+ output_full_df.to_csv(os.path.join(output_dir, 'av_align_score.tsv'), sep='\t', index=False)
86
+
87
+ output_dpo_df = pd.DataFrame(saved_output_dpo)
88
+ output_dpo_df.to_csv(os.path.join(output_dir, 'dpo_av_align.tsv'), sep='\t', index=False)
89
+
90
+ print("Finished !!!")
dpo_training/create_dpo_file_single.py ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import argparse
4
+ import multiprocessing
5
+ from tqdm import tqdm
6
+ from reward_models.av_align import calculate_av_align_samples
7
+ import pandas as pd
8
+
9
+
10
+ ROOT = '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema/generated_videos'
11
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/generated_videos'
12
+
13
+ def process_av_align(data):
14
+ num_samples = len(data)
15
+ audio_files_list = []
16
+ for i in range(num_samples):
17
+ video_id = data[i]['video_id']
18
+ audio_path = os.path.join(ROOT, video_id, data[i]['audio_path'])
19
+ audio_files_list.append(audio_path)
20
+
21
+ video_file_path = os.path.join(ROOT, data[0]['video_id'], data[0]['video_path'])
22
+ caption = data[0]['caption']
23
+
24
+ scores = calculate_av_align_samples(video_file_path, audio_files_list)
25
+ outputs = {
26
+ 'id': data[0]['video_id'],
27
+ 'label': caption,
28
+ }
29
+ for i in range(num_samples):
30
+ outputs[f'{i+1}'] = scores[i]
31
+
32
+ dpo_outputs = {
33
+ 'id': data[0]['video_id'],
34
+ 'label': caption,
35
+ 'chosen': scores.index(max(scores)) + 1,
36
+ 'reject': scores.index(min(scores)) + 1
37
+ }
38
+
39
+ return outputs, dpo_outputs
40
+
41
+
42
+
43
+ if __name__ == "__main__":
44
+
45
+ json_path = '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema/generated_videos.json'
46
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/generated_videos.json'
47
+
48
+ output_dir = '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema'
49
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema'
50
+
51
+ with open(json_path, 'r') as f:
52
+ data = json.load(f)
53
+
54
+ saved_output_full = []
55
+ saved_output_dpo = []
56
+
57
+ for each_data in tqdm(data):
58
+ num_samples = len(each_data)
59
+ audio_files_list = []
60
+ for i in range(num_samples):
61
+ video_id = each_data[i]['video_id']
62
+ audio_path = os.path.join(ROOT, video_id, each_data[i]['audio_path'])
63
+ audio_files_list.append(audio_path)
64
+
65
+ video_file_path = os.path.join(ROOT, each_data[0]['video_id'], each_data[0]['video_path'])
66
+ caption = each_data[0]['caption']
67
+
68
+ scores = calculate_av_align_samples(video_file_path, audio_files_list)
69
+ outputs = {
70
+ 'id': each_data[0]['video_id'],
71
+ 'label': caption,
72
+ }
73
+ for i in range(num_samples):
74
+ outputs[f'{i+1}'] = scores[i]
75
+
76
+ dpo_outputs = {
77
+ 'id': each_data[0]['video_id'],
78
+ 'label': caption,
79
+ 'chosen': scores.index(max(scores)) + 1,
80
+ 'reject': scores.index(min(scores)) + 1
81
+ }
82
+
83
+ saved_output_full.append(outputs)
84
+ saved_output_dpo.append(dpo_outputs)
85
+
86
+
87
+ output_full_df = pd.DataFrame(saved_output_full)
88
+ output_full_df.to_csv(os.path.join(output_dir, 'av_align_score.tsv'), sep='\t', index=False)
89
+
90
+ output_dpo_df = pd.DataFrame(saved_output_dpo)
91
+ output_dpo_df.to_csv(os.path.join(output_dir, 'dpo_av_align.tsv'), sep='\t', index=False)
92
+
93
+ print("Finished !!!")
dpo_training/extract_video_training_latents.py ADDED
@@ -0,0 +1,286 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import logging
2
+ import os
3
+ from argparse import ArgumentParser
4
+ from datetime import timedelta
5
+ from pathlib import Path
6
+
7
+ import pandas as pd
8
+ import tensordict as td
9
+ import torch
10
+ import torch.distributed as distributed
11
+ from torch.utils.data import DataLoader
12
+ from torch.utils.data.distributed import DistributedSampler
13
+ from tqdm import tqdm
14
+
15
+ from mmaudio.data.data_setup import error_avoidance_collate
16
+ from mmaudio.data.extraction.vgg_sound import VGGSound, VGGSound_DPO
17
+ from mmaudio.model.utils.features_utils import FeaturesUtils
18
+ from mmaudio.utils.dist_utils import local_rank, world_size
19
+
20
+ torch.backends.cuda.matmul.allow_tf32 = True
21
+ torch.backends.cudnn.allow_tf32 = True
22
+
23
+ # for the 16kHz model
24
+ # SAMPLING_RATE = 16000
25
+ # DURATION_SEC = 8.0 # todo #4.0
26
+ # NUM_SAMPLES = 128000 #64000 #128000 # todo
27
+ # vae_path = './ext_weights/v1-16.pth' # VAE for visual input
28
+ # bigvgan_path = './ext_weights/best_netG.pt' # vocoder
29
+ # mode = '16k' # {16k, 44.1k}
30
+
31
+ # for the 44.1kHz model
32
+ SAMPLING_RATE = 44100
33
+ DURATION_SEC = 8.0
34
+ NUM_SAMPLES = 353280
35
+ vae_path = './ext_weights/v1-44.pth'
36
+ bigvgan_path = None
37
+ mode = '44k'
38
+
39
+ synchformer_ckpt = './ext_weights/synchformer_state_dict.pth'
40
+
41
+ # per-GPU
42
+ BATCH_SIZE = 8 # 16
43
+ NUM_WORKERS = 8 # 16
44
+
45
+ log = logging.getLogger()
46
+ log.setLevel(logging.INFO)
47
+
48
+ # ./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_2000samples_av_align_iter1_for_dpo_inference_ema/dpo_clap.tsv
49
+
50
+ # kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/dpo_imagebind.tsv
51
+ #
52
+
53
+ data_cfg = {
54
+ 'train': {
55
+ 'root': './output/small_44k/vggsound_dpo-gen_dpo_data_May17_lumina_v2a_two_stream_depth16_caption_beta20000_full_reward_ib_desync_iter2_steps5k_inference_ema/generated_videos',
56
+
57
+
58
+ #'./output/small_44k/vggsound_dpo-gen_dpo_data_May17_lumina_v2a_two_stream_depth16_caption_beta20000_full_reward_ib_desync_iter1_steps5k_inference_ema/generated_videos',
59
+
60
+
61
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_May10_depth16_caption_2000samples_full_reward_ib_desync_iter2_for_dpo_inference_ema/generated_videos',
62
+
63
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_May10_depth16_caption_2000samples_desync_to_ib_iter1_for_dpo_inference_ema/generated_videos',
64
+
65
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_inference_ema/generated_videos',
66
+
67
+ # './output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/generated_videos'
68
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/generated_videos',
69
+
70
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_2000samples_av_align_iter1_for_dpo_inference_ema/generated_videos',
71
+ # './output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_inference_ema/generated_videos',
72
+ # ./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/generated_videos',
73
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/generated_videos', #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema/generated_videos', #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/generated_videos', # todo
74
+
75
+ 'subset_name': './output/small_44k/vggsound_dpo-gen_dpo_data_May17_lumina_v2a_two_stream_depth16_caption_beta20000_full_reward_ib_desync_iter2_steps5k_inference_ema/dpo_full_reward_ib_desync.tsv',
76
+
77
+ #'./output/small_44k/vggsound_dpo-gen_dpo_data_May17_lumina_v2a_two_stream_depth16_caption_beta20000_full_reward_ib_desync_iter1_steps5k_inference_ema/dpo_full_reward_ib_desync.tsv',
78
+
79
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_May10_depth16_caption_2000samples_full_reward_ib_desync_iter2_for_dpo_inference_ema/dpo_full_reward_ib_desync.tsv',
80
+
81
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_May10_depth16_caption_2000samples_desync_to_ib_iter1_for_dpo_inference_ema/dpo_imagebind.tsv',
82
+
83
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_inference_ema/dpo_full_reward_ib_2av_at_2desync.tsv',
84
+
85
+ # './output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/dpo_full_reward_ib_av_at_2desync.tsv',
86
+ # './output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/dpo_full_reward_ib_2desync.tsv'
87
+ # './output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/dpo_full_reward_ib_desync.tsv'
88
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/dpo_desync.tsv',
89
+
90
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/dpo_imagebind.tsv',
91
+
92
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_2000samples_av_align_iter1_for_dpo_inference_ema/dpo_clap.tsv',
93
+ # './output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_inference_ema/dpo_clap.tsv',
94
+ # './output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/dpo_full_reward_2avalign_1cavp_2clap_thre03.tsv',
95
+ # './output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/dpo_full_reward.tsv'
96
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema/dpo_clap_new.tsv',
97
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/dpo_clap.tsv',
98
+ #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema/dpo_cavp.tsv', #'./output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/dpo_cavp.tsv', #todo dpo.tsv # todo change path
99
+ 'normalize_audio': True,
100
+ },
101
+ # 'test': {
102
+ # 'root': '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/public/kwang/datasets/vggsound/videos',
103
+ # 'subset_name': './sets/vgg-test-filtered-caption.tsv', #'./filter_dataset/filtered_vggsound/test_filter_av_align.tsv', #'./sets/vgg-test-filtered.tsv',
104
+ # 'normalize_audio': False,
105
+ # },
106
+ # 'val': {
107
+ # 'root': '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/public/kwang/datasets/vggsound/videos',
108
+ # 'subset_name': './sets/vgg-val-filtered-caption.tsv',
109
+ # # './filter_dataset/filtered_vggsound/val_filter_av_align.tsv', # './sets/vgg-val-filtered.tsv',
110
+ # 'normalize_audio': False,
111
+ # },
112
+ }
113
+
114
+
115
+ def distributed_setup():
116
+ distributed.init_process_group(backend="nccl", timeout=timedelta(hours=1))
117
+ log.info(f'Initialized: local_rank={local_rank}, world_size={world_size}')
118
+ return local_rank, world_size
119
+
120
+
121
+ def setup_dataset(split: str):
122
+ dataset = VGGSound_DPO(
123
+ data_cfg[split]['root'],
124
+ tsv_path=data_cfg[split]['subset_name'],
125
+ sample_rate=SAMPLING_RATE,
126
+ duration_sec=DURATION_SEC,
127
+ audio_samples=NUM_SAMPLES,
128
+ normalize_audio=data_cfg[split]['normalize_audio'],
129
+ )
130
+ sampler = DistributedSampler(dataset, rank=local_rank, shuffle=False)
131
+ loader = DataLoader(dataset,
132
+ batch_size=BATCH_SIZE,
133
+ num_workers=NUM_WORKERS,
134
+ sampler=sampler,
135
+ drop_last=False,
136
+ collate_fn=error_avoidance_collate)
137
+
138
+ return dataset, loader
139
+
140
+
141
+ @torch.inference_mode()
142
+ def extract():
143
+ # initial setup
144
+ distributed_setup()
145
+ # ./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/iteration1 # 2000 samples
146
+ # './dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/iteration1_cavp/video-latents'
147
+ # './dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema/iteration1_cavp/video-latents'
148
+ # ./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/iteration1_clap/video-latents
149
+ #'./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/iteration1_full_reward/video-latents'
150
+ # './dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/iteration1_full_reward_2avalign_1cavp_2clap_thre03/video-latents'
151
+ # './dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_inference_ema/iteration1_clap/video-latents'
152
+ # ./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_2000samples_av_align_iter1_for_dpo_inference_ema/iteration1_clap/video-latents
153
+
154
+ # May
155
+ # ./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/iteration1_imagebind/video-latents
156
+ # ./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/iteration1_desync/video-latents
157
+ # ./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/iteration1_full_reward_ib_desync/video-latents
158
+ # ./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/iteration1_full_reward_ib_2desync/video-latents
159
+ # ./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_inference_ema/iteration1_dpo_full_reward_ib_2av_at_2desync/video-latents
160
+
161
+ # ./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/iteration1_dpo_full_reward_ib_av_at_2desync/video-latents
162
+
163
+ # ./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_May10_depth16_caption_2000samples_desync_to_ib_iter1_for_dpo_inference_ema/iteration1_desync_to_ib/video-latents
164
+
165
+ # ./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_May10_depth16_caption_2000samples_full_reward_ib_desync_iter2_for_dpo_inference_ema/iteration2_ib_desync/video-latents
166
+
167
+ # ./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_May17_depth16_caption_2000samples_full_reward_ib_desync_steps5k_iter2_for_dpo_inference_ema/iteration2_ib_desync/video-latents
168
+
169
+
170
+ parser = ArgumentParser()
171
+ parser.add_argument('--latent_dir',
172
+ type=Path,
173
+ default='./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_May17_depth16_caption_2000samples_full_reward_ib_desync_steps5k_iter3_for_dpo_inference_ema/iteration3_ib_desync/video-latents') # todo needs to change
174
+ parser.add_argument('--output_dir', type=Path, default='./dpo_training/dpo_vgg_val/vggsound_dpo-new_model_lumina_v2a_two_stream_May17_depth16_caption_2000samples_full_reward_ib_desync_steps5k_iter3_for_dpo_inference_ema/iteration3_ib_desync/memmap') # todo needs to change
175
+ args = parser.parse_args()
176
+
177
+ latent_dir = args.latent_dir
178
+ output_dir = args.output_dir
179
+
180
+ # cuda setup
181
+ torch.cuda.set_device(local_rank)
182
+ feature_extractor = FeaturesUtils(tod_vae_ckpt=vae_path,
183
+ enable_conditions=True,
184
+ bigvgan_vocoder_ckpt=bigvgan_path,
185
+ synchformer_ckpt=synchformer_ckpt,
186
+ mode=mode).eval().cuda()
187
+
188
+ for split in data_cfg.keys():
189
+ print(f'Extracting latents for the {split} split')
190
+ this_latent_dir = latent_dir / split
191
+ this_latent_dir.mkdir(parents=True, exist_ok=True)
192
+
193
+ # setup datasets
194
+ dataset, loader = setup_dataset(split)
195
+ log.info(f'Number of samples: {len(dataset)}')
196
+ log.info(f'Number of batches: {len(loader)}')
197
+
198
+ for curr_iter, data in enumerate(tqdm(loader)):
199
+ output = {
200
+ 'id': data['id'],
201
+ 'caption': data['caption'],
202
+ }
203
+
204
+ audio_chosen = data['audio_chosen'].cuda()
205
+ dist_chosen = feature_extractor.encode_audio(audio_chosen)
206
+ output['mean_chosen'] = dist_chosen.mean.detach().cpu().transpose(1, 2)
207
+ output['std_chosen'] = dist_chosen.std.detach().cpu().transpose(1, 2)
208
+
209
+ audio_reject = data['audio_reject'].cuda()
210
+ dist_reject = feature_extractor.encode_audio(audio_reject)
211
+ output['mean_reject'] = dist_reject.mean.detach().cpu().transpose(1, 2)
212
+ output['std_reject'] = dist_reject.std.detach().cpu().transpose(1, 2)
213
+
214
+
215
+ clip_video = data['clip_video'].cuda()
216
+ clip_features = feature_extractor.encode_video_with_clip(clip_video)
217
+ output['clip_features'] = clip_features.detach().cpu()
218
+
219
+ sync_video = data['sync_video'].cuda()
220
+ sync_features = feature_extractor.encode_video_with_sync(sync_video)
221
+ output['sync_features'] = sync_features.detach().cpu()
222
+
223
+ caption = data['caption']
224
+ text_features = feature_extractor.encode_text(caption)
225
+ output['text_features'] = text_features.detach().cpu()
226
+
227
+ torch.save(output, this_latent_dir / f'r{local_rank}_{curr_iter}.pth')
228
+
229
+ distributed.barrier()
230
+
231
+ # combine the results
232
+ if local_rank == 0:
233
+ print('Extraction done. Combining the results.')
234
+
235
+ used_id = set()
236
+ list_of_ids_and_labels = []
237
+ output_data = {
238
+ 'mean_chosen': [],
239
+ 'std_chosen': [],
240
+ 'mean_reject': [],
241
+ 'std_reject': [],
242
+ 'clip_features': [],
243
+ 'sync_features': [],
244
+ 'text_features': [],
245
+ }
246
+
247
+ for t in tqdm(sorted(os.listdir(this_latent_dir))):
248
+
249
+ if t.split('.')[-1] != 'pth':
250
+ continue
251
+
252
+ data = torch.load(this_latent_dir / t, weights_only=True)
253
+ bs = len(data['id'])
254
+
255
+ for bi in range(bs):
256
+ this_id = data['id'][bi]
257
+ this_caption = data['caption'][bi]
258
+ if this_id in used_id:
259
+ print('Duplicate id:', this_id)
260
+ continue
261
+
262
+ list_of_ids_and_labels.append({'id': this_id, 'label': this_caption})
263
+ used_id.add(this_id)
264
+ output_data['mean_chosen'].append(data['mean_chosen'][bi])
265
+ output_data['std_chosen'].append(data['std_chosen'][bi])
266
+ output_data['mean_reject'].append(data['mean_reject'][bi])
267
+ output_data['std_reject'].append(data['std_reject'][bi])
268
+ output_data['clip_features'].append(data['clip_features'][bi])
269
+ output_data['sync_features'].append(data['sync_features'][bi])
270
+ output_data['text_features'].append(data['text_features'][bi])
271
+
272
+ output_dir.mkdir(parents=True, exist_ok=True)
273
+ output_df = pd.DataFrame(list_of_ids_and_labels)
274
+ output_df.to_csv(output_dir / f'vgg-{split}.tsv', sep='\t', index=False)
275
+
276
+ print(f'Output: {len(output_df)}')
277
+
278
+ output_data = {k: torch.stack(v) for k, v in output_data.items()}
279
+ td.TensorDict(output_data).memmap_(output_dir / f'vgg-{split}')
280
+
281
+ print(f'Finished combining {split} results')
282
+
283
+
284
+ if __name__ == '__main__':
285
+ extract()
286
+ distributed.destroy_process_group()
dpo_training/generate_dpo_data.py ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import logging
2
+ import os
3
+ from pathlib import Path
4
+
5
+ import hydra
6
+ import torch
7
+ import torch.distributed as distributed
8
+ import torchaudio
9
+ from hydra.core.hydra_config import HydraConfig
10
+ from omegaconf import DictConfig
11
+ from tqdm import tqdm
12
+
13
+ from mmaudio.data.data_setup import setup_eval_dataset
14
+ from mmaudio.eval_utils import ModelConfig, all_model_cfg, generate, make_video, make_video_new, load_video, load_full_video_frames # todo Feb 24
15
+ from mmaudio.model.flow_matching import FlowMatching
16
+ from mmaudio.model.networks_new import MMAudio, get_my_mmaudio
17
+ from mmaudio.model.utils.features_utils import FeaturesUtils
18
+
19
+ torch.backends.cuda.matmul.allow_tf32 = True
20
+ torch.backends.cudnn.allow_tf32 = True
21
+
22
+ local_rank = int(os.environ['LOCAL_RANK'])
23
+ world_size = int(os.environ['WORLD_SIZE'])
24
+ log = logging.getLogger()
25
+
26
+
27
+ @torch.inference_mode()
28
+ @hydra.main(version_base='1.3.2', config_path='config', config_name='eval_for_dpo_config.yaml')
29
+ def main(cfg: DictConfig):
30
+ device = 'cuda'
31
+ torch.cuda.set_device(local_rank)
32
+
33
+ if cfg.model not in all_model_cfg:
34
+ raise ValueError(f'Unknown model variant: {cfg.model}')
35
+ model: ModelConfig = all_model_cfg[cfg.model]
36
+ #model.download_if_needed()
37
+ seq_cfg = model.seq_cfg
38
+
39
+ run_dir = Path(HydraConfig.get().run.dir)
40
+ if cfg.output_name is None:
41
+ output_dir = run_dir / cfg.dataset
42
+ else:
43
+ output_dir = run_dir / f'{cfg.dataset}-{cfg.output_name}'
44
+ output_dir.mkdir(parents=True, exist_ok=True)
45
+
46
+ # todo
47
+ output_dir_audio = output_dir / 'audios'
48
+ output_dir_video = output_dir / 'videos'
49
+ output_dir_audio.mkdir(parents=True, exist_ok=True)
50
+ output_dir_video.mkdir(parents=True, exist_ok=True)
51
+
52
+ # load a pretrained model
53
+ seq_cfg.duration = cfg.duration_s
54
+ net: MMAudio = get_my_mmaudio(cfg.model).to(device).eval()
55
+ net.load_weights(torch.load(model.model_path, map_location=device, weights_only=True))
56
+ log.info(f'Loaded weights from {model.model_path}')
57
+ net.update_seq_lengths(seq_cfg.latent_seq_len, seq_cfg.clip_seq_len, seq_cfg.sync_seq_len)
58
+ log.info(f'Latent seq len: {seq_cfg.latent_seq_len}')
59
+ log.info(f'Clip seq len: {seq_cfg.clip_seq_len}')
60
+ log.info(f'Sync seq len: {seq_cfg.sync_seq_len}')
61
+
62
+ # misc setup
63
+ rng = torch.Generator(device=device)
64
+ rng.manual_seed(cfg.seed)
65
+ fm = FlowMatching(cfg.sampling.min_sigma,
66
+ inference_mode=cfg.sampling.method,
67
+ num_steps=cfg.sampling.num_steps)
68
+
69
+ feature_utils = FeaturesUtils(tod_vae_ckpt=model.vae_path,
70
+ synchformer_ckpt=model.synchformer_ckpt,
71
+ enable_conditions=True,
72
+ mode=model.mode,
73
+ bigvgan_vocoder_ckpt=model.bigvgan_16k_path,
74
+ need_vae_encoder=False)
75
+ feature_utils = feature_utils.to(device).eval()
76
+
77
+ if cfg.compile:
78
+ net.preprocess_conditions = torch.compile(net.preprocess_conditions)
79
+ net.predict_flow = torch.compile(net.predict_flow)
80
+ feature_utils.compile()
81
+
82
+ dataset, loader = setup_eval_dataset(cfg.dataset, cfg)
83
+
84
+ with torch.amp.autocast(enabled=cfg.amp, dtype=torch.bfloat16, device_type=device):
85
+ for batch in tqdm(loader):
86
+ audios = generate(batch.get('clip_video', None),
87
+ batch.get('sync_video', None),
88
+ batch.get('caption', None),
89
+ feature_utils=feature_utils,
90
+ net=net,
91
+ fm=fm,
92
+ rng=rng,
93
+ cfg_strength=cfg.cfg_strength,
94
+ clip_batch_size_multiplier=64,
95
+ sync_batch_size_multiplier=64)
96
+ audios = audios.float().cpu()
97
+ names = batch['name']
98
+ '''
99
+ for audio, name in zip(audios, names):
100
+ torchaudio.save(output_dir / f'{name}.flac', audio, seq_cfg.sampling_rate)
101
+ '''
102
+
103
+ '''
104
+ video_infos = batch.get('video_info', None)
105
+ assert video_infos is not None
106
+ for audio, name, video_info in zip(audios, names, video_infos):
107
+ torchaudio.save(output_dir_audio / f'{name}.flac', audio, seq_cfg.sampling_rate)
108
+ video_save_path = output_dir_video / f'{name}.mp4'
109
+ make_video(video_info, video_save_path, audio, sampling_rate=seq_cfg.sampling_rate)
110
+ '''
111
+
112
+ video_paths = batch['video_path']
113
+
114
+ for audio, name, video_path in zip(audios, names, video_paths):
115
+ torchaudio.save(output_dir_audio / f'{name}.flac', audio, seq_cfg.sampling_rate)
116
+ video_info = load_full_video_frames(video_path, cfg.duration_s)
117
+ video_save_path = output_dir_video / f'{name}.mp4'
118
+ make_video(video_info, video_save_path, audio, sampling_rate=seq_cfg.sampling_rate)
119
+
120
+
121
+ def distributed_setup():
122
+ distributed.init_process_group(backend="nccl")
123
+ local_rank = distributed.get_rank()
124
+ world_size = distributed.get_world_size()
125
+ log.info(f'Initialized: local_rank={local_rank}, world_size={world_size}')
126
+ return local_rank, world_size
127
+
128
+
129
+ if __name__ == '__main__':
130
+ distributed_setup()
131
+
132
+ main()
133
+
134
+ # clean-up
135
+ distributed.destroy_process_group()
dpo_training/generated_videos_file.py ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ 1. input: csv or json file: video_id --> sample_id --> audio.flac + video.mp4
3
+ 2. return: csv or json file: video_id -- caption -- chosen: sample_id/video.mp4 -- reject: sample_id/video.mp4
4
+ 3. return (optional): video_id -- caption -- sample_id_1 (score), sample_id_2, ......
5
+ """
6
+ import os
7
+ import pandas as pd
8
+ import json
9
+ from tqdm import tqdm
10
+
11
+ def read_csv_file(csv_path):
12
+ captions = {}
13
+ df = pd.read_csv(csv_path, sep='\t', dtype={'id': str}).to_dict('records')
14
+ for row in df:
15
+ video_name = row['id']
16
+ captions[video_name] = row['label']
17
+ return captions
18
+
19
+
20
+ data_original_csv_path = '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/sets/vgg-val-filtered-caption.tsv'
21
+
22
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/sets/vgg-train-filtered-caption.tsv' # for training subset for dpo training
23
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/sets/vgg-val-filtered-caption.tsv' # for validation set for dpo training
24
+
25
+
26
+ captions = read_csv_file(data_original_csv_path)
27
+
28
+
29
+ root = '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-gen_dpo_data_May17_lumina_v2a_two_stream_depth16_caption_beta20000_full_reward_ib_desync_iter2_steps5k_inference_ema/generated_videos'
30
+
31
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-gen_dpo_data_May17_lumina_v2a_two_stream_depth16_caption_beta20000_full_reward_ib_desync_iter1_steps5k_inference_ema/generated_videos'
32
+
33
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_May10_depth16_caption_2000samples_full_reward_ib_desync_iter2_for_dpo_inference_ema/generated_videos'
34
+
35
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_May10_depth16_caption_2000samples_desync_to_ib_iter1_for_dpo_inference_ema/generated_videos'
36
+
37
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_2000samples_av_align_iter1_for_dpo_inference_ema/generated_videos'
38
+
39
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_inference_ema/generated_videos'
40
+
41
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema/generated_videos'
42
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema/generated_videos' # for video dir path
43
+
44
+
45
+ output_dir = '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-gen_dpo_data_May17_lumina_v2a_two_stream_depth16_caption_beta20000_full_reward_ib_desync_iter2_steps5k_inference_ema'
46
+
47
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-gen_dpo_data_May17_lumina_v2a_two_stream_depth16_caption_beta20000_full_reward_ib_desync_iter1_steps5k_inference_ema'
48
+
49
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_May10_depth16_caption_2000samples_full_reward_ib_desync_iter2_for_dpo_inference_ema'
50
+
51
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_2000samples_av_align_iter1_for_dpo_inference_ema'
52
+
53
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_inference_ema'
54
+
55
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_inference_ema'
56
+ #'/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/zhoutao-240108120126/kwang/MMAudio/output/small_44k/vggsound_dpo-new_model_lumina_v2a_two_stream_Mar1_depth16_caption_inference_ema'
57
+
58
+ video_ids_list = os.listdir(root)
59
+ video_full_list = []
60
+ for i, video_id in enumerate(tqdm(video_ids_list)):
61
+ video_folder_path = os.path.join(root, video_id)
62
+ #video_sample_list = sorted(os.listdir(video_folder_path))
63
+ video_sample_list = sorted(list(map(int, os.listdir(video_folder_path))))
64
+ video_sample_list = list(map(str, video_sample_list))
65
+ each_video_list = []
66
+ for j, sample_id in enumerate(video_sample_list):
67
+ video_path = f'{sample_id}/{video_id}.mp4'
68
+ audio_path = f'{sample_id}/{video_id}.flac'
69
+ each_video_list.append({
70
+ 'video_id': video_id,
71
+ 'sample_id': sample_id,
72
+ 'video_path': video_path,
73
+ 'audio_path': audio_path,
74
+ 'caption': captions[video_id]
75
+ })
76
+ video_full_list.append(each_video_list)
77
+
78
+ with open(f'{output_dir}/generated_videos.json', 'w') as f:
79
+ json.dump(video_full_list, f)
80
+
81
+ print(f"All generated samples have been generated and saved to {output_dir}")
filter_dataset/vggsound_av_align_score.tsv ADDED
The diff for this file is too large to render. See raw diff
 
mmaudio/__init__.py ADDED
File without changes
mmaudio/eval_utils.py ADDED
@@ -0,0 +1,470 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import dataclasses
2
+ import logging
3
+ from pathlib import Path
4
+ from typing import Optional
5
+
6
+ import numpy as np
7
+ import torch
8
+ from colorlog import ColoredFormatter
9
+ from PIL import Image
10
+ from torchvision.transforms import v2
11
+
12
+ from mmaudio.data.av_utils import ImageInfo, VideoInfo, read_frames, reencode_with_audio, reencode_with_audio_new, read_full_frames
13
+ from mmaudio.model.flow_matching import FlowMatching
14
+ #from mmaudio.model.networks import MMAudio
15
+ from mmaudio.model.networks_new import MMAudio
16
+ from mmaudio.model.sequence_config import CONFIG_16K, CONFIG_44K, SequenceConfig
17
+ from mmaudio.model.utils.features_utils import FeaturesUtils
18
+ from mmaudio.utils.download_utils import download_model_if_needed
19
+
20
+ log = logging.getLogger()
21
+
22
+
23
+ @dataclasses.dataclass
24
+ class ModelConfig:
25
+ model_name: str
26
+ model_path: Path
27
+ vae_path: Path
28
+ bigvgan_16k_path: Optional[Path]
29
+ mode: str
30
+ synchformer_ckpt: Path = Path('./ext_weights/synchformer_state_dict.pth')
31
+
32
+ @property
33
+ def seq_cfg(self) -> SequenceConfig:
34
+ if self.mode == '16k':
35
+ return CONFIG_16K
36
+ elif self.mode == '44k':
37
+ return CONFIG_44K
38
+
39
+ def download_if_needed(self):
40
+ download_model_if_needed(self.model_path)
41
+ download_model_if_needed(self.vae_path)
42
+ if self.bigvgan_16k_path is not None:
43
+ download_model_if_needed(self.bigvgan_16k_path)
44
+ download_model_if_needed(self.synchformer_ckpt)
45
+
46
+ # todo need to change accordingly
47
+ small_16k = ModelConfig(model_name='small_16k',
48
+ model_path=Path('./output/vgg_only_small_16k/vgg_only_small_16k_ema_final.pth'),
49
+ vae_path=Path('./ext_weights/v1-16.pth'),
50
+ bigvgan_16k_path=Path('./ext_weights/best_netG.pt'),
51
+ mode='16k')
52
+
53
+ # ./output/vgg_only_small_44k_text_drop_jan18/vgg_only_small_44k_text_drop_jan18_ema_final.pth # todo done
54
+ # ./output/vgg_only_small_44k/vgg_only_small_44k_ema_final.pth # todo done
55
+ # ./output/vgg_only_44k_filtered/vgg_only_44k_filtered_ema_final.pth # todo done
56
+
57
+ # ./output/vgg_only_small_44k_caption_jan26/vgg_only_small_44k_caption_jan26_ema_final.pth # done
58
+ # ./output/vgg_only_small_44k_with_caption_text_drop/vgg_only_small_44k_with_caption_text_drop_ema_final.pth # done
59
+
60
+
61
+ # ./output/vgg_only_small_44k_new_model_feb1/vgg_only_small_44k_new_model_feb1_ema_final.pth # Done
62
+ # ./output/vgg_only_small_44k_new_model_feb3/vgg_only_small_44k_new_model_feb3_ema_final.pth # Done
63
+
64
+ # ./output/vgg_only_small_44k_new_model_two_streams_with_rope_Feb5/vgg_only_small_44k_new_model_two_streams_with_rope_Feb5_ema_final.pth # in progress
65
+
66
+ # ./output/vgg_only_small_44k_new_model_two_steam_feb4/vgg_only_small_44k_new_model_two_steam_feb4_ema_final.pth # in progress
67
+
68
+ # for two stream with caption
69
+ # ./output/vgg_only_small_44k_new_model_two_stream_with_rope_Feb7/vgg_only_small_44k_new_model_two_stream_with_rope_Feb7_ema_final.pth
70
+
71
+
72
+ # for two stream with caption, text drop
73
+ # ./output/vgg_only_small_44k_caption_new_model_two_stream_with_rope_text_drop_Feb9/vgg_only_small_44k_caption_new_model_two_stream_with_rope_text_drop_Feb9_ema_final.pth
74
+
75
+
76
+ # for lumina-v2a, v1:
77
+ # ./output/vgg_only_small_44k_new_model_lumina_v2a_Feb12/vgg_only_small_44k_new_model_lumina_v2a_Feb12_ema_final.pth
78
+
79
+ #./output/vgg_only_small_44k_new_model_lumina_2a_with_RMSNorm_Feb12/vgg_only_small_44k_new_model_lumina_2a_with_RMSNorm_Feb12_ema_final.pth
80
+
81
+
82
+ # Feb 14:
83
+ #./output/vgg_only_small_44k_new_model_lumina_v2a_two_stream_Feb13_with_RMSNorm/vgg_only_small_44k_new_model_lumina_v2a_two_stream_Feb13_with_RMSNorm_ema_final.pth
84
+
85
+ #./output/vgg_only_small_44k_caption_new_model_lumina_v2a_two_stream_Feb13_with_RMSNorm/vgg_only_small_44k_caption_new_model_lumina_v2a_two_stream_Feb13_with_RMSNorm_ema_final.pth
86
+
87
+
88
+ # todo Feb 24: used for generate dpo data by using pre-trained baseline model
89
+ # ./output/vgg_only_small_44k_new_model_lumina_v2a_two_stream_Feb18_caption_depth16/vgg_only_small_44k_new_model_lumina_v2a_two_stream_Feb18_caption_depth16_ema_final.pth
90
+
91
+
92
+ # Mar 6 for DPO
93
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_dpo_iter1_Mar6_new/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_dpo_iter1_Mar6_new_ema_final.pth
94
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_dpo_iter1_Mar6_latest/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_dpo_iter1_Mar6_latest_ema_final.pth
95
+
96
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_dpo_iter1_Mar6_latestlatest/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_dpo_iter1_Mar6_latestlatest_ema_final.pth
97
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_dpo_iter1_Mar7/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_dpo_iter1_Mar7_ema_final.pth
98
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_dpo_iter1_Mar7_new/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_dpo_iter1_Mar7_new_ema_final.pth
99
+
100
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_depth_caption_dpo_iter1_cavp_beta5000_Mar12/vgg_only_small_44k_lumina_v2a_two_stream_depth_caption_dpo_iter1_cavp_beta5000_Mar12_ema_final.pth
101
+
102
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_depth_caption_dpo_iter1_cavp_beta2000_Mar12/vgg_only_small_44k_lumina_v2a_two_stream_depth_caption_dpo_iter1_cavp_beta2000_Mar12_ema_final.pth
103
+
104
+ # ./output/vgg_only_small_44k_vgg_only_small_44k_lumina_v2a_two_stream_depth_caption_dpo_iter1_cavp_beta10000_Mar12/vgg_only_small_44k_vgg_only_small_44k_lumina_v2a_two_stream_depth_caption_dpo_iter1_cavp_beta10000_Mar12_ema_final.pth
105
+
106
+ # todo May 12 & 16
107
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_Mar12_beta2000/vgg_only_small_44k_lumina_v2a_two_stream_Mar12_depth16_caption_10000samples_Mar12_beta2000_ema_final.pth
108
+
109
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_clap_beta10000/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_clap_beta10000_ema_final.pth
110
+
111
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_clap_beta5000/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_clap_beta5000_ema_final.pth
112
+
113
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_clap_beta2000/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_clap_beta2000_ema_final.pth
114
+
115
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_clap_beta2000/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_clap_beta2000_ema_final.pth
116
+
117
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_clap_beta7000/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_clap_beta7000_ema_final.pth
118
+
119
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_10000samples_clap_beta10000/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_10000samples_clap_beta10000_ema_final.pth
120
+
121
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_10000samples_clap_beta10000/vgg_only_small_44k_lumina_v2a_two_stream_Mar21_depth16_caption_10000samples_clap_beta10000_ema_final.pth
122
+
123
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_Mar26_depth16_caption_beta10000_av_align/vgg_only_small_44k_lumina_v2a_two_stream_Mar26_depth16_caption_beta10000_av_align_ema_final.pth
124
+
125
+
126
+ # todo full reward
127
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_Mar26_depth16_caption_beta10000_full_reward/vgg_only_small_44k_lumina_v2a_two_stream_Mar26_depth16_caption_beta10000_full_reward_ema_final.pth
128
+
129
+
130
+ # todo April 12
131
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_April12_beta10000_av_align/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_April12_beta10000_av_align_ema_final.pth
132
+
133
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_April12_beta2000_av_align/vgg_only_small_44k_lumina_v2a_two_stream_depth16_caption_April12_beta2000_av_align_ema_final.pth
134
+
135
+ # todo April 13
136
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_April12_depth16_capton_beta10000_reward_2avalign_1cavp_2clap_thre03/vgg_only_small_44k_lumina_v2a_two_stream_April12_depth16_capton_beta10000_reward_2avalign_1cavp_2clap_thre03_ema_final.pth
137
+
138
+
139
+ #./output/vgg_only_small_44k_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_beta10000_clap_iter1/vgg_only_small_44k_lumina_v2a_two_stream_April12_depth16_caption_10audio_per_video_beta10000_clap_iter1_ema_final.pth
140
+
141
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_April12_depth16_caption_beta10000_av_align_to_clap_iter1/vgg_only_small_44k_lumina_v2a_two_stream_April12_depth16_caption_beta10000_av_align_to_clap_iter1_ema_final.pth
142
+
143
+ # after May
144
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_May6_depth16_caption_beta10000_iter1_imagebind/vgg_only_small_44k_lumina_v2a_two_stream_May6_depth16_caption_beta10000_iter1_imagebind_ema_final.pth
145
+
146
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_May6_depth16_caption_beta10000_iter1_desync/vgg_only_small_44k_lumina_v2a_two_stream_May6_depth16_caption_beta10000_iter1_desync_ema_final.pth
147
+
148
+ #./output/vgg_only_small_44k_lumina_v2a_two_stream_May6_depth16_caption_beta2000_iter1_desync/vgg_only_small_44k_lumina_v2a_two_stream_May6_depth16_caption_beta2000_iter1_desync_ema_final.pth
149
+
150
+ #./output/vgg_only_small_44k_lumina_v2a_two_stream_May6_depth16_caption_beta10000_iter1_desync_3ksteps/vgg_only_small_44k_lumina_v2a_two_stream_May6_depth16_caption_beta10000_iter1_desync_3ksteps_ema_final.pth
151
+
152
+ #./output/vgg_only_small_44k_lumina_v2a_two_stream_May7_depth16_caption_beta10000_iter1_desync_3ksteps/vgg_only_small_44k_lumina_v2a_two_stream_May7_depth16_caption_beta10000_iter1_desync_3ksteps_ema_final.pth
153
+
154
+ #./output/vgg_only_small_44k_lumina_v2a_two_stream_May7_depth16_caption_beta10000_full_reward_ib_desync/vgg_only_small_44k_lumina_v2a_two_stream_May7_depth16_caption_beta10000_full_reward_ib_desync_ema_final.pth
155
+
156
+ #./output/vgg_only_small_44k_lumina_v2a_two_stream_May7_depth16_caption_beta10000_full_reward_ib_2desync/vgg_only_small_44k_lumina_v2a_two_stream_May7_depth16_caption_beta10000_full_reward_ib_2desync_ema_final.pth
157
+
158
+ #./output/vgg_only_small_44k_lumina_v2a_two_stream_May7_depth16_caption_beta20000_full_reward_ib_desync/vgg_only_small_44k_lumina_v2a_two_stream_May7_depth16_caption_beta20000_full_reward_ib_desync_ema_final.pth
159
+
160
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_May10_depth16_caption_beta10000_iter1_imagebind_at/vgg_only_small_44k_lumina_v2a_two_stream_May10_depth16_caption_beta10000_iter1_imagebind_at_ema_final.pth
161
+
162
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_May10_depth16_caption_beta10000_iter1_full_reward_ib_av_at/vgg_only_small_44k_lumina_v2a_two_stream_May10_depth16_caption_beta10000_iter1_full_reward_ib_av_at_ema_final.pth
163
+
164
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_May10_depth16_caption_beta10000_iter1_full_reward_ib_av_at_2desync/vgg_only_small_44k_lumina_v2a_two_stream_May10_depth16_caption_beta10000_iter1_full_reward_ib_av_at_2desync_ema_final.pth
165
+
166
+ # ./output/vgg_only_small_44k_lumina_v2a_two_stream_May10_depth16_caption_beta10000_iter1_full_reward_ib_av_at_2desync_10audio_per_video/vgg_only_small_44k_lumina_v2a_two_stream_May10_depth16_caption_beta10000_iter1_full_reward_ib_av_at_2desync_10audio_per_video_ema_final.pth
167
+
168
+ # './output/vgg_only_small_44k_lumina_v2a_two_stream_May10_depth16_caption_beta10000_iter1_full_reward_ib_av_at_2desync_10audio_per_video/vgg_only_small_44k_lumina_v2a_two_stream_May10_depth16_caption_beta10000_iter1_full_reward_ib_av_at_2desync_10audio_per_video_ema_final.pth'
169
+
170
+ small_44k = ModelConfig(model_name='small_44k',
171
+ model_path=None,
172
+ vae_path=Path('./ext_weights/v1-44.pth'),
173
+ bigvgan_16k_path=None,
174
+ mode='44k')
175
+
176
+
177
+ medium_44k = ModelConfig(model_name='medium_44k',
178
+ model_path=Path('/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/public/kwang/MMAudio/output/train_vgg_only_medium_44k/train_vgg_only_medium_44k_ema_final.pth'),
179
+ vae_path=Path('./ext_weights/v1-44.pth'),
180
+ bigvgan_16k_path=None,
181
+ mode='44k')
182
+ large_44k = ModelConfig(model_name='large_44k',
183
+ model_path=Path('./output/vgg_only_large_44k/vgg_only_large_44k_ema_final.pth'),
184
+ vae_path=Path('./ext_weights/v1-44.pth'),
185
+ bigvgan_16k_path=None,
186
+ mode='44k')
187
+ large_44k_v2 = ModelConfig(model_name='large_44k_v2',
188
+ model_path=Path('./weights/mmaudio_large_44k_v2.pth'),
189
+ vae_path=Path('./ext_weights/v1-44.pth'),
190
+ bigvgan_16k_path=None,
191
+ mode='44k')
192
+ all_model_cfg: dict[str, ModelConfig] = {
193
+ 'small_16k': small_16k,
194
+ 'small_44k': small_44k,
195
+ 'medium_44k': medium_44k,
196
+ 'large_44k': large_44k,
197
+ 'large_44k_v2': large_44k_v2,
198
+ }
199
+
200
+
201
+ def generate(
202
+ clip_video: Optional[torch.Tensor],
203
+ sync_video: Optional[torch.Tensor],
204
+ text: Optional[list[str]],
205
+ *,
206
+ negative_text: Optional[list[str]] = None,
207
+ feature_utils: FeaturesUtils,
208
+ net: MMAudio,
209
+ fm: FlowMatching,
210
+ rng: torch.Generator,
211
+ cfg_strength: float,
212
+ clip_batch_size_multiplier: int = 40,
213
+ sync_batch_size_multiplier: int = 40,
214
+ image_input: bool = False,
215
+ ) -> torch.Tensor:
216
+ device = feature_utils.device
217
+ dtype = feature_utils.dtype
218
+
219
+ bs = len(text)
220
+ if clip_video is not None:
221
+ clip_video = clip_video.to(device, dtype, non_blocking=True)
222
+ clip_features = feature_utils.encode_video_with_clip(clip_video,
223
+ batch_size=bs *
224
+ clip_batch_size_multiplier)
225
+ if image_input:
226
+ clip_features = clip_features.expand(-1, net.clip_seq_len, -1)
227
+ else:
228
+ clip_features = net.get_empty_clip_sequence(bs)
229
+
230
+ if sync_video is not None and not image_input:
231
+ sync_video = sync_video.to(device, dtype, non_blocking=True)
232
+ sync_features = feature_utils.encode_video_with_sync(sync_video,
233
+ batch_size=bs *
234
+ sync_batch_size_multiplier)
235
+ else:
236
+ sync_features = net.get_empty_sync_sequence(bs)
237
+
238
+ if text is not None:
239
+ text_features = feature_utils.encode_text(text)
240
+ else:
241
+ text_features = net.get_empty_string_sequence(bs)
242
+
243
+ if negative_text is not None:
244
+ assert len(negative_text) == bs
245
+ negative_text_features = feature_utils.encode_text(negative_text)
246
+ else:
247
+ negative_text_features = net.get_empty_string_sequence(bs)
248
+
249
+ x0 = torch.randn(bs,
250
+ net.latent_seq_len,
251
+ net.latent_dim,
252
+ device=device,
253
+ dtype=dtype,
254
+ generator=rng)
255
+ preprocessed_conditions = net.preprocess_conditions(clip_features, sync_features, text_features)
256
+ empty_conditions = net.get_empty_conditions(
257
+ bs, negative_text_features=negative_text_features if negative_text is not None else None)
258
+
259
+ cfg_ode_wrapper = lambda t, x: net.ode_wrapper(t, x, preprocessed_conditions, empty_conditions,
260
+ cfg_strength)
261
+ x1 = fm.to_data(cfg_ode_wrapper, x0)
262
+ x1 = net.unnormalize(x1)
263
+ spec = feature_utils.decode(x1)
264
+ audio = feature_utils.vocode(spec)
265
+ return audio
266
+
267
+
268
+ # todo Feb 25
269
+ def generate_dpo(
270
+ clip_video: Optional[torch.Tensor],
271
+ sync_video: Optional[torch.Tensor],
272
+ text: Optional[list[str]],
273
+ *,
274
+ negative_text: Optional[list[str]] = None,
275
+ feature_utils: FeaturesUtils,
276
+ net: MMAudio,
277
+ fm: FlowMatching,
278
+ rng: torch.Generator,
279
+ cfg_strength: float,
280
+ clip_batch_size_multiplier: int = 40,
281
+ sync_batch_size_multiplier: int = 40,
282
+ image_input: bool = False,
283
+ num_samples_per_video: int = 1,
284
+ ) -> list[torch.Tensor]:
285
+ device = feature_utils.device
286
+ dtype = feature_utils.dtype
287
+
288
+ bs = len(text)
289
+ if clip_video is not None:
290
+ clip_video = clip_video.to(device, dtype, non_blocking=True)
291
+ clip_features = feature_utils.encode_video_with_clip(clip_video,
292
+ batch_size=bs *
293
+ clip_batch_size_multiplier)
294
+ if image_input:
295
+ clip_features = clip_features.expand(-1, net.clip_seq_len, -1)
296
+ else:
297
+ clip_features = net.get_empty_clip_sequence(bs)
298
+
299
+ if sync_video is not None and not image_input:
300
+ sync_video = sync_video.to(device, dtype, non_blocking=True)
301
+ sync_features = feature_utils.encode_video_with_sync(sync_video,
302
+ batch_size=bs *
303
+ sync_batch_size_multiplier)
304
+ else:
305
+ sync_features = net.get_empty_sync_sequence(bs)
306
+
307
+ if text is not None:
308
+ text_features = feature_utils.encode_text(text)
309
+ else:
310
+ text_features = net.get_empty_string_sequence(bs)
311
+
312
+ if negative_text is not None:
313
+ assert len(negative_text) == bs
314
+ negative_text_features = feature_utils.encode_text(negative_text)
315
+ else:
316
+ negative_text_features = net.get_empty_string_sequence(bs)
317
+
318
+ preprocessed_conditions = net.preprocess_conditions(clip_features, sync_features, text_features)
319
+ empty_conditions = net.get_empty_conditions(bs, negative_text_features=negative_text_features if negative_text is not None else None)
320
+
321
+ cfg_ode_wrapper = lambda t, x: net.ode_wrapper(t, x, preprocessed_conditions, empty_conditions, cfg_strength)
322
+
323
+ x0 = torch.randn(bs*num_samples_per_video,
324
+ net.latent_seq_len,
325
+ net.latent_dim,
326
+ device=device,
327
+ dtype=dtype,
328
+ generator=rng)
329
+
330
+ audios = []
331
+ for i, each_x0 in enumerate(x0.chunk(num_samples_per_video, dim=0)):
332
+ x1 = fm.to_data(cfg_ode_wrapper, each_x0) # todo Feb 25
333
+ x1 = net.unnormalize(x1)
334
+ spec = feature_utils.decode(x1)
335
+ audio = feature_utils.vocode(spec)
336
+ audios.append(audio)
337
+ return audios
338
+
339
+
340
+ LOGFORMAT = "[%(log_color)s%(levelname)-8s%(reset)s]: %(log_color)s%(message)s%(reset)s"
341
+
342
+
343
+ def setup_eval_logging(log_level: int = logging.INFO):
344
+ logging.root.setLevel(log_level)
345
+ formatter = ColoredFormatter(LOGFORMAT)
346
+ stream = logging.StreamHandler()
347
+ stream.setLevel(log_level)
348
+ stream.setFormatter(formatter)
349
+ log = logging.getLogger()
350
+ log.setLevel(log_level)
351
+ log.addHandler(stream)
352
+
353
+
354
+ _CLIP_SIZE = 384
355
+ _CLIP_FPS = 8.0
356
+
357
+ _SYNC_SIZE = 224
358
+ _SYNC_FPS = 25.0
359
+
360
+
361
+ def load_video(video_path: Path, duration_sec: float, load_all_frames: bool = True) -> VideoInfo:
362
+
363
+ clip_transform = v2.Compose([
364
+ v2.Resize((_CLIP_SIZE, _CLIP_SIZE), interpolation=v2.InterpolationMode.BICUBIC),
365
+ v2.ToImage(),
366
+ v2.ToDtype(torch.float32, scale=True),
367
+ ])
368
+
369
+ sync_transform = v2.Compose([
370
+ v2.Resize(_SYNC_SIZE, interpolation=v2.InterpolationMode.BICUBIC),
371
+ v2.CenterCrop(_SYNC_SIZE),
372
+ v2.ToImage(),
373
+ v2.ToDtype(torch.float32, scale=True),
374
+ v2.Normalize(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]),
375
+ ])
376
+
377
+ output_frames, all_frames, orig_fps = read_frames(video_path,
378
+ list_of_fps=[_CLIP_FPS, _SYNC_FPS],
379
+ start_sec=0,
380
+ end_sec=duration_sec,
381
+ need_all_frames=load_all_frames)
382
+
383
+ clip_chunk, sync_chunk = output_frames
384
+ clip_chunk = torch.from_numpy(clip_chunk).permute(0, 3, 1, 2)
385
+ sync_chunk = torch.from_numpy(sync_chunk).permute(0, 3, 1, 2)
386
+
387
+ clip_frames = clip_transform(clip_chunk)
388
+ sync_frames = sync_transform(sync_chunk)
389
+
390
+ clip_length_sec = clip_frames.shape[0] / _CLIP_FPS
391
+ sync_length_sec = sync_frames.shape[0] / _SYNC_FPS
392
+
393
+ if clip_length_sec < duration_sec:
394
+ log.warning(f'Clip video is too short: {clip_length_sec:.2f} < {duration_sec:.2f}')
395
+ log.warning(f'Truncating to {clip_length_sec:.2f} sec')
396
+ duration_sec = clip_length_sec
397
+
398
+ if sync_length_sec < duration_sec:
399
+ log.warning(f'Sync video is too short: {sync_length_sec:.2f} < {duration_sec:.2f}')
400
+ log.warning(f'Truncating to {sync_length_sec:.2f} sec')
401
+ duration_sec = sync_length_sec
402
+
403
+ clip_frames = clip_frames[:int(_CLIP_FPS * duration_sec)]
404
+ sync_frames = sync_frames[:int(_SYNC_FPS * duration_sec)]
405
+
406
+ video_info = VideoInfo(
407
+ duration_sec=duration_sec,
408
+ fps=orig_fps,
409
+ clip_frames=clip_frames,
410
+ sync_frames=sync_frames,
411
+ all_frames=all_frames if load_all_frames else None,
412
+ )
413
+ return video_info
414
+
415
+ # todo Feb 24 simplified version
416
+ def load_full_video_frames(video_path: Path, duration_sec: float, load_all_frames: bool = True) -> VideoInfo:
417
+
418
+ all_frames, orig_fps = read_full_frames(video_path,
419
+ start_sec=0,
420
+ end_sec=duration_sec,
421
+ need_all_frames=load_all_frames)
422
+
423
+
424
+ video_info = VideoInfo(
425
+ duration_sec=duration_sec,
426
+ fps=orig_fps,
427
+ clip_frames=None,
428
+ sync_frames=None,
429
+ all_frames=all_frames if load_all_frames else None,
430
+ )
431
+ return video_info
432
+
433
+
434
+ def load_image(image_path: Path) -> VideoInfo:
435
+ clip_transform = v2.Compose([
436
+ v2.Resize((_CLIP_SIZE, _CLIP_SIZE), interpolation=v2.InterpolationMode.BICUBIC),
437
+ v2.ToImage(),
438
+ v2.ToDtype(torch.float32, scale=True),
439
+ ])
440
+
441
+ sync_transform = v2.Compose([
442
+ v2.Resize(_SYNC_SIZE, interpolation=v2.InterpolationMode.BICUBIC),
443
+ v2.CenterCrop(_SYNC_SIZE),
444
+ v2.ToImage(),
445
+ v2.ToDtype(torch.float32, scale=True),
446
+ v2.Normalize(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]),
447
+ ])
448
+
449
+ frame = np.array(Image.open(image_path))
450
+
451
+ clip_chunk = torch.from_numpy(frame).unsqueeze(0).permute(0, 3, 1, 2)
452
+ sync_chunk = torch.from_numpy(frame).unsqueeze(0).permute(0, 3, 1, 2)
453
+
454
+ clip_frames = clip_transform(clip_chunk)
455
+ sync_frames = sync_transform(sync_chunk)
456
+
457
+ video_info = ImageInfo(
458
+ clip_frames=clip_frames,
459
+ sync_frames=sync_frames,
460
+ original_frame=frame,
461
+ )
462
+ return video_info
463
+
464
+
465
+ def make_video(video_info: VideoInfo, output_path: Path, audio: torch.Tensor, sampling_rate: int):
466
+ reencode_with_audio(video_info, output_path, audio, sampling_rate)
467
+
468
+ # todo Feb 24
469
+ def make_video_new(all_frames, fps, width, height, output_path, audio, sampling_rate):
470
+ reencode_with_audio_new(all_frames, fps, width, height, output_path, audio, sampling_rate)
mmaudio/runner-Copy1.py ADDED
@@ -0,0 +1,947 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ trainer.py - wrapper and utility functions for network training
3
+ Compute loss, back-prop, update parameters, logging, etc.
4
+ """
5
+ import os
6
+ from pathlib import Path
7
+ from typing import Optional, Union
8
+
9
+ import torch
10
+ import torch.distributed
11
+ import torch.optim as optim
12
+ #from av_bench.evaluate import evaluate # todo Jan 12
13
+ #from av_bench.extract import extract
14
+ from nitrous_ema import PostHocEMA
15
+ from omegaconf import DictConfig
16
+ from torch.nn.parallel import DistributedDataParallel as DDP
17
+
18
+ from mmaudio.model.flow_matching import FlowMatching
19
+ #from mmaudio.model.networks import get_my_mmaudio
20
+ from mmaudio.model.networks_new import get_my_mmaudio
21
+ from mmaudio.model.sequence_config import CONFIG_16K, CONFIG_44K
22
+ from mmaudio.model.utils.features_utils import FeaturesUtils
23
+ from mmaudio.model.utils.parameter_groups import get_parameter_groups
24
+ from mmaudio.model.utils.sample_utils import log_normal_sample
25
+ from mmaudio.utils.dist_utils import (info_if_rank_zero, local_rank, string_if_rank_zero)
26
+ from mmaudio.utils.log_integrator import Integrator
27
+ from mmaudio.utils.logger import TensorboardLogger
28
+ from mmaudio.utils.time_estimator import PartialTimeEstimator, TimeEstimator
29
+ from mmaudio.utils.video_joiner import VideoJoiner
30
+
31
+ import torch.nn.functional as F
32
+ import copy # todo Mar 2
33
+
34
+ class Runner:
35
+
36
+ def __init__(self,
37
+ cfg: DictConfig,
38
+ log: TensorboardLogger,
39
+ run_path: Union[str, Path],
40
+ for_training: bool = True,
41
+ latent_mean: Optional[torch.Tensor] = None,
42
+ latent_std: Optional[torch.Tensor] = None,
43
+ dpo_train: bool = False):
44
+ self.exp_id = cfg.exp_id
45
+ self.use_amp = cfg.amp
46
+ self.for_training = for_training
47
+ self.cfg = cfg
48
+ self.dpo_train = dpo_train # todo Mar 2
49
+
50
+ if cfg.model.endswith('16k'):
51
+ self.seq_cfg = CONFIG_16K
52
+ mode = '16k'
53
+ elif cfg.model.endswith('44k'):
54
+ self.seq_cfg = CONFIG_44K
55
+ mode = '44k'
56
+ else:
57
+ raise ValueError(f'Unknown model: {cfg.model}')
58
+
59
+ self.sample_rate = self.seq_cfg.sampling_rate
60
+ self.duration_sec = self.seq_cfg.duration
61
+
62
+ # setting up the model
63
+ empty_string_feat = torch.load('./ext_weights/empty_string.pth', weights_only=True)[0]
64
+
65
+
66
+ if not dpo_train:
67
+ self.network = DDP(get_my_mmaudio(cfg.model,
68
+ latent_mean=latent_mean,
69
+ latent_std=latent_std,
70
+ empty_string_feat=empty_string_feat,
71
+ dpo_train=dpo_train).cuda(),
72
+ device_ids=[local_rank],
73
+ broadcast_buffers=False,
74
+ find_unused_parameters=True)
75
+ else:
76
+ self.network = DDP(get_my_mmaudio(cfg.model,
77
+ latent_mean_dpo=latent_mean,
78
+ latent_std_dpo=latent_std,
79
+ empty_string_feat=empty_string_feat,
80
+ dpo_train=dpo_train).cuda(),
81
+ device_ids=[local_rank],
82
+ broadcast_buffers=False,
83
+ find_unused_parameters=True)
84
+
85
+ if dpo_train: # todo Mar 2
86
+ self.beta_dpo = 2000
87
+ map_location = 'cuda:%d' % local_rank
88
+ pretrained_ckpt = torch.load(cfg['pretrained_ckpt_for_dpo'], map_location={'cuda:0': map_location}, weights_only=True)
89
+ self.network.module.load_state_dict(pretrained_ckpt, strict=False)
90
+ info_if_rank_zero(log, 'Loading pretrained weights from the disk')
91
+
92
+ self.ref_network = copy.deepcopy(self.network)
93
+ self.ref_network.requires_grad_ = False
94
+ self.ref_network.eval()
95
+ for param in self.ref_network.parameters():
96
+ param.requires_grad = False
97
+
98
+ if cfg.compile:
99
+ # NOTE: though train_fn and val_fn are very similar
100
+ # (early on they are implemented as a single function)
101
+ # keeping them separate and compiling them separately are CRUCIAL for high performance
102
+ self.train_fn = torch.compile(self.train_fn)
103
+ self.val_fn = torch.compile(self.val_fn)
104
+
105
+ if cfg.compile and dpo_train: # todo Mar 2
106
+ self.train_fn_dpo = torch.compile(self.train_fn_dpo)
107
+
108
+ self.fm = FlowMatching(cfg.sampling.min_sigma,
109
+ inference_mode=cfg.sampling.method,
110
+ num_steps=cfg.sampling.num_steps)
111
+
112
+ # ema profile
113
+ if for_training and cfg.ema.enable and local_rank == 0:
114
+ self.ema = PostHocEMA(self.network.module,
115
+ sigma_rels=cfg.ema.sigma_rels,
116
+ update_every=cfg.ema.update_every,
117
+ checkpoint_every_num_steps=cfg.ema.checkpoint_every,
118
+ checkpoint_folder=cfg.ema.checkpoint_folder,
119
+ step_size_correction=True).cuda()
120
+ self.ema_start = cfg.ema.start
121
+ else:
122
+ self.ema = None
123
+
124
+ self.rng = torch.Generator(device='cuda')
125
+ self.rng.manual_seed(cfg['seed'] + local_rank)
126
+
127
+ # setting up feature extractors and VAEs
128
+ if mode == '16k':
129
+ self.features = FeaturesUtils(
130
+ tod_vae_ckpt=cfg['vae_16k_ckpt'],
131
+ bigvgan_vocoder_ckpt=cfg['bigvgan_vocoder_ckpt'],
132
+ synchformer_ckpt=cfg['synchformer_ckpt'],
133
+ enable_conditions=True,
134
+ mode=mode,
135
+ need_vae_encoder=False,
136
+ )
137
+ elif mode == '44k':
138
+ self.features = FeaturesUtils(
139
+ tod_vae_ckpt=cfg['vae_44k_ckpt'],
140
+ synchformer_ckpt=cfg['synchformer_ckpt'],
141
+ enable_conditions=True,
142
+ mode=mode,
143
+ need_vae_encoder=False,
144
+ )
145
+ self.features = self.features.cuda().eval()
146
+
147
+ if cfg.compile:
148
+ self.features.compile()
149
+
150
+ # hyperparameters
151
+ self.log_normal_sampling_mean = cfg.sampling.mean
152
+ self.log_normal_sampling_scale = cfg.sampling.scale
153
+ self.null_condition_probability = cfg.null_condition_probability
154
+ self.cfg_strength = cfg.cfg_strength
155
+
156
+ # todo add extra hyperparameters
157
+ self.text_condition_drop_probability = cfg.text_condition_drop_probability # todo Jan 16 [0.3, 0.5]
158
+ self.text_condition_drop_enable = cfg.text_condition_drop_enable # todo Jan 16 True or False
159
+ self.text_drop_step = cfg.text_drop_step # todo Jan 16
160
+
161
+ # setting up logging
162
+ self.log = log
163
+ self.run_path = Path(run_path)
164
+ vgg_cfg = cfg.dpo_data.VGGSound
165
+ if for_training:
166
+ self.val_video_joiner = VideoJoiner(vgg_cfg.root, self.run_path / 'val-sampled-videos',
167
+ self.sample_rate, self.duration_sec)
168
+ else:
169
+ self.test_video_joiner = VideoJoiner(vgg_cfg.root,
170
+ self.run_path / 'test-sampled-videos',
171
+ self.sample_rate, self.duration_sec)
172
+ string_if_rank_zero(self.log, 'model_size',
173
+ f'{sum([param.nelement() for param in self.network.parameters()])}')
174
+ string_if_rank_zero(
175
+ self.log, 'number_of_parameters_that_require_gradient: ',
176
+ str(
177
+ sum([
178
+ param.nelement()
179
+ for param in filter(lambda p: p.requires_grad, self.network.parameters())
180
+ ])))
181
+ info_if_rank_zero(self.log, 'torch version: ' + torch.__version__)
182
+ self.train_integrator = Integrator(self.log, distributed=True)
183
+ self.val_integrator = Integrator(self.log, distributed=True)
184
+
185
+ # setting up optimizer and loss
186
+ if for_training:
187
+ self.enter_train()
188
+ parameter_groups = get_parameter_groups(self.network, cfg, print_log=(local_rank == 0))
189
+ self.optimizer = optim.AdamW(parameter_groups,
190
+ lr=cfg['learning_rate'],
191
+ weight_decay=cfg['weight_decay'],
192
+ betas=[0.9, 0.95],
193
+ eps=1e-6 if self.use_amp else 1e-8,
194
+ fused=True)
195
+ if self.use_amp:
196
+ self.scaler = torch.amp.GradScaler(init_scale=2048)
197
+ self.clip_grad_norm = cfg['clip_grad_norm']
198
+
199
+ # linearly warmup learning rate
200
+ linear_warmup_steps = cfg['linear_warmup_steps']
201
+
202
+ def warmup(currrent_step: int):
203
+ return (currrent_step + 1) / (linear_warmup_steps + 1)
204
+
205
+ warmup_scheduler = optim.lr_scheduler.LambdaLR(self.optimizer, lr_lambda=warmup)
206
+
207
+ # setting up learning rate scheduler
208
+ if cfg['lr_schedule'] == 'constant':
209
+ next_scheduler = optim.lr_scheduler.LambdaLR(self.optimizer, lr_lambda=lambda _: 1)
210
+ elif cfg['lr_schedule'] == 'poly':
211
+ total_num_iter = cfg['iterations']
212
+ next_scheduler = optim.lr_scheduler.LambdaLR(self.optimizer,
213
+ lr_lambda=lambda x:
214
+ (1 - (x / total_num_iter))**0.9)
215
+ elif cfg['lr_schedule'] == 'step':
216
+ next_scheduler = optim.lr_scheduler.MultiStepLR(self.optimizer,
217
+ cfg['lr_schedule_steps'],
218
+ cfg['lr_schedule_gamma'])
219
+ else:
220
+ raise NotImplementedError
221
+
222
+ self.scheduler = optim.lr_scheduler.SequentialLR(self.optimizer,
223
+ [warmup_scheduler, next_scheduler],
224
+ [linear_warmup_steps])
225
+
226
+ # Logging info
227
+ self.log_text_interval = cfg['log_text_interval']
228
+ self.log_extra_interval = cfg['log_extra_interval']
229
+ self.save_weights_interval = cfg['save_weights_interval']
230
+ self.save_checkpoint_interval = cfg['save_checkpoint_interval']
231
+ self.save_copy_iterations = cfg['save_copy_iterations']
232
+ self.num_iterations = cfg['num_iterations']
233
+ if cfg['debug']:
234
+ self.log_text_interval = self.log_extra_interval = 1
235
+
236
+ # update() is called when we log metrics, within the logger
237
+ self.log.batch_timer = TimeEstimator(self.num_iterations, self.log_text_interval)
238
+ # update() is called every iteration, in this script
239
+ self.log.data_timer = PartialTimeEstimator(self.num_iterations, 1, ema_alpha=0.9)
240
+ else:
241
+ self.enter_val()
242
+
243
+ def train_fn(
244
+ self,
245
+ clip_f: torch.Tensor,
246
+ sync_f: torch.Tensor,
247
+ text_f: torch.Tensor,
248
+ a_mean: torch.Tensor,
249
+ a_std: torch.Tensor,
250
+ it: int = 0, # todo Jan 16
251
+ ) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor]:
252
+ # sample
253
+ a_randn = torch.empty_like(a_mean).normal_(generator=self.rng)
254
+ x1 = a_mean + a_std * a_randn
255
+ bs = x1.shape[0] # batch_size * seq_len * num_channels
256
+
257
+ # normalize the latents
258
+ x1 = self.network.module.normalize(x1)
259
+
260
+ t = log_normal_sample(x1,
261
+ generator=self.rng,
262
+ m=self.log_normal_sampling_mean,
263
+ s=self.log_normal_sampling_scale)
264
+ x0, x1, xt, (clip_f, sync_f, text_f) = self.fm.get_x0_xt_c(x1,
265
+ t,
266
+ Cs=[clip_f, sync_f, text_f],
267
+ generator=self.rng)
268
+
269
+ # classifier-free training
270
+ samples = torch.rand(bs, device=x1.device, generator=self.rng)
271
+
272
+ # null mask is for when a video is provided but we decided to ignore it
273
+ null_video = (samples < self.null_condition_probability)
274
+ # complete mask is for when a video is not provided or we decided to ignore it
275
+ clip_f[null_video] = self.network.module.empty_clip_feat
276
+ sync_f[null_video] = self.network.module.empty_sync_feat
277
+
278
+ samples = torch.rand(bs, device=x1.device, generator=self.rng)
279
+ # todo Jan 16: add text drop prob schedule
280
+ if self.text_condition_drop_enable: # todo Jan 16
281
+ drop_index = int(it // self.text_drop_step) # todo Jan 16
282
+ if drop_index >= len(self.text_condition_drop_probability): # todo Jan 16
283
+ text_condition_drop_prob = self.text_condition_drop_probability[-1] # todo Jan 16
284
+
285
+ else:
286
+ text_condition_drop_prob = self.text_condition_drop_probability[drop_index] # todo Jan 16
287
+
288
+ if it % self.text_drop_step == 0:
289
+ info_if_rank_zero(self.log, f'Text Condition Drop Prob is: {text_condition_drop_prob}') # todo Jan 16
290
+
291
+ null_text = (samples < text_condition_drop_prob) # todo Jan 16
292
+ else:
293
+ null_text = (samples < self.null_condition_probability) # todo Jan 16 [0.1, 0.2, 0.3, 0.4, 0.5]
294
+
295
+ #null_text = (samples < self.null_condition_probability) todo Jan 16 comment it when to use dynamic text condition drop
296
+ text_f[null_text] = self.network.module.empty_string_feat
297
+
298
+ pred_v = self.network(xt, clip_f, sync_f, text_f, t)
299
+ loss = self.fm.loss(pred_v, x0, x1)
300
+ mean_loss = loss.mean()
301
+ return x1, loss, mean_loss, t
302
+
303
+ def train_fn_dpo(
304
+ self,
305
+ clip_f: torch.Tensor,
306
+ sync_f: torch.Tensor,
307
+ text_f: torch.Tensor,
308
+ chosen_a_mean: torch.Tensor,
309
+ chosen_a_std: torch.Tensor,
310
+ reject_a_mean: torch.Tensor,
311
+ reject_a_std: torch.Tensor,
312
+ ) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor]:
313
+ # sample
314
+
315
+ a_randn_chosen = torch.empty_like(chosen_a_mean).normal_(generator=self.rng)
316
+ x1_chosen = chosen_a_mean + chosen_a_std * a_randn_chosen
317
+
318
+ a_randn_reject = torch.empty_like(reject_a_mean).normal_(generator=self.rng)
319
+ x1_reject = reject_a_mean + reject_a_std * a_randn_reject
320
+
321
+ # normalize the latents
322
+ x1_chosen, x1_reject = self.network.module.normalize_dpo(x1_chosen, x1_reject) # todo Mar 2 (needs to change)
323
+
324
+ x1 = torch.cat((x1_chosen, x1_reject), dim=0)
325
+ bs = x1.shape[0] # batch_size * seq_len * num_channels * 2 # todo Mar 2 needs to change
326
+
327
+
328
+ t = log_normal_sample(x1.chunk(2)[0], # todo keep the t same for both chosen and reject
329
+ generator=self.rng,
330
+ m=self.log_normal_sampling_mean,
331
+ s=self.log_normal_sampling_scale)
332
+
333
+ t = t.repeat(2) # todo
334
+
335
+ x0, x1, xt, (clip_f, sync_f, text_f) = self.fm.get_x0_xt_c_dpo(x1,
336
+ t,
337
+ Cs=[clip_f, sync_f, text_f],
338
+ generator=self.rng)
339
+
340
+ # classifier-free training
341
+ samples = torch.rand(bs//2, device=x1.device, generator=self.rng)
342
+
343
+ # null mask is for when a video is provided but we decided to ignore it
344
+ null_video = (samples < self.null_condition_probability)
345
+ # complete mask is for when a video is not provided or we decided to ignore it
346
+ clip_f[null_video] = self.network.module.empty_clip_feat
347
+ sync_f[null_video] = self.network.module.empty_sync_feat
348
+
349
+ samples = torch.rand(bs//2, device=x1.device, generator=self.rng)
350
+
351
+ # todo Jan 16: add text drop prob schedule
352
+ if self.text_condition_drop_enable: # todo Jan 16
353
+ drop_index = int(it // self.text_drop_step) # todo Jan 16
354
+ if drop_index >= len(self.text_condition_drop_probability): # todo Jan 16
355
+ text_condition_drop_prob = self.text_condition_drop_probability[-1] # todo Jan 16
356
+
357
+ else:
358
+ text_condition_drop_prob = self.text_condition_drop_probability[drop_index] # todo Jan 16
359
+
360
+ if it % self.text_drop_step == 0:
361
+ info_if_rank_zero(self.log, f'Text Condition Drop Prob is: {text_condition_drop_prob}') # todo Jan 16
362
+
363
+ null_text = (samples < text_condition_drop_prob) # todo Jan 16
364
+ else:
365
+ null_text = (samples < self.null_condition_probability) # todo Jan 16 [0.1, 0.2, 0.3, 0.4, 0.5]
366
+
367
+ #null_text = (samples < self.null_condition_probability) todo Jan 16 comment it when to use dynamic text condition drop
368
+ text_f[null_text] = self.network.module.empty_string_feat
369
+
370
+ clip_f = clip_f.repeat(2, 1, 1)
371
+ sync_f = sync_f.repeat(2, 1, 1)
372
+ text_f = text_f.repeat(2, 1, 1)
373
+
374
+ pred_v = self.network(xt, clip_f, sync_f, text_f, t)
375
+
376
+ model_loss = self.fm.loss(pred_v, x0, x1)
377
+
378
+ model_losses_w, model_losses_l = model_loss.chunk(2)
379
+
380
+ model_diff = model_losses_w - model_losses_l
381
+ raw_model_loss = 0.5 * (model_losses_w.mean() + model_losses_l.mean())
382
+
383
+ with torch.no_grad():
384
+ ref_pred_v = self.ref_network(xt, clip_f, sync_f, text_f, t)
385
+ ref_loss = self.fm.loss(ref_pred_v, x0, x1)
386
+ ref_losses_w, ref_losses_l = ref_loss.chunk(2)
387
+ ref_diff = ref_losses_w - ref_losses_l
388
+ raw_ref_loss = ref_loss.mean()
389
+
390
+ scale_term = -0.5 * self.beta_dpo
391
+ inside_term = scale_term * (model_diff - ref_diff)
392
+ implicit_acc = (
393
+ scale_term * (model_diff - ref_diff) > 0
394
+ ).sum().float() / inside_term.size(0)
395
+
396
+ loss = -1 * F.logsigmoid(inside_term) + model_losses_w
397
+ mean_loss = -1 * F.logsigmoid(inside_term).mean() + model_losses_w.mean()
398
+
399
+ return x1, loss, mean_loss, t.chunk(2)[0], raw_model_loss, raw_ref_loss, implicit_acc
400
+
401
+
402
+ def val_fn(
403
+ self,
404
+ clip_f: torch.Tensor,
405
+ sync_f: torch.Tensor,
406
+ text_f: torch.Tensor,
407
+ x1: torch.Tensor,
408
+ ) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor]:
409
+ bs = x1.shape[0] # batch_size * seq_len * num_channels
410
+ # normalize the latents
411
+ x1 = self.network.module.normalize(x1)
412
+ t = log_normal_sample(x1,
413
+ generator=self.rng,
414
+ m=self.log_normal_sampling_mean,
415
+ s=self.log_normal_sampling_scale)
416
+ x0, x1, xt, (clip_f, sync_f, text_f) = self.fm.get_x0_xt_c(x1,
417
+ t,
418
+ Cs=[clip_f, sync_f, text_f],
419
+ generator=self.rng)
420
+
421
+ # classifier-free training
422
+ samples = torch.rand(bs, device=x1.device, generator=self.rng)
423
+ # null mask is for when a video is provided but we decided to ignore it
424
+ null_video = (samples < self.null_condition_probability)
425
+ # complete mask is for when a video is not provided or we decided to ignore it
426
+ clip_f[null_video] = self.network.module.empty_clip_feat
427
+ sync_f[null_video] = self.network.module.empty_sync_feat
428
+
429
+ samples = torch.rand(bs, device=x1.device, generator=self.rng)
430
+ null_text = (samples < self.null_condition_probability)
431
+ text_f[null_text] = self.network.module.empty_string_feat
432
+
433
+ pred_v = self.network(xt, clip_f, sync_f, text_f, t)
434
+
435
+ loss = self.fm.loss(pred_v, x0, x1)
436
+ mean_loss = loss.mean()
437
+ return loss, mean_loss, t
438
+
439
+ def train_pass(self, data, it: int = 0):
440
+
441
+ if not self.for_training:
442
+ raise ValueError('train_pass() should not be called when not training.')
443
+
444
+ self.enter_train()
445
+ with torch.amp.autocast('cuda', enabled=self.use_amp, dtype=torch.bfloat16):
446
+ clip_f = data['clip_features'].cuda(non_blocking=True)
447
+ sync_f = data['sync_features'].cuda(non_blocking=True)
448
+ text_f = data['text_features'].cuda(non_blocking=True)
449
+ video_exist = data['video_exist'].cuda(non_blocking=True)
450
+ text_exist = data['text_exist'].cuda(non_blocking=True)
451
+ a_mean = data['a_mean'].cuda(non_blocking=True)
452
+ a_std = data['a_std'].cuda(non_blocking=True)
453
+
454
+ # these masks are for non-existent data; masking for CFG training is in train_fn
455
+ clip_f[~video_exist] = self.network.module.empty_clip_feat
456
+ sync_f[~video_exist] = self.network.module.empty_sync_feat
457
+ text_f[~text_exist] = self.network.module.empty_string_feat
458
+
459
+ self.log.data_timer.end()
460
+ if it % self.log_extra_interval == 0:
461
+ unmasked_clip_f = clip_f.clone()
462
+ unmasked_sync_f = sync_f.clone()
463
+ unmasked_text_f = text_f.clone()
464
+ x1, loss, mean_loss, t = self.train_fn(clip_f, sync_f, text_f, a_mean, a_std, it) # todo Jan 16
465
+
466
+ self.train_integrator.add_dict({'loss': mean_loss})
467
+
468
+ if it % self.log_text_interval == 0 and it != 0:
469
+ self.train_integrator.add_scalar('lr', self.scheduler.get_last_lr()[0])
470
+ self.train_integrator.add_binned_tensor('binned_loss', loss, t)
471
+ self.train_integrator.finalize('train', it)
472
+ self.train_integrator.reset_except_hooks()
473
+
474
+ # Backward pass
475
+ self.optimizer.zero_grad(set_to_none=True)
476
+ if self.use_amp:
477
+ self.scaler.scale(mean_loss).backward()
478
+ self.scaler.unscale_(self.optimizer)
479
+ grad_norm = torch.nn.utils.clip_grad_norm_(self.network.parameters(),
480
+ self.clip_grad_norm)
481
+ self.scaler.step(self.optimizer)
482
+ self.scaler.update()
483
+ else:
484
+ mean_loss.backward()
485
+ grad_norm = torch.nn.utils.clip_grad_norm_(self.network.parameters(),
486
+ self.clip_grad_norm)
487
+ self.optimizer.step()
488
+
489
+ if self.ema is not None and it >= self.ema_start:
490
+ self.ema.update()
491
+ self.scheduler.step()
492
+ self.integrator.add_scalar('grad_norm', grad_norm)
493
+
494
+ self.enter_val()
495
+ with torch.amp.autocast('cuda', enabled=self.use_amp,
496
+ dtype=torch.bfloat16), torch.inference_mode():
497
+ try:
498
+ if it % self.log_extra_interval == 0:
499
+ # save GT audio
500
+ # unnormalize the latents
501
+ x1 = self.network.module.unnormalize(x1[0:1])
502
+ mel = self.features.decode(x1)
503
+ audio = self.features.vocode(mel).cpu()[0] # 1 * num_samples
504
+ self.log.log_spectrogram('train', f'spec-gt-r{local_rank}', mel.cpu()[0], it)
505
+ self.log.log_audio('train',
506
+ f'audio-gt-r{local_rank}',
507
+ audio,
508
+ it,
509
+ sample_rate=self.sample_rate)
510
+
511
+ # save audio from sampling
512
+ x0 = torch.empty_like(x1[0:1]).normal_(generator=self.rng)
513
+ clip_f = unmasked_clip_f[0:1]
514
+ sync_f = unmasked_sync_f[0:1]
515
+ text_f = unmasked_text_f[0:1]
516
+ conditions = self.network.module.preprocess_conditions(clip_f, sync_f, text_f)
517
+ empty_conditions = self.network.module.get_empty_conditions(x0.shape[0])
518
+ cfg_ode_wrapper = lambda t, x: self.network.module.ode_wrapper(
519
+ t, x, conditions, empty_conditions, self.cfg_strength)
520
+ x1_hat = self.fm.to_data(cfg_ode_wrapper, x0)
521
+ x1_hat = self.network.module.unnormalize(x1_hat)
522
+ mel = self.features.decode(x1_hat)
523
+ audio = self.features.vocode(mel).cpu()[0]
524
+ self.log.log_spectrogram('train', f'spec-r{local_rank}', mel.cpu()[0], it)
525
+ self.log.log_audio('train',
526
+ f'audio-r{local_rank}',
527
+ audio,
528
+ it,
529
+ sample_rate=self.sample_rate)
530
+ except Exception as e:
531
+ self.log.warning(f'Error in extra logging: {e}')
532
+ if self.cfg.debug:
533
+ raise
534
+
535
+ # Save network weights and checkpoint if needed
536
+ save_copy = it in self.save_copy_iterations
537
+
538
+ if (it % self.save_weights_interval == 0 and it != 0) or save_copy:
539
+ self.save_weights(it)
540
+
541
+ if it % self.save_checkpoint_interval == 0 and it != 0:
542
+ self.save_checkpoint(it, save_copy=save_copy)
543
+
544
+ self.log.data_timer.start()
545
+
546
+
547
+ def train_dpo_pass(self, data, it: int = 0):
548
+
549
+ if not self.for_training:
550
+ raise ValueError('train_pass() should not be called when not training.')
551
+
552
+ self.enter_train()
553
+ with torch.amp.autocast('cuda', enabled=self.use_amp, dtype=torch.bfloat16):
554
+ clip_f = data['clip_features'].cuda(non_blocking=True)
555
+ sync_f = data['sync_features'].cuda(non_blocking=True)
556
+ text_f = data['text_features'].cuda(non_blocking=True)
557
+ video_exist = data['video_exist'].cuda(non_blocking=True)
558
+ text_exist = data['text_exist'].cuda(non_blocking=True)
559
+ chosen_a_mean = data['chosen_a_mean'].cuda(non_blocking=True)
560
+ chosen_a_std = data['chosen_a_std'].cuda(non_blocking=True)
561
+
562
+ reject_a_mean = data['reject_a_mean'].cuda(non_blocking=True)
563
+ reject_a_std = data['reject_a_std'].cuda(non_blocking=True)
564
+
565
+ # these masks are for non-existent data; masking for CFG training is in train_fn
566
+ clip_f[~video_exist] = self.network.module.empty_clip_feat
567
+ sync_f[~video_exist] = self.network.module.empty_sync_feat
568
+ text_f[~text_exist] = self.network.module.empty_string_feat
569
+
570
+ self.log.data_timer.end()
571
+ if it % self.log_extra_interval == 0:
572
+ unmasked_clip_f = clip_f.clone()
573
+ unmasked_sync_f = sync_f.clone()
574
+ unmasked_text_f = text_f.clone()
575
+ x1, loss, mean_loss, t, raw_model_loss, raw_ref_loss, implicit_acc = self.train_fn_dpo(clip_f, sync_f, text_f, chosen_a_mean, chosen_a_std, reject_a_mean, reject_a_std)
576
+
577
+ self.train_integrator.add_dict({'loss': mean_loss})
578
+ self.train_integrator.add_dict({'raw_model_loss': raw_model_loss})
579
+ self.train_integrator.add_dict({'raw_ref_loss': raw_ref_loss})
580
+ self.train_integrator.add_dict({'implicit_acc': implicit_acc})
581
+
582
+
583
+ if it % self.log_text_interval == 0 and it != 0:
584
+ self.train_integrator.add_scalar('lr', self.scheduler.get_last_lr()[0])
585
+ self.train_integrator.add_binned_tensor('binned_loss', loss, t)
586
+ self.train_integrator.finalize('train', it)
587
+ self.train_integrator.reset_except_hooks()
588
+
589
+ # Backward pass
590
+ self.optimizer.zero_grad(set_to_none=True)
591
+ if self.use_amp:
592
+ self.scaler.scale(mean_loss).backward()
593
+ self.scaler.unscale_(self.optimizer)
594
+ grad_norm = torch.nn.utils.clip_grad_norm_(self.network.parameters(),
595
+ self.clip_grad_norm)
596
+ self.scaler.step(self.optimizer)
597
+ self.scaler.update()
598
+ else:
599
+ mean_loss.backward()
600
+ grad_norm = torch.nn.utils.clip_grad_norm_(self.network.parameters(),
601
+ self.clip_grad_norm)
602
+ self.optimizer.step()
603
+
604
+ if self.ema is not None and it >= self.ema_start:
605
+ self.ema.update()
606
+ self.scheduler.step()
607
+ self.integrator.add_scalar('grad_norm', grad_norm)
608
+
609
+ self.enter_val()
610
+ with torch.amp.autocast('cuda', enabled=self.use_amp,
611
+ dtype=torch.bfloat16), torch.inference_mode():
612
+ try: # todo needs to be changed Mar 2
613
+ if it % self.log_extra_interval == 0:
614
+ # save GT audio
615
+ # unnormalize the latents
616
+ x1_chosen = x1.chunk(2)[0]
617
+ x1_reject = x1.chunk(2)[1]
618
+ # todo need to be changed accordingly
619
+ x1_chosen, x1_rekject = self.network.module.unnormalize_dpo(x1_chosen[0:1], x1_reject[0:1])
620
+ mel_chosen = self.features.decode(x1_chosen)
621
+ audio_chosen = self.features.vocode(mel_chosen).cpu()[0] # 1 * num_samples
622
+ mel_reject = self.features.decode(x1_reject)
623
+ audio_reject = self.features.vocode(mel_reject).cpu()[0] # 1 * num_samples
624
+
625
+ self.log.log_spectrogram('train-chosen', f'spec-gt-chosen-r{local_rank}', mel_chosen.cpu()[0], it)
626
+ self.log.log_audio('train-chosen',
627
+ f'audio-gt-chosen-r{local_rank}',
628
+ audio_chosen,
629
+ it,
630
+ sample_rate=self.sample_rate)
631
+
632
+ self.log.log_spectrogram('train-reject', f'spec-gt-reject-r{local_rank}', mel_reject.cpu()[0], it)
633
+ self.log.log_audio('train-reject',
634
+ f'audio-gt-reject-r{local_rank}',
635
+ audio_reject,
636
+ it,
637
+ sample_rate=self.sample_rate)
638
+
639
+ # save audio from sampling
640
+ x0_chosen = torch.empty_like(x1_chosen[0:1]).normal_(generator=self.rng)
641
+ x0_reject = torch.empty_like(x1_reject[0:1]).normal_(generator=self.rng)
642
+ clip_f = unmasked_clip_f[0:1]
643
+ sync_f = unmasked_sync_f[0:1]
644
+ text_f = unmasked_text_f[0:1]
645
+ conditions = self.network.module.preprocess_conditions(clip_f, sync_f, text_f)
646
+ empty_conditions = self.network.module.get_empty_conditions(x0_chosen.shape[0])
647
+ cfg_ode_wrapper = lambda t, x: self.network.module.ode_wrapper(
648
+ t, x, conditions, empty_conditions, self.cfg_strength)
649
+ x1_hat_chosen = self.fm.to_data(cfg_ode_wrapper, x0_chosen)
650
+ x1_hat_reject = self.fm.to_data(cfg_ode_wrapper, x0_reject)
651
+
652
+ x1_hat_chosen, x1_hat_reject = self.network.module.unnormalize_dpo(x1_hat_chosen, x1_hat_reject)
653
+ mel_chosen = self.features.decode(x1_hat_chosen)
654
+ audio_chosen = self.features.vocode(mel_chosen).cpu()[0]
655
+
656
+ mel_reject = self.features.decode(x1_hat_reject)
657
+ audio_reject = self.features.vocode(mel_reject).cpu()[0]
658
+
659
+ self.log.log_spectrogram('train-chosen', f'spec-chosen-r{local_rank}', mel_chosen.cpu()[0], it)
660
+ self.log.log_audio('train-chosen',
661
+ f'audio-chosen-r{local_rank}',
662
+ audio_chosen,
663
+ it,
664
+ sample_rate=self.sample_rate)
665
+
666
+ self.log.log_spectrogram('train-reject', f'spec-reject-r{local_rank}', mel_reject.cpu()[0], it)
667
+ self.log.log_audio('train-reject',
668
+ f'audio-reject-r{local_rank}',
669
+ audio_reject,
670
+ it,
671
+ sample_rate=self.sample_rate)
672
+
673
+
674
+ '''
675
+ x1 = self.network.module.unnormalize(x1[0:1])
676
+ mel = self.features.decode(x1)
677
+ audio = self.features.vocode(mel).cpu()[0] # 1 * num_samples
678
+ self.log.log_spectrogram('train', f'spec-gt-r{local_rank}', mel.cpu()[0], it)
679
+ self.log.log_audio('train',
680
+ f'audio-gt-r{local_rank}',
681
+ audio,
682
+ it,
683
+ sample_rate=self.sample_rate)
684
+
685
+ # save audio from sampling
686
+ x0 = torch.empty_like(x1[0:1]).normal_(generator=self.rng)
687
+ clip_f = unmasked_clip_f[0:1]
688
+ sync_f = unmasked_sync_f[0:1]
689
+ text_f = unmasked_text_f[0:1]
690
+ conditions = self.network.module.preprocess_conditions(clip_f, sync_f, text_f)
691
+ empty_conditions = self.network.module.get_empty_conditions(x0.shape[0])
692
+ cfg_ode_wrapper = lambda t, x: self.network.module.ode_wrapper(
693
+ t, x, conditions, empty_conditions, self.cfg_strength)
694
+ x1_hat = self.fm.to_data(cfg_ode_wrapper, x0)
695
+ x1_hat = self.network.module.unnormalize(x1_hat)
696
+ mel = self.features.decode(x1_hat)
697
+ audio = self.features.vocode(mel).cpu()[0]
698
+ self.log.log_spectrogram('train', f'spec-r{local_rank}', mel.cpu()[0], it)
699
+ self.log.log_audio('train',
700
+ f'audio-r{local_rank}',
701
+ audio,
702
+ it,
703
+ sample_rate=self.sample_rate)'''
704
+ except Exception as e:
705
+ self.log.warning(f'Error in extra logging: {e}')
706
+ if self.cfg.debug:
707
+ raise
708
+
709
+ # Save network weights and checkpoint if needed
710
+ save_copy = it in self.save_copy_iterations
711
+
712
+ if (it % self.save_weights_interval == 0 and it != 0) or save_copy:
713
+ self.save_weights(it)
714
+
715
+ if it % self.save_checkpoint_interval == 0 and it != 0:
716
+ self.save_checkpoint(it, save_copy=save_copy)
717
+
718
+ self.log.data_timer.start()
719
+
720
+
721
+
722
+ @torch.inference_mode()
723
+ def validation_pass(self, data, it: int = 0):
724
+ self.enter_val()
725
+ with torch.amp.autocast('cuda', enabled=self.use_amp, dtype=torch.bfloat16):
726
+ clip_f = data['clip_features'].cuda(non_blocking=True)
727
+ sync_f = data['sync_features'].cuda(non_blocking=True)
728
+ text_f = data['text_features'].cuda(non_blocking=True)
729
+ video_exist = data['video_exist'].cuda(non_blocking=True)
730
+ text_exist = data['text_exist'].cuda(non_blocking=True)
731
+ a_mean = data['a_mean'].cuda(non_blocking=True)
732
+ a_std = data['a_std'].cuda(non_blocking=True)
733
+
734
+ clip_f[~video_exist] = self.network.module.empty_clip_feat
735
+ sync_f[~video_exist] = self.network.module.empty_sync_feat
736
+ text_f[~text_exist] = self.network.module.empty_string_feat
737
+ a_randn = torch.empty_like(a_mean).normal_(generator=self.rng)
738
+ x1 = a_mean + a_std * a_randn
739
+
740
+ self.log.data_timer.end()
741
+ loss, mean_loss, t = self.val_fn(clip_f.clone(), sync_f.clone(), text_f.clone(), x1)
742
+
743
+ self.val_integrator.add_binned_tensor('binned_loss', loss, t)
744
+ self.val_integrator.add_dict({'loss': mean_loss})
745
+
746
+ self.log.data_timer.start()
747
+
748
+ @torch.inference_mode()
749
+ def inference_pass(self,
750
+ data,
751
+ it: int,
752
+ data_cfg: DictConfig,
753
+ *,
754
+ save_eval: bool = True) -> Path:
755
+ self.enter_val()
756
+ with torch.amp.autocast('cuda', enabled=self.use_amp, dtype=torch.bfloat16):
757
+ clip_f = data['clip_features'].cuda(non_blocking=True)
758
+ sync_f = data['sync_features'].cuda(non_blocking=True)
759
+ text_f = data['text_features'].cuda(non_blocking=True)
760
+ video_exist = data['video_exist'].cuda(non_blocking=True)
761
+ text_exist = data['text_exist'].cuda(non_blocking=True)
762
+ a_mean = data['a_mean'].cuda(non_blocking=True) # for the shape only
763
+
764
+ clip_f[~video_exist] = self.network.module.empty_clip_feat
765
+ sync_f[~video_exist] = self.network.module.empty_sync_feat
766
+ text_f[~text_exist] = self.network.module.empty_string_feat
767
+
768
+ # sample
769
+ x0 = torch.empty_like(a_mean).normal_(generator=self.rng)
770
+ conditions = self.network.module.preprocess_conditions(clip_f, sync_f, text_f)
771
+ empty_conditions = self.network.module.get_empty_conditions(x0.shape[0])
772
+ cfg_ode_wrapper = lambda t, x: self.network.module.ode_wrapper(
773
+ t, x, conditions, empty_conditions, self.cfg_strength)
774
+ x1_hat = self.fm.to_data(cfg_ode_wrapper, x0)
775
+ x1_hat = self.network.module.unnormalize(x1_hat)
776
+ mel = self.features.decode(x1_hat)
777
+ audio = self.features.vocode(mel).cpu()
778
+ for i in range(audio.shape[0]):
779
+ video_id = data['id'][i]
780
+ if (not self.for_training) and i == 0:
781
+ # save very few videos
782
+ self.test_video_joiner.join(video_id, f'{video_id}', audio[i].transpose(0, 1))
783
+
784
+ if data_cfg.output_subdir is not None:
785
+ # validation
786
+ if save_eval:
787
+ iter_naming = f'{it:09d}'
788
+ else:
789
+ iter_naming = 'val-cache'
790
+ audio_dir = self.log.log_audio(iter_naming,
791
+ f'{video_id}',
792
+ audio[i],
793
+ it=None,
794
+ sample_rate=self.sample_rate,
795
+ subdir=Path(data_cfg.output_subdir))
796
+ if save_eval and i == 0:
797
+ self.val_video_joiner.join(video_id, f'{iter_naming}-{video_id}',
798
+ audio[i].transpose(0, 1))
799
+ else:
800
+ # full test set, usually
801
+ audio_dir = self.log.log_audio(f'{data_cfg.tag}-sampled',
802
+ f'{video_id}',
803
+ audio[i],
804
+ it=None,
805
+ sample_rate=self.sample_rate)
806
+
807
+ return Path(audio_dir)
808
+
809
+ @torch.inference_mode()
810
+ def eval(self, audio_dir: Path, it: int, data_cfg: DictConfig) -> dict[str, float]:
811
+ # rank 0 model only, outside of AMP
812
+ info_if_rank_zero(self.log, 'Eval: entering barrier')
813
+ torch.distributed.barrier()
814
+ info_if_rank_zero(self.log, 'Eval: barrier resolved')
815
+ if local_rank == 0:
816
+ extract(audio_path=audio_dir,
817
+ output_path=audio_dir / 'cache',
818
+ device='cuda',
819
+ batch_size=32,
820
+ audio_length=8)
821
+ output_metrics = evaluate(gt_audio_cache=Path(data_cfg.gt_cache),
822
+ pred_audio_cache=audio_dir / 'cache')
823
+ for k, v in output_metrics.items():
824
+ # pad k to 10 characters
825
+ # pad v to 10 decimal places
826
+ self.log.log_scalar(f'{data_cfg.tag}/{k}', v, it)
827
+ self.log.info(f'{data_cfg.tag}/{k:<10}: {v:.10f}')
828
+ else:
829
+ output_metrics = None
830
+
831
+ return output_metrics
832
+
833
+ def save_weights(self, it, save_copy=False):
834
+ if local_rank != 0:
835
+ return
836
+
837
+ os.makedirs(self.run_path, exist_ok=True)
838
+ if save_copy:
839
+ model_path = self.run_path / f'{self.exp_id}_{it}.pth'
840
+ torch.save(self.network.module.state_dict(), model_path)
841
+ self.log.info(f'Network weights saved to {model_path}.')
842
+
843
+ # if last exists, move it to a shadow copy
844
+ model_path = self.run_path / f'{self.exp_id}_last.pth'
845
+ if model_path.exists():
846
+ shadow_path = model_path.with_name(model_path.name.replace('last', 'shadow'))
847
+ model_path.replace(shadow_path)
848
+ self.log.info(f'Network weights shadowed to {shadow_path}.')
849
+
850
+ torch.save(self.network.module.state_dict(), model_path)
851
+ self.log.info(f'Network weights saved to {model_path}.')
852
+
853
+ def save_checkpoint(self, it, save_copy=False):
854
+ if local_rank != 0:
855
+ return
856
+
857
+ checkpoint = {
858
+ 'it': it,
859
+ 'weights': self.network.module.state_dict(),
860
+ 'optimizer': self.optimizer.state_dict(),
861
+ 'scheduler': self.scheduler.state_dict(),
862
+ 'ema': self.ema.state_dict() if self.ema is not None else None,
863
+ }
864
+
865
+ os.makedirs(self.run_path, exist_ok=True)
866
+ if save_copy:
867
+ model_path = self.run_path / f'{self.exp_id}_ckpt_{it}.pth'
868
+ torch.save(checkpoint, model_path)
869
+ self.log.info(f'Checkpoint saved to {model_path}.')
870
+
871
+ # if ckpt_last exists, move it to a shadow copy
872
+ model_path = self.run_path / f'{self.exp_id}_ckpt_last.pth'
873
+ if model_path.exists():
874
+ shadow_path = model_path.with_name(model_path.name.replace('last', 'shadow'))
875
+ model_path.replace(shadow_path) # moves the file
876
+ self.log.info(f'Checkpoint shadowed to {shadow_path}.')
877
+
878
+ torch.save(checkpoint, model_path)
879
+ self.log.info(f'Checkpoint saved to {model_path}.')
880
+
881
+ def get_latest_checkpoint_path(self):
882
+ ckpt_path = self.run_path / f'{self.exp_id}_ckpt_last.pth'
883
+ if not ckpt_path.exists():
884
+ info_if_rank_zero(self.log, f'No checkpoint found at {ckpt_path}.')
885
+ return None
886
+ return ckpt_path
887
+
888
+ def get_latest_weight_path(self):
889
+ weight_path = self.run_path / f'{self.exp_id}_last.pth'
890
+ if not weight_path.exists():
891
+ self.log.info(f'No weight found at {weight_path}.')
892
+ return None
893
+ return weight_path
894
+
895
+ def get_final_ema_weight_path(self):
896
+ weight_path = self.run_path / f'{self.exp_id}_ema_final.pth'
897
+ if not weight_path.exists():
898
+ self.log.info(f'No weight found at {weight_path}.')
899
+ return None
900
+ return weight_path
901
+
902
+ def load_checkpoint(self, path):
903
+ # This method loads everything and should be used to resume training
904
+ map_location = 'cuda:%d' % local_rank
905
+ checkpoint = torch.load(path, map_location={'cuda:0': map_location}, weights_only=True)
906
+
907
+ it = checkpoint['it']
908
+ weights = checkpoint['weights']
909
+ optimizer = checkpoint['optimizer']
910
+ scheduler = checkpoint['scheduler']
911
+ if self.ema is not None:
912
+ self.ema.load_state_dict(checkpoint['ema'])
913
+ self.log.info(f'EMA states loaded from step {self.ema.step}')
914
+
915
+ map_location = 'cuda:%d' % local_rank
916
+ self.network.module.load_state_dict(weights)
917
+ self.optimizer.load_state_dict(optimizer)
918
+ self.scheduler.load_state_dict(scheduler)
919
+
920
+ self.log.info(f'Global iteration {it} loaded.')
921
+ self.log.info('Network weights, optimizer states, and scheduler states loaded.')
922
+
923
+ return it
924
+
925
+ def load_weights_in_memory(self, src_dict):
926
+ self.network.module.load_weights(src_dict)
927
+ self.log.info('Network weights loaded from memory.')
928
+
929
+ def load_weights(self, path):
930
+ # This method loads only the network weight and should be used to load a pretrained model
931
+ map_location = 'cuda:%d' % local_rank
932
+ src_dict = torch.load(path, map_location={'cuda:0': map_location}, weights_only=True)
933
+
934
+ self.log.info(f'Importing network weights from {path}...')
935
+ self.load_weights_in_memory(src_dict)
936
+
937
+ def weights(self):
938
+ return self.network.module.state_dict()
939
+
940
+ def enter_train(self):
941
+ self.integrator = self.train_integrator
942
+ self.network.train()
943
+ return self
944
+
945
+ def enter_val(self):
946
+ self.network.eval()
947
+ return self
mmaudio/sample.py ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import logging
3
+ import os
4
+ import random
5
+
6
+ import numpy as np
7
+ import torch
8
+ from hydra.core.hydra_config import HydraConfig
9
+ from omegaconf import DictConfig, open_dict
10
+ from tqdm import tqdm
11
+
12
+ from mmaudio.data.data_setup import setup_test_datasets
13
+ from mmaudio.runner import Runner
14
+ from mmaudio.utils.dist_utils import info_if_rank_zero
15
+ from mmaudio.utils.logger import TensorboardLogger
16
+
17
+ local_rank = int(os.environ['LOCAL_RANK'])
18
+ world_size = int(os.environ['WORLD_SIZE'])
19
+
20
+
21
+ def sample(cfg: DictConfig):
22
+ # initial setup
23
+ num_gpus = world_size
24
+ run_dir = HydraConfig.get().run.dir
25
+
26
+ # wrap python logger with a tensorboard logger
27
+ log = TensorboardLogger(cfg.exp_id,
28
+ run_dir,
29
+ logging.getLogger(),
30
+ is_rank0=(local_rank == 0),
31
+ enable_email=cfg.enable_email and not cfg.debug)
32
+
33
+ info_if_rank_zero(log, f'All configuration: {cfg}')
34
+ info_if_rank_zero(log, f'Number of GPUs detected: {num_gpus}')
35
+
36
+ # cuda setup
37
+ torch.cuda.set_device(local_rank)
38
+ torch.backends.cudnn.benchmark = cfg.cudnn_benchmark
39
+
40
+ # number of dataloader workers
41
+ info_if_rank_zero(log, f'Number of dataloader workers (per GPU): {cfg.num_workers}')
42
+
43
+ # Set seeds to ensure the same initialization
44
+ torch.manual_seed(cfg.seed)
45
+ np.random.seed(cfg.seed)
46
+ random.seed(cfg.seed)
47
+
48
+ # setting up configurations
49
+ info_if_rank_zero(log, f'Configuration: {cfg}')
50
+ info_if_rank_zero(log, f'Batch size (per GPU): {cfg.batch_size}')
51
+
52
+ # construct the trainer
53
+ runner = Runner(cfg, log=log, run_path=run_dir, for_training=False).enter_val()
54
+
55
+ # load the last weights if needed
56
+ if cfg['weights'] is not None:
57
+ info_if_rank_zero(log, f'Loading weights from the disk: {cfg["weights"]}')
58
+ runner.load_weights(cfg['weights'])
59
+ cfg['weights'] = None
60
+ else:
61
+ weights = runner.get_final_ema_weight_path()
62
+ if weights is not None:
63
+ info_if_rank_zero(log, f'Automatically finding weight: {weights}')
64
+ runner.load_weights(weights)
65
+
66
+ # setup datasets
67
+ dataset, sampler, loader = setup_test_datasets(cfg)
68
+ data_cfg = cfg.data.ExtractedVGG_test
69
+ with open_dict(data_cfg):
70
+ if cfg.output_name is not None:
71
+ # append to the tag
72
+ data_cfg.tag = f'{data_cfg.tag}-{cfg.output_name}'
73
+
74
+ # loop
75
+ audio_path = None
76
+ for curr_iter, data in enumerate(tqdm(loader)):
77
+ new_audio_path = runner.inference_pass(data, curr_iter, data_cfg)
78
+ if audio_path is None:
79
+ audio_path = new_audio_path
80
+ else:
81
+ assert audio_path == new_audio_path, 'Different audio path detected'
82
+
83
+ info_if_rank_zero(log, f'Inference completed. Audio path: {audio_path}')
84
+ output_metrics = runner.eval(audio_path, curr_iter, data_cfg)
85
+
86
+ if local_rank == 0:
87
+ # write the output metrics to run_dir
88
+ output_metrics_path = os.path.join(run_dir, f'{data_cfg.tag}-output_metrics.json')
89
+ with open(output_metrics_path, 'w') as f:
90
+ json.dump(output_metrics, f, indent=4)
sets/vgg-test-filtered-caption.tsv ADDED
The diff for this file is too large to render. See raw diff
 
sets/vgg-test-filtered.tsv ADDED
The diff for this file is too large to render. See raw diff
 
sets/vgg-train-filtered.tsv ADDED
The diff for this file is too large to render. See raw diff
 
sets/vgg-train.tsv ADDED
The diff for this file is too large to render. See raw diff
 
sets/vgg-val-filtered-caption.tsv ADDED
The diff for this file is too large to render. See raw diff
 
sets/vgg-val-filtered.tsv ADDED
@@ -0,0 +1,2048 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id label
2
+ -2toZf00LvI_000012 bowling impact
3
+ -8OE7Vydkl4_000221 bowling impact
4
+ -AEZuuoyJug_000030 playing violin, fiddle
5
+ -CUgrFw8TEI_000045 dog whimpering
6
+ -CexapzRAPQ_000051 ferret dooking
7
+ -DHGwygUsQc_000030 skateboarding
8
+ -G-o-Y4WuaU_000139 playing harmonica
9
+ -G_2v0L4U_s_000078 playing tennis
10
+ -HIPq7T3eFI_000011 driving motorcycle
11
+ -I8C3cRr5TY_000030 female singing
12
+ -K232jBK8VQ_000030 car passing by
13
+ -L_RH-nw11I_000025 vacuum cleaner cleaning floors
14
+ -MfBpxtGQmE_000020 ambulance siren
15
+ -NYZDjBz60I_000085 child singing
16
+ -QWcNg6FCgE_000022 playing bass guitar
17
+ -T06kz4MI20_000030 female singing
18
+ -UJJsEdgqMQ_000011 horse clip-clop
19
+ -VyLmfnIc5Q_000162 driving snowmobile
20
+ -W3y3qz3yp8_000256 people eating crisps
21
+ -WBvJuF2UOk_000030 playing acoustic guitar
22
+ -Yep0TGjWmc_000140 subway, metro, underground
23
+ -YrSxLTPdcA_000004 underwater bubbling
24
+ -YwZOeyAQC8_000002 baby laughter
25
+ -Zd-ZSnZ3so_000159 playing banjo
26
+ -_mqzXgg5eQ_000046 ripping paper
27
+ -c7lpU-_-V8_000030 motorboat, speedboat acceleration
28
+ -c96lccP5nc_000200 skidding
29
+ -eqkzAKGBZg_000030 playing drum kit
30
+ -geN4ECfl0Q_000030 playing bass guitar
31
+ -ibjrtJo9rY_000030 duck quacking
32
+ -nEg1olBLcw_000030 male singing
33
+ -s2G3Kto0Gw_000030 typing on computer keyboard
34
+ -s6dPB8fyQQ_000030 playing electric guitar
35
+ -tGOjLdrF6g_000087 playing squash
36
+ -v12qcLw5u0_000187 machine gun shooting
37
+ -vC3oqlxf4I_000010 slot machine
38
+ -vY141CdTc4_000030 playing bass guitar
39
+ -vmyjjovGXM_000116 cattle, bovinae cowbell
40
+ -vra5dNsP4w_000080 playing bass guitar
41
+ -w7WfMgSBD4_000047 lighting firecrackers
42
+ -wJ_UfBsiR0_000280 playing accordion
43
+ -xzWsDpVEiE_000060 child speech, kid speaking
44
+ -yby37u00N4_000030 playing violin, fiddle
45
+ -zHk3s6BkpA_000030 chainsawing trees
46
+ -zZR-ps0nJY_000137 hail
47
+ 0-fd-lvizrY_000024 yodelling
48
+ 00eb49xIULo_000030 female speech, woman speaking
49
+ 01LPFe-13Aw_000030 playing electric guitar
50
+ 01W8XIz7KDM_000007 donkey, ass braying
51
+ 02t6zmS4RAk_000102 playing didgeridoo
52
+ 038-gneOcks_000309 people eating crisps
53
+ 04m_7jCGHko_000030 wind noise
54
+ 04sf3v7xOzo_000005 cat meowing
55
+ 055LCXe4pR8_000012 people whistling
56
+ 09qDi4Auiyo_000030 playing electric guitar
57
+ 0Ca2CTVwOxs_000019 cuckoo bird calling
58
+ 0CvAFdtyVlo_000023 underwater bubbling
59
+ 0G0mSrzOZ2M_000400 driving buses
60
+ 0IvNbabusiY_000030 playing flute
61
+ 0JPlNHX2HQ8_000049 playing accordion
62
+ 0Lro_JzyUX0_000030 male speech, man speaking
63
+ 0McmdH07r7w_000050 playing flute
64
+ 0OHWW60khJ4_000030 playing bass guitar
65
+ 0PZQL-Msz0s_000030 horse clip-clop
66
+ 0RFEHUrGOP0_000170 playing acoustic guitar
67
+ 0SsaL_YNyjY_000030 waterfall burbling
68
+ 0T4gZQwzyKY_000030 people crowd
69
+ 0U_Q9JTATCk_000044 owl hooting
70
+ 0WIzNXqWrZk_000204 playing hockey
71
+ 0XzJKHmoN6w_000019 duck quacking
72
+ 0cMnDz8SSwQ_000014 disc scratching
73
+ 0dkhsBmUZSY_000030 people cheering
74
+ 0fQJ9nShofs_000093 dinosaurs bellowing
75
+ 0hCiGC4c97g_000033 crow cawing
76
+ 0hWyQpwHNDU_000030 motorboat, speedboat acceleration
77
+ 0iVM2GY3R_c_000030 ambulance siren
78
+ 0kar1O-1Ckk_000114 playing french horn
79
+ 0m3kYCMUuCk_000000 cattle, bovinae cowbell
80
+ 0sY8RR7V_q4_000220 female singing
81
+ 0tJevlglhe4_000010 railroad car, train wagon
82
+ 0uHGQmkKMr0_000223 people marching
83
+ 0yAboI4QC6k_000109 hail
84
+ 1-2zGkXe070_000098 rope skipping
85
+ 10fjkn2eM_M_000050 slot machine
86
+ 12tsmtyIALQ_000009 cat meowing
87
+ 13LB6yibhQ8_000009 scuba diving
88
+ 1CIxzqH4zzM_000040 ice cracking
89
+ 1Fp6zPswdjI_000233 tapping guitar
90
+ 1JMgZaCb9WM_000204 playing steelpan
91
+ 1MCjHVRBDTk_000055 slot machine
92
+ 1MLUEfkJDSw_000001 beat boxing
93
+ 1MPwoS-R83A_000030 cat meowing
94
+ 1Mx2iDMsZj8_000018 playing french horn
95
+ 1NTsWn1Gir4_000103 playing snare drum
96
+ 1NvpdqTAf3U_000030 skidding
97
+ 1NwFHr4VHS0_000090 playing clarinet
98
+ 1RB0gsxkPBo_000020 lions growling
99
+ 1RSK3TFru0g_000000 sailing
100
+ 1T1PLOWu65c_000250 skiing
101
+ 1TARmg2FYJQ_000010 people whistling
102
+ 1V65GzuCqaw_000030 bird chirping, tweeting
103
+ 1Vn7SftZxS4_000030 rowboat, canoe, kayak rowing
104
+ 1WaTnza9cn0_000160 playing violin, fiddle
105
+ 1YGJDa3aCGo_000289 fire truck siren
106
+ 1_CC87jIhXk_000382 swimming
107
+ 1acVFuCvOJg_000512 canary calling
108
+ 1bBdyTowO-M_000041 parrot talking
109
+ 1dO7fONpkvE_000000 people farting
110
+ 1eYmBacWt3k_000027 civil defense siren
111
+ 1f9IgOjZjn4_000037 rapping
112
+ 1gVugA2dsi4_000332 dinosaurs bellowing
113
+ 1gXDaVse3SQ_000387 planing timber
114
+ 1inu4aoQFKM_000164 planing timber
115
+ 1kdGia7plHk_000030 playing electric guitar
116
+ 1nDhQKLRJbg_000030 playing marimba, xylophone
117
+ 1p8YDM6gG6Y_000014 dog howling
118
+ 1t63KIS6F4I_000070 people sobbing
119
+ 1x7wVFMW4dk_000030 playing acoustic guitar
120
+ 1zWc46eeWLU_000167 playing sitar
121
+ 2-Ipq91ns0k_000036 playing bass drum
122
+ 21OWtKgJlIE_000270 canary calling
123
+ 23ky1UGWeKg_000190 playing bass guitar
124
+ 26KmPM2YkmQ_000004 ambulance siren
125
+ 2A5eS9kMm-U_000018 owl hooting
126
+ 2CebaASg1m4_000030 male singing
127
+ 2EeOU7PgSck_000030 female singing
128
+ 2F2NSNlc6dQ_000030 male singing
129
+ 2FNZwK-4sUA_000030 female speech, woman speaking
130
+ 2Jt4iqSqNTg_000012 bird chirping, tweeting
131
+ 2LBEllUpWiA_000000 volcano explosion
132
+ 2MDjnJzuUaU_000015 skidding
133
+ 2NIaPAfScHM_000030 motorboat, speedboat acceleration
134
+ 2NjwuyNgNoE_000050 playing hammond organ
135
+ 2P7ZXBq5r04_000274 playing cornet
136
+ 2RPPKMapBWY_000036 ice cream truck, ice cream van
137
+ 2SlVaOyh69w_000219 cattle mooing
138
+ 2Sto24aXwao_000097 baltimore oriole calling
139
+ 2VdOQylRl08_000002 playing lacrosse
140
+ 2YIZLARm8sI_000201 parrot talking
141
+ 2d43OFDr5aI_000001 frog croaking
142
+ 2ehs70MWQTs_000050 waterfall burbling
143
+ 2fCC4BkdMT0_000106 basketball bounce
144
+ 2fn6GFSwTEw_000096 cap gun shooting
145
+ 2iwPgYGH_Ew_000400 railroad car, train wagon
146
+ 2jy1b77hxXc_000136 playing bass guitar
147
+ 2lALVOKDQNM_000059 dog howling
148
+ 2myGIZCgZ2g_000018 tractor digging
149
+ 2rSFLrwcvcY_000020 pheasant crowing
150
+ 2szJ9STQPUk_000030 male singing
151
+ 2w6jRF1Ekhs_000130 playing sitar
152
+ 2xlWTgqPUOA_000004 beat boxing
153
+ 2yeuzECPVUI_000033 playing badminton
154
+ 2zev5MpJKPc_000039 chicken clucking
155
+ 33NCPZjFuLE_000056 playing oboe
156
+ 35MtyyqqQyw_000030 playing acoustic guitar
157
+ 35c4EPiZ8JM_000030 horse clip-clop
158
+ 35iGp2g_U6A_000000 church bell ringing
159
+ 37Tl9YROdbA_000077 playing trombone
160
+ 3EcAiTE0JyE_000052 playing theremin
161
+ 3JyLYEjo4ok_000000 people giggling
162
+ 3LfWg5Be60Q_000163 people burping
163
+ 3MOG_CAcWkw_000142 playing badminton
164
+ 3NcIWxDdTW0_000050 dog growling
165
+ 3O8InHTYtk0_000020 male singing
166
+ 3Okx0T5vpFc_000192 airplane flyby
167
+ 3OxJ7KtIb2A_000100 playing saxophone
168
+ 3QHNbJ_XATY_000036 civil defense siren
169
+ 3S2-TODd__k_000090 train horning
170
+ 3VK-nOg0-RQ_000046 pheasant crowing
171
+ 3VSUuTABb3U_000074 wind chime
172
+ 3WUTEMZv3EI_000046 slot machine
173
+ 3YuBzhAU_Yc_000000 race car, auto racing
174
+ 3cMrwXYnjd4_000026 air horn
175
+ 3d5tPNd4Olk_000020 wind noise
176
+ 3dBQbWPOjjI_000030 playing acoustic guitar
177
+ 3djcJkGeJK8_000293 running electric fan
178
+ 3e8ECt9wF5Y_000015 playing saxophone
179
+ 3en9IzSPnNU_000027 driving snowmobile
180
+ 3gTMehPiQ9s_000150 playing harpsichord
181
+ 3kXROE2wcRA_000069 bowling impact
182
+ 3p9aVzs8aYA_000030 female singing
183
+ 3u3iunnXAOs_000432 playing hammond organ
184
+ 3wboiuBfavA_000172 people nose blowing
185
+ 3yolbg1tH9U_000030 male singing
186
+ 4-_AWdbZnzE_000005 playing trombone
187
+ 42Iss6TfcpQ_000742 lip smacking
188
+ 433xsSMNLf4_000070 playing electronic organ
189
+ 43ijm8y4z2o_000030 horse clip-clop
190
+ 44UMQ5ZFuuY_000030 engine accelerating, revving, vroom
191
+ 457yRHL0f2E_000030 female singing
192
+ 45iXudFVQ4E_000000 subway, metro, underground
193
+ 46LjKw-7mU0_000030 male singing
194
+ 47QYxqXGZ3w_000244 people shuffling
195
+ 47SP2azKv8Q_000030 playing electric guitar
196
+ 47YlecLyyK0_000030 playing acoustic guitar
197
+ 47y5k6vaUxE_000089 francolin calling
198
+ 49gi-iYJ1F0_000107 tap dancing
199
+ 4CLnZSI8aPs_000092 hair dryer drying
200
+ 4DcOTOS_LE0_000454 sliding door
201
+ 4DzuWR9ekko_000000 playing bugle
202
+ 4E6mA8Y2Be0_000060 using sewing machines
203
+ 4FOFcRJR9go_000084 playing glockenspiel
204
+ 4H29LCZTMBs_000050 using sewing machines
205
+ 4K345_DRFRk_000056 playing volleyball
206
+ 4Ofe_ManxZc_000047 playing french horn
207
+ 4OxCr981HvY_000016 ice cracking
208
+ 4SlcVylJxxk_000297 arc welding
209
+ 4WGMFP00rIg_000030 playing acoustic guitar
210
+ 4YnMOFstVnk_000066 parrot talking
211
+ 4_QGupz8UNA_000189 hail
212
+ 4aFirNGu_P8_000381 planing timber
213
+ 4dhyddSUAWg_000175 police radio chatter
214
+ 4dkU-c4g1VM_000111 dog barking
215
+ 4h9o2iL6nps_000050 child speech, kid speaking
216
+ 4hU6jqQQUto_000009 playing harpsichord
217
+ 4iBqpFUnPoA_000170 fireworks banging
218
+ 4j7GbxZQjB8_000024 car engine knocking
219
+ 4jHrFbnaVRc_000294 firing muskets
220
+ 4kvqtJEFqjw_000190 playing bagpipes
221
+ 4ldID97D-oU_000020 people coughing
222
+ 4n657Imjmjo_000015 sheep bleating
223
+ 4o2IRyXi-aY_000667 playing harpsichord
224
+ 4rehS_cPodk_000020 female speech, woman speaking
225
+ 4t_Qz9RyUm8_000006 alarm clock ringing
226
+ 4yUvIrchOzQ_000280 playing saxophone
227
+ 4zf3qRiZ3Ok_000030 child singing
228
+ 4zsLfdNLUD4_000033 cat hissing
229
+ 50OgBbJZUUc_000064 typing on typewriter
230
+ 50jxPCLUFdU_000002 cricket chirping
231
+ 53ohFLBl0iE_000052 alarm clock ringing
232
+ 542uea0zO1I_000036 sea lion barking
233
+ 54XBPEFJQc4_000076 playing djembe
234
+ 574NjiOGi5s_000030 female singing
235
+ 58KzLvK1OYs_000144 dog growling
236
+ 5901zjV6oAo_000006 swimming
237
+ 5AFKEd8nSpg_000050 people sniggering
238
+ 5CtoZvJaGAM_000096 woodpecker pecking tree
239
+ 5D201VjroT0_000229 sharpen knife
240
+ 5D2E7s9bEf0_000010 basketball bounce
241
+ 5EPnuy_sKHI_000010 singing bowl
242
+ 5IZv217s4_E_000049 playing badminton
243
+ 5KRxqVykvvI_000030 printer printing
244
+ 5S3QDnRCnOQ_000003 tapping guitar
245
+ 5Sv97J7mksY_000030 playing electric guitar
246
+ 5UqwkZ1XK18_000050 helicopter
247
+ 5VyCTHzLVdU_000011 playing bongo
248
+ 5WVhslWt1wU_000030 female singing
249
+ 5Wb1zMq_DiU_000020 fireworks banging
250
+ 5XK1Vgiwllc_000073 playing mandolin
251
+ 5X_B2L1-4Bc_000030 playing electric guitar
252
+ 5briopN06L8_000000 playing piano
253
+ 5eHlhJ-ZOpg_000030 playing hammond organ
254
+ 5fZn_7LbKSI_000020 people burping
255
+ 5hi4T4Gp6v4_000002 air horn
256
+ 5hjKe0FWq9E_000002 horse neighing
257
+ 5iEbFJkG6Xg_000557 bird squawking
258
+ 5jQLK4Z1EH4_000020 wind noise
259
+ 5jt7lR8WY3g_000172 playing castanets
260
+ 5lV59hZgwRM_000009 scuba diving
261
+ 5mBCF05DV5s_000280 church bell ringing
262
+ 5mJ7_05tlhs_000005 crow cawing
263
+ 5nscL4EBrXA_000030 male singing
264
+ 5r1zW38AWvs_000057 wind chime
265
+ 5rP9Z4jEq6s_000024 cap gun shooting
266
+ 5xJdFysNSf4_000110 race car, auto racing
267
+ 5xefixXFNwk_000020 playing bass guitar
268
+ 64eXDlUgPoA_000079 lighting firecrackers
269
+ 64lQIoDGX6o_000040 playing marimba, xylophone
270
+ 64ollREPrUw_000132 raining
271
+ 64zPbHPyiwE_000030 male speech, man speaking
272
+ 659mhmSPXWA_000276 bee, wasp, etc. buzzing
273
+ 65u3pwOEcBg_000002 frog croaking
274
+ 67hDkeQalow_000030 motorboat, speedboat acceleration
275
+ 68mXCuRvQkw_000045 people burping
276
+ 6ARTjahUaYY_000030 playing electric guitar
277
+ 6BQgJ0tvUkc_000162 baby babbling
278
+ 6CYhRsU4F34_000000 people whistling
279
+ 6EcmHiscsOc_000287 lighting firecrackers
280
+ 6GsamqJ5tFU_000075 airplane flyby
281
+ 6IMlkVOKxJw_000032 cap gun shooting
282
+ 6IQkdce9a7Q_000184 slot machine
283
+ 6KO3eMyEeOg_000000 race car, auto racing
284
+ 6LB-qRj_zW4_000030 horse clip-clop
285
+ 6LKFDTu9vRQ_000018 playing french horn
286
+ 6NxeHScEnJE_000000 dog bow-wow
287
+ 6OhTwJrVxXs_000028 playing timbales
288
+ 6RGa6DvWpt0_000035 people marching
289
+ 6UcuQgsHFCA_000142 playing french horn
290
+ 6Y6CvX7EP68_000030 singing choir
291
+ 6ZbVXBeNsX8_000125 playing didgeridoo
292
+ 6aYfccsgIjk_000094 baby crying
293
+ 6gTR_Avjz6g_000170 playing cymbal
294
+ 6j2g_OZnW74_000189 missile launch
295
+ 6mE_v9a5dbM_000030 male singing
296
+ 6o0mZVMfKss_000140 people clapping
297
+ 6of3tx7IOik_000030 wind noise
298
+ 6shIFnN-LsY_000141 playing flute
299
+ 6v53uAVpXC4_000071 people babbling
300
+ 6wpifZcwOJU_000023 underwater bubbling
301
+ 6xAClSJ21qA_000491 rapping
302
+ 6xgTrufXcCM_000126 wood thrush calling
303
+ 6yBZH5cV7GE_000030 playing electric guitar
304
+ 6z_pfZ6Rvfs_000023 playing table tennis
305
+ 7-7r-FRwp_w_000041 playing glockenspiel
306
+ 72d2TsdeSg8_000000 tap dancing
307
+ 75FLwnGZJTc_000125 playing oboe
308
+ 75m0cvRBGY0_000030 vehicle horn, car horn, honking
309
+ 76F-K-7HUXE_000010 lions roaring
310
+ 77rq4-p4vV8_000030 wind noise
311
+ 78hdsP0edMg_000030 railroad car, train wagon
312
+ 7Ck8cfF2rl0_000200 otter growling
313
+ 7ELF2dbWe5w_000010 female singing
314
+ 7I_wdG-eOc0_000106 playing hammond organ
315
+ 7JT43yyNGkk_000003 black capped chickadee calling
316
+ 7JX-Bx0BETQ_000205 rapping
317
+ 7LMkG7uISis_000102 playing gong
318
+ 7MuetSj86N0_000490 bird squawking
319
+ 7NyPcaVKao4_000025 dog growling
320
+ 7Odi8SKArQI_000030 playing saxophone
321
+ 7P-1-qzwyYA_000055 magpie calling
322
+ 7Qr1ncg86N4_000007 lions roaring
323
+ 7TMOCRG4EBA_000030 female singing
324
+ 7U5V5Teqo8Q_000000 dog barking
325
+ 7V6NAsZ86xw_000000 beat boxing
326
+ 7VT8p9Er3n8_000020 mynah bird singing
327
+ 7Y3u8Aj8UV4_000010 driving motorcycle
328
+ 7YGUQYRwnHs_000019 horse neighing
329
+ 7YTsyqVSEeI_000006 child singing
330
+ 7b__KH3VA_o_000035 people booing
331
+ 7caL9c6N1zc_000122 child singing
332
+ 7gdSJ30FfNU_000490 people hiccup
333
+ 7h7_U2q-VwY_000276 dog baying
334
+ 7hdXzJpOXiY_000018 police car (siren)
335
+ 7iT77hG1X18_000063 playing erhu
336
+ 7kIhqlZok8c_000074 running electric fan
337
+ 7kIhqlZok8c_000241 running electric fan
338
+ 7lz-THXCwi8_000030 male speech, man speaking
339
+ 7ogdSWU90s4_000100 opening or closing drawers
340
+ 7pc3c5ZGbwo_000030 ocean burbling
341
+ 7rLRSpEqgZk_000253 playing sitar
342
+ 7tsuYUeV7_k_000191 airplane flyby
343
+ 7vF2Qq0Pg6w_000024 ice cream truck, ice cream van
344
+ 7xZxYm27FdA_000020 toilet flushing
345
+ 7xaNqQ8FAwI_000100 mynah bird singing
346
+ 7yBOHsPAJgw_000040 vacuum cleaner cleaning floors
347
+ 7yXROxIZfeo_000053 raining
348
+ 80KT6bYCFkg_000077 playing tuning fork
349
+ 81ACguOEqoM_000042 electric shaver, electric razor shaving
350
+ 82ic2Xisrqg_000030 car engine knocking
351
+ 83mmLOdwZlA_000081 air conditioning noise
352
+ 85Nd7APr5Os_000028 ice cracking
353
+ 85Nd7APr5Os_000052 ice cracking
354
+ 87-ZrpDyRHE_000238 cat hissing
355
+ 88oLbuKd7Rg_000030 car passing by
356
+ 8906Y6i-h10_000102 playing cymbal
357
+ 89NzFtLSRSo_000030 engine accelerating, revving, vroom
358
+ 8DDro-N5-54_000029 swimming
359
+ 8GTkmen1bBg_000110 playing piano
360
+ 8IdUE6nhR3E_000030 playing violin, fiddle
361
+ 8N0GxZtk9wE_000051 playing didgeridoo
362
+ 8NMHjXutgVs_000333 electric shaver, electric razor shaving
363
+ 8Rh7NvJDexA_000068 tapping guitar
364
+ 8VEqGk0W4xY_000192 playing darts
365
+ 8XH7xIWWC6c_000090 people cheering
366
+ 8Y9VKxl-1gE_000063 rapping
367
+ 8ZWKl-_qHM0_000010 driving buses
368
+ 8_xdWIziFpI_000030 baby crying
369
+ 8b2ASj5nmos_000251 playing darts
370
+ 8c9PJLozdtA_000020 playing bass drum
371
+ 8jkr7bOR8ck_000146 playing table tennis
372
+ 8lIh0qRN7PE_000220 cattle mooing
373
+ 8m7VIFtS4gc_000000 typing on typewriter
374
+ 8n76LfbY3qo_000232 chainsawing trees
375
+ 8ngu3TPmfZQ_000110 playing drum kit
376
+ 8ugZkKeLL7Y_000030 male speech, man speaking
377
+ 8vE2wod7rhE_000030 horse neighing
378
+ 8ytjUazIdno_000023 playing glockenspiel
379
+ 9-N8v-cC0Tg_000002 air horn
380
+ 9-xW047dMpk_000125 missile launch
381
+ 913ItBzDHLQ_000124 playing synthesizer
382
+ 91kWVMnyKxA_000019 bird squawking
383
+ 92G0bdxj5ck_000091 mouse pattering
384
+ 93a7wS41kLc_000060 splashing water
385
+ 93rlsDDmFYo_000110 playing cymbal
386
+ 95UKs8K92C4_000110 playing timpani
387
+ 96wdXcwIbgk_001238 playing bongo
388
+ 97svDuqFctI_000139 playing steel guitar, slide guitar
389
+ 98Nc3x8U1JI_000187 playing badminton
390
+ 993A2y5lv-s_000030 bird chirping, tweeting
391
+ 99WZAe6QKUc_000030 people whispering
392
+ 99cGCS0ko2Q_000120 playing saxophone
393
+ 99ylFYthGcI_000004 donkey, ass braying
394
+ 9A8hgZdD__g_000030 horse clip-clop
395
+ 9CFR1VdlIMc_000142 rope skipping
396
+ 9CmEsDtIz_Q_000060 playing accordion
397
+ 9D9sfe1eaK8_000000 frog croaking
398
+ 9HtYErt1moA_000100 playing drum kit
399
+ 9IwjfATt51Y_000030 playing french horn
400
+ 9JwaE3BmICE_000061 female speech, woman speaking
401
+ 9LFGIpAO3NE_000161 tapping guitar
402
+ 9LY2BJ2fqts_000090 people gargling
403
+ 9Q1RM-pY2yY_000180 playing bongo
404
+ 9UvWyax1fEU_000000 people booing
405
+ 9Y3ausHODlk_000557 playing electronic organ
406
+ 9ZCgk2e7wZM_000269 woodpecker pecking tree
407
+ 9ZE18L9NN1Y_000105 striking pool
408
+ 9af_fvuAY8E_000167 barn swallow calling
409
+ 9exZEq85L1k_000260 playing trombone
410
+ 9fvJeyH-4II_000100 fireworks banging
411
+ 9gJ4NQYcakk_000030 male speech, man speaking
412
+ 9k0OwVahe5Y_000066 playing cymbal
413
+ 9pBp5wd9rpw_000043 firing cannon
414
+ 9s6jvP1V56w_000080 people crowd
415
+ 9t7YT0OKpaM_000130 playing cello
416
+ 9tyf9HGsIe4_000000 people finger snapping
417
+ 9zriIjvwqJw_000480 people burping
418
+ A08MfFxzmxo_000030 playing accordion
419
+ A0tXM5fSFrw_000062 alligators, crocodiles hissing
420
+ A1-T0wdI8Nw_000070 sloshing water
421
+ A1vf6We9a_Q_000290 mouse pattering
422
+ A2GEU2r5KnQ_000030 playing acoustic guitar
423
+ A551qSirV68_000298 alligators, crocodiles hissing
424
+ A55rHYLkwQk_000000 singing bowl
425
+ A95vqV9oM6g_000081 people marching
426
+ A9pIMNKQWCk_000005 footsteps on snow
427
+ AApTo3l6NfA_000030 train horning
428
+ AFmF56HVvVg_000151 cat purring
429
+ AI3om1uyCH0_000009 fire truck siren
430
+ AJhEl41TC5s_000443 lathe spinning
431
+ AM8-hH1Oahw_000510 driving buses
432
+ AOPgsB4hsH8_000206 electric grinder grinding
433
+ ARFBC4LeCFY_000019 chicken clucking
434
+ ARrb06s5a0Y_000082 donkey, ass braying
435
+ AUufm-TAVg8_000101 playing french horn
436
+ AW-JhveJXFw_000030 typing on typewriter
437
+ AXDomj6KnkE_000141 playing tabla
438
+ AZgG_6NE8j4_000240 parrot talking
439
+ Ac0OxSV8Nqk_000030 female speech, woman speaking
440
+ ActIkLSW20Y_000350 railroad car, train wagon
441
+ AefLmdFYR6k_000136 playing tambourine
442
+ AfrcYQw5mXw_000010 telephone bell ringing
443
+ Agl-AQmIYBE_000030 rowboat, canoe, kayak rowing
444
+ AhUYTb14QZU_000020 chimpanzee pant-hooting
445
+ AiriN8WOgiI_000123 playing bass drum
446
+ AjD1BiY0o8E_000001 pheasant crowing
447
+ AlTNj6IWey4_000112 airplane flyby
448
+ AlebU-Vdy18_000022 playing theremin
449
+ ApMojxDfms0_000273 magpie calling
450
+ AteFCZfJfLY_000011 vehicle horn, car horn, honking
451
+ AvguIvLb0GY_000027 electric shaver, electric razor shaving
452
+ Aw5BwrqdmHc_000010 canary calling
453
+ Aw9arRIoBR4_000030 sliding door
454
+ Aygl9-ur8NU_000001 gibbon howling
455
+ Az1M0iLYjIg_000030 ice cream truck, ice cream van
456
+ B1ax5dX6XrU_000215 wood thrush calling
457
+ B7cF_In3_-c_000030 horse neighing
458
+ B7zgWPjx8hg_000026 wind noise
459
+ B9Mk5n5Zwjg_000240 driving buses
460
+ BBumD37-y80_000110 train horning
461
+ BC4LglYv70Q_000108 playing oboe
462
+ BH8QYqAvO2k_000020 playing vibraphone
463
+ BJ31LCL3Dy4_000100 crow cawing
464
+ BLWCHd07ATw_000080 playing electronic organ
465
+ BM1fw080pSs_000030 female speech, woman speaking
466
+ BM4YyahEm8Q_000078 spraying water
467
+ BO1K4wXy2CI_000299 mosquito buzzing
468
+ BPD7Qj1U_Bo_000131 playing theremin
469
+ BPxW7nP4loQ_000003 eagle screaming
470
+ BTdIM1mncyA_000030 female speech, woman speaking
471
+ BWw6dgq07Qo_000053 playing clarinet
472
+ BYJ2UHIHCLU_000009 hail
473
+ BbUBFko93XE_000031 people sneezing
474
+ BbfDej2cM2I_000001 volcano explosion
475
+ BdIWeKYKIzk_000000 train horning
476
+ BfyYYuE12dw_000006 goose honking
477
+ BkXyLmdb8Yw_000290 playing hammond organ
478
+ BkwStRX3xE0_000010 fireworks banging
479
+ BmsTQHrCwB8_000215 heart sounds, heartbeat
480
+ BnRtoIC87Po_000030 female speech, woman speaking
481
+ BniijKHywXM_000103 playing tambourine
482
+ Bo271H1XM40_000127 arc welding
483
+ BpV7n-YUtos_000248 rope skipping
484
+ BpfM3evN6H8_000009 people eating apple
485
+ BsHgr_sj6ec_000058 playing bongo
486
+ BvdvbeIdUtk_000072 people booing
487
+ C1fdGRZRPtU_000040 barn swallow calling
488
+ C2kKMjYETRQ_000050 playing acoustic guitar
489
+ C5ik_rcugw8_000040 people marching
490
+ C7zLftUgskY_000035 playing harp
491
+ C85lxZAStBk_000056 playing hammond organ
492
+ CA3sbGHEE3c_000001 people screaming
493
+ CFazHdGsxcU_000155 lighting firecrackers
494
+ CG-2XtQI6sM_000000 cat hissing
495
+ CG_qvz_V1Jo_000374 playing gong
496
+ CJjTs72p1gI_000002 alarm clock ringing
497
+ CKwtP-eN1Zk_000014 striking pool
498
+ CUY3hob5V_o_000010 opening or closing car doors
499
+ CUqga7lwvfM_000080 subway, metro, underground
500
+ CVVrs_KA6sU_000030 rowboat, canoe, kayak rowing
501
+ CViouHw-mfQ_000122 playing cello
502
+ CYTTsSPohw0_000122 planing timber
503
+ CdcfD8mg-k4_000030 singing choir
504
+ CeD6RlRSr8M_000099 cat purring
505
+ Cg3XzrFzzpM_000060 playing accordion
506
+ CgevwvZLE3c_000219 running electric fan
507
+ CheeUmf4IhE_000030 fireworks banging
508
+ ChhTVgWMxiI_000030 duck quacking
509
+ CiLwbeRDj8E_000000 people crowd
510
+ CjwqjkkoJHY_000199 car engine starting
511
+ CkYUBci5xEM_000070 using sewing machines
512
+ Cntxv6aE3DY_000030 sliding door
513
+ Co1qXvuwkes_000146 arc welding
514
+ CpW7umx_bi0_000067 playing mandolin
515
+ CqgPmVXNdNQ_000058 striking pool
516
+ Csr7c9uFvQk_000028 dog whimpering
517
+ CvN_oC0AGvM_000340 toilet flushing
518
+ Cvgc82TDNnE_000025 lions roaring
519
+ CvxL2n9DX6w_000251 lighting firecrackers
520
+ CyW4FoAJ1MU_000260 police car (siren)
521
+ CzGGyIj84Hs_000030 pigeon, dove cooing
522
+ D-HXQTcZNGU_000130 female speech, woman speaking
523
+ D109-sQNo1k_000028 sliding door
524
+ D6BCygx6jcs_000000 dog howling
525
+ D7kL3EEOyR4_000050 helicopter
526
+ DAy_bV1d9c4_000046 playing squash
527
+ DGU-HbuX6rs_000230 people crowd
528
+ DJan9OSSF7c_000060 plastic bottle crushing
529
+ DO-9yuU9brk_000028 sea lion barking
530
+ DOi5UxxTknA_000041 driving snowmobile
531
+ DPpo_Whnuqc_000022 missile launch
532
+ DQelhAtUyHY_000030 playing electric guitar
533
+ DR7TdSc2ahQ_000030 sliding door
534
+ DSThhOKXU-c_000250 playing bass guitar
535
+ DSgKhbtDWWo_000400 playing flute
536
+ DX5_AglGFMw_000349 metronome
537
+ DXfTYgSGLac_000177 alligators, crocodiles hissing
538
+ DZo15IMYpmA_000206 vacuum cleaner cleaning floors
539
+ DaMG8zJSkuw_000100 playing trumpet
540
+ DbgRhWmYTJk_000002 frog croaking
541
+ Dbi2L5z8U-w_000020 driving motorcycle
542
+ DdZ6PSUQoQA_000050 female speech, woman speaking
543
+ DfZmOeeF_CI_000024 lathe spinning
544
+ DhaOFNnOC8o_000102 playing steel guitar, slide guitar
545
+ DhxWWDGdF8I_000159 frog croaking
546
+ Dj3sIimPrCk_000330 pigeon, dove cooing
547
+ DmSsL0Xde-I_000005 missile launch
548
+ DpIKdB4c_JU_000030 sloshing water
549
+ DqnMEAN1GVc_000098 baby laughter
550
+ DrPa82cqlSM_000008 playing mandolin
551
+ DroorVxOn5s_000030 engine accelerating, revving, vroom
552
+ DsVtCIaWv-Y_000377 hedge trimmer running
553
+ DtRqBLRUTRo_000069 playing clarinet
554
+ Dtiv9RNaA4U_000106 train horning
555
+ Duk5ikgbUfU_000030 playing violin, fiddle
556
+ DuyL15HJn6M_000036 elk bugling
557
+ DvascfU3OM4_000233 playing bongo
558
+ DwE0cQ3Xz70_000030 chainsawing trees
559
+ Dxxg6NenmBQ_000153 playing oboe
560
+ E0ocfyjk1lw_000129 scuba diving
561
+ E22HBR9rEkI_000030 lawn mowing
562
+ E22UuQ6SRf4_000001 fire truck siren
563
+ E4IHTinI-3k_000010 people whistling
564
+ E4dvhMWr7K0_000140 playing didgeridoo
565
+ E5ICgH7JVFI_000003 driving snowmobile
566
+ E67GhkgB8Jc_000033 cell phone buzzing
567
+ E6tu_4cO7ok_000107 playing cornet
568
+ E8LoFlcAC-M_000051 playing vibraphone
569
+ EDtJ88ZJtWo_000008 playing bagpipes
570
+ EEJp_Ssp0No_000004 dog howling
571
+ EG2bfvkpzjk_000136 playing steelpan
572
+ EGKE_rOo-Gg_000030 playing violin, fiddle
573
+ EHHBn9EAtg4_000040 people booing
574
+ EHHefsog-aM_000069 black capped chickadee calling
575
+ EHkkma0y1T8_000030 people sneezing
576
+ EJudk9RWsZI_000000 car engine starting
577
+ EKkFWhdVAOU_000032 woodpecker pecking tree
578
+ ETcwLdOldMg_000000 blowtorch igniting
579
+ EU3OmHbOUo0_000000 cattle mooing
580
+ EbnPPw9P3MQ_000409 snake rattling
581
+ Ee1Glgpx3YE_000038 scuba diving
582
+ EeUHgSkCSi8_000666 turkey gobbling
583
+ EhDl29RiF74_000085 black capped chickadee calling
584
+ EhaE7gijT78_000119 baby laughter
585
+ EkbcNbEn1Z8_000063 opening or closing car doors
586
+ EoubRuwDlrw_000038 canary calling
587
+ ErdH1gc3ZmU_000003 playing cornet
588
+ F186zkBSFjE_000110 helicopter
589
+ F1ZVQSywml4_000040 skateboarding
590
+ F3yETAYfYZg_000009 playing theremin
591
+ F6xLA2AA2GA_000090 people crowd
592
+ FAdeuN1uc-M_000230 subway, metro, underground
593
+ FCir2lQei8M_000030 playing harpsichord
594
+ FEltES9TUEU_000008 hammering nails
595
+ FGWcwpr_SeM_000133 fire truck siren
596
+ FGoXt7LIK3U_000010 police car (siren)
597
+ FHz8YQy4q5A_000027 tractor digging
598
+ FIPu0jd8I28_000030 people screaming
599
+ FIpCyWCy9Qc_000030 playing violin, fiddle
600
+ FRxNI559-Xs_000280 railroad car, train wagon
601
+ FUVXK29tUwQ_000000 owl hooting
602
+ FWuYLFTe3_8_000000 playing trombone
603
+ FXzP5bUz-Lo_000017 horse clip-clop
604
+ FauD2eg73V8_000030 playing electronic organ
605
+ Fd_SXrGw6ag_000030 playing marimba, xylophone
606
+ Fe9YJozRi78_000148 child singing
607
+ FfpD5XC8b5w_000137 playing bongo
608
+ FglnuP1jpRY_000030 playing cello
609
+ FhHBIlZ_5T8_000035 wood thrush calling
610
+ Fj34VCzy_Og_000030 horse clip-clop
611
+ Fpqf057G_SY_000000 chipmunk chirping
612
+ FpwtNUX45qU_000047 snake hissing
613
+ Frs4_Uf8Tq4_000127 ice cracking
614
+ FtCT62fiyrU_000270 church bell ringing
615
+ FtNV_Gq62l8_000019 cat meowing
616
+ FudSk5EUbAY_000156 playing ukulele
617
+ FvZqgCIbO2Q_000003 hail
618
+ FyszP9lfbDk_000001 playing didgeridoo
619
+ G-5AgMNzjv4_000017 vehicle horn, car horn, honking
620
+ G-Eokh465wM_000030 printer printing
621
+ G-IdABSxeHI_000097 dinosaurs bellowing
622
+ G-jsAK9ITwM_000030 ocean burbling
623
+ G6FhQuR3_88_000000 playing congas
624
+ G6nSnVQCxBQ_000095 elephant trumpeting
625
+ G7E7D2Z_Juo_000070 people burping
626
+ G7F8HVNw1lI_000081 scuba diving
627
+ G9AKWSzZtWI_000030 people eating
628
+ G9F38sObAns_000025 playing harpsichord
629
+ GAFJeF_AqZA_000086 hail
630
+ GBf5DgubSuE_000030 wind noise
631
+ GD8dVFZaWNU_000030 skateboarding
632
+ GDQjuDpqnJI_000030 wind noise
633
+ GL1TqKjpv1Q_000047 playing theremin
634
+ GLA-upuVPSA_000057 police radio chatter
635
+ GLtFkIbCZOY_000140 pigeon, dove cooing
636
+ GMNJCJ0ykfc_000050 male singing
637
+ GOFDdcvXq40_000030 goose honking
638
+ GPl4twCSrLQ_000001 coyote howling
639
+ GS_JqZCyqOc_000050 stream burbling
640
+ GT2frI8BMMM_000013 vehicle horn, car horn, honking
641
+ GTZkjw4aVn0_000030 engine accelerating, revving, vroom
642
+ GUSlicDnqIA_000045 playing congas
643
+ GX4kLN3hW4Y_000149 planing timber
644
+ GXIPKWMIVhs_000072 playing oboe
645
+ GXRHmy5Bqas_000008 vehicle horn, car horn, honking
646
+ GYJCyn2piCc_000329 lip smacking
647
+ GZoVDjx9ltQ_000235 playing erhu
648
+ GZoypVKRpCo_000003 cuckoo bird calling
649
+ G_hP5gvRfNw_000033 cat growling
650
+ GaFqib8bCLM_000019 tapping guitar
651
+ GbTzdC4mOtQ_000030 machine gun shooting
652
+ GbUoljsX3lg_000672 people gargling
653
+ GgUkhedV5e0_000190 female speech, woman speaking
654
+ GhizOxu0ZpI_000060 people belly laughing
655
+ GidBfE5JU3s_000005 vehicle horn, car horn, honking
656
+ GjKjnplphn4_000200 playing acoustic guitar
657
+ Gjide6V8U-E_000039 dog growling
658
+ GoMH9AL7YRA_000050 ambulance siren
659
+ GvPc1ncg0OY_000138 people booing
660
+ Gwp62TNrER0_000014 barn swallow calling
661
+ GxUovR3d2aM_000019 car engine knocking
662
+ GzAdcTtwkM0_000011 missile launch
663
+ H-ZKdWCEhbI_000140 fire crackling
664
+ H-jnsSCa-c8_000090 playing lacrosse
665
+ H-rd3O5haG8_000070 playing bass guitar
666
+ H0zmJjMoV-4_000012 playing squash
667
+ H1lx8lLLceQ_000120 machine gun shooting
668
+ H2r4JHm00Vg_000260 sheep bleating
669
+ H6onyc5r6os_000024 heart sounds, heartbeat
670
+ H6z_gPH8m2A_000055 people crowd
671
+ H7BcUVlPDsg_000026 parrot talking
672
+ HCPKDz63_s4_000000 child speech, kid speaking
673
+ HCuORBJf-Ho_000027 playing cornet
674
+ HL36YvzbFYs_000210 goose honking
675
+ HL_E1j069EI_000030 female speech, woman speaking
676
+ HOD29VAXJD8_000030 car engine knocking
677
+ HOI0ZaKLAMM_000030 fireworks banging
678
+ HOI7KapLzz4_000030 playing violin, fiddle
679
+ HOupeg-QhHk_000073 yodelling
680
+ HQSafj2aCNI_000100 playing banjo
681
+ HQlV2jYCz5k_000030 playing violin, fiddle
682
+ HR35d67Dhts_000108 singing bowl
683
+ HRaGv5q3P3E_000000 opening or closing drawers
684
+ HTRRMT1NQOc_000060 playing saxophone
685
+ HTqUtEGJ0As_000030 people whistling
686
+ HUP72tlgzyE_000066 playing badminton
687
+ HUWvhtKby-A_000033 car engine knocking
688
+ HW2o3t3fE_k_000062 francolin calling
689
+ HX2ccFGAuMU_000163 electric shaver, electric razor shaving
690
+ HX5BeffFwV0_000008 smoke detector beeping
691
+ HaABMNzUOvo_000030 wind rustling leaves
692
+ Hakqd6g2jaY_000110 helicopter
693
+ HcO60nHH4W0_000023 playing bass drum
694
+ HckqMrtU3dg_000133 playing double bass
695
+ HebxWsaO-LA_000115 train whistling
696
+ HkCt4hh_x58_000030 rowboat, canoe, kayak rowing
697
+ HlUvoEXQZYk_000007 playing tambourine
698
+ Hlp5qKMfdYk_000180 playing bass guitar
699
+ Honj-TQHx3U_000129 airplane
700
+ Hqhi7LioGyM_000030 playing marimba, xylophone
701
+ HsCj9l5Barg_000045 fire truck siren
702
+ HsX5XlPFOWI_000380 lawn mowing
703
+ Hum53_V1zw8_000001 wind noise
704
+ Hwp_62TYhDk_000110 playing marimba, xylophone
705
+ I-WMZh-ieC8_000280 playing harp
706
+ I-qeWJGSXuQ_000083 playing bassoon
707
+ I4ffG1Bh-d8_000156 playing oboe
708
+ I5wV1AFabIA_000029 frog croaking
709
+ I6_30m_TQ2o_000000 playing tuning fork
710
+ IBy30oL3yxw_000399 playing harpsichord
711
+ ICajcUYAan8_000410 people babbling
712
+ IEiseWb8Tao_000080 playing acoustic guitar
713
+ IF92YmTMtdk_000089 cattle, bovinae cowbell
714
+ IFGbGcs3bQQ_000034 chinchilla barking
715
+ IHaWOJuekYY_000109 tap dancing
716
+ IINqN6L2NsY_000285 tapping guitar
717
+ IJvYFkrfjBg_000049 tornado roaring
718
+ IKj9E33H8e8_000012 pig oinking
719
+ ILBWV9AFKDU_000115 playing ukulele
720
+ IN-9DFoS3fM_000007 bird squawking
721
+ IWVztd9QsXg_000005 owl hooting
722
+ IWhgJgeUQuA_000090 playing bagpipes
723
+ IYhq5aun18M_000181 police radio chatter
724
+ IZAasx5KIKE_000010 fireworks banging
725
+ IaAKobKeOtU_000271 people marching
726
+ IeD5tKVhuI4_000030 playing synthesizer
727
+ IeK6EDl8Z_k_000033 people clapping
728
+ IeW36MTcnBs_000117 dog growling
729
+ Ieca4fwxfyY_000049 tractor digging
730
+ IicM8tOXAFg_000146 pheasant crowing
731
+ Ik40yoz30vE_000068 woodpecker pecking tree
732
+ Il82kphC6es_000172 dinosaurs bellowing
733
+ IlLCyGNjG3M_000060 playing harp
734
+ InxgcOFzxWY_000070 chicken clucking
735
+ IpDU10kKguU_000311 vacuum cleaner cleaning floors
736
+ IqCRbzhPkvU_000000 lawn mowing
737
+ IrcX151sayY_000098 tapping guitar
738
+ IrkyGrHjygY_000020 tapping guitar
739
+ Irx-WWFsQYU_000667 people eating
740
+ ItnOPd_CktY_000020 people coughing
741
+ IuTgZQVcMBg_000007 sloshing water
742
+ Ivho6H4q1zk_000017 typing on typewriter
743
+ Iylzuk-0j64_000163 slot machine
744
+ J0ZBjy_EEtg_000015 people clapping
745
+ J18R3qBnJtA_000120 waterfall burbling
746
+ J1kAKMeULF8_000500 subway, metro, underground
747
+ J3K5HEX3gko_000030 playing banjo
748
+ J4VeWujsLJg_000030 typing on computer keyboard
749
+ J5ugw2GUbnY_000001 dog whimpering
750
+ J7fVkoC-Ha8_000711 people eating crisps
751
+ J82OaPeyioI_000030 horse clip-clop
752
+ JC33o6YxH9c_000220 playing piano
753
+ JHNBF0WJ-EM_000029 people belly laughing
754
+ JIdUC1zZb9M_000060 rowboat, canoe, kayak rowing
755
+ JK4YikH2myA_000161 playing vibraphone
756
+ JKrghKg6UBU_000260 ocean burbling
757
+ JKxdjXEI9Wc_000015 eagle screaming
758
+ JLPpMZlBOEI_000038 playing accordion
759
+ JQ3bFZbatGk_000030 people running
760
+ JQr-BRXrjN4_000002 airplane
761
+ JVevxopJjU8_000823 playing tabla
762
+ JXi1ZtJecYo_000001 bowling impact
763
+ J_k6z7_YVJU_000090 playing piano
764
+ Jbiig_IQdIo_000282 cap gun shooting
765
+ JcXhB_4B32o_000090 playing clarinet
766
+ JeJGThFGm80_000001 lighting firecrackers
767
+ JfAjUMKjoVI_000460 playing harp
768
+ JfiFq8tn5Pk_000009 playing steel guitar, slide guitar
769
+ Jk-SBbw7Afg_000140 driving buses
770
+ K-B9CIVeQ_U_000030 horse clip-clop
771
+ K-MCXLQmnFA_000004 playing banjo
772
+ K3KsP-m_c5I_000353 basketball bounce
773
+ K5HBK1c7noI_000010 cat meowing
774
+ KBc_FdBzN2U_000017 wind chime
775
+ KFFJI_TZmoY_000047 crow cawing
776
+ KJwga4gMEzU_000239 people slurping
777
+ KJxSJR3v6oE_000013 church bell ringing
778
+ KKd2qSxww1o_000002 typing on typewriter
779
+ KM_VudA7hgo_000030 people running
780
+ KOzRB30gxpE_000362 planing timber
781
+ KQbCjNzlYPs_000082 writing on blackboard with chalk
782
+ KU5WQZsoKRE_000079 child singing
783
+ K_8tBU1LYxU_000000 chicken crowing
784
+ Kbc8ioemPlA_000081 tractor digging
785
+ KdD8xho7ymw_000037 cat purring
786
+ KfqdB93utIg_000000 waterfall burbling
787
+ KfyYM6nq--A_000011 playing vibraphone
788
+ KnwgxGWxp7Y_000025 people whistling
789
+ Kp0W7S-oExs_000030 driving buses
790
+ Kq0Dbp3C4d0_000017 dog howling
791
+ KrUuPSM4LxM_000215 magpie calling
792
+ KsuQWEN0COQ_000199 playing darts
793
+ Kus5SmqOIrA_000024 mynah bird singing
794
+ Kwha8UYndzI_000090 playing didgeridoo
795
+ Kz4Jm9_iFeg_000038 hail
796
+ KzK6d6Qpu_o_000010 dog barking
797
+ KztFbSJPxg0_000197 planing timber
798
+ L4u9LOjcXoE_000000 people sobbing
799
+ LAaJfzvvlTI_000053 lions roaring
800
+ LAx_fanEB_g_000168 arc welding
801
+ LB2EbSmDSKw_000007 baby laughter
802
+ LBH_D9h18bw_000042 rope skipping
803
+ LCcPzeH_Cn4_000160 sailing
804
+ LE49c8e5VMU_000049 mynah bird singing
805
+ LEpzp8DnWyY_000026 sharpen knife
806
+ LGMZ9c7q8tE_000168 cat purring
807
+ LHYHo8wJF74_000342 playing oboe
808
+ LJsSbG5A1y0_000000 lighting firecrackers
809
+ LL618LsL2zY_000030 pig oinking
810
+ LMbyOx04l9E_000036 vehicle horn, car horn, honking
811
+ LNl3ANFth4Y_000021 mynah bird singing
812
+ LOLFOiNiS1o_000067 sharpen knife
813
+ LPTsZZVr06o_000030 people eating
814
+ LSsYBN_RvPc_000122 rapping
815
+ LWrztDg2BGI_000245 playing synthesizer
816
+ LYUkVukRObA_000236 pigeon, dove cooing
817
+ L_Da1Sv1iKU_000028 playing didgeridoo
818
+ L_OvLmH_feU_000021 dog growling
819
+ LaGhL-3ctOc_000048 playing double bass
820
+ LbjkUR-ERQw_000049 opening or closing drawers
821
+ LciaPQ1XV3c_000217 playing badminton
822
+ Lfmcj5VW6VE_000050 playing acoustic guitar
823
+ LgdtTzvKnT4_000030 rowboat, canoe, kayak rowing
824
+ Lj4Ngu0ars8_000138 electric shaver, electric razor shaving
825
+ LlRZR8xPOEw_000021 frog croaking
826
+ Lmp51YN-7wc_000466 people marching
827
+ LtqXpk2YGls_000010 chainsawing trees
828
+ LuxrhiicesU_000000 donkey, ass braying
829
+ LvzMerRGbCE_000099 bouncing on trampoline
830
+ LxdOWpwSzi0_000400 mouse pattering
831
+ Lz8Ytz12MrU_000120 chopping wood
832
+ M0EaEBlx5fk_000126 yodelling
833
+ M9cNmb9HKPc_000110 turkey gobbling
834
+ MApvC99wovc_000159 car engine starting
835
+ MEtdxR3RdEA_000180 playing piano
836
+ MFEhejrPVmw_000040 dog barking
837
+ MMTvsiahcsc_000002 fire crackling
838
+ MMjEIFDYQvc_000117 yodelling
839
+ MQPNvRDVuUs_000100 playing french horn
840
+ MQPggq37uX8_000003 scuba diving
841
+ MQcS6DqCjKQ_000030 playing vibraphone
842
+ MRnnE9MTm64_000052 driving snowmobile
843
+ MTD6-1mrtP8_000072 owl hooting
844
+ MVmJujaAocY_000030 baby crying
845
+ MXmetP4F-EU_000019 door slamming
846
+ MdUG2H5K5eg_000117 roller coaster running
847
+ MenAsca8z6s_000137 slot machine
848
+ Mf6bCl5HKgc_000000 wind chime
849
+ MfSXrFJt6d4_000007 motorboat, speedboat acceleration
850
+ Mhzz75z8mbY_000166 playing ukulele
851
+ Mk8fhA3DAsA_000030 turkey gobbling
852
+ MkrFhq3F_z4_000100 playing accordion
853
+ MlX7I-OZIyk_000062 playing timpani
854
+ Mmyr6Gpclbk_000070 bird chirping, tweeting
855
+ Mnv4KVEt18I_000018 people giggling
856
+ Msh94MTYC6A_000290 chainsawing trees
857
+ MshXUve673A_000363 elk bugling
858
+ Mvn2oFoKxwI_000128 people booing
859
+ Mvue0y_EsDU_000000 orchestra
860
+ MwVghEDjyQM_000030 people sobbing
861
+ MwsoiJOqg_g_000030 duck quacking
862
+ MwyzEfk2xbA_000054 playing double bass
863
+ Mzc3DajWA0k_000030 ice cracking
864
+ Mzgas545UXU_000090 playing snare drum
865
+ N09QFSbvIC4_000150 playing electronic organ
866
+ N2DQWIePoLs_000030 playing violin, fiddle
867
+ N3_jZV1ejnA_000030 crow cawing
868
+ N5CNEOKptjo_000000 splashing water
869
+ N8cNWpCL0Rs_000183 owl hooting
870
+ N9cM9BdATNs_000081 people booing
871
+ NAETplWD64g_000030 playing harpsichord
872
+ NAk-PU3X_DQ_000026 mynah bird singing
873
+ NBeonGAqO84_000032 playing bugle
874
+ NCdkXluu-D8_000350 playing harpsichord
875
+ NFd5Zot-0_c_000006 heart sounds, heartbeat
876
+ NJfJ4E9EVoM_000120 people whispering
877
+ NN6mOUDBjEM_000042 dog howling
878
+ NWSsGcjVRDw_000245 playing tabla
879
+ NZs6RgHZOoI_000013 firing muskets
880
+ NfcCnLiHlqU_000134 playing erhu
881
+ NhO6B0zM9Pc_000030 playing electronic organ
882
+ NjKRF79wl5Y_000110 wind noise
883
+ Nkz9_eGsHKY_000057 people booing
884
+ NmdqThtOVro_000160 beat boxing
885
+ NnNm_oqkG0o_000050 people sobbing
886
+ NniPHshHj9M_000068 playing didgeridoo
887
+ NqxCX4G3N2g_000107 playing volleyball
888
+ NrCNo4V7RVM_000030 lawn mowing
889
+ NrWxMrh7cGw_000210 playing cornet
890
+ NtJQ6W2o0EI_000075 canary calling
891
+ NwIDavS0llk_000010 chicken crowing
892
+ O-C9p_sK_eI_000030 horse clip-clop
893
+ O0QV4_JRM0M_000002 car engine knocking
894
+ O15FUv56iCc_000040 playing cymbal
895
+ O3geFV-GoqM_000031 fire truck siren
896
+ O5LFB39yCA4_000085 missile launch
897
+ O5TMWyFd1DQ_000180 playing vibraphone
898
+ O6_sGC3v96g_000006 wood thrush calling
899
+ O7KCtFRaWck_000080 alarm clock ringing
900
+ OEu8pZpN8ZA_000000 using sewing machines
901
+ OIqUka8BOS8_021217 warbler chirping
902
+ OLtTuBhG-og_000075 playing squash
903
+ OTVFQoNRQTs_000060 playing bass guitar
904
+ OWlCVuOznw0_000019 arc welding
905
+ OZ14CiqpJL8_000010 child speech, kid speaking
906
+ Ocdu7Lz0IuU_000003 francolin calling
907
+ OdGHvGlSUcM_000157 playing timpani
908
+ Of59qi5xxkM_000050 playing drum kit
909
+ OiIaJb68Haw_000050 playing banjo
910
+ OjOQ0K6lza8_000018 playing tuning fork
911
+ Okd7ksWR-fc_000547 swimming
912
+ Oljdv3iSTBc_000047 people eating noodle
913
+ Om-Uc7ia1f0_000320 playing bass guitar
914
+ OrueZOVOAD8_000010 motorboat, speedboat acceleration
915
+ OtDVd-1zaqU_000030 motorboat, speedboat acceleration
916
+ Ow1ZEhmP3qU_000116 typing on typewriter
917
+ OyoJ99jDQdo_000147 playing didgeridoo
918
+ P1eMMIK0cTs_000011 mynah bird singing
919
+ P2taxpwuzcw_000053 wood thrush calling
920
+ P2wbv4C6bBA_000210 barn swallow calling
921
+ P35m_Rn7HbA_000030 motorboat, speedboat acceleration
922
+ P5Y1D-fSVfg_000054 lip smacking
923
+ P6sG1m6C4zI_000081 mouse pattering
924
+ PavKY6YlSl4_000026 people whistling
925
+ PawUc0pqf9M_000260 car engine starting
926
+ PbomocKzqKU_000109 splashing water
927
+ PeJxiP0CPn4_000025 playing didgeridoo
928
+ PfwBOCxEst8_000243 cheetah chirrup
929
+ PjbxRjKvzw4_000030 wind noise
930
+ Pll-TpbHen4_000067 airplane
931
+ Pp61sP7bols_000076 cap gun shooting
932
+ PrIQbadXX74_000692 playing oboe
933
+ PsmihTl5Cx8_000060 pig oinking
934
+ Pu4BCOv6e5Q_000020 fireworks banging
935
+ PvE48Ub_CgA_000034 bird chirping, tweeting
936
+ PvpA8y7-ZC4_000101 people burping
937
+ Pvt8VUQ_Bso_000030 playing vibraphone
938
+ PxEpiEid_c8_000177 slot machine
939
+ Py5s1uL46L0_000100 male singing
940
+ Pz618GchhGI_000001 otter growling
941
+ Pz9BhPMUzv8_000258 lathe spinning
942
+ Q38lPvwj5Gw_000234 swimming
943
+ Q57DFiTwcM4_000221 people eating noodle
944
+ Q5jnMD1z86k_000287 people eating noodle
945
+ Q7X3fyId2U0_000090 tornado roaring
946
+ Q7ZPnRQraJk_000200 playing clarinet
947
+ Q9AvyaxgRRo_000141 playing steel guitar, slide guitar
948
+ QBFaKTDXCCQ_000120 playing acoustic guitar
949
+ QBfcf-k5U28_000007 vehicle horn, car horn, honking
950
+ QCX3H9wXgpo_000053 cap gun shooting
951
+ QEcQtxP1fdg_000056 playing bongo
952
+ QGkUBiVG8-Y_000034 owl hooting
953
+ QH5ZtCI9Hts_000125 chopping wood
954
+ QL6Ws4i07is_000040 goat bleating
955
+ QO9sbXhMq08_000220 people hiccup
956
+ QOFuXRetSLI_000064 arc welding
957
+ QT1nE5lR7wA_000035 cat growling
958
+ QTqN9c6661s_000000 forging swords
959
+ QUMzyZRYpWs_000019 playing steel guitar, slide guitar
960
+ QXEq7sE7dqg_000030 police car (siren)
961
+ QXjaLCotbpY_000055 playing zither
962
+ QZ-cG6VdBHM_000070 helicopter
963
+ QaBmzAFivPQ_000096 people marching
964
+ QcL-X7hJJYQ_000000 people whistling
965
+ Qd9_UMNMhcA_000010 typing on computer keyboard
966
+ QdEYMboSweA_000001 playing oboe
967
+ Qdrcv-ZjC-g_000037 car engine starting
968
+ QgEi6pAW36g_000150 male speech, man speaking
969
+ QgHYiH6ES08_000120 basketball bounce
970
+ QgQKqaMqRgs_000062 playing bongo
971
+ QhRcayuLZ48_000390 playing piano
972
+ Qlj2HEcX05Q_000136 playing saxophone
973
+ QpA1_cezBwA_000123 mouse clicking
974
+ Qr2PeUXBJu4_000197 playing erhu
975
+ Qs8RjZlOcdU_000030 car passing by
976
+ QsHeqaa4Ckc_000072 people whistling
977
+ QsNHM92SIvo_000000 people whistling
978
+ QvEMTs9_RQE_000010 lawn mowing
979
+ Qwxa7ZCEBQs_000006 cricket chirping
980
+ QyRrtn5AoSg_000280 playing saxophone
981
+ QypTigdvLWU_000017 firing cannon
982
+ R0YwusOkMx0_000008 bowling impact
983
+ R1h5rRHM3oI_000000 donkey, ass braying
984
+ R29qwv_mh4E_000018 playing bassoon
985
+ R3VnztSX-k8_000200 ice cream truck, ice cream van
986
+ R7KnzEqUGAc_000040 playing cymbal
987
+ R7bSeIfRG-Y_000590 eating with cutlery
988
+ R8cWq9GoEpE_000037 pheasant crowing
989
+ RBHqcDacio0_000182 beat boxing
990
+ RCIMcizSSZU_000044 francolin calling
991
+ RDuDqEmKucQ_000030 motorboat, speedboat acceleration
992
+ RJNjaPizyKg_000099 playing theremin
993
+ RKZmAYXXWbg_000247 canary calling
994
+ RM6uf-sdVQI_000043 playing bass drum
995
+ RN96eLdMN_I_000005 bull bellowing
996
+ ROsAOQe62gs_000050 playing electronic organ
997
+ RVqCdL7_G2Y_000030 car engine knocking
998
+ RWnvolYKQ2o_000414 lip smacking
999
+ R_SNrPUIa1A_000140 playing bassoon
1000
+ R_yW6SKe_-M_000080 people booing
1001
+ RaawVrMvP7k_000048 pheasant crowing
1002
+ Rb0IEIeJTKY_000002 basketball bounce
1003
+ Rc_exQXrUG0_000100 skidding
1004
+ ReZUlDwGaLY_000080 playing marimba, xylophone
1005
+ Ria-XrpfgsA_000089 people marching
1006
+ Rifu8nB2cCs_000043 cat purring
1007
+ Riu9TpsQ_mk_000009 pig oinking
1008
+ RmGGiQMURcQ_000022 people sniggering
1009
+ RoLNzNAv-Ig_000030 motorboat, speedboat acceleration
1010
+ RrpMoJrp4AY_000180 people crowd
1011
+ RsYAulhucVI_000011 lions roaring
1012
+ RtHMCINXA0s_000052 cricket chirping
1013
+ Rur-IfwPZho_000051 dog howling
1014
+ RwE9JAktTvU_000580 people coughing
1015
+ RyV40yhlOeU_000419 people marching
1016
+ S29c6T__5HU_000003 playing timpani
1017
+ S3Ipyd9HHLk_000185 magpie calling
1018
+ S45cdr4x-mc_000080 chainsawing trees
1019
+ S9fw7NHd2eo_000380 playing electric guitar
1020
+ SBYzwBhUpYs_000166 playing badminton
1021
+ SBwOIJoGChM_000116 hammering nails
1022
+ SCjdlZSW8nY_000111 playing table tennis
1023
+ SGkzdDWFIHI_000085 playing bass drum
1024
+ SHebWHn0c2Y_000005 chopping wood
1025
+ SPnZIDCnKwM_000030 orchestra
1026
+ SS6iMabGB1Y_000020 chimpanzee pant-hooting
1027
+ ST33aEP5Hbc_000006 train horning
1028
+ SXC13GS87Co_000031 woodpecker pecking tree
1029
+ SXHYr-7nPaw_000030 playing drum kit
1030
+ SYDQX7Whjm4_000061 woodpecker pecking tree
1031
+ SYWqIfMOmGE_000051 hammering nails
1032
+ S_0v5j4S100_000039 cat purring
1033
+ S_qPgRNSkIw_000370 people clapping
1034
+ SbXyRN0DD-g_000080 dog bow-wow
1035
+ Sc-Ld96kbN0_000144 playing synthesizer
1036
+ SdCzaAUA6Xs_000005 playing djembe
1037
+ SeZm-iy9n8M_000150 playing electronic organ
1038
+ Sf0aZczIZVU_000040 playing cello
1039
+ SgYh5Lb7tlM_000130 playing flute
1040
+ SifYJFmSSRw_000123 playing marimba, xylophone
1041
+ Sl4weBj8xfc_000030 typing on computer keyboard
1042
+ SoVEYhxQabk_000103 canary calling
1043
+ Spm_zrjedzk_000392 cap gun shooting
1044
+ Sqq2dUA8t3A_000586 playing harmonica
1045
+ SvJ0kUY22C8_000055 turkey gobbling
1046
+ Sw6qDVMsR5M_000030 playing violin, fiddle
1047
+ SwQie7apk78_000198 playing darts
1048
+ SyEVBFw_9oE_000120 people screaming
1049
+ SyfyWK7dKXA_000021 playing squash
1050
+ SzmORuHD4g4_000059 wind chime
1051
+ T-AN31N4LD0_000050 people screaming
1052
+ T0NMgZC7CDU_000011 chipmunk chirping
1053
+ T19Xf5-OTHw_000130 playing piano
1054
+ T2zZbnu_NtM_000029 playing table tennis
1055
+ T4KEGH_8lY8_000119 playing timpani
1056
+ TAdH0kUJj9k_000050 helicopter
1057
+ TCUnK4k7QZ0_000000 telephone bell ringing
1058
+ TDh8_ixGzIo_000030 printer printing
1059
+ TGngN3n7EMw_000024 airplane flyby
1060
+ TLSmnnnyhEk_000030 people shuffling
1061
+ TMyd50KWyNo_000311 people slurping
1062
+ TNCcQfbselM_000120 francolin calling
1063
+ TQapWHNS5FE_000024 car engine knocking
1064
+ TRW01xXMMqg_000210 playing accordion
1065
+ TRt_14JcRWQ_000080 playing bass drum
1066
+ TTElms_ZWqI_000428 hair dryer drying
1067
+ TTstWFDMmqc_000030 people whistling
1068
+ TUPEF6PQxow_000132 rapping
1069
+ T_iuImHtqUI_000010 people sobbing
1070
+ Ta__Ev0mkBk_000030 chainsawing trees
1071
+ TakDv24Tiq0_000032 plastic bottle crushing
1072
+ TcN0QofoTvg_000221 playing erhu
1073
+ TdkhMZZvdgc_000006 owl hooting
1074
+ Tdyh5ziqH-U_000007 lions roaring
1075
+ TiaGOZ-ibxw_000411 people booing
1076
+ TriRWR9YiNk_000016 frog croaking
1077
+ Tse5rzNV5dk_000084 pheasant crowing
1078
+ Tze9ybKops4_000020 playing synthesizer
1079
+ U3-h9ZARqD4_000264 police radio chatter
1080
+ U34oQw93afs_000219 playing tambourine
1081
+ U3zsgbf9WHQ_000194 horse neighing
1082
+ U4RRMpX2wCU_000010 toilet flushing
1083
+ U55bYLMVKiw_000193 pheasant crowing
1084
+ U6vVDGaKL3Q_000354 bouncing on trampoline
1085
+ U9qUXBqIoZ0_000106 dog howling
1086
+ UA62hwIBgGY_000020 chicken clucking
1087
+ UFIi1OuMx0o_000302 rope skipping
1088
+ UGwl5VOHuaw_000200 playing accordion
1089
+ UIFxlzHYPBM_000060 gibbon howling
1090
+ UJ1lZOY9LSY_000035 playing didgeridoo
1091
+ UM1j8kFaxi8_000020 motorboat, speedboat acceleration
1092
+ UOL-hbkzUN4_000010 barn swallow calling
1093
+ UOlwg402_r4_000070 people clapping
1094
+ UPUwaW8jfhA_000030 ice cream truck, ice cream van
1095
+ UQonGRRRpv4_000024 goose honking
1096
+ UUKyUUjv8qg_000030 church bell ringing
1097
+ UZAB21OSorM_000007 electric shaver, electric razor shaving
1098
+ UZYfRXafn9I_000005 ferret dooking
1099
+ UZp0AcdimvA_000021 cattle, bovinae cowbell
1100
+ UeCkRYU_SuM_000100 playing accordion
1101
+ Uf2j1VbOk8c_000055 pheasant crowing
1102
+ UfG4dP0szuY_000040 fireworks banging
1103
+ UjTYiJ0dm8s_000002 vehicle horn, car horn, honking
1104
+ UkdS0cwAGYE_000010 car engine starting
1105
+ UnGLtJX29Hc_000043 planing timber
1106
+ UoFgJXGWJXA_000111 playing congas
1107
+ UpWivODbpIY_000059 owl hooting
1108
+ UsJAb6aftq8_000580 playing bagpipes
1109
+ UuuQH-TFxMo_000034 missile launch
1110
+ UzKZijSs4-A_000004 fox barking
1111
+ UzPSMiqeH3Y_000118 singing choir
1112
+ V-ZbY0SL2XI_000040 people sniggering
1113
+ V1ALglq7_x8_000018 dog growling
1114
+ V6lQVpw888U_000590 machine gun shooting
1115
+ V6y-jCli4I4_000000 cuckoo bird calling
1116
+ V7SGeTSJz9w_000090 skateboarding
1117
+ V82SmRI0GHY_000030 playing clarinet
1118
+ V83lIhKVraY_000125 playing darts
1119
+ VCEicqV_2Xw_000030 ambulance siren
1120
+ VDXN0xwWgRA_000083 playing bass guitar
1121
+ VDzkPfnI1g4_000093 playing djembe
1122
+ VEER910vqMk_000002 duck quacking
1123
+ VEhmvrgrZb0_000000 chicken clucking
1124
+ VFj1vFMV3dQ_000025 playing darts
1125
+ VGrI3TMjWog_000120 playing vibraphone
1126
+ VHQjG81NcXE_000030 crow cawing
1127
+ VS9R3iOc4Vk_000027 pheasant crowing
1128
+ VU9W8Y1E5u4_000030 bouncing on trampoline
1129
+ VdxslFvStdo_000370 female speech, woman speaking
1130
+ VfXlyIjtfo4_000117 baby babbling
1131
+ Vgs_XjEqKl0_000020 people sobbing
1132
+ Vh4E5JPTMBM_000146 typing on typewriter
1133
+ VhLn9pUFwXw_000039 chopping wood
1134
+ VhUG4vTpPUo_000324 ripping paper
1135
+ VhsFniEZO-k_000026 mynah bird singing
1136
+ Vkbp8VmL3pM_000040 people sobbing
1137
+ VkgLWYydiPE_000125 tractor digging
1138
+ VlGuwiKwJAM_000027 playing sitar
1139
+ VlkgwzKAamE_000051 ripping paper
1140
+ Vnnw7lK63rg_000041 playing snare drum
1141
+ Vt3qBXzyS5k_000280 eating with cutlery
1142
+ VwZ8gzI3qNE_000106 people slapping
1143
+ VwqcV76E6Nk_000000 people booing
1144
+ VwqqmiiznQU_000028 woodpecker pecking tree
1145
+ Vxs0xCJI92Y_000080 driving motorcycle
1146
+ Vzb427ZmWvw_000220 fireworks banging
1147
+ W0PwVllBxkI_000114 playing steel guitar, slide guitar
1148
+ W1o_XgU8lec_000050 skateboarding
1149
+ W2_8zRHaEPk_000150 playing vibraphone
1150
+ W2gkFTFR8mw_000047 rope skipping
1151
+ W4eT7fj-aIA_000201 driving snowmobile
1152
+ W5oXrz8dqBk_000030 playing piano
1153
+ W5wBkCwEEmY_000140 playing banjo
1154
+ W7OJevEgq7w_000000 dog bow-wow
1155
+ W7u5kEt-q-8_000000 playing tennis
1156
+ W9L5rTbcMFA_000004 people eating noodle
1157
+ WABbXpAT_UA_000049 playing bagpipes
1158
+ WAhoodHHm2w_000001 playing squash
1159
+ WBOqGIqUwGg_000090 people sniggering
1160
+ WD0aVtBqoxo_000120 goose honking
1161
+ WDmJ4ZtLuNU_000102 playing timbales
1162
+ WGHTlOM4-3w_000050 sheep bleating
1163
+ WH7LBLKyEkA_000241 playing mandolin
1164
+ WIWRYG4vJC4_000020 people burping
1165
+ WIZTFH-LGpo_000001 planing timber
1166
+ WJQ27fShKvk_000000 playing tennis
1167
+ WQFZLDitkkM_000067 eletric blender running
1168
+ WQuoH_HyUAk_000030 playing cello
1169
+ WRvPzjj5uoE_000134 ice cream truck, ice cream van
1170
+ WWzD6E9Wp_k_000260 playing cornet
1171
+ WXMt58sLsf8_000028 zebra braying
1172
+ WZ568vdA7bU_000070 plastic bottle crushing
1173
+ We-E7-Sx3Zo_000260 barn swallow calling
1174
+ Wg86ercBjY0_000002 playing clarinet
1175
+ Wh8A7CAuLe0_000028 barn swallow calling
1176
+ Whjk5Fvue1o_000030 singing choir
1177
+ Wj0qIPUjTfE_000008 lions roaring
1178
+ WqKP-0cSKgs_000030 dog bow-wow
1179
+ WvRkqVmRH0g_000088 playing harp
1180
+ WvcM0ueEjfo_000050 people burping
1181
+ Ww3CMatNd84_000721 cat purring
1182
+ WxQHtaD0Yqg_000028 tractor digging
1183
+ X-o1Twh5SFY_000032 playing steelpan
1184
+ X0gT3reH8A8_000120 people sniggering
1185
+ X17lq90OIO8_000020 dog barking
1186
+ X5C9NY9MjA4_000105 train whistling
1187
+ X7EGSxA-aCI_000132 child singing
1188
+ XBAwcPvVSoA_000068 lathe spinning
1189
+ XDMTylVtYx4_000190 race car, auto racing
1190
+ XEOUYLlaef4_000003 rope skipping
1191
+ XJnKU_SXYlM_000049 playing tabla
1192
+ XK4Ws-xvt10_000267 vacuum cleaner cleaning floors
1193
+ XKp4HCxVmaI_000017 vehicle horn, car horn, honking
1194
+ XLTqSk1Z3D0_000000 police radio chatter
1195
+ XM6eeVHjmLk_000001 dog growling
1196
+ XNgq-cDV7FI_000101 dinosaurs bellowing
1197
+ XOTSovKwxLk_000030 child speech, kid speaking
1198
+ XSJzshsMz30_000030 chainsawing trees
1199
+ XTDo4OaFapg_000100 hammering nails
1200
+ XU8dCEdiGWc_000010 crow cawing
1201
+ XUyBxCbiv7A_000073 playing bassoon
1202
+ XVveRibUh18_000023 frog croaking
1203
+ XWp8qMpnD00_000026 electric shaver, electric razor shaving
1204
+ XYZ4Nd4qV-I_000101 people humming
1205
+ XdSCT_cQDbE_000010 splashing water
1206
+ Xgm17YbPztk_000022 playing didgeridoo
1207
+ XiExpKM1Hpo_000160 playing trombone
1208
+ XlJ-tAbzzSg_000234 alligators, crocodiles hissing
1209
+ XtExs7nIzts_000034 people booing
1210
+ Xv4AVT2QYhA_000100 rowboat, canoe, kayak rowing
1211
+ Xxq7CElxJLc_000063 singing choir
1212
+ Y798EuJZaPU_000017 playing squash
1213
+ Y9Oee-VRfVA_000339 airplane
1214
+ YC_k4W1YaDw_000030 race car, auto racing
1215
+ YD41QET24SM_000125 playing badminton
1216
+ YD7jTek7yVU_000206 arc welding
1217
+ YEatlg_b0BY_000054 people burping
1218
+ YISopDKuQ0k_000050 playing accordion
1219
+ YJ5xLJ85AwM_000106 tractor digging
1220
+ YOTnbp40tf4_000030 male singing
1221
+ YOrImbuhsQ8_000027 lions roaring
1222
+ YS_zTwf-FRo_000092 playing ukulele
1223
+ YU78jPcU6FI_000070 playing trumpet
1224
+ YUXZVAQ1iJ4_000007 volcano explosion
1225
+ YUcdJy-rpD8_000590 raining
1226
+ YVOmkmjoT40_000030 ocean burbling
1227
+ YYgYiO9DjEY_000161 tap dancing
1228
+ YbALYr-5WpM_000000 playing harmonica
1229
+ YbOztklOkF0_000023 goose honking
1230
+ YcvHv44MYiU_000027 barn swallow calling
1231
+ YdjsatpizhE_000023 airplane flyby
1232
+ Ye72yJyWxs8_000021 airplane flyby
1233
+ YeEySSrxwpg_000078 barn swallow calling
1234
+ YfZp5C7xrKs_000181 playing bassoon
1235
+ YgySYOAi8JQ_000396 skiing
1236
+ YhJwTBFij48_000015 motorboat, speedboat acceleration
1237
+ YjCLRifFCj0_000010 skateboarding
1238
+ YjJioclqdQ8_000150 wind noise
1239
+ Ys1P04EjGH4_000196 playing bassoon
1240
+ Ys9j6IBcFBo_000024 opening or closing car doors
1241
+ YvBCKb1LbCk_000095 fire truck siren
1242
+ Yvq8WrFpXhE_000057 people crowd
1243
+ YwNdDHEhm2g_000005 duck quacking
1244
+ YwTFxcWCac8_000381 electric grinder grinding
1245
+ YyqqXEmYPIA_000020 ambulance siren
1246
+ YzBaTwjmikc_000018 hammering nails
1247
+ Z-V-1iUbMWI_000520 lions growling
1248
+ Z1BhAXfiZtU_000037 vacuum cleaner cleaning floors
1249
+ Z4QR8uvx_Wk_000169 reversing beeps
1250
+ Z5SyUJSDCOA_000562 ripping paper
1251
+ Z7Hzc1Yw2aY_000060 sloshing water
1252
+ Z93pTtHnDXo_000110 playing vibraphone
1253
+ Z9nG2fIh214_000075 chinchilla barking
1254
+ ZALP7Di4HaM_000180 playing saxophone
1255
+ ZAZZ1wImM9M_000010 singing choir
1256
+ ZCA_NapBTlg_000060 dog barking
1257
+ ZDDnEdzjyrE_000597 playing tambourine
1258
+ ZFGcmmpt1bs_000094 playing bagpipes
1259
+ ZL_MxixlnHE_000079 reversing beeps
1260
+ ZNboftBNdyY_000406 cap gun shooting
1261
+ ZPODO-Ehl_M_000030 male singing
1262
+ ZQO_uhrJPNA_000110 playing violin, fiddle
1263
+ ZUjum5gZMKM_000140 playing accordion
1264
+ Z_Bk_CnpWsY_000198 people sneezing
1265
+ Z_sW4UxpbbY_000050 using sewing machines
1266
+ ZbtuNDtoyOI_000030 sliding door
1267
+ ZcskQV2A2cQ_000030 playing flute
1268
+ ZdtaSkUkrIE_000256 police radio chatter
1269
+ ZeDa5hT2ffk_000071 police radio chatter
1270
+ Zgbuj3y2iuY_000210 cattle mooing
1271
+ Zh2whhvFWsM_000016 pigeon, dove cooing
1272
+ ZhLwVzOZziA_000368 blowtorch igniting
1273
+ Zi3FOnx4nuk_000001 playing table tennis
1274
+ Zj73Wh6LEiU_000120 skateboarding
1275
+ ZjN9CL7B-9I_000239 playing timbales
1276
+ ZkfUo4l9ruc_000090 chainsawing trees
1277
+ Zl_ZWSLB8Ic_000024 sheep bleating
1278
+ Zs8liAFeuuQ_000058 smoke detector beeping
1279
+ ZtPoTqVxVvU_000050 helicopter
1280
+ Zu0BpngzT_Q_000007 bowling impact
1281
+ ZuwSkX0RQQY_000343 playing tennis
1282
+ ZxmKMSUpbvc_000065 car engine idling
1283
+ ZxpiZiSAm9I_000060 turkey gobbling
1284
+ Zy70U6w0yXw_000088 mynah bird singing
1285
+ ZyUqhIDVuNc_000541 scuba diving
1286
+ Zz0fhQuHZEE_000012 penguins braying
1287
+ _0iRtZRG6UA_000047 woodpecker pecking tree
1288
+ _4RRKzDUd60_000079 lathe spinning
1289
+ _7GnnuKVVCM_000023 engine accelerating, revving, vroom
1290
+ _8FhgH9k7Rw_000120 vacuum cleaner cleaning floors
1291
+ _9wN5d1Z1ak_000024 lions roaring
1292
+ _CF34A0RrPs_000018 horse neighing
1293
+ _Cks36T64zE_000061 striking pool
1294
+ _DdVu5sPsjk_000490 people whispering
1295
+ _GaEZe-Z73k_000233 fire crackling
1296
+ _HRn4aOhjhU_000016 canary calling
1297
+ _H_W34UobYU_000459 bouncing on trampoline
1298
+ _HcIHVLRzpM_000450 female singing
1299
+ _NShiXyBmsY_000270 train wheels squealing
1300
+ _Ow1h1eTNk0_000178 playing trombone
1301
+ _SfaPFwwJHs_000026 train wheels squealing
1302
+ _T0iCBHWKt0_000101 pig oinking
1303
+ _T5ZUrmRiQI_000108 playing ukulele
1304
+ _Uyw_Legahg_000045 tap dancing
1305
+ _VOx5BWJsyQ_000030 raining
1306
+ _WQQ3QvGrYw_000340 child speech, kid speaking
1307
+ _WUAz2RAZZc_000201 planing timber
1308
+ _YF3aFSsgUk_000093 playing steel guitar, slide guitar
1309
+ _YhSeML8rQo_000109 alligators, crocodiles hissing
1310
+ _aX_UzkXRd0_000140 helicopter
1311
+ _cvucKdFb5I_000043 people booing
1312
+ _dIzu78Ld2w_000166 lathe spinning
1313
+ _gQFB_Utuf0_000077 cat caterwauling
1314
+ _j8zzvBts98_000000 splashing water
1315
+ _m6lwfMU8Eo_000272 electric shaver, electric razor shaving
1316
+ _pSMw5FKHX0_000040 people sobbing
1317
+ _pfccpy7Cqc_000180 typing on typewriter
1318
+ _ru-n--PRNA_000030 police car (siren)
1319
+ _t-Abwz6JG4_000031 baby babbling
1320
+ _t259gootxc_000190 female speech, woman speaking
1321
+ _u9zUuBdo1k_000000 cat growling
1322
+ _vkXDgupDN8_000250 sailing
1323
+ _wvB2HlVn1I_000050 engine accelerating, revving, vroom
1324
+ _xGLwynjhSs_000010 playing french horn
1325
+ _xq-9GZBfrg_000014 pheasant crowing
1326
+ _yVgX3hi1OQ_000195 driving snowmobile
1327
+ _zTmqhuLwAM_000001 donkey, ass braying
1328
+ a0LIemH5Cw0_000010 people clapping
1329
+ a3ZAFViNYyk_000000 swimming
1330
+ a57DUeBMeHY_000320 rowboat, canoe, kayak rowing
1331
+ a6CPpulnJ2A_000420 stream burbling
1332
+ a8fa79w2aIQ_000023 lighting firecrackers
1333
+ aC3nlLHFOfk_000030 playing violin, fiddle
1334
+ aCnLa_H0-P0_000000 magpie calling
1335
+ aDXQSTbKlIc_000010 playing cornet
1336
+ aE32elV-Jtk_000210 people crowd
1337
+ aG1wGSIqGR4_000013 frog croaking
1338
+ aHzkCSXsrqg_000038 vacuum cleaner cleaning floors
1339
+ aJ41sea1s0U_000080 people farting
1340
+ aNArqTW4cbc_000025 vehicle horn, car horn, honking
1341
+ aNOELrfjAYY_000000 vehicle horn, car horn, honking
1342
+ aRI4l67ZlYQ_000063 planing timber
1343
+ aSYCwv_hda8_000030 subway, metro, underground
1344
+ aSleAKgkDDk_000000 playing accordion
1345
+ aVs2QBhLIhY_000162 playing didgeridoo
1346
+ acYp_SYmHs8_000164 running electric fan
1347
+ aclGsdr83pM_000400 playing saxophone
1348
+ aezIOAga5V8_000070 child speech, kid speaking
1349
+ agMolFR_pFc_000075 train whistling
1350
+ agrdgrC2cdI_001076 dinosaurs bellowing
1351
+ ah5cSy0yXs0_000178 slot machine
1352
+ aiTXGmkpfnk_000030 playing trumpet
1353
+ ainzK7QuseU_000001 dog whimpering
1354
+ aj6kdMafoek_000693 hair dryer drying
1355
+ aju2z1N0aOo_000030 wind rustling leaves
1356
+ ap3PdrjChdo_000040 playing bassoon
1357
+ apTvGua1-FY_000271 playing guiro
1358
+ asXWEB_SBEI_000060 playing cello
1359
+ atT7DPwTkds_000130 people clapping
1360
+ auHL-4XCFAk_000030 driving buses
1361
+ b-8lh_tfhLQ_000124 hair dryer drying
1362
+ b-gza98ikBo_000020 playing snare drum
1363
+ b2bpNgK0Cnc_000250 orchestra
1364
+ b4Bu0AHwBWs_000084 woodpecker pecking tree
1365
+ b4WK1A7DK18_000018 crow cawing
1366
+ b8q6Z7dtRvg_000030 playing flute
1367
+ bBMcsO6IeDE_000021 lions roaring
1368
+ bF89h31EEzg_000000 golf driving
1369
+ bFmIV3pNJPY_000001 basketball bounce
1370
+ bI_4_x735PA_000020 typing on computer keyboard
1371
+ bJtu55jpzNc_000140 playing violin, fiddle
1372
+ bJzkn2kRh8g_000070 helicopter
1373
+ bLAz_kbihLE_000147 elk bugling
1374
+ bMNcdb3Eeds_000064 civil defense siren
1375
+ bN9fXjHalIY_000065 playing timpani
1376
+ bPNt6iVmemQ_000504 playing bongo
1377
+ bPfP2rjJfDY_000609 playing ukulele
1378
+ bQV7q5VRaH0_000174 car engine knocking
1379
+ bT8QfAM9NRA_000197 cutting hair with electric trimmers
1380
+ bVdI6laTOXI_000480 people screaming
1381
+ bVskpqAJF8E_000116 people eating crisps
1382
+ bYT-N-_u448_000217 civil defense siren
1383
+ bZUN1tQnuDQ_000001 child singing
1384
+ b_C-fNIS8aI_000000 cat purring
1385
+ baVILr18Y9A_000015 civil defense siren
1386
+ bd-swxc3o4w_000260 playing hammond organ
1387
+ bo9sSwEqnzs_000030 orchestra
1388
+ bokQgOSQ2OA_000001 playing squash
1389
+ bpF6KhK8El0_000030 police car (siren)
1390
+ bsM-z2joYss_000030 child speech, kid speaking
1391
+ bsUBSFHXY0g_000040 helicopter
1392
+ bukJZ1FxymQ_000390 male speech, man speaking
1393
+ bw3GIZLj6kM_000000 playing piano
1394
+ bx5BUbiIXFw_000107 child singing
1395
+ bzxjT3h2ir8_000105 lip smacking
1396
+ c3UPyEZ1yQY_000070 typing on computer keyboard
1397
+ c4M3JIyAPcM_000020 playing bass drum
1398
+ c5dPZoWwmC0_000020 driving motorcycle
1399
+ c6e4pxgoCls_000105 magpie calling
1400
+ c84w0ECD-Lc_000010 ocean burbling
1401
+ cAI0pcOwk2g_000346 elk bugling
1402
+ cEddS8Y-qZc_000510 people clapping
1403
+ cFNcpddGRno_000340 fireworks banging
1404
+ cIHKR2E1uiQ_000303 smoke detector beeping
1405
+ cJSWXGTJMcc_000018 rowboat, canoe, kayak rowing
1406
+ cL_nCiBnlbk_000001 playing bugle
1407
+ cMdnie91zp4_000000 playing trombone
1408
+ cNUIc68WpD4_000075 people marching
1409
+ cRiW0u0QY18_000030 playing trumpet
1410
+ cSym5f2jySA_000005 chicken crowing
1411
+ cUBHfozbsao_000044 playing harp
1412
+ cV4QlanVa9w_000070 basketball bounce
1413
+ cVhWB3IniBo_000014 playing tuning fork
1414
+ cZfuBCVV6n8_000390 eating with cutlery
1415
+ ces9pc_r6Wo_000036 child singing
1416
+ ckwEyopmfKs_000024 crow cawing
1417
+ cmkEW0KJDYI_000165 arc welding
1418
+ cp-ZI_fQ1l0_000154 airplane flyby
1419
+ cwQY1bck2G8_000070 playing bagpipes
1420
+ cx4QSvep_wE_000009 train horning
1421
+ cxFdK2G6wq0_000030 playing bagpipes
1422
+ d-UQr-8UEUY_000069 playing saxophone
1423
+ d05lXeFKDn0_000275 pheasant crowing
1424
+ d4yBeEbVp1Y_000030 typing on computer keyboard
1425
+ d5HmVBPY1Qc_000230 playing saxophone
1426
+ d66pNyYB6WY_000013 people burping
1427
+ d8gWsmBdBhE_000097 playing sitar
1428
+ dBivnkxNOOc_000175 playing vibraphone
1429
+ dECLS-JHWYA_000000 vacuum cleaner cleaning floors
1430
+ dK46EdcZFzg_000030 playing trumpet
1431
+ dNMCURn41wU_000179 playing djembe
1432
+ dN_EzmXbsu8_000016 playing bass drum
1433
+ dSeWq0Qd9Hs_000318 playing tambourine
1434
+ dVg4IEbk-l8_000010 cat meowing
1435
+ d_OIBYBwexQ_000160 playing accordion
1436
+ daHwPM2azrc_000036 wood thrush calling
1437
+ dfr1OFz20sI_000000 goat bleating
1438
+ dgSOnxqNtFE_000246 people coughing
1439
+ dgS_Fy1FiNA_000110 people burping
1440
+ dhG_GSGW_RI_000004 volcano explosion
1441
+ dlJm9R5t_qg_000030 playing hammond organ
1442
+ dlWrMn_RDg0_000120 playing bassoon
1443
+ dqymshfwGEE_000030 playing saxophone
1444
+ duca08sjlbQ_000001 playing bongo
1445
+ dugd_OSzghs_000203 ice cracking
1446
+ e0LMGLr-T-I_000029 air conditioning noise
1447
+ e3ZJnO3s53o_000016 child singing
1448
+ eANsaSAzHm8_000010 driving motorcycle
1449
+ eBFPD8YrqiA_000140 driving buses
1450
+ eCpA_7B-k94_000030 dog bow-wow
1451
+ eDqfHtuB8Hk_000015 snake rattling
1452
+ eEUsoUKPxy8_000187 basketball bounce
1453
+ eFaLkcfCzos_000140 playing cello
1454
+ eK97_rb6BsY_000072 playing gong
1455
+ eLyQDSo2NAM_000129 opening or closing drawers
1456
+ eOJQsk_kdWI_000032 ice cracking
1457
+ eS8Tf1hfwxk_000205 sea waves
1458
+ eSEIPV-qSj0_000020 squishing water
1459
+ e_3GUZmPFBI_000020 playing erhu
1460
+ ebhtW1tIXRY_000002 donkey, ass braying
1461
+ ecTDu-EX3WE_000019 car engine knocking
1462
+ ecq96FWbCF0_000037 gibbon howling
1463
+ ed4wVB_RhHw_000011 baby crying
1464
+ ehw6y3_g-8A_000757 ripping paper
1465
+ ej6jlkTeobU_000002 car engine knocking
1466
+ el3i-oj08Q4_000173 playing oboe
1467
+ f-XD-BgLWk0_000000 skidding
1468
+ f5c5KuWylig_000343 vacuum cleaner cleaning floors
1469
+ f6Wl-9pzib0_000032 cattle mooing
1470
+ f8bMURZiPiU_000019 people whistling
1471
+ f9U7g3g4voA_000026 golf driving
1472
+ f9c9YZ8WgjM_000037 bull bellowing
1473
+ fD362l9P3u8_000041 tornado roaring
1474
+ fFn2P7ZRIeM_000480 playing clarinet
1475
+ fNlGlh1GaeA_000013 heart sounds, heartbeat
1476
+ fS17RfJYjS4_000001 pig oinking
1477
+ fTT_D_d_5FA_000080 people clapping
1478
+ f_55S5G8M2s_000000 playing harmonica
1479
+ faFCcN6y-C8_000020 ferret dooking
1480
+ fcyUlEGvMdc_000037 playing volleyball
1481
+ fj0qlDdWt1M_000158 playing squash
1482
+ fknz5hZg_3I_000295 playing darts
1483
+ fmc6hwse-IA_000085 skiing
1484
+ g-CydtX7btM_000086 eagle screaming
1485
+ g-u5YOJu_gY_000230 lawn mowing
1486
+ g1n-ZaW0QHQ_000095 reversing beeps
1487
+ g5OBeqvOmRU_000001 bathroom ventilation fan running
1488
+ g8E9gBfe8B4_000180 female speech, woman speaking
1489
+ gH25X_mj6mc_000210 ocean burbling
1490
+ gJbMwvsUyA8_000000 driving motorcycle
1491
+ gL2i_DTGUEY_000028 cattle, bovinae cowbell
1492
+ gLTvwzBktxE_000015 airplane
1493
+ gLj93C9rRsg_000055 playing tambourine
1494
+ gLokxx-ruH8_000230 playing piano
1495
+ gM9WSjAPDVc_000030 people babbling
1496
+ gPwtTVH44OY_000030 people shuffling
1497
+ gW-1oOsNGJs_000010 playing harp
1498
+ g_axbxP7Amc_000071 playing harp
1499
+ gaFtxq1hBU4_000118 spraying water
1500
+ gcBUpboDmjc_000033 hammering nails
1501
+ gfgv17hOPIM_000040 playing marimba, xylophone
1502
+ gjJ4nqwlgnE_000010 playing hammond organ
1503
+ gm0HkvshnPk_000340 cattle mooing
1504
+ goS6rwhPth4_000026 mynah bird singing
1505
+ goz-IQ8s6uk_000050 skidding
1506
+ gpaX15tTUoc_000017 cat growling
1507
+ guvnNwCkhcs_000030 people sniggering
1508
+ gwzqjVCFNqA_000040 playing clarinet
1509
+ gyioxO7fWzI_000046 lions roaring
1510
+ gyjZ7tnnZeA_000132 playing theremin
1511
+ gyt54t3R_BU_000032 blowtorch igniting
1512
+ gzqq0knK2FA_000003 cat meowing
1513
+ h-Z5cTyu4LE_000150 wind rustling leaves
1514
+ h0025UfxME0_000308 sharpen knife
1515
+ h0V51dolEjA_000194 airplane flyby
1516
+ h5Gq0y3qkX0_000063 volcano explosion
1517
+ h7EWw2n5D5I_000050 train horning
1518
+ h7pz6niHZuw_000006 donkey, ass braying
1519
+ hEePXITb26o_000042 playing harp
1520
+ hFVd2Em9-cc_000100 toilet flushing
1521
+ hQvIg0t546Q_000146 playing vibraphone
1522
+ hUlqIdQFuxE_000030 basketball bounce
1523
+ hV_CjOK-mME_000030 people sniggering
1524
+ hW-RxgLN2l0_000007 owl hooting
1525
+ h_tdr4t6unw_000300 typing on typewriter
1526
+ ha-5LhgpVmQ_000946 playing tympani
1527
+ hc9aQ8VL9o0_000083 playing steel guitar, slide guitar
1528
+ hcR4BiG8sZs_000150 playing clarinet
1529
+ hdphUn6ihrA_000450 lawn mowing
1530
+ hdqCHBTwnuQ_000253 playing badminton
1531
+ hgcLJFz2WKQ_000512 police radio chatter
1532
+ hlKkLqHpJ_s_000400 chicken crowing
1533
+ ht3jNf66nbo_000286 missile launch
1534
+ htRB8f0r2rg_000027 playing bassoon
1535
+ hvoOSCZo2-E_000030 cattle, bovinae cowbell
1536
+ hy87-XUmhkE_000004 playing timbales
1537
+ i-SmzP7T_E8_000295 skiing
1538
+ i3nEgFq4yfo_000578 heart sounds, heartbeat
1539
+ i4IsKRvCLi0_000036 lions roaring
1540
+ i5dz5NV4Vpc_000007 crow cawing
1541
+ i6BBre7xV-c_000937 dinosaurs bellowing
1542
+ i9PvGS9Xr9k_000332 lions roaring
1543
+ iAqJ9lPCU4w_000024 chicken crowing
1544
+ iD8gRmmiiqU_000130 driving motorcycle
1545
+ iDODqIflQ1Q_000061 parrot talking
1546
+ iFU48OcnO7k_000000 woodpecker pecking tree
1547
+ iLaLf95DcQk_000040 duck quacking
1548
+ iQMIGLrKlTI_000260 playing accordion
1549
+ iSjvZiygjCQ_000510 playing cello
1550
+ iTd7hOI27BE_000048 playing harp
1551
+ iXslVMHwkTU_000212 people eating noodle
1552
+ iZR9dpO64NA_000011 cap gun shooting
1553
+ i_-LCRDriig_000030 ocean burbling
1554
+ i_hhSKWxzeU_000038 frog croaking
1555
+ ibd7CKcSiTI_000122 playing bass drum
1556
+ icK4IQb2KsE_000000 hail
1557
+ ieRU5f5P4B8_000350 cap gun shooting
1558
+ ieXdQlIBgLk_000030 playing marimba, xylophone
1559
+ iiUvfvkeo0c_000237 disc scratching
1560
+ ijirbb9m05k_000285 swimming
1561
+ ipo5U5Grsno_000020 people cheering
1562
+ irUkV1DP7Cs_000030 playing cello
1563
+ irhsdhRIUwI_000010 fireworks banging
1564
+ itH-fbb9Ook_000250 ambulance siren
1565
+ ixv1jovJe3c_000151 playing timpani
1566
+ j-GF_0RxUlg_000176 playing bass guitar
1567
+ j-hyPaKjCAU_000030 playing accordion
1568
+ j0NNSluEaS0_000150 heart sounds, heartbeat
1569
+ j15Ldqb_XVw_000020 fireworks banging
1570
+ j2OhKQ6sm0o_000077 people eating noodle
1571
+ j3A_ekLNu1Y_000008 car passing by
1572
+ j4GHwj1Yqz8_000076 ice cream truck, ice cream van
1573
+ j5oZYOBOppQ_000003 mouse squeaking
1574
+ j6f4pheXNDE_000108 tractor digging
1575
+ jB-OcexH1n0_000033 cat caterwauling
1576
+ jBCKFPXuFOw_000086 strike lighter
1577
+ jBZ1C1ihCIY_000005 playing bongo
1578
+ jL4h1-_LECU_000022 church bell ringing
1579
+ jQRurvUk2xs_000051 writing on blackboard with chalk
1580
+ jVG2LQ2kA1Q_000067 playing glockenspiel
1581
+ j_WKRbDVZhs_000071 barn swallow calling
1582
+ j_vtU1U9rg0_000042 playing volleyball
1583
+ jb92NmGYNbU_000279 police radio chatter
1584
+ jd2ENRtbxRQ_000010 people coughing
1585
+ ji-27X81tIs_000133 playing bassoon
1586
+ ji4T1ArqCz0_000017 fire truck siren
1587
+ ji8HeUiTfoU_000030 orchestra
1588
+ jld-wHLRUWM_000020 playing accordion
1589
+ jmLX2yQ4eKk_000007 hail
1590
+ jsw5soBYfsc_000020 people farting
1591
+ jt7w_UY4yUI_000040 lions growling
1592
+ jxnPU7Okb5U_000043 playing snare drum
1593
+ jzw_Wa_TXVo_000018 playing squash
1594
+ k-AKVEheu4g_000096 alligators, crocodiles hissing
1595
+ k-jDS1jp_AA_000014 firing cannon
1596
+ k4h2VtrPwus_000161 rapping
1597
+ kAWAs_7SaKw_000000 bird chirping, tweeting
1598
+ kBmcp8nL6Kg_000195 playing didgeridoo
1599
+ kCsmvK06SCA_000254 playing sitar
1600
+ kDwFyUvAi4w_000077 playing bongo
1601
+ kEQJJyYkYTY_000200 child speech, kid speaking
1602
+ kL6xemyurI8_000140 people eating apple
1603
+ kPp7CwFBl1c_000030 playing violin, fiddle
1604
+ kPpaeW3DObU_000481 playing castanets
1605
+ kPus6xz6fN8_000030 car engine knocking
1606
+ kSdqIpAMz_M_000175 playing snare drum
1607
+ kSwrdM7UD98_000057 owl hooting
1608
+ kTyaqJIhX6Q_000020 playing accordion
1609
+ kVMXMaTyEbE_000116 playing theremin
1610
+ kVtj0bAYAF8_000000 people sobbing
1611
+ kW23iJgtyfk_000002 raining
1612
+ k_NIUqHoNz4_000037 playing bassoon
1613
+ khZPuH00RNc_000332 yodelling
1614
+ kjtZNsHp_a0_000330 lawn mowing
1615
+ kkgjiCKHvoY_000449 firing cannon
1616
+ kmPmQ6aylRc_000012 reversing beeps
1617
+ koTbsmbqyxo_000103 people booing
1618
+ kp_7Sd6s0h8_000306 people eating apple
1619
+ kqvpyaIls0c_000090 playing cello
1620
+ ksaiDSSJeOg_000030 playing cymbal
1621
+ ktBzLsiL6l0_000157 playing steelpan
1622
+ kxl_ZU3j99A_000415 missile launch
1623
+ ky92PHpUpEA_000050 playing accordion
1624
+ kyEDPVvDQt4_000040 bird wings flapping
1625
+ kz849EPouys_000318 magpie calling
1626
+ kzntbWmyWBg_000074 playing squash
1627
+ l0DQpxoSr2Q_000040 playing banjo
1628
+ l3i-cKkVL-o_000007 car engine knocking
1629
+ l3rzkrm98J0_000001 alligators, crocodiles hissing
1630
+ l3uGoel_Ats_000000 people crowd
1631
+ l4XYVX79H58_000400 people babbling
1632
+ l5LnwNRK7Bw_000030 playing cello
1633
+ l6uZDuUsdpc_000010 people burping
1634
+ l7ELBtiVtQ8_000190 striking pool
1635
+ l8bdmlXL-Lk_000197 playing didgeridoo
1636
+ l9ple4xWo3w_000193 chopping food
1637
+ lAF2dHM7Tyc_000170 playing electric guitar
1638
+ lEzMz9odWXM_000058 lathe spinning
1639
+ lGsxnfOPaUw_000022 baby crying
1640
+ lGtRJjnC4PI_000210 airplane
1641
+ lKhe8BxkRnU_000025 wind rustling leaves
1642
+ lLme6yedI6w_000040 cricket chirping
1643
+ lN2kwc34bo0_000050 train horning
1644
+ lP5znTMLevo_000030 playing bagpipes
1645
+ lQG8CRumj3g_000560 playing cello
1646
+ lUWrhn9z9FI_000096 pumping water
1647
+ lXIaZksDY38_000030 people shuffling
1648
+ lXwEV2S1rt4_000150 using sewing machines
1649
+ lc1QTC0R_CQ_000018 people shuffling
1650
+ ld9b7tfnqTE_000109 playing erhu
1651
+ ldF2EJCVY3g_000147 playing theremin
1652
+ ldvcH7bOy_o_000184 playing french horn
1653
+ levuF973w8s_000250 playing french horn
1654
+ lg6X9iqcqXI_000233 playing table tennis
1655
+ lg7DqdnmkmE_000130 skateboarding
1656
+ lj-PczKzEaw_000040 using sewing machines
1657
+ ljXTXoBG9rg_000077 pheasant crowing
1658
+ lnatlhCU5kI_000420 singing choir
1659
+ loMPOYNM66g_000123 playing timpani
1660
+ lqVp4OJ4hbY_000044 lions roaring
1661
+ lr1RLADQXNg_000110 helicopter
1662
+ lrFFGvB03Fw_000071 golf driving
1663
+ lsBttXzhPHw_000144 playing sitar
1664
+ lt5H2iH9Ln8_000120 chicken crowing
1665
+ lwgKXn21ymc_000774 people whispering
1666
+ lxFVAc2dHVM_000152 fire crackling
1667
+ lzLgjt8VRmU_000000 skateboarding
1668
+ m-4-BAv8cCQ_000380 lawn mowing
1669
+ m-NpPmAkncw_000030 male singing
1670
+ m0g-zWJJClA_000150 playing banjo
1671
+ m1lFSuSixy8_000350 people marching
1672
+ m1lFSuSixy8_000613 people marching
1673
+ m2E4i-EzHIE_000085 people finger snapping
1674
+ m4j5XY09HlE_000021 car engine idling
1675
+ mCyvq9TF5Ms_000052 typing on typewriter
1676
+ mInTDyk6c2A_000012 writing on blackboard with chalk
1677
+ mPnRdL1sC48_000240 people eating crisps
1678
+ mQ60N4HdDyI_000102 machine gun shooting
1679
+ mRCzIaqRG_c_000000 using sewing machines
1680
+ mWGLXbNhuB4_000096 hammering nails
1681
+ m_7BjYa44lo_000030 child speech, kid speaking
1682
+ ma0P7XOsBgE_000030 people running
1683
+ ma2RuCUufcI_000036 fox barking
1684
+ maUlA8WWTEQ_000004 hail
1685
+ maVHGHl01Yc_000034 lathe spinning
1686
+ mcVY3xsxgcU_000060 playing bagpipes
1687
+ mi9AokZ8m5s_000849 shot football
1688
+ mjK1vNF3lKE_000023 playing theremin
1689
+ mlihNhHFGTM_000030 playing harpsichord
1690
+ mt13n4XleGY_000030 orchestra
1691
+ mwu46g-jnac_000170 bird chirping, tweeting
1692
+ n-PjT4mDn9Y_000173 playing bagpipes
1693
+ n0PnM0u47m4_000042 mynah bird singing
1694
+ n0gO6pPICi4_000065 playing mandolin
1695
+ n21m6N5UmNk_000002 firing cannon
1696
+ n2CgftHGLJ0_000030 driving buses
1697
+ n3bX64Z_Yds_000000 playing clarinet
1698
+ n4wpVSIu7c0_000087 beat boxing
1699
+ n6PQq584nWA_000010 playing trumpet
1700
+ n8vhraccEnc_000009 dog howling
1701
+ nAtvzIyRwnU_000100 playing saxophone
1702
+ nEBUuVsMtGE_000000 church bell ringing
1703
+ nGIVQLeZ76E_000103 bowling impact
1704
+ nHDsu69zzSA_000000 skidding
1705
+ nIHYEEVzuzE_000095 canary calling
1706
+ nJ7TBigS5bY_000018 people booing
1707
+ nLOOmtvC9Hc_000066 playing steel guitar, slide guitar
1708
+ nLVmclZYZMY_000200 people screaming
1709
+ nP0vO3Xv10M_000010 dog barking
1710
+ nPCYkMhaLYs_000024 roller coaster running
1711
+ nTo6W-50CDg_000018 whale calling
1712
+ nXc-dHK2A2A_000016 playing theremin
1713
+ n_F_tRGGoEA_000107 frog croaking
1714
+ ngJ_Us2C19g_000040 police car (siren)
1715
+ niYH8Dpt4uE_000140 cattle mooing
1716
+ nnyll58-lrA_000009 wind chime
1717
+ nowY2-6reIk_000030 pigeon, dove cooing
1718
+ nz0qYNbFGD4_000030 people coughing
1719
+ o2-6TSqWPCY_000170 people clapping
1720
+ o2qd4hsquvE_000056 bird squawking
1721
+ o4F5dtUXivA_000034 playing steelpan
1722
+ o6kY64rTk2k_000291 singing bowl
1723
+ o7mBR043UCs_000014 pig oinking
1724
+ o8iHgGRzcTE_000020 people clapping
1725
+ o8oMY-WgW9Y_000030 wind rustling leaves
1726
+ o9uGfNn4JyU_000062 lions roaring
1727
+ oBrRQ5SiJTQ_000210 driving motorcycle
1728
+ oCZ3WCK5BZU_000000 driving motorcycle
1729
+ oDAI33ybJlo_000029 playing theremin
1730
+ oDuiwpaep1k_000035 sliding door
1731
+ oEEOscuru6s_000280 playing flute
1732
+ oEXqWoSZ9Ww_000024 playing erhu
1733
+ oG6EUnQjeF8_000077 swimming
1734
+ oIUi8gFI_XY_000178 cat purring
1735
+ oIXRSpjo7vk_000170 wood thrush calling
1736
+ oJ4m2OvhA8Q_000100 playing cello
1737
+ oSsLQCIJjyE_000030 singing bowl
1738
+ oVxKyGnz-IA_000230 chainsawing trees
1739
+ oXXHkjFLN3E_000237 electric shaver, electric razor shaving
1740
+ oX_XdxqTE9Y_000110 bird chirping, tweeting
1741
+ oYe46obCJhc_000039 alarm clock ringing
1742
+ oZ6l0EStee4_000011 police car (siren)
1743
+ oZKVPzRyn50_000432 playing electronic organ
1744
+ oad_agP1oJU_000287 playing harpsichord
1745
+ od2HXuT_NuI_000100 playing cello
1746
+ oePtbOc8Hqs_000000 foghorn
1747
+ oeSxlmkPj78_000030 ocean burbling
1748
+ ofFtXFnfebQ_000684 cat purring
1749
+ ohh7mWALd_k_000473 pheasant crowing
1750
+ olZa2vOpbD4_000110 male speech, man speaking
1751
+ omiGYobPra4_000100 toilet flushing
1752
+ onqGNrWQ7us_000587 machine gun shooting
1753
+ or7ikBeUhBg_000020 driving buses
1754
+ osA1JXFL2Gk_000021 parrot talking
1755
+ otp3r8SfygA_000102 people shuffling
1756
+ p-DcPCo7Swo_000086 playing double bass
1757
+ p4RWTSRg6Bg_000290 people crowd
1758
+ p5LsBog-XRk_000130 playing saxophone
1759
+ p5j91ecL43Y_000030 people whispering
1760
+ p8HTTAhm5ic_000100 waterfall burbling
1761
+ pAe8kcpjZII_000010 playing theremin
1762
+ pKUzj3ckXvI_000010 toilet flushing
1763
+ pNiB5w3JBVI_000003 spraying water
1764
+ pQrnDC-kPHk_000106 sharpen knife
1765
+ pRdi3oChUR4_000020 baltimore oriole calling
1766
+ pUMZEzdKmPM_000136 owl hooting
1767
+ pVJY1Q137cw_000681 cat purring
1768
+ pX_Sg3xDAUg_000000 people burping
1769
+ p_KsZsJwH0w_000555 sharpen knife
1770
+ pdzAs6Be2sY_000139 people gargling
1771
+ piYKrS14dxA_000113 mynah bird singing
1772
+ pnFtPlslgGw_000019 plastic bottle crushing
1773
+ ppDvhlGr5nI_000003 golf driving
1774
+ ppLjxFk8C4M_000023 heart sounds, heartbeat
1775
+ pqDHX5R4sdg_000220 female singing
1776
+ pqElMm80SX8_000025 airplane flyby
1777
+ prq7EqBGWaY_000035 playing harpsichord
1778
+ psz3LAhSi9U_000001 yodelling
1779
+ pu9pO-rCzy4_000153 people farting
1780
+ pugRM2Nsnyo_000283 church bell ringing
1781
+ pukny4fvbOQ_000040 playing clarinet
1782
+ pxpIsajKD-Y_000042 reversing beeps
1783
+ pxpIsajKD-Y_000065 reversing beeps
1784
+ pyHJrlNMYwo_000350 sheep bleating
1785
+ pzixqhh0xG4_000175 golf driving
1786
+ q0Hz09My-_E_000018 lions roaring
1787
+ q0R8KXxZOZM_000070 people farting
1788
+ q0lahEg486Y_000295 tractor digging
1789
+ q1oBXqEFXy4_000070 sloshing water
1790
+ q5fUdJoUrAE_000257 beat boxing
1791
+ q7cvNFoT9nQ_000027 lighting firecrackers
1792
+ qA-yeGwsVn4_000018 pheasant crowing
1793
+ qBDrrE6LnUo_000103 bird chirping, tweeting
1794
+ qBmsSZQ7HNg_000360 railroad car, train wagon
1795
+ qCcC7n2mOC0_000074 playing harpsichord
1796
+ qIcEYC46zmI_000087 playing cornet
1797
+ qJJEBEajF1M_000017 air conditioning noise
1798
+ qL-4fJyDGXc_000893 people eating noodle
1799
+ qNi5Xlf2ZVY_000510 people clapping
1800
+ qORUGCczq74_000042 swimming
1801
+ qRm5Yh3JPSg_000016 playing tambourine
1802
+ qRwun6pFuNA_000010 playing banjo
1803
+ qTRrHj-DNYc_000137 dinosaurs bellowing
1804
+ qW9b8qu_KrU_000180 lions growling
1805
+ qXFgtkhWLgM_000134 child singing
1806
+ q_ZMlkVS740_000222 playing congas
1807
+ qbmNcYH52eo_000516 striking pool
1808
+ qdl6t1bDb-8_000400 eating with cutlery
1809
+ qgv0riPveBQ_000030 bird chirping, tweeting
1810
+ qiw2I1oQIVQ_000057 playing snare drum
1811
+ qjBkiP7mBNI_000597 ripping paper
1812
+ qmjK_Wi0IK8_000080 people cheering
1813
+ qoPAdSFZ4f0_000370 chopping wood
1814
+ qpjOCvQEHdo_000080 people cheering
1815
+ qrNCI310T9Y_000018 chicken clucking
1816
+ qsj_OgZZDvQ_000080 tap dancing
1817
+ qsrNWdcjwwY_000320 female speech, woman speaking
1818
+ quF2HA3u2JY_000101 cupboard opening or closing
1819
+ quZSWDeSywg_000040 toilet flushing
1820
+ qv51EqZA8eE_000291 train horning
1821
+ qxeCxC_zpvU_000202 playing french horn
1822
+ r24KMnV5Rrk_000030 people running
1823
+ r42dJt0hxro_000010 gibbon howling
1824
+ r47N9mdOeXc_000030 playing violin, fiddle
1825
+ r4Zm5lEsI-M_000110 vehicle horn, car horn, honking
1826
+ r7e4wJy4NP8_000090 motorboat, speedboat acceleration
1827
+ r96LZqBtlwg_000050 dog whimpering
1828
+ r9uN-AltjDQ_000130 lawn mowing
1829
+ rAXnOxWHaLs_000030 playing french horn
1830
+ rAth9ueRqM4_000040 whale calling
1831
+ rD4zq3CvJSo_000130 people slapping
1832
+ rEdr-j9oAN0_000074 playing french horn
1833
+ rFA1GBcIGN4_000067 playing ukulele
1834
+ rFgrOflwKPg_000290 playing trombone
1835
+ rLuNw3Cm7rs_000024 lighting firecrackers
1836
+ rMDnGZU7jzE_000001 dog baying
1837
+ rQthEYYXM-k_000030 people sniggering
1838
+ rRP810El--s_000958 fire truck siren
1839
+ rSHvW5dGanw_000150 fireworks banging
1840
+ rSWPVWkAbec_000000 bee, wasp, etc. buzzing
1841
+ rTNSzUXd3wk_000180 playing double bass
1842
+ rVnkDOvLWm8_000180 cap gun shooting
1843
+ raz3OUu768k_000068 playing clarinet
1844
+ rfqqBv3eriU_000160 stream burbling
1845
+ rgdMDo5TBic_000355 playing squash
1846
+ rn381TUMxyE_000298 arc welding
1847
+ rs2FL8HJfGE_000030 people sniggering
1848
+ rwVhTlLcBO0_000099 playing erhu
1849
+ rx2lqMvj2Wo_000052 squishing water
1850
+ rz9PZZA04z8_000183 playing badminton
1851
+ s2QrQdxzLwQ_000074 playing glockenspiel
1852
+ s8zSSYQM0Tc_000127 footsteps on snow
1853
+ s9gzcUg_nlM_000030 playing drum kit
1854
+ sFTyeq295xU_000041 people humming
1855
+ sIHApNhq2Ik_000002 bird squawking
1856
+ sLEEurjCsAY_000051 typing on typewriter
1857
+ sLOjC8EWrHA_000070 driving buses
1858
+ sOg4MNTWx_0_000000 skateboarding
1859
+ sUHlRRyS2YM_000009 pigeon, dove cooing
1860
+ sUs8O9toO4M_000311 dinosaurs bellowing
1861
+ sXDJvBEzqjs_000000 dog bow-wow
1862
+ sYy0lPjLEXQ_000100 playing cymbal
1863
+ s_FLZ-ekB2A_000088 telephone bell ringing
1864
+ sa6B5XyFYIg_000040 playing bagpipes
1865
+ scm7r0uBepU_000467 mouse clicking
1866
+ smBHJiEPCRI_000030 duck quacking
1867
+ snbtH1P3MVA_000119 playing timbales
1868
+ snyzyJlTBbg_000003 dog baying
1869
+ surXSGAnpM0_000000 playing harmonica
1870
+ sxiVIGK5AEc_000010 people crowd
1871
+ syysO74ja30_000007 playing gong
1872
+ szQ-4VQQQsI_000020 railroad car, train wagon
1873
+ t0XoS_8YVP4_000728 magpie calling
1874
+ t2xJjZp1D1E_000030 dog growling
1875
+ t3YfjKEmei4_000080 race car, auto racing
1876
+ t3u3ykowlvs_000030 raining
1877
+ tD9rMw8YPBI_000030 child speech, kid speaking
1878
+ tDayTL0ivzU_000014 playing timbales
1879
+ tJChPvDD-hI_000035 parrot talking
1880
+ tLFNgY5NBMk_000001 playing bassoon
1881
+ tRw0KL6PMFU_000060 skateboarding
1882
+ tTePTFQV52M_000030 pig oinking
1883
+ tV0sIqEryIY_000037 wind chime
1884
+ tWDG6UsiG3s_000090 people babbling
1885
+ tYBxgXg8yxw_000046 woodpecker pecking tree
1886
+ tYzH5rkbuBQ_000000 frog croaking
1887
+ tm9rnG0455k_000010 skidding
1888
+ tuqcWxh_mdc_000012 baby crying
1889
+ twWBQjLyuxw_000014 bull bellowing
1890
+ u1nAQ6GgJ7Y_000154 playing volleyball
1891
+ u6AV24u4OMQ_000052 rope skipping
1892
+ u6c5tvrkqVA_000187 playing timbales
1893
+ u88CrTGAqbo_000000 lawn mowing
1894
+ uEPueBOV06U_000109 yodelling
1895
+ uGQ0TW02gBo_000004 frog croaking
1896
+ uI5eona1hc4_000000 elk bugling
1897
+ uIHnphQWVRA_000169 opening or closing drawers
1898
+ uIg0I7pAjvM_000030 race car, auto racing
1899
+ uJSDmIF4dhE_000260 driving buses
1900
+ uK0jcVxT-Pg_000030 driving buses
1901
+ uLm5oUt3XG4_000031 playing tabla
1902
+ uSmduC6gJxg_000050 rowboat, canoe, kayak rowing
1903
+ uWdgdlJqI2Y_000019 basketball bounce
1904
+ uWq8Q_cIEwE_000086 playing ukulele
1905
+ uZghS49MC1k_000180 skidding
1906
+ u_85N9h_cGs_000050 car passing by
1907
+ udVSYrFacsc_000072 playing cornet
1908
+ ugUyp_keJO4_000022 mouse clicking
1909
+ uiPC88KDlW4_000022 engine accelerating, revving, vroom
1910
+ unF6DdqG4l8_000050 people whistling
1911
+ upZ0sKmaZrI_000167 playing lacrosse
1912
+ uvUEfRqpEQU_000145 singing choir
1913
+ uyNyWLJIci8_000000 fire truck siren
1914
+ v5OdaMw5hhk_000030 playing snare drum
1915
+ vADdI9YTMRs_000243 playing timbales
1916
+ vJk_Jzr2YIs_000080 playing hammond organ
1917
+ vLLiaCDHSPY_000010 dog barking
1918
+ vUORRJqXp7A_000036 playing table tennis
1919
+ vXupVqDfK34_000116 cricket chirping
1920
+ v_cxwPhwaBQ_000000 people farting
1921
+ varD0b9CTgs_000020 people belly laughing
1922
+ vcwXIa-QB8A_000025 sailing
1923
+ vdXavSaj8-M_000070 playing accordion
1924
+ vgIgTWqXtms_000023 child singing
1925
+ vhqkCDgsuh4_000255 people booing
1926
+ vkA-v4DSriM_000229 playing tabla
1927
+ vktUwc0Cs7w_000170 playing clarinet
1928
+ vpAGr_NrM_w_000050 fireworks banging
1929
+ vzoQdjPITKw_000030 pigeon, dove cooing
1930
+ w-9xoB74oF0_000004 opening or closing car electric windows
1931
+ w-JaJ11OqQY_000345 people slurping
1932
+ w3kMt-zQ9t4_000215 playing table tennis
1933
+ w5T582MCzlY_000011 running electric fan
1934
+ w5vaBVSxgKg_000030 lawn mowing
1935
+ w8puug1pEUA_000170 stream burbling
1936
+ w9K_AmeWhlo_000071 fire crackling
1937
+ wAnqT37UgYY_000034 dog growling
1938
+ wEbJ-9cmSaE_000003 playing cornet
1939
+ wHdgExbL6dA_000034 playing badminton
1940
+ wOYLWY6UCu8_000262 playing ukulele
1941
+ wP-96GP6bsU_000000 vehicle horn, car horn, honking
1942
+ wT6-Isia2PQ_000149 child singing
1943
+ wTQ-1cd8owI_000181 dog bow-wow
1944
+ wUNpHu61l7Q_000190 male singing
1945
+ wVJ-S2zYxug_000040 playing drum kit
1946
+ wX4Ya3D20H8_000039 scuba diving
1947
+ wXsrff4No40_000237 playing hockey
1948
+ wYZc2-3ViXs_000155 civil defense siren
1949
+ wZj294W4RVU_000094 fire crackling
1950
+ w_yGhgrow38_000091 eletric blender running
1951
+ wdk-RmsGdyw_000310 driving buses
1952
+ wdlfOAR03iY_000000 playing glockenspiel
1953
+ we-ONoZIkWE_000018 dog howling
1954
+ wegIxELjtz4_000334 people eating noodle
1955
+ whIS2UodgLI_000002 gibbon howling
1956
+ wkwjx0oMAjw_000021 beat boxing
1957
+ wnW4qgQQg3g_000050 playing cello
1958
+ wrFyu2T1XOo_000000 hail
1959
+ wsHPe19Y9Nc_000081 electric shaver, electric razor shaving
1960
+ wtyuiWygNTc_000000 zebra braying
1961
+ wuAcPWyHMXo_000008 lions roaring
1962
+ wwQPX3zjV4s_000028 elk bugling
1963
+ x0_AiAhfeV0_000068 eagle screaming
1964
+ x0bbH2Tao_0_000000 dog howling
1965
+ x1Rt2zN-oXo_000000 dog growling
1966
+ x1bXQS9dUAc_000140 playing violin, fiddle
1967
+ x2uCcPNM6Nw_000030 pigeon, dove cooing
1968
+ x3cLaiaaF0M_000032 skiing
1969
+ x68R1rmvKgc_000060 female singing
1970
+ x6d8ytnWNDI_000045 barn swallow calling
1971
+ x8yymm3DtVA_000022 playing cello
1972
+ xK1vy_6H2VM_000010 scuba diving
1973
+ xMa1vAUhTfM_000429 ice cream truck, ice cream van
1974
+ xN_CePbfjVg_000004 playing bass drum
1975
+ xPIhTw0fbzI_000010 train horning
1976
+ xQaYumd1O48_000004 lions growling
1977
+ xS4brO1qu0g_000591 playing hockey
1978
+ xUCKcoE3K6Q_000313 lip smacking
1979
+ xVDGIF1pFvQ_000030 driving buses
1980
+ xVEXWvj0iWo_000060 rowboat, canoe, kayak rowing
1981
+ xWBMt4fI95M_000063 scuba diving
1982
+ xWgd4OMcKbs_000263 people nose blowing
1983
+ xY9mlbn2IhY_000000 people burping
1984
+ xYAHwbhWEgM_000030 playing violin, fiddle
1985
+ xbNNxwGRG20_000062 cattle, bovinae cowbell
1986
+ xdUbCcEbipM_000290 people crowd
1987
+ xeS25F6uHic_000162 airplane flyby
1988
+ xetF74UUCGk_000001 ice cream truck, ice cream van
1989
+ xf0cheS5wFM_000090 playing piano
1990
+ xfT0HF1Pbxk_000003 playing sitar
1991
+ xg_3Uas3z40_000240 skateboarding
1992
+ xibFeibkfWM_000036 alligators, crocodiles hissing
1993
+ xj0Xi47RC88_000200 lawn mowing
1994
+ xkUzsvSImy4_000306 people eating crisps
1995
+ xm0N3HXnSWc_000361 rope skipping
1996
+ xoViga6dJa4_000141 playing steelpan
1997
+ xocKilOzrb4_000065 reversing beeps
1998
+ xq5kMmAFYx8_000030 playing double bass
1999
+ xqv96EPg7so_000200 railroad car, train wagon
2000
+ xtvQjd6cwC4_000040 playing bagpipes
2001
+ y3TRiYwDbHo_000287 playing oboe
2002
+ y6wsRU2aNx4_000040 railroad car, train wagon
2003
+ y95ml0IYGr4_000440 chainsawing trees
2004
+ yA_63YfQ034_000022 dog growling
2005
+ yBwMu2NueR0_000284 rapping
2006
+ yE_SP127xy8_000010 people crowd
2007
+ yEfhYsMd1yc_000006 playing double bass
2008
+ yH3PJfYi_gs_000109 car engine starting
2009
+ yJGtoH8INnA_000084 tapping guitar
2010
+ yJN5_1tfqXo_000075 magpie calling
2011
+ yMMmjb3BRi0_000030 dog bow-wow
2012
+ yOhdod2Kg40_000210 playing bassoon
2013
+ yPJiPWkeT3U_000254 playing gong
2014
+ yPUYU6t3rwo_000370 bee, wasp, etc. buzzing
2015
+ yQzzdP-4iBU_000002 planing timber
2016
+ yUL9UefoANU_000128 tractor digging
2017
+ yVzIaZzLH38_000130 bee, wasp, etc. buzzing
2018
+ yYPNrg-s-NI_000060 child singing
2019
+ ybnXdQfSNZs_000001 police radio chatter
2020
+ ycN30BUfzeo_000070 playing clarinet
2021
+ ygOHZ_55jME_000174 electric shaver, electric razor shaving
2022
+ yjyZgzYuuSQ_000089 cat purring
2023
+ yo5I2MTqv9E_000030 playing marimba, xylophone
2024
+ ywD_am3uZh8_000020 splashing water
2025
+ ywYLMe6y-S0_000040 playing piano
2026
+ z9CCSNKepA8_000537 striking pool
2027
+ z9crgUIWcmA_000000 dog barking
2028
+ zBgR_gj8NGg_000083 striking pool
2029
+ zGbJAz-3Ao8_000070 playing banjo
2030
+ zGn9k6j8kVo_000049 rope skipping
2031
+ zILE3kr9nIU_000030 mouse pattering
2032
+ zJPgE79wkE4_000000 playing tennis
2033
+ zMKJFnBr1Gw_000013 reversing beeps
2034
+ zPlyG_ryFpg_000006 sliding door
2035
+ zRU8A0m9Op8_000145 driving snowmobile
2036
+ zVCqTRlc7NU_000020 fire truck siren
2037
+ zYPY3Fh1Xjo_000000 skidding
2038
+ zcZ0WVQ8t8s_000210 splashing water
2039
+ zhPLdAMVAuo_000257 church bell ringing
2040
+ zl6hP51zURM_000075 playing oboe
2041
+ zlt2EGxum58_000174 bouncing on trampoline
2042
+ zmSPCArJHB0_000190 bird squawking
2043
+ zpqGedo-jm4_000043 cell phone buzzing
2044
+ zrKMC4fAKp0_000202 playing cello
2045
+ zsnU7rt_Qq0_000005 baby laughter
2046
+ zw7dTh-Lx3o_000074 canary calling
2047
+ zzP5qr-ZxHY_000199 people marching
2048
+ zzftU8z4aOI_000230 skateboarding
sets/vgg-val.tsv ADDED
@@ -0,0 +1,2049 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id label
2
+ --96EN9NUQM_000242 alarm clock ringing
3
+ -2toZf00LvI_000012 bowling impact
4
+ -8OE7Vydkl4_000221 bowling impact
5
+ -AEZuuoyJug_000030 playing violin, fiddle
6
+ -CUgrFw8TEI_000045 dog whimpering
7
+ -CexapzRAPQ_000051 ferret dooking
8
+ -DHGwygUsQc_000030 skateboarding
9
+ -G-o-Y4WuaU_000139 playing harmonica
10
+ -G_2v0L4U_s_000078 playing tennis
11
+ -HIPq7T3eFI_000011 driving motorcycle
12
+ -I8C3cRr5TY_000030 female singing
13
+ -K232jBK8VQ_000030 car passing by
14
+ -L_RH-nw11I_000025 vacuum cleaner cleaning floors
15
+ -MfBpxtGQmE_000020 ambulance siren
16
+ -NYZDjBz60I_000085 child singing
17
+ -QWcNg6FCgE_000022 playing bass guitar
18
+ -T06kz4MI20_000030 female singing
19
+ -UJJsEdgqMQ_000011 horse clip-clop
20
+ -VyLmfnIc5Q_000162 driving snowmobile
21
+ -W3y3qz3yp8_000256 people eating crisps
22
+ -WBvJuF2UOk_000030 playing acoustic guitar
23
+ -Yep0TGjWmc_000140 subway, metro, underground
24
+ -YrSxLTPdcA_000004 underwater bubbling
25
+ -YwZOeyAQC8_000002 baby laughter
26
+ -Zd-ZSnZ3so_000159 playing banjo
27
+ -_mqzXgg5eQ_000046 ripping paper
28
+ -c7lpU-_-V8_000030 motorboat, speedboat acceleration
29
+ -c96lccP5nc_000200 skidding
30
+ -eqkzAKGBZg_000030 playing drum kit
31
+ -geN4ECfl0Q_000030 playing bass guitar
32
+ -ibjrtJo9rY_000030 duck quacking
33
+ -nEg1olBLcw_000030 male singing
34
+ -s2G3Kto0Gw_000030 typing on computer keyboard
35
+ -s6dPB8fyQQ_000030 playing electric guitar
36
+ -tGOjLdrF6g_000087 playing squash
37
+ -v12qcLw5u0_000187 machine gun shooting
38
+ -vC3oqlxf4I_000010 slot machine
39
+ -vY141CdTc4_000030 playing bass guitar
40
+ -vmyjjovGXM_000116 cattle, bovinae cowbell
41
+ -vra5dNsP4w_000080 playing bass guitar
42
+ -w7WfMgSBD4_000047 lighting firecrackers
43
+ -wJ_UfBsiR0_000280 playing accordion
44
+ -xzWsDpVEiE_000060 child speech, kid speaking
45
+ -yby37u00N4_000030 playing violin, fiddle
46
+ -zHk3s6BkpA_000030 chainsawing trees
47
+ -zZR-ps0nJY_000137 hail
48
+ 0-fd-lvizrY_000024 yodelling
49
+ 00eb49xIULo_000030 female speech, woman speaking
50
+ 01LPFe-13Aw_000030 playing electric guitar
51
+ 01W8XIz7KDM_000007 donkey, ass braying
52
+ 02t6zmS4RAk_000102 playing didgeridoo
53
+ 038-gneOcks_000309 people eating crisps
54
+ 04m_7jCGHko_000030 wind noise
55
+ 04sf3v7xOzo_000005 cat meowing
56
+ 055LCXe4pR8_000012 people whistling
57
+ 09qDi4Auiyo_000030 playing electric guitar
58
+ 0Ca2CTVwOxs_000019 cuckoo bird calling
59
+ 0CvAFdtyVlo_000023 underwater bubbling
60
+ 0G0mSrzOZ2M_000400 driving buses
61
+ 0IvNbabusiY_000030 playing flute
62
+ 0JPlNHX2HQ8_000049 playing accordion
63
+ 0Lro_JzyUX0_000030 male speech, man speaking
64
+ 0McmdH07r7w_000050 playing flute
65
+ 0OHWW60khJ4_000030 playing bass guitar
66
+ 0PZQL-Msz0s_000030 horse clip-clop
67
+ 0RFEHUrGOP0_000170 playing acoustic guitar
68
+ 0SsaL_YNyjY_000030 waterfall burbling
69
+ 0T4gZQwzyKY_000030 people crowd
70
+ 0U_Q9JTATCk_000044 owl hooting
71
+ 0WIzNXqWrZk_000204 playing hockey
72
+ 0XzJKHmoN6w_000019 duck quacking
73
+ 0cMnDz8SSwQ_000014 disc scratching
74
+ 0dkhsBmUZSY_000030 people cheering
75
+ 0fQJ9nShofs_000093 dinosaurs bellowing
76
+ 0hCiGC4c97g_000033 crow cawing
77
+ 0hWyQpwHNDU_000030 motorboat, speedboat acceleration
78
+ 0iVM2GY3R_c_000030 ambulance siren
79
+ 0kar1O-1Ckk_000114 playing french horn
80
+ 0m3kYCMUuCk_000000 cattle, bovinae cowbell
81
+ 0sY8RR7V_q4_000220 female singing
82
+ 0tJevlglhe4_000010 railroad car, train wagon
83
+ 0uHGQmkKMr0_000223 people marching
84
+ 0yAboI4QC6k_000109 hail
85
+ 1-2zGkXe070_000098 rope skipping
86
+ 10fjkn2eM_M_000050 slot machine
87
+ 12tsmtyIALQ_000009 cat meowing
88
+ 13LB6yibhQ8_000009 scuba diving
89
+ 1CIxzqH4zzM_000040 ice cracking
90
+ 1Fp6zPswdjI_000233 tapping guitar
91
+ 1JMgZaCb9WM_000204 playing steelpan
92
+ 1MCjHVRBDTk_000055 slot machine
93
+ 1MLUEfkJDSw_000001 beat boxing
94
+ 1MPwoS-R83A_000030 cat meowing
95
+ 1Mx2iDMsZj8_000018 playing french horn
96
+ 1NTsWn1Gir4_000103 playing snare drum
97
+ 1NvpdqTAf3U_000030 skidding
98
+ 1NwFHr4VHS0_000090 playing clarinet
99
+ 1RB0gsxkPBo_000020 lions growling
100
+ 1RSK3TFru0g_000000 sailing
101
+ 1T1PLOWu65c_000250 skiing
102
+ 1TARmg2FYJQ_000010 people whistling
103
+ 1V65GzuCqaw_000030 bird chirping, tweeting
104
+ 1Vn7SftZxS4_000030 rowboat, canoe, kayak rowing
105
+ 1WaTnza9cn0_000160 playing violin, fiddle
106
+ 1YGJDa3aCGo_000289 fire truck siren
107
+ 1_CC87jIhXk_000382 swimming
108
+ 1acVFuCvOJg_000512 canary calling
109
+ 1bBdyTowO-M_000041 parrot talking
110
+ 1dO7fONpkvE_000000 people farting
111
+ 1eYmBacWt3k_000027 civil defense siren
112
+ 1f9IgOjZjn4_000037 rapping
113
+ 1gVugA2dsi4_000332 dinosaurs bellowing
114
+ 1gXDaVse3SQ_000387 planing timber
115
+ 1inu4aoQFKM_000164 planing timber
116
+ 1kdGia7plHk_000030 playing electric guitar
117
+ 1nDhQKLRJbg_000030 playing marimba, xylophone
118
+ 1p8YDM6gG6Y_000014 dog howling
119
+ 1t63KIS6F4I_000070 people sobbing
120
+ 1x7wVFMW4dk_000030 playing acoustic guitar
121
+ 1zWc46eeWLU_000167 playing sitar
122
+ 2-Ipq91ns0k_000036 playing bass drum
123
+ 21OWtKgJlIE_000270 canary calling
124
+ 23ky1UGWeKg_000190 playing bass guitar
125
+ 26KmPM2YkmQ_000004 ambulance siren
126
+ 2A5eS9kMm-U_000018 owl hooting
127
+ 2CebaASg1m4_000030 male singing
128
+ 2EeOU7PgSck_000030 female singing
129
+ 2F2NSNlc6dQ_000030 male singing
130
+ 2FNZwK-4sUA_000030 female speech, woman speaking
131
+ 2Jt4iqSqNTg_000012 bird chirping, tweeting
132
+ 2LBEllUpWiA_000000 volcano explosion
133
+ 2MDjnJzuUaU_000015 skidding
134
+ 2NIaPAfScHM_000030 motorboat, speedboat acceleration
135
+ 2NjwuyNgNoE_000050 playing hammond organ
136
+ 2P7ZXBq5r04_000274 playing cornet
137
+ 2RPPKMapBWY_000036 ice cream truck, ice cream van
138
+ 2SlVaOyh69w_000219 cattle mooing
139
+ 2Sto24aXwao_000097 baltimore oriole calling
140
+ 2VdOQylRl08_000002 playing lacrosse
141
+ 2YIZLARm8sI_000201 parrot talking
142
+ 2d43OFDr5aI_000001 frog croaking
143
+ 2ehs70MWQTs_000050 waterfall burbling
144
+ 2fCC4BkdMT0_000106 basketball bounce
145
+ 2fn6GFSwTEw_000096 cap gun shooting
146
+ 2iwPgYGH_Ew_000400 railroad car, train wagon
147
+ 2jy1b77hxXc_000136 playing bass guitar
148
+ 2lALVOKDQNM_000059 dog howling
149
+ 2myGIZCgZ2g_000018 tractor digging
150
+ 2rSFLrwcvcY_000020 pheasant crowing
151
+ 2szJ9STQPUk_000030 male singing
152
+ 2w6jRF1Ekhs_000130 playing sitar
153
+ 2xlWTgqPUOA_000004 beat boxing
154
+ 2yeuzECPVUI_000033 playing badminton
155
+ 2zev5MpJKPc_000039 chicken clucking
156
+ 33NCPZjFuLE_000056 playing oboe
157
+ 35MtyyqqQyw_000030 playing acoustic guitar
158
+ 35c4EPiZ8JM_000030 horse clip-clop
159
+ 35iGp2g_U6A_000000 church bell ringing
160
+ 37Tl9YROdbA_000077 playing trombone
161
+ 3EcAiTE0JyE_000052 playing theremin
162
+ 3JyLYEjo4ok_000000 people giggling
163
+ 3LfWg5Be60Q_000163 people burping
164
+ 3MOG_CAcWkw_000142 playing badminton
165
+ 3NcIWxDdTW0_000050 dog growling
166
+ 3O8InHTYtk0_000020 male singing
167
+ 3Okx0T5vpFc_000192 airplane flyby
168
+ 3OxJ7KtIb2A_000100 playing saxophone
169
+ 3QHNbJ_XATY_000036 civil defense siren
170
+ 3S2-TODd__k_000090 train horning
171
+ 3VK-nOg0-RQ_000046 pheasant crowing
172
+ 3VSUuTABb3U_000074 wind chime
173
+ 3WUTEMZv3EI_000046 slot machine
174
+ 3YuBzhAU_Yc_000000 race car, auto racing
175
+ 3cMrwXYnjd4_000026 air horn
176
+ 3d5tPNd4Olk_000020 wind noise
177
+ 3dBQbWPOjjI_000030 playing acoustic guitar
178
+ 3djcJkGeJK8_000293 running electric fan
179
+ 3e8ECt9wF5Y_000015 playing saxophone
180
+ 3en9IzSPnNU_000027 driving snowmobile
181
+ 3gTMehPiQ9s_000150 playing harpsichord
182
+ 3kXROE2wcRA_000069 bowling impact
183
+ 3p9aVzs8aYA_000030 female singing
184
+ 3u3iunnXAOs_000432 playing hammond organ
185
+ 3wboiuBfavA_000172 people nose blowing
186
+ 3yolbg1tH9U_000030 male singing
187
+ 4-_AWdbZnzE_000005 playing trombone
188
+ 42Iss6TfcpQ_000742 lip smacking
189
+ 433xsSMNLf4_000070 playing electronic organ
190
+ 43ijm8y4z2o_000030 horse clip-clop
191
+ 44UMQ5ZFuuY_000030 engine accelerating, revving, vroom
192
+ 457yRHL0f2E_000030 female singing
193
+ 45iXudFVQ4E_000000 subway, metro, underground
194
+ 46LjKw-7mU0_000030 male singing
195
+ 47QYxqXGZ3w_000244 people shuffling
196
+ 47SP2azKv8Q_000030 playing electric guitar
197
+ 47YlecLyyK0_000030 playing acoustic guitar
198
+ 47y5k6vaUxE_000089 francolin calling
199
+ 49gi-iYJ1F0_000107 tap dancing
200
+ 4CLnZSI8aPs_000092 hair dryer drying
201
+ 4DcOTOS_LE0_000454 sliding door
202
+ 4DzuWR9ekko_000000 playing bugle
203
+ 4E6mA8Y2Be0_000060 using sewing machines
204
+ 4FOFcRJR9go_000084 playing glockenspiel
205
+ 4H29LCZTMBs_000050 using sewing machines
206
+ 4K345_DRFRk_000056 playing volleyball
207
+ 4Ofe_ManxZc_000047 playing french horn
208
+ 4OxCr981HvY_000016 ice cracking
209
+ 4SlcVylJxxk_000297 arc welding
210
+ 4WGMFP00rIg_000030 playing acoustic guitar
211
+ 4YnMOFstVnk_000066 parrot talking
212
+ 4_QGupz8UNA_000189 hail
213
+ 4aFirNGu_P8_000381 planing timber
214
+ 4dhyddSUAWg_000175 police radio chatter
215
+ 4dkU-c4g1VM_000111 dog barking
216
+ 4h9o2iL6nps_000050 child speech, kid speaking
217
+ 4hU6jqQQUto_000009 playing harpsichord
218
+ 4iBqpFUnPoA_000170 fireworks banging
219
+ 4j7GbxZQjB8_000024 car engine knocking
220
+ 4jHrFbnaVRc_000294 firing muskets
221
+ 4kvqtJEFqjw_000190 playing bagpipes
222
+ 4ldID97D-oU_000020 people coughing
223
+ 4n657Imjmjo_000015 sheep bleating
224
+ 4o2IRyXi-aY_000667 playing harpsichord
225
+ 4rehS_cPodk_000020 female speech, woman speaking
226
+ 4t_Qz9RyUm8_000006 alarm clock ringing
227
+ 4yUvIrchOzQ_000280 playing saxophone
228
+ 4zf3qRiZ3Ok_000030 child singing
229
+ 4zsLfdNLUD4_000033 cat hissing
230
+ 50OgBbJZUUc_000064 typing on typewriter
231
+ 50jxPCLUFdU_000002 cricket chirping
232
+ 53ohFLBl0iE_000052 alarm clock ringing
233
+ 542uea0zO1I_000036 sea lion barking
234
+ 54XBPEFJQc4_000076 playing djembe
235
+ 574NjiOGi5s_000030 female singing
236
+ 58KzLvK1OYs_000144 dog growling
237
+ 5901zjV6oAo_000006 swimming
238
+ 5AFKEd8nSpg_000050 people sniggering
239
+ 5CtoZvJaGAM_000096 woodpecker pecking tree
240
+ 5D201VjroT0_000229 sharpen knife
241
+ 5D2E7s9bEf0_000010 basketball bounce
242
+ 5EPnuy_sKHI_000010 singing bowl
243
+ 5IZv217s4_E_000049 playing badminton
244
+ 5KRxqVykvvI_000030 printer printing
245
+ 5S3QDnRCnOQ_000003 tapping guitar
246
+ 5Sv97J7mksY_000030 playing electric guitar
247
+ 5UqwkZ1XK18_000050 helicopter
248
+ 5VyCTHzLVdU_000011 playing bongo
249
+ 5WVhslWt1wU_000030 female singing
250
+ 5Wb1zMq_DiU_000020 fireworks banging
251
+ 5XK1Vgiwllc_000073 playing mandolin
252
+ 5X_B2L1-4Bc_000030 playing electric guitar
253
+ 5briopN06L8_000000 playing piano
254
+ 5eHlhJ-ZOpg_000030 playing hammond organ
255
+ 5fZn_7LbKSI_000020 people burping
256
+ 5hi4T4Gp6v4_000002 air horn
257
+ 5hjKe0FWq9E_000002 horse neighing
258
+ 5iEbFJkG6Xg_000557 bird squawking
259
+ 5jQLK4Z1EH4_000020 wind noise
260
+ 5jt7lR8WY3g_000172 playing castanets
261
+ 5lV59hZgwRM_000009 scuba diving
262
+ 5mBCF05DV5s_000280 church bell ringing
263
+ 5mJ7_05tlhs_000005 crow cawing
264
+ 5nscL4EBrXA_000030 male singing
265
+ 5r1zW38AWvs_000057 wind chime
266
+ 5rP9Z4jEq6s_000024 cap gun shooting
267
+ 5xJdFysNSf4_000110 race car, auto racing
268
+ 5xefixXFNwk_000020 playing bass guitar
269
+ 64eXDlUgPoA_000079 lighting firecrackers
270
+ 64lQIoDGX6o_000040 playing marimba, xylophone
271
+ 64ollREPrUw_000132 raining
272
+ 64zPbHPyiwE_000030 male speech, man speaking
273
+ 659mhmSPXWA_000276 bee, wasp, etc. buzzing
274
+ 65u3pwOEcBg_000002 frog croaking
275
+ 67hDkeQalow_000030 motorboat, speedboat acceleration
276
+ 68mXCuRvQkw_000045 people burping
277
+ 6ARTjahUaYY_000030 playing electric guitar
278
+ 6BQgJ0tvUkc_000162 baby babbling
279
+ 6CYhRsU4F34_000000 people whistling
280
+ 6EcmHiscsOc_000287 lighting firecrackers
281
+ 6GsamqJ5tFU_000075 airplane flyby
282
+ 6IMlkVOKxJw_000032 cap gun shooting
283
+ 6IQkdce9a7Q_000184 slot machine
284
+ 6KO3eMyEeOg_000000 race car, auto racing
285
+ 6LB-qRj_zW4_000030 horse clip-clop
286
+ 6LKFDTu9vRQ_000018 playing french horn
287
+ 6NxeHScEnJE_000000 dog bow-wow
288
+ 6OhTwJrVxXs_000028 playing timbales
289
+ 6RGa6DvWpt0_000035 people marching
290
+ 6UcuQgsHFCA_000142 playing french horn
291
+ 6Y6CvX7EP68_000030 singing choir
292
+ 6ZbVXBeNsX8_000125 playing didgeridoo
293
+ 6aYfccsgIjk_000094 baby crying
294
+ 6gTR_Avjz6g_000170 playing cymbal
295
+ 6j2g_OZnW74_000189 missile launch
296
+ 6mE_v9a5dbM_000030 male singing
297
+ 6o0mZVMfKss_000140 people clapping
298
+ 6of3tx7IOik_000030 wind noise
299
+ 6shIFnN-LsY_000141 playing flute
300
+ 6v53uAVpXC4_000071 people babbling
301
+ 6wpifZcwOJU_000023 underwater bubbling
302
+ 6xAClSJ21qA_000491 rapping
303
+ 6xgTrufXcCM_000126 wood thrush calling
304
+ 6yBZH5cV7GE_000030 playing electric guitar
305
+ 6z_pfZ6Rvfs_000023 playing table tennis
306
+ 7-7r-FRwp_w_000041 playing glockenspiel
307
+ 72d2TsdeSg8_000000 tap dancing
308
+ 75FLwnGZJTc_000125 playing oboe
309
+ 75m0cvRBGY0_000030 vehicle horn, car horn, honking
310
+ 76F-K-7HUXE_000010 lions roaring
311
+ 77rq4-p4vV8_000030 wind noise
312
+ 78hdsP0edMg_000030 railroad car, train wagon
313
+ 7Ck8cfF2rl0_000200 otter growling
314
+ 7ELF2dbWe5w_000010 female singing
315
+ 7I_wdG-eOc0_000106 playing hammond organ
316
+ 7JT43yyNGkk_000003 black capped chickadee calling
317
+ 7JX-Bx0BETQ_000205 rapping
318
+ 7LMkG7uISis_000102 playing gong
319
+ 7MuetSj86N0_000490 bird squawking
320
+ 7NyPcaVKao4_000025 dog growling
321
+ 7Odi8SKArQI_000030 playing saxophone
322
+ 7P-1-qzwyYA_000055 magpie calling
323
+ 7Qr1ncg86N4_000007 lions roaring
324
+ 7TMOCRG4EBA_000030 female singing
325
+ 7U5V5Teqo8Q_000000 dog barking
326
+ 7V6NAsZ86xw_000000 beat boxing
327
+ 7VT8p9Er3n8_000020 mynah bird singing
328
+ 7Y3u8Aj8UV4_000010 driving motorcycle
329
+ 7YGUQYRwnHs_000019 horse neighing
330
+ 7YTsyqVSEeI_000006 child singing
331
+ 7b__KH3VA_o_000035 people booing
332
+ 7caL9c6N1zc_000122 child singing
333
+ 7gdSJ30FfNU_000490 people hiccup
334
+ 7h7_U2q-VwY_000276 dog baying
335
+ 7hdXzJpOXiY_000018 police car (siren)
336
+ 7iT77hG1X18_000063 playing erhu
337
+ 7kIhqlZok8c_000074 running electric fan
338
+ 7kIhqlZok8c_000241 running electric fan
339
+ 7lz-THXCwi8_000030 male speech, man speaking
340
+ 7ogdSWU90s4_000100 opening or closing drawers
341
+ 7pc3c5ZGbwo_000030 ocean burbling
342
+ 7rLRSpEqgZk_000253 playing sitar
343
+ 7tsuYUeV7_k_000191 airplane flyby
344
+ 7vF2Qq0Pg6w_000024 ice cream truck, ice cream van
345
+ 7xZxYm27FdA_000020 toilet flushing
346
+ 7xaNqQ8FAwI_000100 mynah bird singing
347
+ 7yBOHsPAJgw_000040 vacuum cleaner cleaning floors
348
+ 7yXROxIZfeo_000053 raining
349
+ 80KT6bYCFkg_000077 playing tuning fork
350
+ 81ACguOEqoM_000042 electric shaver, electric razor shaving
351
+ 82ic2Xisrqg_000030 car engine knocking
352
+ 83mmLOdwZlA_000081 air conditioning noise
353
+ 85Nd7APr5Os_000028 ice cracking
354
+ 85Nd7APr5Os_000052 ice cracking
355
+ 87-ZrpDyRHE_000238 cat hissing
356
+ 88oLbuKd7Rg_000030 car passing by
357
+ 8906Y6i-h10_000102 playing cymbal
358
+ 89NzFtLSRSo_000030 engine accelerating, revving, vroom
359
+ 8DDro-N5-54_000029 swimming
360
+ 8GTkmen1bBg_000110 playing piano
361
+ 8IdUE6nhR3E_000030 playing violin, fiddle
362
+ 8N0GxZtk9wE_000051 playing didgeridoo
363
+ 8NMHjXutgVs_000333 electric shaver, electric razor shaving
364
+ 8Rh7NvJDexA_000068 tapping guitar
365
+ 8VEqGk0W4xY_000192 playing darts
366
+ 8XH7xIWWC6c_000090 people cheering
367
+ 8Y9VKxl-1gE_000063 rapping
368
+ 8ZWKl-_qHM0_000010 driving buses
369
+ 8_xdWIziFpI_000030 baby crying
370
+ 8b2ASj5nmos_000251 playing darts
371
+ 8c9PJLozdtA_000020 playing bass drum
372
+ 8jkr7bOR8ck_000146 playing table tennis
373
+ 8lIh0qRN7PE_000220 cattle mooing
374
+ 8m7VIFtS4gc_000000 typing on typewriter
375
+ 8n76LfbY3qo_000232 chainsawing trees
376
+ 8ngu3TPmfZQ_000110 playing drum kit
377
+ 8ugZkKeLL7Y_000030 male speech, man speaking
378
+ 8vE2wod7rhE_000030 horse neighing
379
+ 8ytjUazIdno_000023 playing glockenspiel
380
+ 9-N8v-cC0Tg_000002 air horn
381
+ 9-xW047dMpk_000125 missile launch
382
+ 913ItBzDHLQ_000124 playing synthesizer
383
+ 91kWVMnyKxA_000019 bird squawking
384
+ 92G0bdxj5ck_000091 mouse pattering
385
+ 93a7wS41kLc_000060 splashing water
386
+ 93rlsDDmFYo_000110 playing cymbal
387
+ 95UKs8K92C4_000110 playing timpani
388
+ 96wdXcwIbgk_001238 playing bongo
389
+ 97svDuqFctI_000139 playing steel guitar, slide guitar
390
+ 98Nc3x8U1JI_000187 playing badminton
391
+ 993A2y5lv-s_000030 bird chirping, tweeting
392
+ 99WZAe6QKUc_000030 people whispering
393
+ 99cGCS0ko2Q_000120 playing saxophone
394
+ 99ylFYthGcI_000004 donkey, ass braying
395
+ 9A8hgZdD__g_000030 horse clip-clop
396
+ 9CFR1VdlIMc_000142 rope skipping
397
+ 9CmEsDtIz_Q_000060 playing accordion
398
+ 9D9sfe1eaK8_000000 frog croaking
399
+ 9HtYErt1moA_000100 playing drum kit
400
+ 9IwjfATt51Y_000030 playing french horn
401
+ 9JwaE3BmICE_000061 female speech, woman speaking
402
+ 9LFGIpAO3NE_000161 tapping guitar
403
+ 9LY2BJ2fqts_000090 people gargling
404
+ 9Q1RM-pY2yY_000180 playing bongo
405
+ 9UvWyax1fEU_000000 people booing
406
+ 9Y3ausHODlk_000557 playing electronic organ
407
+ 9ZCgk2e7wZM_000269 woodpecker pecking tree
408
+ 9ZE18L9NN1Y_000105 striking pool
409
+ 9af_fvuAY8E_000167 barn swallow calling
410
+ 9exZEq85L1k_000260 playing trombone
411
+ 9fvJeyH-4II_000100 fireworks banging
412
+ 9gJ4NQYcakk_000030 male speech, man speaking
413
+ 9k0OwVahe5Y_000066 playing cymbal
414
+ 9pBp5wd9rpw_000043 firing cannon
415
+ 9s6jvP1V56w_000080 people crowd
416
+ 9t7YT0OKpaM_000130 playing cello
417
+ 9tyf9HGsIe4_000000 people finger snapping
418
+ 9zriIjvwqJw_000480 people burping
419
+ A08MfFxzmxo_000030 playing accordion
420
+ A0tXM5fSFrw_000062 alligators, crocodiles hissing
421
+ A1-T0wdI8Nw_000070 sloshing water
422
+ A1vf6We9a_Q_000290 mouse pattering
423
+ A2GEU2r5KnQ_000030 playing acoustic guitar
424
+ A551qSirV68_000298 alligators, crocodiles hissing
425
+ A55rHYLkwQk_000000 singing bowl
426
+ A95vqV9oM6g_000081 people marching
427
+ A9pIMNKQWCk_000005 footsteps on snow
428
+ AApTo3l6NfA_000030 train horning
429
+ AFmF56HVvVg_000151 cat purring
430
+ AI3om1uyCH0_000009 fire truck siren
431
+ AJhEl41TC5s_000443 lathe spinning
432
+ AM8-hH1Oahw_000510 driving buses
433
+ AOPgsB4hsH8_000206 electric grinder grinding
434
+ ARFBC4LeCFY_000019 chicken clucking
435
+ ARrb06s5a0Y_000082 donkey, ass braying
436
+ AUufm-TAVg8_000101 playing french horn
437
+ AW-JhveJXFw_000030 typing on typewriter
438
+ AXDomj6KnkE_000141 playing tabla
439
+ AZgG_6NE8j4_000240 parrot talking
440
+ Ac0OxSV8Nqk_000030 female speech, woman speaking
441
+ ActIkLSW20Y_000350 railroad car, train wagon
442
+ AefLmdFYR6k_000136 playing tambourine
443
+ AfrcYQw5mXw_000010 telephone bell ringing
444
+ Agl-AQmIYBE_000030 rowboat, canoe, kayak rowing
445
+ AhUYTb14QZU_000020 chimpanzee pant-hooting
446
+ AiriN8WOgiI_000123 playing bass drum
447
+ AjD1BiY0o8E_000001 pheasant crowing
448
+ AlTNj6IWey4_000112 airplane flyby
449
+ AlebU-Vdy18_000022 playing theremin
450
+ ApMojxDfms0_000273 magpie calling
451
+ AteFCZfJfLY_000011 vehicle horn, car horn, honking
452
+ AvguIvLb0GY_000027 electric shaver, electric razor shaving
453
+ Aw5BwrqdmHc_000010 canary calling
454
+ Aw9arRIoBR4_000030 sliding door
455
+ Aygl9-ur8NU_000001 gibbon howling
456
+ Az1M0iLYjIg_000030 ice cream truck, ice cream van
457
+ B1ax5dX6XrU_000215 wood thrush calling
458
+ B7cF_In3_-c_000030 horse neighing
459
+ B7zgWPjx8hg_000026 wind noise
460
+ B9Mk5n5Zwjg_000240 driving buses
461
+ BBumD37-y80_000110 train horning
462
+ BC4LglYv70Q_000108 playing oboe
463
+ BH8QYqAvO2k_000020 playing vibraphone
464
+ BJ31LCL3Dy4_000100 crow cawing
465
+ BLWCHd07ATw_000080 playing electronic organ
466
+ BM1fw080pSs_000030 female speech, woman speaking
467
+ BM4YyahEm8Q_000078 spraying water
468
+ BO1K4wXy2CI_000299 mosquito buzzing
469
+ BPD7Qj1U_Bo_000131 playing theremin
470
+ BPxW7nP4loQ_000003 eagle screaming
471
+ BTdIM1mncyA_000030 female speech, woman speaking
472
+ BWw6dgq07Qo_000053 playing clarinet
473
+ BYJ2UHIHCLU_000009 hail
474
+ BbUBFko93XE_000031 people sneezing
475
+ BbfDej2cM2I_000001 volcano explosion
476
+ BdIWeKYKIzk_000000 train horning
477
+ BfyYYuE12dw_000006 goose honking
478
+ BkXyLmdb8Yw_000290 playing hammond organ
479
+ BkwStRX3xE0_000010 fireworks banging
480
+ BmsTQHrCwB8_000215 heart sounds, heartbeat
481
+ BnRtoIC87Po_000030 female speech, woman speaking
482
+ BniijKHywXM_000103 playing tambourine
483
+ Bo271H1XM40_000127 arc welding
484
+ BpV7n-YUtos_000248 rope skipping
485
+ BpfM3evN6H8_000009 people eating apple
486
+ BsHgr_sj6ec_000058 playing bongo
487
+ BvdvbeIdUtk_000072 people booing
488
+ C1fdGRZRPtU_000040 barn swallow calling
489
+ C2kKMjYETRQ_000050 playing acoustic guitar
490
+ C5ik_rcugw8_000040 people marching
491
+ C7zLftUgskY_000035 playing harp
492
+ C85lxZAStBk_000056 playing hammond organ
493
+ CA3sbGHEE3c_000001 people screaming
494
+ CFazHdGsxcU_000155 lighting firecrackers
495
+ CG-2XtQI6sM_000000 cat hissing
496
+ CG_qvz_V1Jo_000374 playing gong
497
+ CJjTs72p1gI_000002 alarm clock ringing
498
+ CKwtP-eN1Zk_000014 striking pool
499
+ CUY3hob5V_o_000010 opening or closing car doors
500
+ CUqga7lwvfM_000080 subway, metro, underground
501
+ CVVrs_KA6sU_000030 rowboat, canoe, kayak rowing
502
+ CViouHw-mfQ_000122 playing cello
503
+ CYTTsSPohw0_000122 planing timber
504
+ CdcfD8mg-k4_000030 singing choir
505
+ CeD6RlRSr8M_000099 cat purring
506
+ Cg3XzrFzzpM_000060 playing accordion
507
+ CgevwvZLE3c_000219 running electric fan
508
+ CheeUmf4IhE_000030 fireworks banging
509
+ ChhTVgWMxiI_000030 duck quacking
510
+ CiLwbeRDj8E_000000 people crowd
511
+ CjwqjkkoJHY_000199 car engine starting
512
+ CkYUBci5xEM_000070 using sewing machines
513
+ Cntxv6aE3DY_000030 sliding door
514
+ Co1qXvuwkes_000146 arc welding
515
+ CpW7umx_bi0_000067 playing mandolin
516
+ CqgPmVXNdNQ_000058 striking pool
517
+ Csr7c9uFvQk_000028 dog whimpering
518
+ CvN_oC0AGvM_000340 toilet flushing
519
+ Cvgc82TDNnE_000025 lions roaring
520
+ CvxL2n9DX6w_000251 lighting firecrackers
521
+ CyW4FoAJ1MU_000260 police car (siren)
522
+ CzGGyIj84Hs_000030 pigeon, dove cooing
523
+ D-HXQTcZNGU_000130 female speech, woman speaking
524
+ D109-sQNo1k_000028 sliding door
525
+ D6BCygx6jcs_000000 dog howling
526
+ D7kL3EEOyR4_000050 helicopter
527
+ DAy_bV1d9c4_000046 playing squash
528
+ DGU-HbuX6rs_000230 people crowd
529
+ DJan9OSSF7c_000060 plastic bottle crushing
530
+ DO-9yuU9brk_000028 sea lion barking
531
+ DOi5UxxTknA_000041 driving snowmobile
532
+ DPpo_Whnuqc_000022 missile launch
533
+ DQelhAtUyHY_000030 playing electric guitar
534
+ DR7TdSc2ahQ_000030 sliding door
535
+ DSThhOKXU-c_000250 playing bass guitar
536
+ DSgKhbtDWWo_000400 playing flute
537
+ DX5_AglGFMw_000349 metronome
538
+ DXfTYgSGLac_000177 alligators, crocodiles hissing
539
+ DZo15IMYpmA_000206 vacuum cleaner cleaning floors
540
+ DaMG8zJSkuw_000100 playing trumpet
541
+ DbgRhWmYTJk_000002 frog croaking
542
+ Dbi2L5z8U-w_000020 driving motorcycle
543
+ DdZ6PSUQoQA_000050 female speech, woman speaking
544
+ DfZmOeeF_CI_000024 lathe spinning
545
+ DhaOFNnOC8o_000102 playing steel guitar, slide guitar
546
+ DhxWWDGdF8I_000159 frog croaking
547
+ Dj3sIimPrCk_000330 pigeon, dove cooing
548
+ DmSsL0Xde-I_000005 missile launch
549
+ DpIKdB4c_JU_000030 sloshing water
550
+ DqnMEAN1GVc_000098 baby laughter
551
+ DrPa82cqlSM_000008 playing mandolin
552
+ DroorVxOn5s_000030 engine accelerating, revving, vroom
553
+ DsVtCIaWv-Y_000377 hedge trimmer running
554
+ DtRqBLRUTRo_000069 playing clarinet
555
+ Dtiv9RNaA4U_000106 train horning
556
+ Duk5ikgbUfU_000030 playing violin, fiddle
557
+ DuyL15HJn6M_000036 elk bugling
558
+ DvascfU3OM4_000233 playing bongo
559
+ DwE0cQ3Xz70_000030 chainsawing trees
560
+ Dxxg6NenmBQ_000153 playing oboe
561
+ E0ocfyjk1lw_000129 scuba diving
562
+ E22HBR9rEkI_000030 lawn mowing
563
+ E22UuQ6SRf4_000001 fire truck siren
564
+ E4IHTinI-3k_000010 people whistling
565
+ E4dvhMWr7K0_000140 playing didgeridoo
566
+ E5ICgH7JVFI_000003 driving snowmobile
567
+ E67GhkgB8Jc_000033 cell phone buzzing
568
+ E6tu_4cO7ok_000107 playing cornet
569
+ E8LoFlcAC-M_000051 playing vibraphone
570
+ EDtJ88ZJtWo_000008 playing bagpipes
571
+ EEJp_Ssp0No_000004 dog howling
572
+ EG2bfvkpzjk_000136 playing steelpan
573
+ EGKE_rOo-Gg_000030 playing violin, fiddle
574
+ EHHBn9EAtg4_000040 people booing
575
+ EHHefsog-aM_000069 black capped chickadee calling
576
+ EHkkma0y1T8_000030 people sneezing
577
+ EJudk9RWsZI_000000 car engine starting
578
+ EKkFWhdVAOU_000032 woodpecker pecking tree
579
+ ETcwLdOldMg_000000 blowtorch igniting
580
+ EU3OmHbOUo0_000000 cattle mooing
581
+ EbnPPw9P3MQ_000409 snake rattling
582
+ Ee1Glgpx3YE_000038 scuba diving
583
+ EeUHgSkCSi8_000666 turkey gobbling
584
+ EhDl29RiF74_000085 black capped chickadee calling
585
+ EhaE7gijT78_000119 baby laughter
586
+ EkbcNbEn1Z8_000063 opening or closing car doors
587
+ EoubRuwDlrw_000038 canary calling
588
+ ErdH1gc3ZmU_000003 playing cornet
589
+ F186zkBSFjE_000110 helicopter
590
+ F1ZVQSywml4_000040 skateboarding
591
+ F3yETAYfYZg_000009 playing theremin
592
+ F6xLA2AA2GA_000090 people crowd
593
+ FAdeuN1uc-M_000230 subway, metro, underground
594
+ FCir2lQei8M_000030 playing harpsichord
595
+ FEltES9TUEU_000008 hammering nails
596
+ FGWcwpr_SeM_000133 fire truck siren
597
+ FGoXt7LIK3U_000010 police car (siren)
598
+ FHz8YQy4q5A_000027 tractor digging
599
+ FIPu0jd8I28_000030 people screaming
600
+ FIpCyWCy9Qc_000030 playing violin, fiddle
601
+ FRxNI559-Xs_000280 railroad car, train wagon
602
+ FUVXK29tUwQ_000000 owl hooting
603
+ FWuYLFTe3_8_000000 playing trombone
604
+ FXzP5bUz-Lo_000017 horse clip-clop
605
+ FauD2eg73V8_000030 playing electronic organ
606
+ Fd_SXrGw6ag_000030 playing marimba, xylophone
607
+ Fe9YJozRi78_000148 child singing
608
+ FfpD5XC8b5w_000137 playing bongo
609
+ FglnuP1jpRY_000030 playing cello
610
+ FhHBIlZ_5T8_000035 wood thrush calling
611
+ Fj34VCzy_Og_000030 horse clip-clop
612
+ Fpqf057G_SY_000000 chipmunk chirping
613
+ FpwtNUX45qU_000047 snake hissing
614
+ Frs4_Uf8Tq4_000127 ice cracking
615
+ FtCT62fiyrU_000270 church bell ringing
616
+ FtNV_Gq62l8_000019 cat meowing
617
+ FudSk5EUbAY_000156 playing ukulele
618
+ FvZqgCIbO2Q_000003 hail
619
+ FyszP9lfbDk_000001 playing didgeridoo
620
+ G-5AgMNzjv4_000017 vehicle horn, car horn, honking
621
+ G-Eokh465wM_000030 printer printing
622
+ G-IdABSxeHI_000097 dinosaurs bellowing
623
+ G-jsAK9ITwM_000030 ocean burbling
624
+ G6FhQuR3_88_000000 playing congas
625
+ G6nSnVQCxBQ_000095 elephant trumpeting
626
+ G7E7D2Z_Juo_000070 people burping
627
+ G7F8HVNw1lI_000081 scuba diving
628
+ G9AKWSzZtWI_000030 people eating
629
+ G9F38sObAns_000025 playing harpsichord
630
+ GAFJeF_AqZA_000086 hail
631
+ GBf5DgubSuE_000030 wind noise
632
+ GD8dVFZaWNU_000030 skateboarding
633
+ GDQjuDpqnJI_000030 wind noise
634
+ GL1TqKjpv1Q_000047 playing theremin
635
+ GLA-upuVPSA_000057 police radio chatter
636
+ GLtFkIbCZOY_000140 pigeon, dove cooing
637
+ GMNJCJ0ykfc_000050 male singing
638
+ GOFDdcvXq40_000030 goose honking
639
+ GPl4twCSrLQ_000001 coyote howling
640
+ GS_JqZCyqOc_000050 stream burbling
641
+ GT2frI8BMMM_000013 vehicle horn, car horn, honking
642
+ GTZkjw4aVn0_000030 engine accelerating, revving, vroom
643
+ GUSlicDnqIA_000045 playing congas
644
+ GX4kLN3hW4Y_000149 planing timber
645
+ GXIPKWMIVhs_000072 playing oboe
646
+ GXRHmy5Bqas_000008 vehicle horn, car horn, honking
647
+ GYJCyn2piCc_000329 lip smacking
648
+ GZoVDjx9ltQ_000235 playing erhu
649
+ GZoypVKRpCo_000003 cuckoo bird calling
650
+ G_hP5gvRfNw_000033 cat growling
651
+ GaFqib8bCLM_000019 tapping guitar
652
+ GbTzdC4mOtQ_000030 machine gun shooting
653
+ GbUoljsX3lg_000672 people gargling
654
+ GgUkhedV5e0_000190 female speech, woman speaking
655
+ GhizOxu0ZpI_000060 people belly laughing
656
+ GidBfE5JU3s_000005 vehicle horn, car horn, honking
657
+ GjKjnplphn4_000200 playing acoustic guitar
658
+ Gjide6V8U-E_000039 dog growling
659
+ GoMH9AL7YRA_000050 ambulance siren
660
+ GvPc1ncg0OY_000138 people booing
661
+ Gwp62TNrER0_000014 barn swallow calling
662
+ GxUovR3d2aM_000019 car engine knocking
663
+ GzAdcTtwkM0_000011 missile launch
664
+ H-ZKdWCEhbI_000140 fire crackling
665
+ H-jnsSCa-c8_000090 playing lacrosse
666
+ H-rd3O5haG8_000070 playing bass guitar
667
+ H0zmJjMoV-4_000012 playing squash
668
+ H1lx8lLLceQ_000120 machine gun shooting
669
+ H2r4JHm00Vg_000260 sheep bleating
670
+ H6onyc5r6os_000024 heart sounds, heartbeat
671
+ H6z_gPH8m2A_000055 people crowd
672
+ H7BcUVlPDsg_000026 parrot talking
673
+ HCPKDz63_s4_000000 child speech, kid speaking
674
+ HCuORBJf-Ho_000027 playing cornet
675
+ HL36YvzbFYs_000210 goose honking
676
+ HL_E1j069EI_000030 female speech, woman speaking
677
+ HOD29VAXJD8_000030 car engine knocking
678
+ HOI0ZaKLAMM_000030 fireworks banging
679
+ HOI7KapLzz4_000030 playing violin, fiddle
680
+ HOupeg-QhHk_000073 yodelling
681
+ HQSafj2aCNI_000100 playing banjo
682
+ HQlV2jYCz5k_000030 playing violin, fiddle
683
+ HR35d67Dhts_000108 singing bowl
684
+ HRaGv5q3P3E_000000 opening or closing drawers
685
+ HTRRMT1NQOc_000060 playing saxophone
686
+ HTqUtEGJ0As_000030 people whistling
687
+ HUP72tlgzyE_000066 playing badminton
688
+ HUWvhtKby-A_000033 car engine knocking
689
+ HW2o3t3fE_k_000062 francolin calling
690
+ HX2ccFGAuMU_000163 electric shaver, electric razor shaving
691
+ HX5BeffFwV0_000008 smoke detector beeping
692
+ HaABMNzUOvo_000030 wind rustling leaves
693
+ Hakqd6g2jaY_000110 helicopter
694
+ HcO60nHH4W0_000023 playing bass drum
695
+ HckqMrtU3dg_000133 playing double bass
696
+ HebxWsaO-LA_000115 train whistling
697
+ HkCt4hh_x58_000030 rowboat, canoe, kayak rowing
698
+ HlUvoEXQZYk_000007 playing tambourine
699
+ Hlp5qKMfdYk_000180 playing bass guitar
700
+ Honj-TQHx3U_000129 airplane
701
+ Hqhi7LioGyM_000030 playing marimba, xylophone
702
+ HsCj9l5Barg_000045 fire truck siren
703
+ HsX5XlPFOWI_000380 lawn mowing
704
+ Hum53_V1zw8_000001 wind noise
705
+ Hwp_62TYhDk_000110 playing marimba, xylophone
706
+ I-WMZh-ieC8_000280 playing harp
707
+ I-qeWJGSXuQ_000083 playing bassoon
708
+ I4ffG1Bh-d8_000156 playing oboe
709
+ I5wV1AFabIA_000029 frog croaking
710
+ I6_30m_TQ2o_000000 playing tuning fork
711
+ IBy30oL3yxw_000399 playing harpsichord
712
+ ICajcUYAan8_000410 people babbling
713
+ IEiseWb8Tao_000080 playing acoustic guitar
714
+ IF92YmTMtdk_000089 cattle, bovinae cowbell
715
+ IFGbGcs3bQQ_000034 chinchilla barking
716
+ IHaWOJuekYY_000109 tap dancing
717
+ IINqN6L2NsY_000285 tapping guitar
718
+ IJvYFkrfjBg_000049 tornado roaring
719
+ IKj9E33H8e8_000012 pig oinking
720
+ ILBWV9AFKDU_000115 playing ukulele
721
+ IN-9DFoS3fM_000007 bird squawking
722
+ IWVztd9QsXg_000005 owl hooting
723
+ IWhgJgeUQuA_000090 playing bagpipes
724
+ IYhq5aun18M_000181 police radio chatter
725
+ IZAasx5KIKE_000010 fireworks banging
726
+ IaAKobKeOtU_000271 people marching
727
+ IeD5tKVhuI4_000030 playing synthesizer
728
+ IeK6EDl8Z_k_000033 people clapping
729
+ IeW36MTcnBs_000117 dog growling
730
+ Ieca4fwxfyY_000049 tractor digging
731
+ IicM8tOXAFg_000146 pheasant crowing
732
+ Ik40yoz30vE_000068 woodpecker pecking tree
733
+ Il82kphC6es_000172 dinosaurs bellowing
734
+ IlLCyGNjG3M_000060 playing harp
735
+ InxgcOFzxWY_000070 chicken clucking
736
+ IpDU10kKguU_000311 vacuum cleaner cleaning floors
737
+ IqCRbzhPkvU_000000 lawn mowing
738
+ IrcX151sayY_000098 tapping guitar
739
+ IrkyGrHjygY_000020 tapping guitar
740
+ Irx-WWFsQYU_000667 people eating
741
+ ItnOPd_CktY_000020 people coughing
742
+ IuTgZQVcMBg_000007 sloshing water
743
+ Ivho6H4q1zk_000017 typing on typewriter
744
+ Iylzuk-0j64_000163 slot machine
745
+ J0ZBjy_EEtg_000015 people clapping
746
+ J18R3qBnJtA_000120 waterfall burbling
747
+ J1kAKMeULF8_000500 subway, metro, underground
748
+ J3K5HEX3gko_000030 playing banjo
749
+ J4VeWujsLJg_000030 typing on computer keyboard
750
+ J5ugw2GUbnY_000001 dog whimpering
751
+ J7fVkoC-Ha8_000711 people eating crisps
752
+ J82OaPeyioI_000030 horse clip-clop
753
+ JC33o6YxH9c_000220 playing piano
754
+ JHNBF0WJ-EM_000029 people belly laughing
755
+ JIdUC1zZb9M_000060 rowboat, canoe, kayak rowing
756
+ JK4YikH2myA_000161 playing vibraphone
757
+ JKrghKg6UBU_000260 ocean burbling
758
+ JKxdjXEI9Wc_000015 eagle screaming
759
+ JLPpMZlBOEI_000038 playing accordion
760
+ JQ3bFZbatGk_000030 people running
761
+ JQr-BRXrjN4_000002 airplane
762
+ JVevxopJjU8_000823 playing tabla
763
+ JXi1ZtJecYo_000001 bowling impact
764
+ J_k6z7_YVJU_000090 playing piano
765
+ Jbiig_IQdIo_000282 cap gun shooting
766
+ JcXhB_4B32o_000090 playing clarinet
767
+ JeJGThFGm80_000001 lighting firecrackers
768
+ JfAjUMKjoVI_000460 playing harp
769
+ JfiFq8tn5Pk_000009 playing steel guitar, slide guitar
770
+ Jk-SBbw7Afg_000140 driving buses
771
+ K-B9CIVeQ_U_000030 horse clip-clop
772
+ K-MCXLQmnFA_000004 playing banjo
773
+ K3KsP-m_c5I_000353 basketball bounce
774
+ K5HBK1c7noI_000010 cat meowing
775
+ KBc_FdBzN2U_000017 wind chime
776
+ KFFJI_TZmoY_000047 crow cawing
777
+ KJwga4gMEzU_000239 people slurping
778
+ KJxSJR3v6oE_000013 church bell ringing
779
+ KKd2qSxww1o_000002 typing on typewriter
780
+ KM_VudA7hgo_000030 people running
781
+ KOzRB30gxpE_000362 planing timber
782
+ KQbCjNzlYPs_000082 writing on blackboard with chalk
783
+ KU5WQZsoKRE_000079 child singing
784
+ K_8tBU1LYxU_000000 chicken crowing
785
+ Kbc8ioemPlA_000081 tractor digging
786
+ KdD8xho7ymw_000037 cat purring
787
+ KfqdB93utIg_000000 waterfall burbling
788
+ KfyYM6nq--A_000011 playing vibraphone
789
+ KnwgxGWxp7Y_000025 people whistling
790
+ Kp0W7S-oExs_000030 driving buses
791
+ Kq0Dbp3C4d0_000017 dog howling
792
+ KrUuPSM4LxM_000215 magpie calling
793
+ KsuQWEN0COQ_000199 playing darts
794
+ Kus5SmqOIrA_000024 mynah bird singing
795
+ Kwha8UYndzI_000090 playing didgeridoo
796
+ Kz4Jm9_iFeg_000038 hail
797
+ KzK6d6Qpu_o_000010 dog barking
798
+ KztFbSJPxg0_000197 planing timber
799
+ L4u9LOjcXoE_000000 people sobbing
800
+ LAaJfzvvlTI_000053 lions roaring
801
+ LAx_fanEB_g_000168 arc welding
802
+ LB2EbSmDSKw_000007 baby laughter
803
+ LBH_D9h18bw_000042 rope skipping
804
+ LCcPzeH_Cn4_000160 sailing
805
+ LE49c8e5VMU_000049 mynah bird singing
806
+ LEpzp8DnWyY_000026 sharpen knife
807
+ LGMZ9c7q8tE_000168 cat purring
808
+ LHYHo8wJF74_000342 playing oboe
809
+ LJsSbG5A1y0_000000 lighting firecrackers
810
+ LL618LsL2zY_000030 pig oinking
811
+ LMbyOx04l9E_000036 vehicle horn, car horn, honking
812
+ LNl3ANFth4Y_000021 mynah bird singing
813
+ LOLFOiNiS1o_000067 sharpen knife
814
+ LPTsZZVr06o_000030 people eating
815
+ LSsYBN_RvPc_000122 rapping
816
+ LWrztDg2BGI_000245 playing synthesizer
817
+ LYUkVukRObA_000236 pigeon, dove cooing
818
+ L_Da1Sv1iKU_000028 playing didgeridoo
819
+ L_OvLmH_feU_000021 dog growling
820
+ LaGhL-3ctOc_000048 playing double bass
821
+ LbjkUR-ERQw_000049 opening or closing drawers
822
+ LciaPQ1XV3c_000217 playing badminton
823
+ Lfmcj5VW6VE_000050 playing acoustic guitar
824
+ LgdtTzvKnT4_000030 rowboat, canoe, kayak rowing
825
+ Lj4Ngu0ars8_000138 electric shaver, electric razor shaving
826
+ LlRZR8xPOEw_000021 frog croaking
827
+ Lmp51YN-7wc_000466 people marching
828
+ LtqXpk2YGls_000010 chainsawing trees
829
+ LuxrhiicesU_000000 donkey, ass braying
830
+ LvzMerRGbCE_000099 bouncing on trampoline
831
+ LxdOWpwSzi0_000400 mouse pattering
832
+ Lz8Ytz12MrU_000120 chopping wood
833
+ M0EaEBlx5fk_000126 yodelling
834
+ M9cNmb9HKPc_000110 turkey gobbling
835
+ MApvC99wovc_000159 car engine starting
836
+ MEtdxR3RdEA_000180 playing piano
837
+ MFEhejrPVmw_000040 dog barking
838
+ MMTvsiahcsc_000002 fire crackling
839
+ MMjEIFDYQvc_000117 yodelling
840
+ MQPNvRDVuUs_000100 playing french horn
841
+ MQPggq37uX8_000003 scuba diving
842
+ MQcS6DqCjKQ_000030 playing vibraphone
843
+ MRnnE9MTm64_000052 driving snowmobile
844
+ MTD6-1mrtP8_000072 owl hooting
845
+ MVmJujaAocY_000030 baby crying
846
+ MXmetP4F-EU_000019 door slamming
847
+ MdUG2H5K5eg_000117 roller coaster running
848
+ MenAsca8z6s_000137 slot machine
849
+ Mf6bCl5HKgc_000000 wind chime
850
+ MfSXrFJt6d4_000007 motorboat, speedboat acceleration
851
+ Mhzz75z8mbY_000166 playing ukulele
852
+ Mk8fhA3DAsA_000030 turkey gobbling
853
+ MkrFhq3F_z4_000100 playing accordion
854
+ MlX7I-OZIyk_000062 playing timpani
855
+ Mmyr6Gpclbk_000070 bird chirping, tweeting
856
+ Mnv4KVEt18I_000018 people giggling
857
+ Msh94MTYC6A_000290 chainsawing trees
858
+ MshXUve673A_000363 elk bugling
859
+ Mvn2oFoKxwI_000128 people booing
860
+ Mvue0y_EsDU_000000 orchestra
861
+ MwVghEDjyQM_000030 people sobbing
862
+ MwsoiJOqg_g_000030 duck quacking
863
+ MwyzEfk2xbA_000054 playing double bass
864
+ Mzc3DajWA0k_000030 ice cracking
865
+ Mzgas545UXU_000090 playing snare drum
866
+ N09QFSbvIC4_000150 playing electronic organ
867
+ N2DQWIePoLs_000030 playing violin, fiddle
868
+ N3_jZV1ejnA_000030 crow cawing
869
+ N5CNEOKptjo_000000 splashing water
870
+ N8cNWpCL0Rs_000183 owl hooting
871
+ N9cM9BdATNs_000081 people booing
872
+ NAETplWD64g_000030 playing harpsichord
873
+ NAk-PU3X_DQ_000026 mynah bird singing
874
+ NBeonGAqO84_000032 playing bugle
875
+ NCdkXluu-D8_000350 playing harpsichord
876
+ NFd5Zot-0_c_000006 heart sounds, heartbeat
877
+ NJfJ4E9EVoM_000120 people whispering
878
+ NN6mOUDBjEM_000042 dog howling
879
+ NWSsGcjVRDw_000245 playing tabla
880
+ NZs6RgHZOoI_000013 firing muskets
881
+ NfcCnLiHlqU_000134 playing erhu
882
+ NhO6B0zM9Pc_000030 playing electronic organ
883
+ NjKRF79wl5Y_000110 wind noise
884
+ Nkz9_eGsHKY_000057 people booing
885
+ NmdqThtOVro_000160 beat boxing
886
+ NnNm_oqkG0o_000050 people sobbing
887
+ NniPHshHj9M_000068 playing didgeridoo
888
+ NqxCX4G3N2g_000107 playing volleyball
889
+ NrCNo4V7RVM_000030 lawn mowing
890
+ NrWxMrh7cGw_000210 playing cornet
891
+ NtJQ6W2o0EI_000075 canary calling
892
+ NwIDavS0llk_000010 chicken crowing
893
+ O-C9p_sK_eI_000030 horse clip-clop
894
+ O0QV4_JRM0M_000002 car engine knocking
895
+ O15FUv56iCc_000040 playing cymbal
896
+ O3geFV-GoqM_000031 fire truck siren
897
+ O5LFB39yCA4_000085 missile launch
898
+ O5TMWyFd1DQ_000180 playing vibraphone
899
+ O6_sGC3v96g_000006 wood thrush calling
900
+ O7KCtFRaWck_000080 alarm clock ringing
901
+ OEu8pZpN8ZA_000000 using sewing machines
902
+ OIqUka8BOS8_021217 warbler chirping
903
+ OLtTuBhG-og_000075 playing squash
904
+ OTVFQoNRQTs_000060 playing bass guitar
905
+ OWlCVuOznw0_000019 arc welding
906
+ OZ14CiqpJL8_000010 child speech, kid speaking
907
+ Ocdu7Lz0IuU_000003 francolin calling
908
+ OdGHvGlSUcM_000157 playing timpani
909
+ Of59qi5xxkM_000050 playing drum kit
910
+ OiIaJb68Haw_000050 playing banjo
911
+ OjOQ0K6lza8_000018 playing tuning fork
912
+ Okd7ksWR-fc_000547 swimming
913
+ Oljdv3iSTBc_000047 people eating noodle
914
+ Om-Uc7ia1f0_000320 playing bass guitar
915
+ OrueZOVOAD8_000010 motorboat, speedboat acceleration
916
+ OtDVd-1zaqU_000030 motorboat, speedboat acceleration
917
+ Ow1ZEhmP3qU_000116 typing on typewriter
918
+ OyoJ99jDQdo_000147 playing didgeridoo
919
+ P1eMMIK0cTs_000011 mynah bird singing
920
+ P2taxpwuzcw_000053 wood thrush calling
921
+ P2wbv4C6bBA_000210 barn swallow calling
922
+ P35m_Rn7HbA_000030 motorboat, speedboat acceleration
923
+ P5Y1D-fSVfg_000054 lip smacking
924
+ P6sG1m6C4zI_000081 mouse pattering
925
+ PavKY6YlSl4_000026 people whistling
926
+ PawUc0pqf9M_000260 car engine starting
927
+ PbomocKzqKU_000109 splashing water
928
+ PeJxiP0CPn4_000025 playing didgeridoo
929
+ PfwBOCxEst8_000243 cheetah chirrup
930
+ PjbxRjKvzw4_000030 wind noise
931
+ Pll-TpbHen4_000067 airplane
932
+ Pp61sP7bols_000076 cap gun shooting
933
+ PrIQbadXX74_000692 playing oboe
934
+ PsmihTl5Cx8_000060 pig oinking
935
+ Pu4BCOv6e5Q_000020 fireworks banging
936
+ PvE48Ub_CgA_000034 bird chirping, tweeting
937
+ PvpA8y7-ZC4_000101 people burping
938
+ Pvt8VUQ_Bso_000030 playing vibraphone
939
+ PxEpiEid_c8_000177 slot machine
940
+ Py5s1uL46L0_000100 male singing
941
+ Pz618GchhGI_000001 otter growling
942
+ Pz9BhPMUzv8_000258 lathe spinning
943
+ Q38lPvwj5Gw_000234 swimming
944
+ Q57DFiTwcM4_000221 people eating noodle
945
+ Q5jnMD1z86k_000287 people eating noodle
946
+ Q7X3fyId2U0_000090 tornado roaring
947
+ Q7ZPnRQraJk_000200 playing clarinet
948
+ Q9AvyaxgRRo_000141 playing steel guitar, slide guitar
949
+ QBFaKTDXCCQ_000120 playing acoustic guitar
950
+ QBfcf-k5U28_000007 vehicle horn, car horn, honking
951
+ QCX3H9wXgpo_000053 cap gun shooting
952
+ QEcQtxP1fdg_000056 playing bongo
953
+ QGkUBiVG8-Y_000034 owl hooting
954
+ QH5ZtCI9Hts_000125 chopping wood
955
+ QL6Ws4i07is_000040 goat bleating
956
+ QO9sbXhMq08_000220 people hiccup
957
+ QOFuXRetSLI_000064 arc welding
958
+ QT1nE5lR7wA_000035 cat growling
959
+ QTqN9c6661s_000000 forging swords
960
+ QUMzyZRYpWs_000019 playing steel guitar, slide guitar
961
+ QXEq7sE7dqg_000030 police car (siren)
962
+ QXjaLCotbpY_000055 playing zither
963
+ QZ-cG6VdBHM_000070 helicopter
964
+ QaBmzAFivPQ_000096 people marching
965
+ QcL-X7hJJYQ_000000 people whistling
966
+ Qd9_UMNMhcA_000010 typing on computer keyboard
967
+ QdEYMboSweA_000001 playing oboe
968
+ Qdrcv-ZjC-g_000037 car engine starting
969
+ QgEi6pAW36g_000150 male speech, man speaking
970
+ QgHYiH6ES08_000120 basketball bounce
971
+ QgQKqaMqRgs_000062 playing bongo
972
+ QhRcayuLZ48_000390 playing piano
973
+ Qlj2HEcX05Q_000136 playing saxophone
974
+ QpA1_cezBwA_000123 mouse clicking
975
+ Qr2PeUXBJu4_000197 playing erhu
976
+ Qs8RjZlOcdU_000030 car passing by
977
+ QsHeqaa4Ckc_000072 people whistling
978
+ QsNHM92SIvo_000000 people whistling
979
+ QvEMTs9_RQE_000010 lawn mowing
980
+ Qwxa7ZCEBQs_000006 cricket chirping
981
+ QyRrtn5AoSg_000280 playing saxophone
982
+ QypTigdvLWU_000017 firing cannon
983
+ R0YwusOkMx0_000008 bowling impact
984
+ R1h5rRHM3oI_000000 donkey, ass braying
985
+ R29qwv_mh4E_000018 playing bassoon
986
+ R3VnztSX-k8_000200 ice cream truck, ice cream van
987
+ R7KnzEqUGAc_000040 playing cymbal
988
+ R7bSeIfRG-Y_000590 eating with cutlery
989
+ R8cWq9GoEpE_000037 pheasant crowing
990
+ RBHqcDacio0_000182 beat boxing
991
+ RCIMcizSSZU_000044 francolin calling
992
+ RDuDqEmKucQ_000030 motorboat, speedboat acceleration
993
+ RJNjaPizyKg_000099 playing theremin
994
+ RKZmAYXXWbg_000247 canary calling
995
+ RM6uf-sdVQI_000043 playing bass drum
996
+ RN96eLdMN_I_000005 bull bellowing
997
+ ROsAOQe62gs_000050 playing electronic organ
998
+ RVqCdL7_G2Y_000030 car engine knocking
999
+ RWnvolYKQ2o_000414 lip smacking
1000
+ R_SNrPUIa1A_000140 playing bassoon
1001
+ R_yW6SKe_-M_000080 people booing
1002
+ RaawVrMvP7k_000048 pheasant crowing
1003
+ Rb0IEIeJTKY_000002 basketball bounce
1004
+ Rc_exQXrUG0_000100 skidding
1005
+ ReZUlDwGaLY_000080 playing marimba, xylophone
1006
+ Ria-XrpfgsA_000089 people marching
1007
+ Rifu8nB2cCs_000043 cat purring
1008
+ Riu9TpsQ_mk_000009 pig oinking
1009
+ RmGGiQMURcQ_000022 people sniggering
1010
+ RoLNzNAv-Ig_000030 motorboat, speedboat acceleration
1011
+ RrpMoJrp4AY_000180 people crowd
1012
+ RsYAulhucVI_000011 lions roaring
1013
+ RtHMCINXA0s_000052 cricket chirping
1014
+ Rur-IfwPZho_000051 dog howling
1015
+ RwE9JAktTvU_000580 people coughing
1016
+ RyV40yhlOeU_000419 people marching
1017
+ S29c6T__5HU_000003 playing timpani
1018
+ S3Ipyd9HHLk_000185 magpie calling
1019
+ S45cdr4x-mc_000080 chainsawing trees
1020
+ S9fw7NHd2eo_000380 playing electric guitar
1021
+ SBYzwBhUpYs_000166 playing badminton
1022
+ SBwOIJoGChM_000116 hammering nails
1023
+ SCjdlZSW8nY_000111 playing table tennis
1024
+ SGkzdDWFIHI_000085 playing bass drum
1025
+ SHebWHn0c2Y_000005 chopping wood
1026
+ SPnZIDCnKwM_000030 orchestra
1027
+ SS6iMabGB1Y_000020 chimpanzee pant-hooting
1028
+ ST33aEP5Hbc_000006 train horning
1029
+ SXC13GS87Co_000031 woodpecker pecking tree
1030
+ SXHYr-7nPaw_000030 playing drum kit
1031
+ SYDQX7Whjm4_000061 woodpecker pecking tree
1032
+ SYWqIfMOmGE_000051 hammering nails
1033
+ S_0v5j4S100_000039 cat purring
1034
+ S_qPgRNSkIw_000370 people clapping
1035
+ SbXyRN0DD-g_000080 dog bow-wow
1036
+ Sc-Ld96kbN0_000144 playing synthesizer
1037
+ SdCzaAUA6Xs_000005 playing djembe
1038
+ SeZm-iy9n8M_000150 playing electronic organ
1039
+ Sf0aZczIZVU_000040 playing cello
1040
+ SgYh5Lb7tlM_000130 playing flute
1041
+ SifYJFmSSRw_000123 playing marimba, xylophone
1042
+ Sl4weBj8xfc_000030 typing on computer keyboard
1043
+ SoVEYhxQabk_000103 canary calling
1044
+ Spm_zrjedzk_000392 cap gun shooting
1045
+ Sqq2dUA8t3A_000586 playing harmonica
1046
+ SvJ0kUY22C8_000055 turkey gobbling
1047
+ Sw6qDVMsR5M_000030 playing violin, fiddle
1048
+ SwQie7apk78_000198 playing darts
1049
+ SyEVBFw_9oE_000120 people screaming
1050
+ SyfyWK7dKXA_000021 playing squash
1051
+ SzmORuHD4g4_000059 wind chime
1052
+ T-AN31N4LD0_000050 people screaming
1053
+ T0NMgZC7CDU_000011 chipmunk chirping
1054
+ T19Xf5-OTHw_000130 playing piano
1055
+ T2zZbnu_NtM_000029 playing table tennis
1056
+ T4KEGH_8lY8_000119 playing timpani
1057
+ TAdH0kUJj9k_000050 helicopter
1058
+ TCUnK4k7QZ0_000000 telephone bell ringing
1059
+ TDh8_ixGzIo_000030 printer printing
1060
+ TGngN3n7EMw_000024 airplane flyby
1061
+ TLSmnnnyhEk_000030 people shuffling
1062
+ TMyd50KWyNo_000311 people slurping
1063
+ TNCcQfbselM_000120 francolin calling
1064
+ TQapWHNS5FE_000024 car engine knocking
1065
+ TRW01xXMMqg_000210 playing accordion
1066
+ TRt_14JcRWQ_000080 playing bass drum
1067
+ TTElms_ZWqI_000428 hair dryer drying
1068
+ TTstWFDMmqc_000030 people whistling
1069
+ TUPEF6PQxow_000132 rapping
1070
+ T_iuImHtqUI_000010 people sobbing
1071
+ Ta__Ev0mkBk_000030 chainsawing trees
1072
+ TakDv24Tiq0_000032 plastic bottle crushing
1073
+ TcN0QofoTvg_000221 playing erhu
1074
+ TdkhMZZvdgc_000006 owl hooting
1075
+ Tdyh5ziqH-U_000007 lions roaring
1076
+ TiaGOZ-ibxw_000411 people booing
1077
+ TriRWR9YiNk_000016 frog croaking
1078
+ Tse5rzNV5dk_000084 pheasant crowing
1079
+ Tze9ybKops4_000020 playing synthesizer
1080
+ U3-h9ZARqD4_000264 police radio chatter
1081
+ U34oQw93afs_000219 playing tambourine
1082
+ U3zsgbf9WHQ_000194 horse neighing
1083
+ U4RRMpX2wCU_000010 toilet flushing
1084
+ U55bYLMVKiw_000193 pheasant crowing
1085
+ U6vVDGaKL3Q_000354 bouncing on trampoline
1086
+ U9qUXBqIoZ0_000106 dog howling
1087
+ UA62hwIBgGY_000020 chicken clucking
1088
+ UFIi1OuMx0o_000302 rope skipping
1089
+ UGwl5VOHuaw_000200 playing accordion
1090
+ UIFxlzHYPBM_000060 gibbon howling
1091
+ UJ1lZOY9LSY_000035 playing didgeridoo
1092
+ UM1j8kFaxi8_000020 motorboat, speedboat acceleration
1093
+ UOL-hbkzUN4_000010 barn swallow calling
1094
+ UOlwg402_r4_000070 people clapping
1095
+ UPUwaW8jfhA_000030 ice cream truck, ice cream van
1096
+ UQonGRRRpv4_000024 goose honking
1097
+ UUKyUUjv8qg_000030 church bell ringing
1098
+ UZAB21OSorM_000007 electric shaver, electric razor shaving
1099
+ UZYfRXafn9I_000005 ferret dooking
1100
+ UZp0AcdimvA_000021 cattle, bovinae cowbell
1101
+ UeCkRYU_SuM_000100 playing accordion
1102
+ Uf2j1VbOk8c_000055 pheasant crowing
1103
+ UfG4dP0szuY_000040 fireworks banging
1104
+ UjTYiJ0dm8s_000002 vehicle horn, car horn, honking
1105
+ UkdS0cwAGYE_000010 car engine starting
1106
+ UnGLtJX29Hc_000043 planing timber
1107
+ UoFgJXGWJXA_000111 playing congas
1108
+ UpWivODbpIY_000059 owl hooting
1109
+ UsJAb6aftq8_000580 playing bagpipes
1110
+ UuuQH-TFxMo_000034 missile launch
1111
+ UzKZijSs4-A_000004 fox barking
1112
+ UzPSMiqeH3Y_000118 singing choir
1113
+ V-ZbY0SL2XI_000040 people sniggering
1114
+ V1ALglq7_x8_000018 dog growling
1115
+ V6lQVpw888U_000590 machine gun shooting
1116
+ V6y-jCli4I4_000000 cuckoo bird calling
1117
+ V7SGeTSJz9w_000090 skateboarding
1118
+ V82SmRI0GHY_000030 playing clarinet
1119
+ V83lIhKVraY_000125 playing darts
1120
+ VCEicqV_2Xw_000030 ambulance siren
1121
+ VDXN0xwWgRA_000083 playing bass guitar
1122
+ VDzkPfnI1g4_000093 playing djembe
1123
+ VEER910vqMk_000002 duck quacking
1124
+ VEhmvrgrZb0_000000 chicken clucking
1125
+ VFj1vFMV3dQ_000025 playing darts
1126
+ VGrI3TMjWog_000120 playing vibraphone
1127
+ VHQjG81NcXE_000030 crow cawing
1128
+ VS9R3iOc4Vk_000027 pheasant crowing
1129
+ VU9W8Y1E5u4_000030 bouncing on trampoline
1130
+ VdxslFvStdo_000370 female speech, woman speaking
1131
+ VfXlyIjtfo4_000117 baby babbling
1132
+ Vgs_XjEqKl0_000020 people sobbing
1133
+ Vh4E5JPTMBM_000146 typing on typewriter
1134
+ VhLn9pUFwXw_000039 chopping wood
1135
+ VhUG4vTpPUo_000324 ripping paper
1136
+ VhsFniEZO-k_000026 mynah bird singing
1137
+ Vkbp8VmL3pM_000040 people sobbing
1138
+ VkgLWYydiPE_000125 tractor digging
1139
+ VlGuwiKwJAM_000027 playing sitar
1140
+ VlkgwzKAamE_000051 ripping paper
1141
+ Vnnw7lK63rg_000041 playing snare drum
1142
+ Vt3qBXzyS5k_000280 eating with cutlery
1143
+ VwZ8gzI3qNE_000106 people slapping
1144
+ VwqcV76E6Nk_000000 people booing
1145
+ VwqqmiiznQU_000028 woodpecker pecking tree
1146
+ Vxs0xCJI92Y_000080 driving motorcycle
1147
+ Vzb427ZmWvw_000220 fireworks banging
1148
+ W0PwVllBxkI_000114 playing steel guitar, slide guitar
1149
+ W1o_XgU8lec_000050 skateboarding
1150
+ W2_8zRHaEPk_000150 playing vibraphone
1151
+ W2gkFTFR8mw_000047 rope skipping
1152
+ W4eT7fj-aIA_000201 driving snowmobile
1153
+ W5oXrz8dqBk_000030 playing piano
1154
+ W5wBkCwEEmY_000140 playing banjo
1155
+ W7OJevEgq7w_000000 dog bow-wow
1156
+ W7u5kEt-q-8_000000 playing tennis
1157
+ W9L5rTbcMFA_000004 people eating noodle
1158
+ WABbXpAT_UA_000049 playing bagpipes
1159
+ WAhoodHHm2w_000001 playing squash
1160
+ WBOqGIqUwGg_000090 people sniggering
1161
+ WD0aVtBqoxo_000120 goose honking
1162
+ WDmJ4ZtLuNU_000102 playing timbales
1163
+ WGHTlOM4-3w_000050 sheep bleating
1164
+ WH7LBLKyEkA_000241 playing mandolin
1165
+ WIWRYG4vJC4_000020 people burping
1166
+ WIZTFH-LGpo_000001 planing timber
1167
+ WJQ27fShKvk_000000 playing tennis
1168
+ WQFZLDitkkM_000067 eletric blender running
1169
+ WQuoH_HyUAk_000030 playing cello
1170
+ WRvPzjj5uoE_000134 ice cream truck, ice cream van
1171
+ WWzD6E9Wp_k_000260 playing cornet
1172
+ WXMt58sLsf8_000028 zebra braying
1173
+ WZ568vdA7bU_000070 plastic bottle crushing
1174
+ We-E7-Sx3Zo_000260 barn swallow calling
1175
+ Wg86ercBjY0_000002 playing clarinet
1176
+ Wh8A7CAuLe0_000028 barn swallow calling
1177
+ Whjk5Fvue1o_000030 singing choir
1178
+ Wj0qIPUjTfE_000008 lions roaring
1179
+ WqKP-0cSKgs_000030 dog bow-wow
1180
+ WvRkqVmRH0g_000088 playing harp
1181
+ WvcM0ueEjfo_000050 people burping
1182
+ Ww3CMatNd84_000721 cat purring
1183
+ WxQHtaD0Yqg_000028 tractor digging
1184
+ X-o1Twh5SFY_000032 playing steelpan
1185
+ X0gT3reH8A8_000120 people sniggering
1186
+ X17lq90OIO8_000020 dog barking
1187
+ X5C9NY9MjA4_000105 train whistling
1188
+ X7EGSxA-aCI_000132 child singing
1189
+ XBAwcPvVSoA_000068 lathe spinning
1190
+ XDMTylVtYx4_000190 race car, auto racing
1191
+ XEOUYLlaef4_000003 rope skipping
1192
+ XJnKU_SXYlM_000049 playing tabla
1193
+ XK4Ws-xvt10_000267 vacuum cleaner cleaning floors
1194
+ XKp4HCxVmaI_000017 vehicle horn, car horn, honking
1195
+ XLTqSk1Z3D0_000000 police radio chatter
1196
+ XM6eeVHjmLk_000001 dog growling
1197
+ XNgq-cDV7FI_000101 dinosaurs bellowing
1198
+ XOTSovKwxLk_000030 child speech, kid speaking
1199
+ XSJzshsMz30_000030 chainsawing trees
1200
+ XTDo4OaFapg_000100 hammering nails
1201
+ XU8dCEdiGWc_000010 crow cawing
1202
+ XUyBxCbiv7A_000073 playing bassoon
1203
+ XVveRibUh18_000023 frog croaking
1204
+ XWp8qMpnD00_000026 electric shaver, electric razor shaving
1205
+ XYZ4Nd4qV-I_000101 people humming
1206
+ XdSCT_cQDbE_000010 splashing water
1207
+ Xgm17YbPztk_000022 playing didgeridoo
1208
+ XiExpKM1Hpo_000160 playing trombone
1209
+ XlJ-tAbzzSg_000234 alligators, crocodiles hissing
1210
+ XtExs7nIzts_000034 people booing
1211
+ Xv4AVT2QYhA_000100 rowboat, canoe, kayak rowing
1212
+ Xxq7CElxJLc_000063 singing choir
1213
+ Y798EuJZaPU_000017 playing squash
1214
+ Y9Oee-VRfVA_000339 airplane
1215
+ YC_k4W1YaDw_000030 race car, auto racing
1216
+ YD41QET24SM_000125 playing badminton
1217
+ YD7jTek7yVU_000206 arc welding
1218
+ YEatlg_b0BY_000054 people burping
1219
+ YISopDKuQ0k_000050 playing accordion
1220
+ YJ5xLJ85AwM_000106 tractor digging
1221
+ YOTnbp40tf4_000030 male singing
1222
+ YOrImbuhsQ8_000027 lions roaring
1223
+ YS_zTwf-FRo_000092 playing ukulele
1224
+ YU78jPcU6FI_000070 playing trumpet
1225
+ YUXZVAQ1iJ4_000007 volcano explosion
1226
+ YUcdJy-rpD8_000590 raining
1227
+ YVOmkmjoT40_000030 ocean burbling
1228
+ YYgYiO9DjEY_000161 tap dancing
1229
+ YbALYr-5WpM_000000 playing harmonica
1230
+ YbOztklOkF0_000023 goose honking
1231
+ YcvHv44MYiU_000027 barn swallow calling
1232
+ YdjsatpizhE_000023 airplane flyby
1233
+ Ye72yJyWxs8_000021 airplane flyby
1234
+ YeEySSrxwpg_000078 barn swallow calling
1235
+ YfZp5C7xrKs_000181 playing bassoon
1236
+ YgySYOAi8JQ_000396 skiing
1237
+ YhJwTBFij48_000015 motorboat, speedboat acceleration
1238
+ YjCLRifFCj0_000010 skateboarding
1239
+ YjJioclqdQ8_000150 wind noise
1240
+ Ys1P04EjGH4_000196 playing bassoon
1241
+ Ys9j6IBcFBo_000024 opening or closing car doors
1242
+ YvBCKb1LbCk_000095 fire truck siren
1243
+ Yvq8WrFpXhE_000057 people crowd
1244
+ YwNdDHEhm2g_000005 duck quacking
1245
+ YwTFxcWCac8_000381 electric grinder grinding
1246
+ YyqqXEmYPIA_000020 ambulance siren
1247
+ YzBaTwjmikc_000018 hammering nails
1248
+ Z-V-1iUbMWI_000520 lions growling
1249
+ Z1BhAXfiZtU_000037 vacuum cleaner cleaning floors
1250
+ Z4QR8uvx_Wk_000169 reversing beeps
1251
+ Z5SyUJSDCOA_000562 ripping paper
1252
+ Z7Hzc1Yw2aY_000060 sloshing water
1253
+ Z93pTtHnDXo_000110 playing vibraphone
1254
+ Z9nG2fIh214_000075 chinchilla barking
1255
+ ZALP7Di4HaM_000180 playing saxophone
1256
+ ZAZZ1wImM9M_000010 singing choir
1257
+ ZCA_NapBTlg_000060 dog barking
1258
+ ZDDnEdzjyrE_000597 playing tambourine
1259
+ ZFGcmmpt1bs_000094 playing bagpipes
1260
+ ZL_MxixlnHE_000079 reversing beeps
1261
+ ZNboftBNdyY_000406 cap gun shooting
1262
+ ZPODO-Ehl_M_000030 male singing
1263
+ ZQO_uhrJPNA_000110 playing violin, fiddle
1264
+ ZUjum5gZMKM_000140 playing accordion
1265
+ Z_Bk_CnpWsY_000198 people sneezing
1266
+ Z_sW4UxpbbY_000050 using sewing machines
1267
+ ZbtuNDtoyOI_000030 sliding door
1268
+ ZcskQV2A2cQ_000030 playing flute
1269
+ ZdtaSkUkrIE_000256 police radio chatter
1270
+ ZeDa5hT2ffk_000071 police radio chatter
1271
+ Zgbuj3y2iuY_000210 cattle mooing
1272
+ Zh2whhvFWsM_000016 pigeon, dove cooing
1273
+ ZhLwVzOZziA_000368 blowtorch igniting
1274
+ Zi3FOnx4nuk_000001 playing table tennis
1275
+ Zj73Wh6LEiU_000120 skateboarding
1276
+ ZjN9CL7B-9I_000239 playing timbales
1277
+ ZkfUo4l9ruc_000090 chainsawing trees
1278
+ Zl_ZWSLB8Ic_000024 sheep bleating
1279
+ Zs8liAFeuuQ_000058 smoke detector beeping
1280
+ ZtPoTqVxVvU_000050 helicopter
1281
+ Zu0BpngzT_Q_000007 bowling impact
1282
+ ZuwSkX0RQQY_000343 playing tennis
1283
+ ZxmKMSUpbvc_000065 car engine idling
1284
+ ZxpiZiSAm9I_000060 turkey gobbling
1285
+ Zy70U6w0yXw_000088 mynah bird singing
1286
+ ZyUqhIDVuNc_000541 scuba diving
1287
+ Zz0fhQuHZEE_000012 penguins braying
1288
+ _0iRtZRG6UA_000047 woodpecker pecking tree
1289
+ _4RRKzDUd60_000079 lathe spinning
1290
+ _7GnnuKVVCM_000023 engine accelerating, revving, vroom
1291
+ _8FhgH9k7Rw_000120 vacuum cleaner cleaning floors
1292
+ _9wN5d1Z1ak_000024 lions roaring
1293
+ _CF34A0RrPs_000018 horse neighing
1294
+ _Cks36T64zE_000061 striking pool
1295
+ _DdVu5sPsjk_000490 people whispering
1296
+ _GaEZe-Z73k_000233 fire crackling
1297
+ _HRn4aOhjhU_000016 canary calling
1298
+ _H_W34UobYU_000459 bouncing on trampoline
1299
+ _HcIHVLRzpM_000450 female singing
1300
+ _NShiXyBmsY_000270 train wheels squealing
1301
+ _Ow1h1eTNk0_000178 playing trombone
1302
+ _SfaPFwwJHs_000026 train wheels squealing
1303
+ _T0iCBHWKt0_000101 pig oinking
1304
+ _T5ZUrmRiQI_000108 playing ukulele
1305
+ _Uyw_Legahg_000045 tap dancing
1306
+ _VOx5BWJsyQ_000030 raining
1307
+ _WQQ3QvGrYw_000340 child speech, kid speaking
1308
+ _WUAz2RAZZc_000201 planing timber
1309
+ _YF3aFSsgUk_000093 playing steel guitar, slide guitar
1310
+ _YhSeML8rQo_000109 alligators, crocodiles hissing
1311
+ _aX_UzkXRd0_000140 helicopter
1312
+ _cvucKdFb5I_000043 people booing
1313
+ _dIzu78Ld2w_000166 lathe spinning
1314
+ _gQFB_Utuf0_000077 cat caterwauling
1315
+ _j8zzvBts98_000000 splashing water
1316
+ _m6lwfMU8Eo_000272 electric shaver, electric razor shaving
1317
+ _pSMw5FKHX0_000040 people sobbing
1318
+ _pfccpy7Cqc_000180 typing on typewriter
1319
+ _ru-n--PRNA_000030 police car (siren)
1320
+ _t-Abwz6JG4_000031 baby babbling
1321
+ _t259gootxc_000190 female speech, woman speaking
1322
+ _u9zUuBdo1k_000000 cat growling
1323
+ _vkXDgupDN8_000250 sailing
1324
+ _wvB2HlVn1I_000050 engine accelerating, revving, vroom
1325
+ _xGLwynjhSs_000010 playing french horn
1326
+ _xq-9GZBfrg_000014 pheasant crowing
1327
+ _yVgX3hi1OQ_000195 driving snowmobile
1328
+ _zTmqhuLwAM_000001 donkey, ass braying
1329
+ a0LIemH5Cw0_000010 people clapping
1330
+ a3ZAFViNYyk_000000 swimming
1331
+ a57DUeBMeHY_000320 rowboat, canoe, kayak rowing
1332
+ a6CPpulnJ2A_000420 stream burbling
1333
+ a8fa79w2aIQ_000023 lighting firecrackers
1334
+ aC3nlLHFOfk_000030 playing violin, fiddle
1335
+ aCnLa_H0-P0_000000 magpie calling
1336
+ aDXQSTbKlIc_000010 playing cornet
1337
+ aE32elV-Jtk_000210 people crowd
1338
+ aG1wGSIqGR4_000013 frog croaking
1339
+ aHzkCSXsrqg_000038 vacuum cleaner cleaning floors
1340
+ aJ41sea1s0U_000080 people farting
1341
+ aNArqTW4cbc_000025 vehicle horn, car horn, honking
1342
+ aNOELrfjAYY_000000 vehicle horn, car horn, honking
1343
+ aRI4l67ZlYQ_000063 planing timber
1344
+ aSYCwv_hda8_000030 subway, metro, underground
1345
+ aSleAKgkDDk_000000 playing accordion
1346
+ aVs2QBhLIhY_000162 playing didgeridoo
1347
+ acYp_SYmHs8_000164 running electric fan
1348
+ aclGsdr83pM_000400 playing saxophone
1349
+ aezIOAga5V8_000070 child speech, kid speaking
1350
+ agMolFR_pFc_000075 train whistling
1351
+ agrdgrC2cdI_001076 dinosaurs bellowing
1352
+ ah5cSy0yXs0_000178 slot machine
1353
+ aiTXGmkpfnk_000030 playing trumpet
1354
+ ainzK7QuseU_000001 dog whimpering
1355
+ aj6kdMafoek_000693 hair dryer drying
1356
+ aju2z1N0aOo_000030 wind rustling leaves
1357
+ ap3PdrjChdo_000040 playing bassoon
1358
+ apTvGua1-FY_000271 playing guiro
1359
+ asXWEB_SBEI_000060 playing cello
1360
+ atT7DPwTkds_000130 people clapping
1361
+ auHL-4XCFAk_000030 driving buses
1362
+ b-8lh_tfhLQ_000124 hair dryer drying
1363
+ b-gza98ikBo_000020 playing snare drum
1364
+ b2bpNgK0Cnc_000250 orchestra
1365
+ b4Bu0AHwBWs_000084 woodpecker pecking tree
1366
+ b4WK1A7DK18_000018 crow cawing
1367
+ b8q6Z7dtRvg_000030 playing flute
1368
+ bBMcsO6IeDE_000021 lions roaring
1369
+ bF89h31EEzg_000000 golf driving
1370
+ bFmIV3pNJPY_000001 basketball bounce
1371
+ bI_4_x735PA_000020 typing on computer keyboard
1372
+ bJtu55jpzNc_000140 playing violin, fiddle
1373
+ bJzkn2kRh8g_000070 helicopter
1374
+ bLAz_kbihLE_000147 elk bugling
1375
+ bMNcdb3Eeds_000064 civil defense siren
1376
+ bN9fXjHalIY_000065 playing timpani
1377
+ bPNt6iVmemQ_000504 playing bongo
1378
+ bPfP2rjJfDY_000609 playing ukulele
1379
+ bQV7q5VRaH0_000174 car engine knocking
1380
+ bT8QfAM9NRA_000197 cutting hair with electric trimmers
1381
+ bVdI6laTOXI_000480 people screaming
1382
+ bVskpqAJF8E_000116 people eating crisps
1383
+ bYT-N-_u448_000217 civil defense siren
1384
+ bZUN1tQnuDQ_000001 child singing
1385
+ b_C-fNIS8aI_000000 cat purring
1386
+ baVILr18Y9A_000015 civil defense siren
1387
+ bd-swxc3o4w_000260 playing hammond organ
1388
+ bo9sSwEqnzs_000030 orchestra
1389
+ bokQgOSQ2OA_000001 playing squash
1390
+ bpF6KhK8El0_000030 police car (siren)
1391
+ bsM-z2joYss_000030 child speech, kid speaking
1392
+ bsUBSFHXY0g_000040 helicopter
1393
+ bukJZ1FxymQ_000390 male speech, man speaking
1394
+ bw3GIZLj6kM_000000 playing piano
1395
+ bx5BUbiIXFw_000107 child singing
1396
+ bzxjT3h2ir8_000105 lip smacking
1397
+ c3UPyEZ1yQY_000070 typing on computer keyboard
1398
+ c4M3JIyAPcM_000020 playing bass drum
1399
+ c5dPZoWwmC0_000020 driving motorcycle
1400
+ c6e4pxgoCls_000105 magpie calling
1401
+ c84w0ECD-Lc_000010 ocean burbling
1402
+ cAI0pcOwk2g_000346 elk bugling
1403
+ cEddS8Y-qZc_000510 people clapping
1404
+ cFNcpddGRno_000340 fireworks banging
1405
+ cIHKR2E1uiQ_000303 smoke detector beeping
1406
+ cJSWXGTJMcc_000018 rowboat, canoe, kayak rowing
1407
+ cL_nCiBnlbk_000001 playing bugle
1408
+ cMdnie91zp4_000000 playing trombone
1409
+ cNUIc68WpD4_000075 people marching
1410
+ cRiW0u0QY18_000030 playing trumpet
1411
+ cSym5f2jySA_000005 chicken crowing
1412
+ cUBHfozbsao_000044 playing harp
1413
+ cV4QlanVa9w_000070 basketball bounce
1414
+ cVhWB3IniBo_000014 playing tuning fork
1415
+ cZfuBCVV6n8_000390 eating with cutlery
1416
+ ces9pc_r6Wo_000036 child singing
1417
+ ckwEyopmfKs_000024 crow cawing
1418
+ cmkEW0KJDYI_000165 arc welding
1419
+ cp-ZI_fQ1l0_000154 airplane flyby
1420
+ cwQY1bck2G8_000070 playing bagpipes
1421
+ cx4QSvep_wE_000009 train horning
1422
+ cxFdK2G6wq0_000030 playing bagpipes
1423
+ d-UQr-8UEUY_000069 playing saxophone
1424
+ d05lXeFKDn0_000275 pheasant crowing
1425
+ d4yBeEbVp1Y_000030 typing on computer keyboard
1426
+ d5HmVBPY1Qc_000230 playing saxophone
1427
+ d66pNyYB6WY_000013 people burping
1428
+ d8gWsmBdBhE_000097 playing sitar
1429
+ dBivnkxNOOc_000175 playing vibraphone
1430
+ dECLS-JHWYA_000000 vacuum cleaner cleaning floors
1431
+ dK46EdcZFzg_000030 playing trumpet
1432
+ dNMCURn41wU_000179 playing djembe
1433
+ dN_EzmXbsu8_000016 playing bass drum
1434
+ dSeWq0Qd9Hs_000318 playing tambourine
1435
+ dVg4IEbk-l8_000010 cat meowing
1436
+ d_OIBYBwexQ_000160 playing accordion
1437
+ daHwPM2azrc_000036 wood thrush calling
1438
+ dfr1OFz20sI_000000 goat bleating
1439
+ dgSOnxqNtFE_000246 people coughing
1440
+ dgS_Fy1FiNA_000110 people burping
1441
+ dhG_GSGW_RI_000004 volcano explosion
1442
+ dlJm9R5t_qg_000030 playing hammond organ
1443
+ dlWrMn_RDg0_000120 playing bassoon
1444
+ dqymshfwGEE_000030 playing saxophone
1445
+ duca08sjlbQ_000001 playing bongo
1446
+ dugd_OSzghs_000203 ice cracking
1447
+ e0LMGLr-T-I_000029 air conditioning noise
1448
+ e3ZJnO3s53o_000016 child singing
1449
+ eANsaSAzHm8_000010 driving motorcycle
1450
+ eBFPD8YrqiA_000140 driving buses
1451
+ eCpA_7B-k94_000030 dog bow-wow
1452
+ eDqfHtuB8Hk_000015 snake rattling
1453
+ eEUsoUKPxy8_000187 basketball bounce
1454
+ eFaLkcfCzos_000140 playing cello
1455
+ eK97_rb6BsY_000072 playing gong
1456
+ eLyQDSo2NAM_000129 opening or closing drawers
1457
+ eOJQsk_kdWI_000032 ice cracking
1458
+ eS8Tf1hfwxk_000205 sea waves
1459
+ eSEIPV-qSj0_000020 squishing water
1460
+ e_3GUZmPFBI_000020 playing erhu
1461
+ ebhtW1tIXRY_000002 donkey, ass braying
1462
+ ecTDu-EX3WE_000019 car engine knocking
1463
+ ecq96FWbCF0_000037 gibbon howling
1464
+ ed4wVB_RhHw_000011 baby crying
1465
+ ehw6y3_g-8A_000757 ripping paper
1466
+ ej6jlkTeobU_000002 car engine knocking
1467
+ el3i-oj08Q4_000173 playing oboe
1468
+ f-XD-BgLWk0_000000 skidding
1469
+ f5c5KuWylig_000343 vacuum cleaner cleaning floors
1470
+ f6Wl-9pzib0_000032 cattle mooing
1471
+ f8bMURZiPiU_000019 people whistling
1472
+ f9U7g3g4voA_000026 golf driving
1473
+ f9c9YZ8WgjM_000037 bull bellowing
1474
+ fD362l9P3u8_000041 tornado roaring
1475
+ fFn2P7ZRIeM_000480 playing clarinet
1476
+ fNlGlh1GaeA_000013 heart sounds, heartbeat
1477
+ fS17RfJYjS4_000001 pig oinking
1478
+ fTT_D_d_5FA_000080 people clapping
1479
+ f_55S5G8M2s_000000 playing harmonica
1480
+ faFCcN6y-C8_000020 ferret dooking
1481
+ fcyUlEGvMdc_000037 playing volleyball
1482
+ fj0qlDdWt1M_000158 playing squash
1483
+ fknz5hZg_3I_000295 playing darts
1484
+ fmc6hwse-IA_000085 skiing
1485
+ g-CydtX7btM_000086 eagle screaming
1486
+ g-u5YOJu_gY_000230 lawn mowing
1487
+ g1n-ZaW0QHQ_000095 reversing beeps
1488
+ g5OBeqvOmRU_000001 bathroom ventilation fan running
1489
+ g8E9gBfe8B4_000180 female speech, woman speaking
1490
+ gH25X_mj6mc_000210 ocean burbling
1491
+ gJbMwvsUyA8_000000 driving motorcycle
1492
+ gL2i_DTGUEY_000028 cattle, bovinae cowbell
1493
+ gLTvwzBktxE_000015 airplane
1494
+ gLj93C9rRsg_000055 playing tambourine
1495
+ gLokxx-ruH8_000230 playing piano
1496
+ gM9WSjAPDVc_000030 people babbling
1497
+ gPwtTVH44OY_000030 people shuffling
1498
+ gW-1oOsNGJs_000010 playing harp
1499
+ g_axbxP7Amc_000071 playing harp
1500
+ gaFtxq1hBU4_000118 spraying water
1501
+ gcBUpboDmjc_000033 hammering nails
1502
+ gfgv17hOPIM_000040 playing marimba, xylophone
1503
+ gjJ4nqwlgnE_000010 playing hammond organ
1504
+ gm0HkvshnPk_000340 cattle mooing
1505
+ goS6rwhPth4_000026 mynah bird singing
1506
+ goz-IQ8s6uk_000050 skidding
1507
+ gpaX15tTUoc_000017 cat growling
1508
+ guvnNwCkhcs_000030 people sniggering
1509
+ gwzqjVCFNqA_000040 playing clarinet
1510
+ gyioxO7fWzI_000046 lions roaring
1511
+ gyjZ7tnnZeA_000132 playing theremin
1512
+ gyt54t3R_BU_000032 blowtorch igniting
1513
+ gzqq0knK2FA_000003 cat meowing
1514
+ h-Z5cTyu4LE_000150 wind rustling leaves
1515
+ h0025UfxME0_000308 sharpen knife
1516
+ h0V51dolEjA_000194 airplane flyby
1517
+ h5Gq0y3qkX0_000063 volcano explosion
1518
+ h7EWw2n5D5I_000050 train horning
1519
+ h7pz6niHZuw_000006 donkey, ass braying
1520
+ hEePXITb26o_000042 playing harp
1521
+ hFVd2Em9-cc_000100 toilet flushing
1522
+ hQvIg0t546Q_000146 playing vibraphone
1523
+ hUlqIdQFuxE_000030 basketball bounce
1524
+ hV_CjOK-mME_000030 people sniggering
1525
+ hW-RxgLN2l0_000007 owl hooting
1526
+ h_tdr4t6unw_000300 typing on typewriter
1527
+ ha-5LhgpVmQ_000946 playing tympani
1528
+ hc9aQ8VL9o0_000083 playing steel guitar, slide guitar
1529
+ hcR4BiG8sZs_000150 playing clarinet
1530
+ hdphUn6ihrA_000450 lawn mowing
1531
+ hdqCHBTwnuQ_000253 playing badminton
1532
+ hgcLJFz2WKQ_000512 police radio chatter
1533
+ hlKkLqHpJ_s_000400 chicken crowing
1534
+ ht3jNf66nbo_000286 missile launch
1535
+ htRB8f0r2rg_000027 playing bassoon
1536
+ hvoOSCZo2-E_000030 cattle, bovinae cowbell
1537
+ hy87-XUmhkE_000004 playing timbales
1538
+ i-SmzP7T_E8_000295 skiing
1539
+ i3nEgFq4yfo_000578 heart sounds, heartbeat
1540
+ i4IsKRvCLi0_000036 lions roaring
1541
+ i5dz5NV4Vpc_000007 crow cawing
1542
+ i6BBre7xV-c_000937 dinosaurs bellowing
1543
+ i9PvGS9Xr9k_000332 lions roaring
1544
+ iAqJ9lPCU4w_000024 chicken crowing
1545
+ iD8gRmmiiqU_000130 driving motorcycle
1546
+ iDODqIflQ1Q_000061 parrot talking
1547
+ iFU48OcnO7k_000000 woodpecker pecking tree
1548
+ iLaLf95DcQk_000040 duck quacking
1549
+ iQMIGLrKlTI_000260 playing accordion
1550
+ iSjvZiygjCQ_000510 playing cello
1551
+ iTd7hOI27BE_000048 playing harp
1552
+ iXslVMHwkTU_000212 people eating noodle
1553
+ iZR9dpO64NA_000011 cap gun shooting
1554
+ i_-LCRDriig_000030 ocean burbling
1555
+ i_hhSKWxzeU_000038 frog croaking
1556
+ ibd7CKcSiTI_000122 playing bass drum
1557
+ icK4IQb2KsE_000000 hail
1558
+ ieRU5f5P4B8_000350 cap gun shooting
1559
+ ieXdQlIBgLk_000030 playing marimba, xylophone
1560
+ iiUvfvkeo0c_000237 disc scratching
1561
+ ijirbb9m05k_000285 swimming
1562
+ ipo5U5Grsno_000020 people cheering
1563
+ irUkV1DP7Cs_000030 playing cello
1564
+ irhsdhRIUwI_000010 fireworks banging
1565
+ itH-fbb9Ook_000250 ambulance siren
1566
+ ixv1jovJe3c_000151 playing timpani
1567
+ j-GF_0RxUlg_000176 playing bass guitar
1568
+ j-hyPaKjCAU_000030 playing accordion
1569
+ j0NNSluEaS0_000150 heart sounds, heartbeat
1570
+ j15Ldqb_XVw_000020 fireworks banging
1571
+ j2OhKQ6sm0o_000077 people eating noodle
1572
+ j3A_ekLNu1Y_000008 car passing by
1573
+ j4GHwj1Yqz8_000076 ice cream truck, ice cream van
1574
+ j5oZYOBOppQ_000003 mouse squeaking
1575
+ j6f4pheXNDE_000108 tractor digging
1576
+ jB-OcexH1n0_000033 cat caterwauling
1577
+ jBCKFPXuFOw_000086 strike lighter
1578
+ jBZ1C1ihCIY_000005 playing bongo
1579
+ jL4h1-_LECU_000022 church bell ringing
1580
+ jQRurvUk2xs_000051 writing on blackboard with chalk
1581
+ jVG2LQ2kA1Q_000067 playing glockenspiel
1582
+ j_WKRbDVZhs_000071 barn swallow calling
1583
+ j_vtU1U9rg0_000042 playing volleyball
1584
+ jb92NmGYNbU_000279 police radio chatter
1585
+ jd2ENRtbxRQ_000010 people coughing
1586
+ ji-27X81tIs_000133 playing bassoon
1587
+ ji4T1ArqCz0_000017 fire truck siren
1588
+ ji8HeUiTfoU_000030 orchestra
1589
+ jld-wHLRUWM_000020 playing accordion
1590
+ jmLX2yQ4eKk_000007 hail
1591
+ jsw5soBYfsc_000020 people farting
1592
+ jt7w_UY4yUI_000040 lions growling
1593
+ jxnPU7Okb5U_000043 playing snare drum
1594
+ jzw_Wa_TXVo_000018 playing squash
1595
+ k-AKVEheu4g_000096 alligators, crocodiles hissing
1596
+ k-jDS1jp_AA_000014 firing cannon
1597
+ k4h2VtrPwus_000161 rapping
1598
+ kAWAs_7SaKw_000000 bird chirping, tweeting
1599
+ kBmcp8nL6Kg_000195 playing didgeridoo
1600
+ kCsmvK06SCA_000254 playing sitar
1601
+ kDwFyUvAi4w_000077 playing bongo
1602
+ kEQJJyYkYTY_000200 child speech, kid speaking
1603
+ kL6xemyurI8_000140 people eating apple
1604
+ kPp7CwFBl1c_000030 playing violin, fiddle
1605
+ kPpaeW3DObU_000481 playing castanets
1606
+ kPus6xz6fN8_000030 car engine knocking
1607
+ kSdqIpAMz_M_000175 playing snare drum
1608
+ kSwrdM7UD98_000057 owl hooting
1609
+ kTyaqJIhX6Q_000020 playing accordion
1610
+ kVMXMaTyEbE_000116 playing theremin
1611
+ kVtj0bAYAF8_000000 people sobbing
1612
+ kW23iJgtyfk_000002 raining
1613
+ k_NIUqHoNz4_000037 playing bassoon
1614
+ khZPuH00RNc_000332 yodelling
1615
+ kjtZNsHp_a0_000330 lawn mowing
1616
+ kkgjiCKHvoY_000449 firing cannon
1617
+ kmPmQ6aylRc_000012 reversing beeps
1618
+ koTbsmbqyxo_000103 people booing
1619
+ kp_7Sd6s0h8_000306 people eating apple
1620
+ kqvpyaIls0c_000090 playing cello
1621
+ ksaiDSSJeOg_000030 playing cymbal
1622
+ ktBzLsiL6l0_000157 playing steelpan
1623
+ kxl_ZU3j99A_000415 missile launch
1624
+ ky92PHpUpEA_000050 playing accordion
1625
+ kyEDPVvDQt4_000040 bird wings flapping
1626
+ kz849EPouys_000318 magpie calling
1627
+ kzntbWmyWBg_000074 playing squash
1628
+ l0DQpxoSr2Q_000040 playing banjo
1629
+ l3i-cKkVL-o_000007 car engine knocking
1630
+ l3rzkrm98J0_000001 alligators, crocodiles hissing
1631
+ l3uGoel_Ats_000000 people crowd
1632
+ l4XYVX79H58_000400 people babbling
1633
+ l5LnwNRK7Bw_000030 playing cello
1634
+ l6uZDuUsdpc_000010 people burping
1635
+ l7ELBtiVtQ8_000190 striking pool
1636
+ l8bdmlXL-Lk_000197 playing didgeridoo
1637
+ l9ple4xWo3w_000193 chopping food
1638
+ lAF2dHM7Tyc_000170 playing electric guitar
1639
+ lEzMz9odWXM_000058 lathe spinning
1640
+ lGsxnfOPaUw_000022 baby crying
1641
+ lGtRJjnC4PI_000210 airplane
1642
+ lKhe8BxkRnU_000025 wind rustling leaves
1643
+ lLme6yedI6w_000040 cricket chirping
1644
+ lN2kwc34bo0_000050 train horning
1645
+ lP5znTMLevo_000030 playing bagpipes
1646
+ lQG8CRumj3g_000560 playing cello
1647
+ lUWrhn9z9FI_000096 pumping water
1648
+ lXIaZksDY38_000030 people shuffling
1649
+ lXwEV2S1rt4_000150 using sewing machines
1650
+ lc1QTC0R_CQ_000018 people shuffling
1651
+ ld9b7tfnqTE_000109 playing erhu
1652
+ ldF2EJCVY3g_000147 playing theremin
1653
+ ldvcH7bOy_o_000184 playing french horn
1654
+ levuF973w8s_000250 playing french horn
1655
+ lg6X9iqcqXI_000233 playing table tennis
1656
+ lg7DqdnmkmE_000130 skateboarding
1657
+ lj-PczKzEaw_000040 using sewing machines
1658
+ ljXTXoBG9rg_000077 pheasant crowing
1659
+ lnatlhCU5kI_000420 singing choir
1660
+ loMPOYNM66g_000123 playing timpani
1661
+ lqVp4OJ4hbY_000044 lions roaring
1662
+ lr1RLADQXNg_000110 helicopter
1663
+ lrFFGvB03Fw_000071 golf driving
1664
+ lsBttXzhPHw_000144 playing sitar
1665
+ lt5H2iH9Ln8_000120 chicken crowing
1666
+ lwgKXn21ymc_000774 people whispering
1667
+ lxFVAc2dHVM_000152 fire crackling
1668
+ lzLgjt8VRmU_000000 skateboarding
1669
+ m-4-BAv8cCQ_000380 lawn mowing
1670
+ m-NpPmAkncw_000030 male singing
1671
+ m0g-zWJJClA_000150 playing banjo
1672
+ m1lFSuSixy8_000350 people marching
1673
+ m1lFSuSixy8_000613 people marching
1674
+ m2E4i-EzHIE_000085 people finger snapping
1675
+ m4j5XY09HlE_000021 car engine idling
1676
+ mCyvq9TF5Ms_000052 typing on typewriter
1677
+ mInTDyk6c2A_000012 writing on blackboard with chalk
1678
+ mPnRdL1sC48_000240 people eating crisps
1679
+ mQ60N4HdDyI_000102 machine gun shooting
1680
+ mRCzIaqRG_c_000000 using sewing machines
1681
+ mWGLXbNhuB4_000096 hammering nails
1682
+ m_7BjYa44lo_000030 child speech, kid speaking
1683
+ ma0P7XOsBgE_000030 people running
1684
+ ma2RuCUufcI_000036 fox barking
1685
+ maUlA8WWTEQ_000004 hail
1686
+ maVHGHl01Yc_000034 lathe spinning
1687
+ mcVY3xsxgcU_000060 playing bagpipes
1688
+ mi9AokZ8m5s_000849 shot football
1689
+ mjK1vNF3lKE_000023 playing theremin
1690
+ mlihNhHFGTM_000030 playing harpsichord
1691
+ mt13n4XleGY_000030 orchestra
1692
+ mwu46g-jnac_000170 bird chirping, tweeting
1693
+ n-PjT4mDn9Y_000173 playing bagpipes
1694
+ n0PnM0u47m4_000042 mynah bird singing
1695
+ n0gO6pPICi4_000065 playing mandolin
1696
+ n21m6N5UmNk_000002 firing cannon
1697
+ n2CgftHGLJ0_000030 driving buses
1698
+ n3bX64Z_Yds_000000 playing clarinet
1699
+ n4wpVSIu7c0_000087 beat boxing
1700
+ n6PQq584nWA_000010 playing trumpet
1701
+ n8vhraccEnc_000009 dog howling
1702
+ nAtvzIyRwnU_000100 playing saxophone
1703
+ nEBUuVsMtGE_000000 church bell ringing
1704
+ nGIVQLeZ76E_000103 bowling impact
1705
+ nHDsu69zzSA_000000 skidding
1706
+ nIHYEEVzuzE_000095 canary calling
1707
+ nJ7TBigS5bY_000018 people booing
1708
+ nLOOmtvC9Hc_000066 playing steel guitar, slide guitar
1709
+ nLVmclZYZMY_000200 people screaming
1710
+ nP0vO3Xv10M_000010 dog barking
1711
+ nPCYkMhaLYs_000024 roller coaster running
1712
+ nTo6W-50CDg_000018 whale calling
1713
+ nXc-dHK2A2A_000016 playing theremin
1714
+ n_F_tRGGoEA_000107 frog croaking
1715
+ ngJ_Us2C19g_000040 police car (siren)
1716
+ niYH8Dpt4uE_000140 cattle mooing
1717
+ nnyll58-lrA_000009 wind chime
1718
+ nowY2-6reIk_000030 pigeon, dove cooing
1719
+ nz0qYNbFGD4_000030 people coughing
1720
+ o2-6TSqWPCY_000170 people clapping
1721
+ o2qd4hsquvE_000056 bird squawking
1722
+ o4F5dtUXivA_000034 playing steelpan
1723
+ o6kY64rTk2k_000291 singing bowl
1724
+ o7mBR043UCs_000014 pig oinking
1725
+ o8iHgGRzcTE_000020 people clapping
1726
+ o8oMY-WgW9Y_000030 wind rustling leaves
1727
+ o9uGfNn4JyU_000062 lions roaring
1728
+ oBrRQ5SiJTQ_000210 driving motorcycle
1729
+ oCZ3WCK5BZU_000000 driving motorcycle
1730
+ oDAI33ybJlo_000029 playing theremin
1731
+ oDuiwpaep1k_000035 sliding door
1732
+ oEEOscuru6s_000280 playing flute
1733
+ oEXqWoSZ9Ww_000024 playing erhu
1734
+ oG6EUnQjeF8_000077 swimming
1735
+ oIUi8gFI_XY_000178 cat purring
1736
+ oIXRSpjo7vk_000170 wood thrush calling
1737
+ oJ4m2OvhA8Q_000100 playing cello
1738
+ oSsLQCIJjyE_000030 singing bowl
1739
+ oVxKyGnz-IA_000230 chainsawing trees
1740
+ oXXHkjFLN3E_000237 electric shaver, electric razor shaving
1741
+ oX_XdxqTE9Y_000110 bird chirping, tweeting
1742
+ oYe46obCJhc_000039 alarm clock ringing
1743
+ oZ6l0EStee4_000011 police car (siren)
1744
+ oZKVPzRyn50_000432 playing electronic organ
1745
+ oad_agP1oJU_000287 playing harpsichord
1746
+ od2HXuT_NuI_000100 playing cello
1747
+ oePtbOc8Hqs_000000 foghorn
1748
+ oeSxlmkPj78_000030 ocean burbling
1749
+ ofFtXFnfebQ_000684 cat purring
1750
+ ohh7mWALd_k_000473 pheasant crowing
1751
+ olZa2vOpbD4_000110 male speech, man speaking
1752
+ omiGYobPra4_000100 toilet flushing
1753
+ onqGNrWQ7us_000587 machine gun shooting
1754
+ or7ikBeUhBg_000020 driving buses
1755
+ osA1JXFL2Gk_000021 parrot talking
1756
+ otp3r8SfygA_000102 people shuffling
1757
+ p-DcPCo7Swo_000086 playing double bass
1758
+ p4RWTSRg6Bg_000290 people crowd
1759
+ p5LsBog-XRk_000130 playing saxophone
1760
+ p5j91ecL43Y_000030 people whispering
1761
+ p8HTTAhm5ic_000100 waterfall burbling
1762
+ pAe8kcpjZII_000010 playing theremin
1763
+ pKUzj3ckXvI_000010 toilet flushing
1764
+ pNiB5w3JBVI_000003 spraying water
1765
+ pQrnDC-kPHk_000106 sharpen knife
1766
+ pRdi3oChUR4_000020 baltimore oriole calling
1767
+ pUMZEzdKmPM_000136 owl hooting
1768
+ pVJY1Q137cw_000681 cat purring
1769
+ pX_Sg3xDAUg_000000 people burping
1770
+ p_KsZsJwH0w_000555 sharpen knife
1771
+ pdzAs6Be2sY_000139 people gargling
1772
+ piYKrS14dxA_000113 mynah bird singing
1773
+ pnFtPlslgGw_000019 plastic bottle crushing
1774
+ ppDvhlGr5nI_000003 golf driving
1775
+ ppLjxFk8C4M_000023 heart sounds, heartbeat
1776
+ pqDHX5R4sdg_000220 female singing
1777
+ pqElMm80SX8_000025 airplane flyby
1778
+ prq7EqBGWaY_000035 playing harpsichord
1779
+ psz3LAhSi9U_000001 yodelling
1780
+ pu9pO-rCzy4_000153 people farting
1781
+ pugRM2Nsnyo_000283 church bell ringing
1782
+ pukny4fvbOQ_000040 playing clarinet
1783
+ pxpIsajKD-Y_000042 reversing beeps
1784
+ pxpIsajKD-Y_000065 reversing beeps
1785
+ pyHJrlNMYwo_000350 sheep bleating
1786
+ pzixqhh0xG4_000175 golf driving
1787
+ q0Hz09My-_E_000018 lions roaring
1788
+ q0R8KXxZOZM_000070 people farting
1789
+ q0lahEg486Y_000295 tractor digging
1790
+ q1oBXqEFXy4_000070 sloshing water
1791
+ q5fUdJoUrAE_000257 beat boxing
1792
+ q7cvNFoT9nQ_000027 lighting firecrackers
1793
+ qA-yeGwsVn4_000018 pheasant crowing
1794
+ qBDrrE6LnUo_000103 bird chirping, tweeting
1795
+ qBmsSZQ7HNg_000360 railroad car, train wagon
1796
+ qCcC7n2mOC0_000074 playing harpsichord
1797
+ qIcEYC46zmI_000087 playing cornet
1798
+ qJJEBEajF1M_000017 air conditioning noise
1799
+ qL-4fJyDGXc_000893 people eating noodle
1800
+ qNi5Xlf2ZVY_000510 people clapping
1801
+ qORUGCczq74_000042 swimming
1802
+ qRm5Yh3JPSg_000016 playing tambourine
1803
+ qRwun6pFuNA_000010 playing banjo
1804
+ qTRrHj-DNYc_000137 dinosaurs bellowing
1805
+ qW9b8qu_KrU_000180 lions growling
1806
+ qXFgtkhWLgM_000134 child singing
1807
+ q_ZMlkVS740_000222 playing congas
1808
+ qbmNcYH52eo_000516 striking pool
1809
+ qdl6t1bDb-8_000400 eating with cutlery
1810
+ qgv0riPveBQ_000030 bird chirping, tweeting
1811
+ qiw2I1oQIVQ_000057 playing snare drum
1812
+ qjBkiP7mBNI_000597 ripping paper
1813
+ qmjK_Wi0IK8_000080 people cheering
1814
+ qoPAdSFZ4f0_000370 chopping wood
1815
+ qpjOCvQEHdo_000080 people cheering
1816
+ qrNCI310T9Y_000018 chicken clucking
1817
+ qsj_OgZZDvQ_000080 tap dancing
1818
+ qsrNWdcjwwY_000320 female speech, woman speaking
1819
+ quF2HA3u2JY_000101 cupboard opening or closing
1820
+ quZSWDeSywg_000040 toilet flushing
1821
+ qv51EqZA8eE_000291 train horning
1822
+ qxeCxC_zpvU_000202 playing french horn
1823
+ r24KMnV5Rrk_000030 people running
1824
+ r42dJt0hxro_000010 gibbon howling
1825
+ r47N9mdOeXc_000030 playing violin, fiddle
1826
+ r4Zm5lEsI-M_000110 vehicle horn, car horn, honking
1827
+ r7e4wJy4NP8_000090 motorboat, speedboat acceleration
1828
+ r96LZqBtlwg_000050 dog whimpering
1829
+ r9uN-AltjDQ_000130 lawn mowing
1830
+ rAXnOxWHaLs_000030 playing french horn
1831
+ rAth9ueRqM4_000040 whale calling
1832
+ rD4zq3CvJSo_000130 people slapping
1833
+ rEdr-j9oAN0_000074 playing french horn
1834
+ rFA1GBcIGN4_000067 playing ukulele
1835
+ rFgrOflwKPg_000290 playing trombone
1836
+ rLuNw3Cm7rs_000024 lighting firecrackers
1837
+ rMDnGZU7jzE_000001 dog baying
1838
+ rQthEYYXM-k_000030 people sniggering
1839
+ rRP810El--s_000958 fire truck siren
1840
+ rSHvW5dGanw_000150 fireworks banging
1841
+ rSWPVWkAbec_000000 bee, wasp, etc. buzzing
1842
+ rTNSzUXd3wk_000180 playing double bass
1843
+ rVnkDOvLWm8_000180 cap gun shooting
1844
+ raz3OUu768k_000068 playing clarinet
1845
+ rfqqBv3eriU_000160 stream burbling
1846
+ rgdMDo5TBic_000355 playing squash
1847
+ rn381TUMxyE_000298 arc welding
1848
+ rs2FL8HJfGE_000030 people sniggering
1849
+ rwVhTlLcBO0_000099 playing erhu
1850
+ rx2lqMvj2Wo_000052 squishing water
1851
+ rz9PZZA04z8_000183 playing badminton
1852
+ s2QrQdxzLwQ_000074 playing glockenspiel
1853
+ s8zSSYQM0Tc_000127 footsteps on snow
1854
+ s9gzcUg_nlM_000030 playing drum kit
1855
+ sFTyeq295xU_000041 people humming
1856
+ sIHApNhq2Ik_000002 bird squawking
1857
+ sLEEurjCsAY_000051 typing on typewriter
1858
+ sLOjC8EWrHA_000070 driving buses
1859
+ sOg4MNTWx_0_000000 skateboarding
1860
+ sUHlRRyS2YM_000009 pigeon, dove cooing
1861
+ sUs8O9toO4M_000311 dinosaurs bellowing
1862
+ sXDJvBEzqjs_000000 dog bow-wow
1863
+ sYy0lPjLEXQ_000100 playing cymbal
1864
+ s_FLZ-ekB2A_000088 telephone bell ringing
1865
+ sa6B5XyFYIg_000040 playing bagpipes
1866
+ scm7r0uBepU_000467 mouse clicking
1867
+ smBHJiEPCRI_000030 duck quacking
1868
+ snbtH1P3MVA_000119 playing timbales
1869
+ snyzyJlTBbg_000003 dog baying
1870
+ surXSGAnpM0_000000 playing harmonica
1871
+ sxiVIGK5AEc_000010 people crowd
1872
+ syysO74ja30_000007 playing gong
1873
+ szQ-4VQQQsI_000020 railroad car, train wagon
1874
+ t0XoS_8YVP4_000728 magpie calling
1875
+ t2xJjZp1D1E_000030 dog growling
1876
+ t3YfjKEmei4_000080 race car, auto racing
1877
+ t3u3ykowlvs_000030 raining
1878
+ tD9rMw8YPBI_000030 child speech, kid speaking
1879
+ tDayTL0ivzU_000014 playing timbales
1880
+ tJChPvDD-hI_000035 parrot talking
1881
+ tLFNgY5NBMk_000001 playing bassoon
1882
+ tRw0KL6PMFU_000060 skateboarding
1883
+ tTePTFQV52M_000030 pig oinking
1884
+ tV0sIqEryIY_000037 wind chime
1885
+ tWDG6UsiG3s_000090 people babbling
1886
+ tYBxgXg8yxw_000046 woodpecker pecking tree
1887
+ tYzH5rkbuBQ_000000 frog croaking
1888
+ tm9rnG0455k_000010 skidding
1889
+ tuqcWxh_mdc_000012 baby crying
1890
+ twWBQjLyuxw_000014 bull bellowing
1891
+ u1nAQ6GgJ7Y_000154 playing volleyball
1892
+ u6AV24u4OMQ_000052 rope skipping
1893
+ u6c5tvrkqVA_000187 playing timbales
1894
+ u88CrTGAqbo_000000 lawn mowing
1895
+ uEPueBOV06U_000109 yodelling
1896
+ uGQ0TW02gBo_000004 frog croaking
1897
+ uI5eona1hc4_000000 elk bugling
1898
+ uIHnphQWVRA_000169 opening or closing drawers
1899
+ uIg0I7pAjvM_000030 race car, auto racing
1900
+ uJSDmIF4dhE_000260 driving buses
1901
+ uK0jcVxT-Pg_000030 driving buses
1902
+ uLm5oUt3XG4_000031 playing tabla
1903
+ uSmduC6gJxg_000050 rowboat, canoe, kayak rowing
1904
+ uWdgdlJqI2Y_000019 basketball bounce
1905
+ uWq8Q_cIEwE_000086 playing ukulele
1906
+ uZghS49MC1k_000180 skidding
1907
+ u_85N9h_cGs_000050 car passing by
1908
+ udVSYrFacsc_000072 playing cornet
1909
+ ugUyp_keJO4_000022 mouse clicking
1910
+ uiPC88KDlW4_000022 engine accelerating, revving, vroom
1911
+ unF6DdqG4l8_000050 people whistling
1912
+ upZ0sKmaZrI_000167 playing lacrosse
1913
+ uvUEfRqpEQU_000145 singing choir
1914
+ uyNyWLJIci8_000000 fire truck siren
1915
+ v5OdaMw5hhk_000030 playing snare drum
1916
+ vADdI9YTMRs_000243 playing timbales
1917
+ vJk_Jzr2YIs_000080 playing hammond organ
1918
+ vLLiaCDHSPY_000010 dog barking
1919
+ vUORRJqXp7A_000036 playing table tennis
1920
+ vXupVqDfK34_000116 cricket chirping
1921
+ v_cxwPhwaBQ_000000 people farting
1922
+ varD0b9CTgs_000020 people belly laughing
1923
+ vcwXIa-QB8A_000025 sailing
1924
+ vdXavSaj8-M_000070 playing accordion
1925
+ vgIgTWqXtms_000023 child singing
1926
+ vhqkCDgsuh4_000255 people booing
1927
+ vkA-v4DSriM_000229 playing tabla
1928
+ vktUwc0Cs7w_000170 playing clarinet
1929
+ vpAGr_NrM_w_000050 fireworks banging
1930
+ vzoQdjPITKw_000030 pigeon, dove cooing
1931
+ w-9xoB74oF0_000004 opening or closing car electric windows
1932
+ w-JaJ11OqQY_000345 people slurping
1933
+ w3kMt-zQ9t4_000215 playing table tennis
1934
+ w5T582MCzlY_000011 running electric fan
1935
+ w5vaBVSxgKg_000030 lawn mowing
1936
+ w8puug1pEUA_000170 stream burbling
1937
+ w9K_AmeWhlo_000071 fire crackling
1938
+ wAnqT37UgYY_000034 dog growling
1939
+ wEbJ-9cmSaE_000003 playing cornet
1940
+ wHdgExbL6dA_000034 playing badminton
1941
+ wOYLWY6UCu8_000262 playing ukulele
1942
+ wP-96GP6bsU_000000 vehicle horn, car horn, honking
1943
+ wT6-Isia2PQ_000149 child singing
1944
+ wTQ-1cd8owI_000181 dog bow-wow
1945
+ wUNpHu61l7Q_000190 male singing
1946
+ wVJ-S2zYxug_000040 playing drum kit
1947
+ wX4Ya3D20H8_000039 scuba diving
1948
+ wXsrff4No40_000237 playing hockey
1949
+ wYZc2-3ViXs_000155 civil defense siren
1950
+ wZj294W4RVU_000094 fire crackling
1951
+ w_yGhgrow38_000091 eletric blender running
1952
+ wdk-RmsGdyw_000310 driving buses
1953
+ wdlfOAR03iY_000000 playing glockenspiel
1954
+ we-ONoZIkWE_000018 dog howling
1955
+ wegIxELjtz4_000334 people eating noodle
1956
+ whIS2UodgLI_000002 gibbon howling
1957
+ wkwjx0oMAjw_000021 beat boxing
1958
+ wnW4qgQQg3g_000050 playing cello
1959
+ wrFyu2T1XOo_000000 hail
1960
+ wsHPe19Y9Nc_000081 electric shaver, electric razor shaving
1961
+ wtyuiWygNTc_000000 zebra braying
1962
+ wuAcPWyHMXo_000008 lions roaring
1963
+ wwQPX3zjV4s_000028 elk bugling
1964
+ x0_AiAhfeV0_000068 eagle screaming
1965
+ x0bbH2Tao_0_000000 dog howling
1966
+ x1Rt2zN-oXo_000000 dog growling
1967
+ x1bXQS9dUAc_000140 playing violin, fiddle
1968
+ x2uCcPNM6Nw_000030 pigeon, dove cooing
1969
+ x3cLaiaaF0M_000032 skiing
1970
+ x68R1rmvKgc_000060 female singing
1971
+ x6d8ytnWNDI_000045 barn swallow calling
1972
+ x8yymm3DtVA_000022 playing cello
1973
+ xK1vy_6H2VM_000010 scuba diving
1974
+ xMa1vAUhTfM_000429 ice cream truck, ice cream van
1975
+ xN_CePbfjVg_000004 playing bass drum
1976
+ xPIhTw0fbzI_000010 train horning
1977
+ xQaYumd1O48_000004 lions growling
1978
+ xS4brO1qu0g_000591 playing hockey
1979
+ xUCKcoE3K6Q_000313 lip smacking
1980
+ xVDGIF1pFvQ_000030 driving buses
1981
+ xVEXWvj0iWo_000060 rowboat, canoe, kayak rowing
1982
+ xWBMt4fI95M_000063 scuba diving
1983
+ xWgd4OMcKbs_000263 people nose blowing
1984
+ xY9mlbn2IhY_000000 people burping
1985
+ xYAHwbhWEgM_000030 playing violin, fiddle
1986
+ xbNNxwGRG20_000062 cattle, bovinae cowbell
1987
+ xdUbCcEbipM_000290 people crowd
1988
+ xeS25F6uHic_000162 airplane flyby
1989
+ xetF74UUCGk_000001 ice cream truck, ice cream van
1990
+ xf0cheS5wFM_000090 playing piano
1991
+ xfT0HF1Pbxk_000003 playing sitar
1992
+ xg_3Uas3z40_000240 skateboarding
1993
+ xibFeibkfWM_000036 alligators, crocodiles hissing
1994
+ xj0Xi47RC88_000200 lawn mowing
1995
+ xkUzsvSImy4_000306 people eating crisps
1996
+ xm0N3HXnSWc_000361 rope skipping
1997
+ xoViga6dJa4_000141 playing steelpan
1998
+ xocKilOzrb4_000065 reversing beeps
1999
+ xq5kMmAFYx8_000030 playing double bass
2000
+ xqv96EPg7so_000200 railroad car, train wagon
2001
+ xtvQjd6cwC4_000040 playing bagpipes
2002
+ y3TRiYwDbHo_000287 playing oboe
2003
+ y6wsRU2aNx4_000040 railroad car, train wagon
2004
+ y95ml0IYGr4_000440 chainsawing trees
2005
+ yA_63YfQ034_000022 dog growling
2006
+ yBwMu2NueR0_000284 rapping
2007
+ yE_SP127xy8_000010 people crowd
2008
+ yEfhYsMd1yc_000006 playing double bass
2009
+ yH3PJfYi_gs_000109 car engine starting
2010
+ yJGtoH8INnA_000084 tapping guitar
2011
+ yJN5_1tfqXo_000075 magpie calling
2012
+ yMMmjb3BRi0_000030 dog bow-wow
2013
+ yOhdod2Kg40_000210 playing bassoon
2014
+ yPJiPWkeT3U_000254 playing gong
2015
+ yPUYU6t3rwo_000370 bee, wasp, etc. buzzing
2016
+ yQzzdP-4iBU_000002 planing timber
2017
+ yUL9UefoANU_000128 tractor digging
2018
+ yVzIaZzLH38_000130 bee, wasp, etc. buzzing
2019
+ yYPNrg-s-NI_000060 child singing
2020
+ ybnXdQfSNZs_000001 police radio chatter
2021
+ ycN30BUfzeo_000070 playing clarinet
2022
+ ygOHZ_55jME_000174 electric shaver, electric razor shaving
2023
+ yjyZgzYuuSQ_000089 cat purring
2024
+ yo5I2MTqv9E_000030 playing marimba, xylophone
2025
+ ywD_am3uZh8_000020 splashing water
2026
+ ywYLMe6y-S0_000040 playing piano
2027
+ z9CCSNKepA8_000537 striking pool
2028
+ z9crgUIWcmA_000000 dog barking
2029
+ zBgR_gj8NGg_000083 striking pool
2030
+ zGbJAz-3Ao8_000070 playing banjo
2031
+ zGn9k6j8kVo_000049 rope skipping
2032
+ zILE3kr9nIU_000030 mouse pattering
2033
+ zJPgE79wkE4_000000 playing tennis
2034
+ zMKJFnBr1Gw_000013 reversing beeps
2035
+ zPlyG_ryFpg_000006 sliding door
2036
+ zRU8A0m9Op8_000145 driving snowmobile
2037
+ zVCqTRlc7NU_000020 fire truck siren
2038
+ zYPY3Fh1Xjo_000000 skidding
2039
+ zcZ0WVQ8t8s_000210 splashing water
2040
+ zhPLdAMVAuo_000257 church bell ringing
2041
+ zl6hP51zURM_000075 playing oboe
2042
+ zlt2EGxum58_000174 bouncing on trampoline
2043
+ zmSPCArJHB0_000190 bird squawking
2044
+ zpqGedo-jm4_000043 cell phone buzzing
2045
+ zrKMC4fAKp0_000202 playing cello
2046
+ zsnU7rt_Qq0_000005 baby laughter
2047
+ zw7dTh-Lx3o_000074 canary calling
2048
+ zzP5qr-ZxHY_000199 people marching
2049
+ zzftU8z4aOI_000230 skateboarding
training/combine_latents.py ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import torch
3
+ from tqdm import tqdm
4
+ import pandas as pd
5
+ import tensordict as td
6
+
7
+ this_latent_dir = './training/vgg_output_44k/video-latents/train'
8
+ output_dir = './training/vgg_output_44k/memmap'
9
+ split = 'train'
10
+
11
+ os.makedirs(output_dir, exist_ok=True)
12
+
13
+ print('Extraction done. Combining the results.')
14
+ used_id = set()
15
+ list_of_ids_and_labels = []
16
+ output_data = {
17
+ 'mean': [],
18
+ 'std': [],
19
+ 'clip_features': [],
20
+ 'sync_features': [],
21
+ 'text_features': [],
22
+ }
23
+
24
+ for t in tqdm(sorted(os.listdir(this_latent_dir))):
25
+ #print(t)
26
+
27
+ if t.split('.')[-1] != 'pth':
28
+ continue
29
+
30
+ data = torch.load(os.path.join(this_latent_dir, t), weights_only=True)
31
+ bs = len(data['id'])
32
+
33
+ for bi in range(bs):
34
+ this_id = data['id'][bi]
35
+ this_caption = data['caption'][bi]
36
+ if this_id in used_id:
37
+ print('Duplicate id:', this_id)
38
+ continue
39
+
40
+ list_of_ids_and_labels.append({'id': this_id, 'label': this_caption})
41
+ used_id.add(this_id)
42
+ output_data['mean'].append(data['mean'][bi])
43
+ output_data['std'].append(data['std'][bi])
44
+ output_data['clip_features'].append(data['clip_features'][bi])
45
+ output_data['sync_features'].append(data['sync_features'][bi])
46
+ output_data['text_features'].append(data['text_features'][bi])
47
+
48
+
49
+ #output_dir.mkdir(parents=True, exist_ok=True)
50
+ output_df = pd.DataFrame(list_of_ids_and_labels)
51
+ output_df.to_csv(os.path.join(output_dir, f'vgg-{split}.tsv'), sep='\t', index=False)
52
+
53
+ print(f'Output: {len(output_df)}')
54
+
55
+ output_data = {k: torch.stack(v) for k, v in output_data.items()}
56
+ td.TensorDict(output_data).memmap_(os.path.join(output_dir, f'vgg-{split}'))
57
+
58
+ print(f'Finished combining {split} results')
training/extract_audio_training_latents.py ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import logging
2
+ import os
3
+ from argparse import ArgumentParser
4
+ from pathlib import Path
5
+
6
+ import pandas as pd
7
+ import tensordict as td
8
+ import torch
9
+ import torch.distributed as distributed
10
+ import torch.nn.functional as F
11
+ from open_clip import create_model_from_pretrained
12
+ from torch.utils.data import DataLoader
13
+ from tqdm import tqdm
14
+
15
+ from mmaudio.data.data_setup import error_avoidance_collate
16
+ from mmaudio.data.extraction.wav_dataset import WavTextClipsDataset
17
+ from mmaudio.ext.autoencoder import AutoEncoderModule
18
+ from mmaudio.ext.mel_converter import get_mel_converter
19
+
20
+ log = logging.getLogger()
21
+
22
+ torch.backends.cuda.matmul.allow_tf32 = True
23
+ torch.backends.cudnn.allow_tf32 = True
24
+
25
+ local_rank = int(os.environ['LOCAL_RANK'])
26
+ world_size = int(os.environ['WORLD_SIZE'])
27
+
28
+ # 16k
29
+ SAMPLE_RATE = 16_000
30
+ NUM_SAMPLES = 16_000 * 8
31
+ tod_vae_ckpt = './ext_weights/v1-16.pth' # vae for audio
32
+ bigvgan_vocoder_ckpt = './ext_weights/best_netG.pt' # vocoder
33
+ mode = '16k'
34
+
35
+ # 44k
36
+ # SAMPLE_RATE = 44100
37
+ # NUM_SAMPLES = 353280
38
+ # tod_vae_ckpt = './ext_weights/v1-44.pth'
39
+ # bigvgan_vocoder_ckpt = None
40
+ # mode = '44k'
41
+
42
+
43
+ def distributed_setup():
44
+ distributed.init_process_group(backend="nccl")
45
+ local_rank = distributed.get_rank()
46
+ world_size = distributed.get_world_size()
47
+ print(f'Initialized: local_rank={local_rank}, world_size={world_size}')
48
+ return local_rank, world_size
49
+
50
+
51
+ @torch.inference_mode()
52
+ def main():
53
+ distributed_setup()
54
+
55
+ parser = ArgumentParser()
56
+ parser.add_argument('--data_dir', type=Path, default='./training/example_audios/')
57
+ parser.add_argument('--captions_tsv', type=Path, default='./training/example_audio.tsv')
58
+ parser.add_argument('--clips_tsv', type=Path, default='./training/example_output/clips.tsv')
59
+ parser.add_argument('--latent_dir',
60
+ type=Path,
61
+ default='./training/example_output/audio-latents')
62
+ parser.add_argument('--output_dir',
63
+ type=Path,
64
+ default='./training/example_output/memmap/audio-example')
65
+ parser.add_argument('--batch_size', type=int, default=32)
66
+ parser.add_argument('--num_workers', type=int, default=8)
67
+ args = parser.parse_args()
68
+
69
+ data_dir = args.data_dir
70
+ captions_tsv = args.captions_tsv
71
+ clips_tsv = args.clips_tsv
72
+ latent_dir = args.latent_dir
73
+ output_dir = args.output_dir
74
+ batch_size = args.batch_size
75
+ num_workers = args.num_workers
76
+
77
+ clip_model = create_model_from_pretrained('hf-hub:apple/DFN5B-CLIP-ViT-H-14-384',
78
+ return_transform=False).eval().cuda()
79
+
80
+ # a hack to make it output last hidden states
81
+ def new_encode_text(self, text, normalize: bool = False):
82
+ cast_dtype = self.transformer.get_cast_dtype()
83
+
84
+ x = self.token_embedding(text).to(cast_dtype) # [batch_size, n_ctx, d_model]
85
+
86
+ x = x + self.positional_embedding.to(cast_dtype)
87
+ x = self.transformer(x, attn_mask=self.attn_mask)
88
+ x = self.ln_final(x) # [batch_size, n_ctx, transformer.width]
89
+ return F.normalize(x, dim=-1) if normalize else x
90
+
91
+ clip_model.encode_text = new_encode_text.__get__(clip_model)
92
+
93
+ tod = AutoEncoderModule(vae_ckpt_path=tod_vae_ckpt,
94
+ vocoder_ckpt_path=bigvgan_vocoder_ckpt,
95
+ mode=mode).eval().cuda()
96
+ mel_converter = get_mel_converter(mode).eval().cuda()
97
+
98
+ dataset = WavTextClipsDataset(data_dir,
99
+ captions_tsv=captions_tsv,
100
+ clips_tsv=clips_tsv,
101
+ sample_rate=SAMPLE_RATE,
102
+ num_samples=NUM_SAMPLES,
103
+ normalize_audio=True,
104
+ reject_silent=True)
105
+ dataloader = DataLoader(dataset,
106
+ batch_size=batch_size,
107
+ shuffle=False,
108
+ num_workers=num_workers,
109
+ collate_fn=error_avoidance_collate)
110
+ latent_dir.mkdir(exist_ok=True, parents=True)
111
+
112
+ # extraction
113
+ for i, batch in tqdm(enumerate(dataloader), total=len(dataloader)):
114
+ ids = batch['id']
115
+ waveforms = batch['waveform'].cuda()
116
+ tokens = batch['tokens'].cuda()
117
+
118
+ text_features = clip_model.encode_text(tokens, normalize=True)
119
+ mel = mel_converter(waveforms)
120
+ dist = tod.encode(mel)
121
+
122
+ a_mean = dist.mean.detach().cpu().transpose(1, 2)
123
+ a_std = dist.std.detach().cpu().transpose(1, 2)
124
+ text_features = text_features.detach().cpu()
125
+
126
+ ids = [id for id in ids]
127
+ captions = [caption for caption in batch['caption']]
128
+
129
+ data = {
130
+ 'id': ids,
131
+ 'caption': captions,
132
+ 'mean': a_mean,
133
+ 'std': a_std,
134
+ 'text_features': text_features,
135
+ }
136
+
137
+ torch.save(data, latent_dir / f'r{local_rank}_{i:05d}.pth')
138
+
139
+ distributed.barrier()
140
+ # combine the results
141
+ if local_rank == 0:
142
+ print('Extraction done. Combining the results.')
143
+
144
+ list_of_ids_and_labels = []
145
+ output_data = {
146
+ 'mean': [],
147
+ 'std': [],
148
+ 'text_features': [],
149
+ }
150
+
151
+ latents = sorted(os.listdir(latent_dir))
152
+ latents = [l for l in latents if l.endswith('.pth')]
153
+ for t in tqdm(latents):
154
+ data = torch.load(latent_dir / t, weights_only=True)
155
+ bs = len(data['id'])
156
+
157
+ for bi in range(bs):
158
+ this_id = data['id'][bi]
159
+ this_caption = data['caption'][bi]
160
+
161
+ list_of_ids_and_labels.append({'id': this_id, 'caption': this_caption})
162
+ output_data['mean'].append(data['mean'][bi])
163
+ output_data['std'].append(data['std'][bi])
164
+ output_data['text_features'].append(data['text_features'][bi])
165
+
166
+ output_df = pd.DataFrame(list_of_ids_and_labels)
167
+ output_dir.mkdir(exist_ok=True, parents=True)
168
+ output_name = output_dir.stem
169
+ output_df.to_csv(output_dir.parent / f'{output_name}.tsv', sep='\t', index=False)
170
+
171
+ print(f'Output: {len(output_df)}')
172
+
173
+ output_data = {k: torch.stack(v) for k, v in output_data.items()}
174
+ td.TensorDict(output_data).memmap_(output_dir)
175
+
176
+
177
+ if __name__ == '__main__':
178
+ main()
179
+ distributed.destroy_process_group()
training/extract_video_training_latents.py ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import logging
2
+ import os
3
+ from argparse import ArgumentParser
4
+ from datetime import timedelta
5
+ from pathlib import Path
6
+
7
+ import pandas as pd
8
+ import tensordict as td
9
+ import torch
10
+ import torch.distributed as distributed
11
+ from torch.utils.data import DataLoader
12
+ from torch.utils.data.distributed import DistributedSampler
13
+ from tqdm import tqdm
14
+
15
+ from mmaudio.data.data_setup import error_avoidance_collate
16
+ from mmaudio.data.extraction.vgg_sound import VGGSound
17
+ from mmaudio.model.utils.features_utils import FeaturesUtils
18
+ from mmaudio.utils.dist_utils import local_rank, world_size
19
+
20
+ torch.backends.cuda.matmul.allow_tf32 = True
21
+ torch.backends.cudnn.allow_tf32 = True
22
+
23
+ # for the 16kHz model
24
+ #SAMPLING_RATE = 16000
25
+ #DURATION_SEC = 8.0 # todo #4.0
26
+ #NUM_SAMPLES = 128000 #64000 #128000 # todo
27
+ #vae_path = './ext_weights/v1-16.pth' # VAE for visual input
28
+ #bigvgan_path = './ext_weights/best_netG.pt' # vocoder
29
+ #mode = '16k' # {16k, 44.1k}
30
+
31
+ # for the 44.1kHz model
32
+ SAMPLING_RATE = 44100
33
+ DURATION_SEC = 8.0
34
+ NUM_SAMPLES = 353280 # 352800?
35
+ vae_path = './ext_weights/v1-44.pth'
36
+ bigvgan_path = None
37
+ mode = '44k'
38
+
39
+ synchformer_ckpt = './ext_weights/synchformer_state_dict.pth'
40
+
41
+ # per-GPU
42
+ BATCH_SIZE = 8 #16
43
+ NUM_WORKERS = 8 #16
44
+
45
+ log = logging.getLogger()
46
+ log.setLevel(logging.INFO)
47
+
48
+ data_cfg = {
49
+ #'train': {
50
+ # 'root': '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/public/kwang/datasets/vggsound/videos',
51
+ # 'subset_name': './sets/vgg-train-filtered-caption.tsv', #'./filter_dataset/filtered_vggsound/train_filter_av_align.tsv', #'./sets/vgg-train-filtered.tsv',
52
+ # 'normalize_audio': True,
53
+ #},
54
+ #'test': {
55
+ # 'root': '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/public/kwang/datasets/vggsound/videos',
56
+ # 'subset_name': './sets/vgg-test-filtered-caption.tsv', #'./filter_dataset/filtered_vggsound/test_filter_av_align.tsv', #'./sets/vgg-test-filtered.tsv',
57
+ # 'normalize_audio': False,
58
+ #},
59
+ 'val': {
60
+ 'root': '/inspire/hdd/ws-f4d69b29-e0a5-44e6-bd92-acf4de9990f0/gaopeng/public/kwang/datasets/vggsound/videos',
61
+ 'subset_name': './sets/vgg-val-filtered-caption.tsv', #'./filter_dataset/filtered_vggsound/val_filter_av_align.tsv', # './sets/vgg-val-filtered.tsv',
62
+ 'normalize_audio': False,
63
+ },
64
+ }
65
+
66
+
67
+ def distributed_setup():
68
+ distributed.init_process_group(backend="nccl", timeout=timedelta(hours=1))
69
+ log.info(f'Initialized: local_rank={local_rank}, world_size={world_size}')
70
+ return local_rank, world_size
71
+
72
+
73
+ def setup_dataset(split: str):
74
+ dataset = VGGSound(
75
+ data_cfg[split]['root'],
76
+ tsv_path=data_cfg[split]['subset_name'],
77
+ sample_rate=SAMPLING_RATE,
78
+ duration_sec=DURATION_SEC,
79
+ audio_samples=NUM_SAMPLES,
80
+ normalize_audio=data_cfg[split]['normalize_audio'],
81
+ )
82
+ sampler = DistributedSampler(dataset, rank=local_rank, shuffle=False)
83
+ loader = DataLoader(dataset,
84
+ batch_size=BATCH_SIZE,
85
+ num_workers=NUM_WORKERS,
86
+ sampler=sampler,
87
+ drop_last=False,
88
+ collate_fn=error_avoidance_collate)
89
+
90
+ return dataset, loader
91
+
92
+
93
+ @torch.inference_mode()
94
+ def extract():
95
+ # initial setup
96
+ distributed_setup()
97
+
98
+ parser = ArgumentParser()
99
+ parser.add_argument('--latent_dir',
100
+ type=Path,
101
+ default='./training/vgg_caption_filtered_output_44k/video-latents')
102
+ parser.add_argument('--output_dir', type=Path, default='./training/vgg_caption_filtered_output_44k/memmap')
103
+ args = parser.parse_args()
104
+
105
+ latent_dir = args.latent_dir
106
+ output_dir = args.output_dir
107
+
108
+ # cuda setup
109
+ torch.cuda.set_device(local_rank)
110
+ feature_extractor = FeaturesUtils(tod_vae_ckpt=vae_path,
111
+ enable_conditions=True,
112
+ bigvgan_vocoder_ckpt=bigvgan_path,
113
+ synchformer_ckpt=synchformer_ckpt,
114
+ mode=mode).eval().cuda()
115
+
116
+ for split in data_cfg.keys():
117
+ print(f'Extracting latents for the {split} split')
118
+ this_latent_dir = latent_dir / split
119
+ this_latent_dir.mkdir(parents=True, exist_ok=True)
120
+
121
+ # setup datasets
122
+ dataset, loader = setup_dataset(split)
123
+ log.info(f'Number of samples: {len(dataset)}')
124
+ log.info(f'Number of batches: {len(loader)}')
125
+
126
+ for curr_iter, data in enumerate(tqdm(loader)):
127
+ output = {
128
+ 'id': data['id'],
129
+ 'caption': data['caption'],
130
+ }
131
+
132
+ audio = data['audio'].cuda()
133
+ dist = feature_extractor.encode_audio(audio)
134
+ output['mean'] = dist.mean.detach().cpu().transpose(1, 2)
135
+ output['std'] = dist.std.detach().cpu().transpose(1, 2)
136
+
137
+ clip_video = data['clip_video'].cuda()
138
+ clip_features = feature_extractor.encode_video_with_clip(clip_video)
139
+ output['clip_features'] = clip_features.detach().cpu()
140
+
141
+ sync_video = data['sync_video'].cuda()
142
+ sync_features = feature_extractor.encode_video_with_sync(sync_video)
143
+ output['sync_features'] = sync_features.detach().cpu()
144
+
145
+ caption = data['caption']
146
+ text_features = feature_extractor.encode_text(caption)
147
+ output['text_features'] = text_features.detach().cpu()
148
+
149
+ torch.save(output, this_latent_dir / f'r{local_rank}_{curr_iter}.pth')
150
+
151
+ distributed.barrier()
152
+
153
+ # combine the results
154
+ if local_rank == 0:
155
+ print('Extraction done. Combining the results.')
156
+
157
+ used_id = set()
158
+ list_of_ids_and_labels = []
159
+ output_data = {
160
+ 'mean': [],
161
+ 'std': [],
162
+ 'clip_features': [],
163
+ 'sync_features': [],
164
+ 'text_features': [],
165
+ }
166
+
167
+ for t in tqdm(sorted(os.listdir(this_latent_dir))):
168
+
169
+ if t.split('.')[-1] != 'pth':
170
+ continue
171
+
172
+ data = torch.load(this_latent_dir / t, weights_only=True)
173
+ bs = len(data['id'])
174
+
175
+ for bi in range(bs):
176
+ this_id = data['id'][bi]
177
+ this_caption = data['caption'][bi]
178
+ if this_id in used_id:
179
+ print('Duplicate id:', this_id)
180
+ continue
181
+
182
+ list_of_ids_and_labels.append({'id': this_id, 'label': this_caption})
183
+ used_id.add(this_id)
184
+ output_data['mean'].append(data['mean'][bi])
185
+ output_data['std'].append(data['std'][bi])
186
+ output_data['clip_features'].append(data['clip_features'][bi])
187
+ output_data['sync_features'].append(data['sync_features'][bi])
188
+ output_data['text_features'].append(data['text_features'][bi])
189
+
190
+ output_dir.mkdir(parents=True, exist_ok=True)
191
+ output_df = pd.DataFrame(list_of_ids_and_labels)
192
+ output_df.to_csv(output_dir / f'vgg-{split}.tsv', sep='\t', index=False)
193
+
194
+ print(f'Output: {len(output_df)}')
195
+
196
+ output_data = {k: torch.stack(v) for k, v in output_data.items()}
197
+ td.TensorDict(output_data).memmap_(output_dir / f'vgg-{split}')
198
+
199
+ print(f'Finished combining {split} results')
200
+
201
+
202
+ if __name__ == '__main__':
203
+ extract()
204
+ distributed.destroy_process_group()
training/partition_clips.py ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ import os
3
+ from pathlib import Path
4
+
5
+ import pandas as pd
6
+ import torchaudio
7
+ from tqdm import tqdm
8
+
9
+ min_length_sec = 8.1
10
+ max_segments_per_clip = 5
11
+
12
+ parser = argparse.ArgumentParser(description='Process audio clips.')
13
+ parser.add_argument('--data_path',
14
+ type=Path,
15
+ help='Path to the directory containing audio files',
16
+ default='./training/example_audios')
17
+ parser.add_argument('--output_path',
18
+ type=Path,
19
+ help='Path to the output tsv file',
20
+ default='./training/example_output/clips.tsv')
21
+ parser.add_argument('--start', type=int, help='Start index for processing files', default=0)
22
+ parser.add_argument('--end', type=int, help='End index for processing files', default=-1)
23
+ args = parser.parse_args()
24
+
25
+ data_path = args.data_path
26
+ output_path = args.output_path
27
+ start = args.start
28
+ end = args.end
29
+
30
+ output_data = []
31
+
32
+ blacklisted = 0
33
+ if end == -1:
34
+ end = len(os.listdir(data_path))
35
+ audio_files = sorted(os.listdir(data_path))[start:end]
36
+ print(f'Processing {len(audio_files)} files from {start} to {end}')
37
+
38
+ for audio_file in tqdm(audio_files):
39
+ audio_file_path = data_path / audio_file
40
+ audio_name = audio_file_path.stem
41
+
42
+ waveform, sample_rate = torchaudio.load(audio_file_path)
43
+
44
+ # waveform: (1/2) * length
45
+ if waveform.shape[1] < sample_rate * min_length_sec:
46
+ continue
47
+
48
+ # try to partition the audio into segments, each with length of min_length_sec
49
+ segment_length = int(sample_rate * min_length_sec)
50
+ total_length = waveform.shape[1]
51
+ num_segments = min(max_segments_per_clip, total_length // segment_length)
52
+ if num_segments > 1:
53
+ segment_interval = (total_length - segment_length) // (num_segments - 1)
54
+ else:
55
+ segment_interval = 0
56
+
57
+ for i in range(num_segments):
58
+ start_sample = i * segment_interval
59
+ end_sample = start_sample + segment_length
60
+ audio_id = f'{audio_name}_{i}'
61
+ output_data.append((audio_id, audio_name, start_sample, end_sample))
62
+
63
+ output_path.parent.mkdir(parents=True, exist_ok=True)
64
+ output_df = pd.DataFrame(output_data, columns=['id', 'name', 'start_sample', 'end_sample'])
65
+ output_df.to_csv(output_path, index=False, sep='\t')