-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbatch_processor.py
More file actions
405 lines (319 loc) · 11.3 KB
/
batch_processor.py
File metadata and controls
405 lines (319 loc) · 11.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
#!/usr/bin/env python3
"""
Batch Processing Module for FORGE v1
====================================
Provides batch processing capabilities for all core operations:
- Batch stem separation
- Batch loop extraction
- Batch vocal chop generation
- Batch MIDI extraction
- Batch drum one-shot generation
Author: NeuralWorkstation Team
License: MIT
"""
import os
import json
from pathlib import Path
from typing import List, Dict, Any, Optional, Callable
from datetime import datetime
import traceback
from concurrent.futures import ThreadPoolExecutor, as_completed
import gradio as gr
# Import core functions from app
from app import (
separate_stems_demucs,
extract_loops,
generate_vocal_chops,
extract_midi,
generate_drum_oneshots,
setup_directories
)
class BatchProcessor:
"""
Handles batch processing operations with progress tracking and error handling.
"""
def __init__(self, max_workers: int = 2):
"""
Initialize batch processor.
Args:
max_workers: Maximum number of parallel workers (default: 2 for safety)
"""
self.max_workers = max_workers
self.results = []
self.errors = []
def process_batch(
self,
files: List[str],
operation: Callable,
operation_name: str,
**kwargs
) -> Dict[str, Any]:
"""
Process multiple files with a given operation.
Args:
files: List of file paths to process
operation: Function to call for each file
operation_name: Name of the operation for logging
**kwargs: Additional arguments to pass to the operation
Returns:
Dictionary with results and errors
"""
self.results = []
self.errors = []
total_files = len(files)
processed = 0
print(f"\n🔄 Starting batch {operation_name} for {total_files} files...")
for file_path in files:
try:
print(f" Processing: {Path(file_path).name}")
result = operation(audio_path=file_path, **kwargs)
self.results.append({
'file': file_path,
'success': True,
'result': result
})
processed += 1
print(f" ✅ Success ({processed}/{total_files})")
except Exception as e:
error_msg = f"{str(e)}\n{traceback.format_exc()}"
self.errors.append({
'file': file_path,
'error': error_msg
})
print(f" ❌ Error: {str(e)}")
success_count = len(self.results)
error_count = len(self.errors)
summary = {
'total': total_files,
'success': success_count,
'errors': error_count,
'results': self.results,
'error_details': self.errors
}
print(f"\n✅ Batch complete: {success_count} succeeded, {error_count} failed")
return summary
def save_batch_report(self, summary: Dict[str, Any], operation_name: str) -> str:
"""
Save batch processing report to JSON file.
Args:
summary: Batch processing summary
operation_name: Name of the operation
Returns:
Path to saved report file
"""
# Create reports directory
reports_dir = Path('output/batch_reports')
reports_dir.mkdir(parents=True, exist_ok=True)
# Generate report filename
timestamp = datetime.now().strftime('%Y%m%d_%H%M%S')
report_path = reports_dir / f"batch_{operation_name}_{timestamp}.json"
# Save report
with open(report_path, 'w') as f:
json.dump(summary, f, indent=2, default=str)
print(f"📄 Report saved: {report_path}")
return str(report_path)
def batch_separate_stems(
files: List[str],
model: str = 'htdemucs',
use_cache: bool = True,
progress=gr.Progress()
) -> str:
"""
Batch stem separation using Demucs.
Args:
files: List of audio file paths
model: Demucs model to use
use_cache: Whether to use cached results
progress: Gradio progress tracker
Returns:
Summary message with results
"""
if not files:
return "❌ No files provided"
progress(0, desc=f"Starting batch stem separation for {len(files)} files...")
processor = BatchProcessor(max_workers=1) # Demucs is heavy, use 1 worker
# Create mock progress for individual operations
mock_progress = type('MockProgress', (), {'__call__': lambda self, *args, **kwargs: None})()
summary = processor.process_batch(
files=files,
operation=separate_stems_demucs,
operation_name="stem_separation",
model=model,
use_cache=use_cache,
progress=mock_progress
)
report_path = processor.save_batch_report(summary, "stem_separation")
progress(1.0, desc="Batch processing complete!")
return f"""
✅ Batch Stem Separation Complete
📊 Results:
- Total files: {summary['total']}
- Successful: {summary['success']}
- Failed: {summary['errors']}
📄 Report: {report_path}
"""
def batch_extract_loops(
files: List[str],
loop_duration: float = 4.0,
aperture: float = 0.5,
num_loops: int = 5,
progress=gr.Progress()
) -> str:
"""
Batch loop extraction from multiple audio files.
Args:
files: List of audio file paths
loop_duration: Duration of each loop in seconds
aperture: Aperture control (0-1)
num_loops: Number of loops to extract per file
progress: Gradio progress tracker
Returns:
Summary message with results
"""
if not files:
return "❌ No files provided"
progress(0, desc=f"Starting batch loop extraction for {len(files)} files...")
processor = BatchProcessor(max_workers=2)
mock_progress = type('MockProgress', (), {'__call__': lambda self, *args, **kwargs: None})()
summary = processor.process_batch(
files=files,
operation=extract_loops,
operation_name="loop_extraction",
loop_duration=loop_duration,
aperture=aperture,
num_loops=num_loops,
progress=mock_progress
)
report_path = processor.save_batch_report(summary, "loop_extraction")
progress(1.0, desc="Batch processing complete!")
return f"""
✅ Batch Loop Extraction Complete
📊 Results:
- Total files: {summary['total']}
- Successful: {summary['success']}
- Failed: {summary['errors']}
- Loops extracted: {sum(len(r['result']) for r in summary['results'])}
📄 Report: {report_path}
"""
def batch_generate_chops(
files: List[str],
mode: str = 'onset',
min_duration: float = 0.1,
max_duration: float = 2.0,
threshold: float = 0.3,
progress=gr.Progress()
) -> str:
"""
Batch vocal chop generation from multiple audio files.
Args:
files: List of audio file paths
mode: Detection mode ('silence', 'onset', 'hybrid')
min_duration: Minimum chop duration
max_duration: Maximum chop duration
threshold: Detection threshold
progress: Gradio progress tracker
Returns:
Summary message with results
"""
if not files:
return "❌ No files provided"
progress(0, desc=f"Starting batch chop generation for {len(files)} files...")
processor = BatchProcessor(max_workers=2)
mock_progress = type('MockProgress', (), {'__call__': lambda self, *args, **kwargs: None})()
summary = processor.process_batch(
files=files,
operation=generate_vocal_chops,
operation_name="chop_generation",
mode=mode,
min_duration=min_duration,
max_duration=max_duration,
threshold=threshold,
progress=mock_progress
)
report_path = processor.save_batch_report(summary, "chop_generation")
progress(1.0, desc="Batch processing complete!")
return f"""
✅ Batch Chop Generation Complete
📊 Results:
- Total files: {summary['total']}
- Successful: {summary['success']}
- Failed: {summary['errors']}
- Chops created: {sum(len(r['result']) for r in summary['results'])}
📄 Report: {report_path}
"""
def batch_extract_midi(
files: List[str],
progress=gr.Progress()
) -> str:
"""
Batch MIDI extraction from multiple audio files.
Args:
files: List of audio file paths
progress: Gradio progress tracker
Returns:
Summary message with results
"""
if not files:
return "❌ No files provided"
progress(0, desc=f"Starting batch MIDI extraction for {len(files)} files...")
processor = BatchProcessor(max_workers=2)
mock_progress = type('MockProgress', (), {'__call__': lambda self, *args, **kwargs: None})()
summary = processor.process_batch(
files=files,
operation=extract_midi,
operation_name="midi_extraction",
progress=mock_progress
)
report_path = processor.save_batch_report(summary, "midi_extraction")
progress(1.0, desc="Batch processing complete!")
return f"""
✅ Batch MIDI Extraction Complete
📊 Results:
- Total files: {summary['total']}
- Successful: {summary['success']}
- Failed: {summary['errors']}
📄 Report: {report_path}
"""
def batch_generate_drum_oneshots(
files: List[str],
min_duration: float = 0.05,
max_duration: float = 0.5,
apply_fadeout: bool = True,
progress=gr.Progress()
) -> str:
"""
Batch drum one-shot generation from multiple audio files.
Args:
files: List of audio file paths
min_duration: Minimum one-shot duration
max_duration: Maximum one-shot duration
apply_fadeout: Whether to apply fade-out
progress: Gradio progress tracker
Returns:
Summary message with results
"""
if not files:
return "❌ No files provided"
progress(0, desc=f"Starting batch drum one-shot generation for {len(files)} files...")
processor = BatchProcessor(max_workers=2)
mock_progress = type('MockProgress', (), {'__call__': lambda self, *args, **kwargs: None})()
summary = processor.process_batch(
files=files,
operation=generate_drum_oneshots,
operation_name="drum_oneshot_generation",
min_duration=min_duration,
max_duration=max_duration,
apply_fadeout=apply_fadeout,
progress=mock_progress
)
report_path = processor.save_batch_report(summary, "drum_oneshot_generation")
progress(1.0, desc="Batch processing complete!")
return f"""
✅ Batch Drum One-Shot Generation Complete
📊 Results:
- Total files: {summary['total']}
- Successful: {summary['success']}
- Failed: {summary['errors']}
- One-shots created: {sum(len(r['result']) for r in summary['results'])}
📄 Report: {report_path}
"""