-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* midiplayer with fluidsynth support * updated midiplayer version * set parcel version fix to 1.12.3 due this bug: parcel-bundler/parcel#5955 * midi player version up to 9 * midiplayer update * buffersize, repo url options added * midiplayer version updated * * midipayer updated * audio buffer size option removed * unused code removed * midiplayer updated * midiplayer version updated * midiplayer updated * version updated * deactivated source maps for dev scripts, because it fails to compile, due the js-synthesizer script is loaded using parcels fs process * midi player version updated * update test * version updated * midiplayer version updated Co-authored-by: samba <samba@manjaro>
- Loading branch information
1 parent
f7c7b71
commit de4cfd4
Showing
8 changed files
with
469 additions
and
8,885 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
import { PlayerState as _PlayerSate} from "@werckmeister/midiplayer"; | ||
|
||
export enum PlayerState { | ||
Playing, | ||
Stopped, | ||
Paused | ||
} | ||
Stopped = _PlayerSate.Stopped, | ||
Preparing = _PlayerSate.Preparing, | ||
Playing = _PlayerSate.Playing, | ||
Stopping = _PlayerSate.Stopping | ||
} |
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