This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Goal : instantly play any wav source without download the file and without <audio/> | |
Idea is to use the fetch streaming API and pass raw data to web audio | |
My use case is playng a wav file | |
following http://stackoverflow.com/questions/38589614/webaudio-streaming-with-fetch-domexception-unable-to-decode-audio-data/38593356#38593356 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$theme: ( | |
color: ( | |
primary: ( | |
50: #e3f2fd, | |
100: #bbdefb, | |
200: #90caf9, | |
300: #64b5f6, | |
400: #42a5f5, | |
500: #2196f3, | |
600: #1e88e5, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: gpl-3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { IParamsObject, ISearchParams } from '@sp-model/globalSearch.model'; | |
import { Observable } from 'rxjs/Observable'; | |
import { timer } from 'rxjs/observable/timer'; | |
import { merge } from 'rxjs/observable/merge'; | |
import { distinctUntilKeyChanged } from 'rxjs/operators/distinctUntilKeyChanged'; | |
import { filter } from 'rxjs/operators/filter'; | |
import { map } from 'rxjs/operators/map'; | |
import { mapTo } from 'rxjs/operators/mapTo'; | |
import { switchMap } from 'rxjs/operators/switchMap'; | |
import { takeUntil } from 'rxjs/operators/takeUntil'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Injectable } from '@angular/core'; | |
import { AppEventsService } from '@sp-services/app-events/app-events.service'; | |
import { ISearchPartyResponse } from '@sp-services/party/party.interfaces'; | |
import { PartyService } from '@sp-services/party/party.service'; | |
import { UiStateStore } from '@sp-store/ui-state/ui-state.store'; | |
import { Observable } from 'rxjs/Observable'; | |
import { of } from 'rxjs/observable/of'; | |
import { catchError } from 'rxjs/operators/catchError'; | |
import { debounceTime } from 'rxjs/operators/debounceTime'; | |
import { distinctUntilChanged } from 'rxjs/operators/distinctUntilChanged'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit | |
border: no | |
scrolling: yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
NewerOlder