Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
engine
Commits
6e67d441
Commit
6e67d441
authored
3 years ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
Comment out unused fallback mixer. #79
parent
163960de
No related branches found
No related tags found
No related merge requests found
Pipeline
#1142
passed
3 years ago
Stage: test
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/client/connector.py
+1
-1
1 addition, 1 deletion
src/client/connector.py
src/engine.py
+4
-4
4 additions, 4 deletions
src/engine.py
src/mixer.py
+8
-8
8 additions, 8 deletions
src/mixer.py
src/plugins/monitor.py
+1
-1
1 addition, 1 deletion
src/plugins/monitor.py
with
14 additions
and
14 deletions
src/client/connector.py
+
1
−
1
View file @
6e67d441
...
...
@@ -96,7 +96,7 @@ class PlayerConnector():
func
=
getattr
(
lqs_instance
,
command
)
result
=
func
(
str
(
namespace
),
*
args
)
elif
namespace
==
"
mixer
"
or
namespace
==
"
mixer_fallback
"
:
elif
namespace
==
"
mixer
"
:
#
or namespace == "mixer_fallback":
func
=
getattr
(
lqs_instance
,
command
)
result
=
func
(
str
(
namespace
),
*
args
)
else
:
...
...
This diff is collapsed.
Click to expand it.
src/engine.py
+
4
−
4
View file @
6e67d441
...
...
@@ -187,7 +187,7 @@ class Player:
channel_router
=
None
event_dispatcher
=
None
mixer
=
None
mixer_fallback
=
None
#
mixer_fallback = None
...
...
@@ -204,7 +204,7 @@ class Player:
self
.
connector
=
connector
self
.
channel_router
=
ChannelRouter
(
self
.
config
,
self
.
logger
)
self
.
mixer
=
Mixer
(
self
.
config
,
MixerType
.
MAIN
,
self
.
connector
)
self
.
mixer_fallback
=
Mixer
(
self
.
config
,
MixerType
.
FALLBACK
,
self
.
connector
)
#
self.mixer_fallback = Mixer(self.config, MixerType.FALLBACK, self.connector)
...
...
@@ -313,8 +313,8 @@ class Player:
channel_type
=
self
.
channel_router
.
type_of_channel
(
entry
.
channel
)
mixer
=
self
.
mixer
if
channel_type
==
ChannelType
.
FALLBACK_QUEUE
:
mixer
=
self
.
mixer_fallback
#
if channel_type == ChannelType.FALLBACK_QUEUE:
#
mixer = self.mixer_fallback
# Instant activation or fade-in
self
.
connector
.
enable_transaction
()
...
...
This diff is collapsed.
Click to expand it.
src/mixer.py
+
8
−
8
View file @
6e67d441
...
...
@@ -34,7 +34,7 @@ class MixerType(Enum):
Types of mixers mapped to the Liquidsoap mixer ids.
"""
MAIN
=
"
mixer
"
FALLBACK
=
"
mixer_fallback
"
#
FALLBACK = "mixer_fallback"
...
...
@@ -169,7 +169,7 @@ class Mixer():
def
mixer_channels_reload
(
self
):
"""
Reloads all mixer channels.
Reloads all mixer channels.
"""
self
.
channels
=
None
return
self
.
mixer_channels
()
...
...
@@ -185,7 +185,7 @@ class Mixer():
Args:
channel (Channel): The channel
Returns:
(Integer): The channel number
"""
...
...
@@ -203,7 +203,7 @@ class Mixer():
Args:
channel_number (Integer): The channel number
Returns:
(String): Channel status info as a String
"""
...
...
@@ -239,7 +239,7 @@ class Mixer():
"""
Combined call of following to save execution time:
- Select some mixer channel
- Increase the volume to 100,
- Increase the volume to 100,
Args:
pos (Integer): The channel number
...
...
@@ -331,7 +331,7 @@ class Mixer():
Args:
channel (Channel): The channel to fade
volume (Integer): The target volume
Returns:
(Boolean): `True` if successful
"""
...
...
@@ -383,11 +383,11 @@ class Mixer():
def
fade_out
(
self
,
channel
,
volume
=
None
):
"""
Performs a fade-out for the given channel starting at it
'
s current volume.
Args:
channel (Channel): The channel to fade
volume (Integer): The start volume
Returns:
(Boolean): `True` if successful
"""
...
...
This diff is collapsed.
Click to expand it.
src/plugins/monitor.py
+
1
−
1
View file @
6e67d441
...
...
@@ -220,7 +220,7 @@ class AuraMonitor:
self
.
status
[
"
lqs
"
][
"
uptime
"
]
=
self
.
engine
.
uptime
()
self
.
status
[
"
lqs
"
][
"
io
"
]
=
self
.
get_io_state
()
self
.
status
[
"
lqs
"
][
"
mixer
"
]
=
self
.
engine
.
player
.
mixer
.
mixer_status
()
self
.
status
[
"
lqs
"
][
"
mixer_fallback
"
]
=
self
.
engine
.
player
.
mixer_fallback
.
mixer_status
()
#
self.status["lqs"]["mixer_fallback"] = self.engine.player.mixer_fallback.mixer_status()
self
.
engine
.
player
.
connector
.
disable_transaction
()
self
.
status
[
"
api
"
][
"
steering
"
][
"
url
"
]
=
self
.
config
.
get
(
"
api_steering_status
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment