Fix pylint long line warning
This commit is contained in:
parent
d04b4c3181
commit
c30720f81a
@ -42,8 +42,11 @@ class GStreamerProcess(BaseProcess):
|
||||
http://jameswestby.net/weblog/tech/14-caution-python-multiprocessing-and-glib-dont-mix.html.
|
||||
"""
|
||||
|
||||
pipeline_description = \
|
||||
'appsrc name=src uridecodebin name=uri ! volume name=volume ! autoaudiosink'
|
||||
pipeline_description = ' ! '.join([
|
||||
'appsrc name=src uridecodebin name=uri',
|
||||
'volume name=volume',
|
||||
'autoaudiosink name=sink',
|
||||
])
|
||||
|
||||
def __init__(self, core_queue, output_queue):
|
||||
super(GStreamerProcess, self).__init__()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user