-
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.
- Refactoring function `__callback__(...)` - Update function `recofigurate(...)` - Fixed typing
- Loading branch information
Showing
14 changed files
with
210 additions
and
126 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "seaplayer-audio" | ||
version = "0.5.5" | ||
version = "0.5.12" | ||
description = "A library for async/sync playback audio." | ||
repository = "https://github.com/romanin-rf/seaplayer-audio" | ||
authors = ["Romanin <[email protected]>"] | ||
|
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,2 +1,8 @@ | ||
from .fileaudiosource import FileAudioSource, AsyncFileAudioSource | ||
from .urlio import URLIO | ||
from .urlio import URLIO | ||
|
||
|
||
__all__ = [ | ||
'FileAudioSource', 'AsyncFileAudioSource', | ||
'URLIO' | ||
] |
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
Empty file.
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,8 +1,8 @@ | ||
from .threadstreamersnd import ThreadSoundDeviceStreamer, AsyncThreadSoundDeviceStreamer | ||
from .callbackstreamersnd import CallbackSoundDeviceStreamer, AsyncCallbackSoundDeviceStreamer | ||
from .callbackstreamersnd import CallbackSoundDeviceStreamer, AsyncCallbackSoundDeviceStreamer, CallbackSettingsFlag | ||
|
||
|
||
__all__ = [ | ||
'ThreadSoundDeviceStreamer', 'AsyncThreadSoundDeviceStreamer', | ||
'CallbackSoundDeviceStreamer', 'AsyncCallbackSoundDeviceStreamer' | ||
'CallbackSoundDeviceStreamer', 'AsyncCallbackSoundDeviceStreamer', 'CallbackSettingsFlag' | ||
] |
Oops, something went wrong.