Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aura-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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Lars Kruse
aura-engine
Commits
d584a00c
Commit
d584a00c
authored
4 years ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
Activate and deactivate channel.
parent
d455d410
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/communication/liquidsoap/playerclient.py
+80
-52
80 additions, 52 deletions
modules/communication/liquidsoap/playerclient.py
with
80 additions
and
52 deletions
modules/communication/liquidsoap/playerclient.py
+
80
−
52
View file @
d584a00c
...
@@ -28,7 +28,10 @@ from modules.communication.liquidsoap.client import LiquidSoapClient
...
@@ -28,7 +28,10 @@ from modules.communication.liquidsoap.client import LiquidSoapClient
class
LiquidSoapPlayerClient
(
LiquidSoapClient
):
class
LiquidSoapPlayerClient
(
LiquidSoapClient
):
# ------------------------------------------------------------------------------------------ #
#
# Mixer
#
def
mixer
(
self
,
command
,
*
args
):
def
mixer
(
self
,
command
,
*
args
):
if
command
==
"
status
"
:
if
command
==
"
status
"
:
return
self
.
mixerstatus
(
*
args
)
return
self
.
mixerstatus
(
*
args
)
...
@@ -37,27 +40,83 @@ class LiquidSoapPlayerClient(LiquidSoapClient):
...
@@ -37,27 +40,83 @@ class LiquidSoapPlayerClient(LiquidSoapClient):
return
self
.
mixerinputs
()
return
self
.
mixerinputs
()
if
command
==
"
volume
"
:
if
command
==
"
volume
"
:
return
self
.
mixervolume
(
*
args
)
return
self
.
mixer
_
volume
(
*
args
)
if
command
==
"
select
"
:
if
command
==
"
select
"
:
if
len
(
args
)
==
2
:
if
len
(
args
)
==
2
:
return
self
.
mixerselect
(
args
[
0
],
args
[
1
])
return
self
.
mixer_select
(
args
[
0
],
args
[
1
])
if
command
==
"
activate
"
:
if
len
(
args
)
==
2
:
return
self
.
mixer_activate
(
args
[
0
],
args
[
1
])
return
"
LiquidSoapPlayerClient does not understand mixer.
"
+
command
+
str
(
args
)
return
"
LiquidSoapPlayerClient does not understand mixer.
"
+
command
+
str
(
args
)
# ------------------------------------------------------------------------------------------ #
# ------------------------------------------------------------------------------------------ #
def
recorder
(
self
,
num
,
command
,
*
args
):
def
mixerinputs
(
self
):
if
command
==
"
status
"
:
# send
command
return
self
.
recorderstatus
(
num
)
self
.
command
(
"
mixer
"
,
"
inputs
"
)
if
co
mmand
==
"
start
"
:
#
co
nvert to list and return it
return
self
.
recorderstart
(
num
)
return
self
.
message
.
strip
().
split
(
'
'
)
if
command
==
"
stop
"
:
# ------------------------------------------------------------------------------------------ #
return
self
.
recorderstop
(
num
)
def
mixerstatus
(
self
,
pos
=
""
):
"""
Get state of a source in the mixer
@type pos: string
@param pos: Mixerposition
@rtype: string
@return: Response from LiquidSoap
"""
self
.
command
(
"
mixer
"
,
"
status
"
,
str
(
pos
))
return
self
.
message
return
"
LiquidSoapPlayerClient does not understand mixer.
"
+
command
+
str
(
args
)
def
mixer_volume
(
self
,
pos
,
volume
):
"""
Sets some mixer channel to the given volume
Args:
pos (Integer): The channel number
volume (Integer): The volume
Returns:
(String): Liquidsoap server response
"""
self
.
command
(
"
mixer
"
,
"
volume
"
,
str
(
pos
)
+
"
"
+
str
(
volume
))
return
self
.
message
def
mixer_select
(
self
,
pos
,
select
):
"""
Selects some mixer channel or vice versa.
Args:
pos (Integer): The channel number
select (Boolean): Select or deselect
Returns:
(String): Liquidsoap server response
"""
self
.
command
(
"
mixer
"
,
"
select
"
,
str
(
pos
)
+
"
"
+
str
(
select
).
lower
())
return
self
.
message
def
mixer_activate
(
self
,
pos
,
activate
):
"""
Selects some mixer channel and increases the volume to 100 or vice versa.
Args:
pos (Integer): The channel number
activate (Boolean): Activate or deactivate
Returns:
(String): Liquidsoap server response
"""
self
.
command
(
"
mixer
"
,
"
activate
"
,
str
(
pos
)
+
"
"
+
str
(
activate
).
lower
())
return
self
.
message
#
#
...
@@ -66,10 +125,11 @@ class LiquidSoapPlayerClient(LiquidSoapClient):
...
@@ -66,10 +125,11 @@ class LiquidSoapPlayerClient(LiquidSoapClient):
def
playlist_push
(
self
,
channel
,
uri
):
def
playlist_push
(
self
,
channel
,
uri
):
"""
"""
Pushs the passed file URI to the playlist channel.
Push
e
s the passed file URI to the playlist channel.
Args:
Args:
channel (String): Liquidsoap Channel ID
channel (String): Liquidsoap Channel ID
uri (String): Path to the file
"""
"""
self
.
command
(
channel
,
'
push
'
,
uri
)
self
.
command
(
channel
,
'
push
'
,
uri
)
return
self
.
message
return
self
.
message
...
@@ -183,51 +243,19 @@ class LiquidSoapPlayerClient(LiquidSoapClient):
...
@@ -183,51 +243,19 @@ class LiquidSoapPlayerClient(LiquidSoapClient):
return
self
.
message
return
self
.
message
# ------------------------------------------------------------------------------------------ #
# ------------------------------------------------------------------------------------------ #
def
mixerinputs
(
self
):
def
recorder
(
self
,
num
,
command
,
*
args
):
# send
command
if
command
==
"
status
"
:
self
.
command
(
"
mixer
"
,
"
inputs
"
)
return
self
.
recorderstatus
(
num
)
#
co
nvert to list and return it
if
co
mmand
==
"
start
"
:
return
self
.
message
.
strip
().
split
(
'
'
)
return
self
.
recorderstart
(
num
)
# ------------------------------------------------------------------------------------------ #
if
command
==
"
stop
"
:
def
mixerstatus
(
self
,
pos
=
""
):
return
self
.
recorderstop
(
num
)
"""
Get state of a source in the mixer
@type pos: string
@param pos: Mixerposition
@rtype: string
@return: Response from LiquidSoap
"""
self
.
command
(
"
mixer
"
,
"
status
"
,
str
(
pos
))
return
self
.
message
# ------------------------------------------------------------------------------------------ #
return
"
LiquidSoapPlayerClient does not understand mixer.
"
+
command
+
str
(
args
)
def
mixerselect
(
self
,
pos
,
activate
):
"""
Kanal/Source aktivieren
@type pos: string
@param pos: Die Position
@type namespace: string
@param namespace: Namespace der Source
@rtype: string
@return: Die Antwort des Liquidsoap-Servers
"""
self
.
command
(
"
mixer
"
,
"
select
"
,
str
(
pos
)
+
"
"
+
str
(
activate
).
lower
())
return
self
.
message
# ------------------------------------------------------------------------------------------ #
def
mixervolume
(
self
,
pos
,
volume
):
"""
set channel volume
:param pos:
:param volume:
:return:
"""
self
.
command
(
"
mixer
"
,
"
volume
"
,
str
(
pos
)
+
"
"
+
str
(
volume
))
return
self
.
message
# ------------------------------------------------------------------------------------------ #
# ------------------------------------------------------------------------------------------ #
# def recorderstatus(self, num):
# def recorderstatus(self, num):
...
...
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