Working on processors a tiny bit
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import type { AudioProcessor } from './AudioProcessor';
|
||||
import type { AudioProcessor, ProcessorCategory } from './AudioProcessor';
|
||||
|
||||
export class Reverser implements AudioProcessor {
|
||||
getName(): string {
|
||||
@ -9,6 +9,10 @@ export class Reverser implements AudioProcessor {
|
||||
return 'Plays the sound backwards';
|
||||
}
|
||||
|
||||
getCategory(): ProcessorCategory {
|
||||
return 'Time';
|
||||
}
|
||||
|
||||
process(
|
||||
leftChannel: Float32Array,
|
||||
rightChannel: Float32Array
|
||||
|
||||
Reference in New Issue
Block a user