diff src/app/app.module.ts @ 44:13f5f228ed98

Add a component for the feature extraction menu, and start setting up some comms with the worker. Currently populating a select box with list of extractors from hardcoded server.
author Lucas Thompson <dev@lucas.im>
date Fri, 02 Dec 2016 16:55:14 +0000
parents f7244f2155a3
children d4ebafe32c23
line wrap: on
line diff
--- a/src/app/app.module.ts	Fri Dec 02 16:44:11 2016 +0000
+++ b/src/app/app.module.ts	Fri Dec 02 16:55:14 2016 +0000
@@ -10,6 +10,7 @@
 import { PlaybackControlComponent } from './playback-control/playback-control.component';
 import { AudioPlayerService } from "./services/audio-player/audio-player.service";
 import { FeatureExtractionService } from "./services/feature-extraction/feature-extraction.service";
+import { FeatureExtractionMenuComponent } from "./feature-extraction-menu/feature-extraction-menu.component";
 
 function createAudioContext(): AudioContext {
   return new (
@@ -23,7 +24,8 @@
     AppComponent,
     WaveformComponent,
     AudioFileOpenComponent,
-    PlaybackControlComponent
+    PlaybackControlComponent,
+    FeatureExtractionMenuComponent
   ],
   imports: [
     BrowserModule,