Skip to content

Instantly share code, notes, and snippets.

@yomguy
Created September 27, 2013 08:29
Show Gist options
  • Save yomguy/6725655 to your computer and use it in GitHub Desktop.
Save yomguy/6725655 to your computer and use it in GitHub Desktop.
python-timeside 0.4.3 first tests
root@ns224730:~/timeside# python tests/alltests.py
[TestAnalyzing]
Test mean DC shift ... ERROR
Test max level ... ERROR
Test mean level ... ERROR
[TestComponentArchitecture]
Test abstract implementation ... ok
Test that a component doesn't implement the interface implemented by its parent ... ok
Test implementation redundancy across inheritance ... ok
Test @interfacedoc on static method (decorators reversed) ... ok
Test @interfacedoc decorator ... ok
Test @interfacedoc with unexistant method in interface ... ok
Test @interfacedoc decorator on static method ... ok
Test whether a component implements an interface's parent ... ok
Test a component implementing one interface ... ok
Test an interface implemented by two components ... ok
Test a component implementing two interfaces ... ok
[TestDecoding]
Test flac decoding ... ERROR
Test mp3 decoding ... ERROR
Test ogg decoding ... ERROR
Test wav decoding ... ERROR
Test 32kHz wav decoding ... ERROR
Test mono wav decoding ... ERROR
[TestDecodingLongBlock]
Test flac decoding ... ERROR
Test mp3 decoding ... ERROR
Test ogg decoding ... ERROR
Test wav decoding ... ERROR
Test 32kHz wav decoding ... ERROR
Test mono wav decoding ... ERROR
[TestDecodingMonoDownsampling]
Test flac decoding ... ERROR
Test mp3 decoding ... ERROR
Test ogg decoding ... ERROR
Test wav decoding ... ERROR
Test 32kHz wav decoding ... ERROR
Test mono wav decoding ... ERROR
[TestDecodingMonoUpsampling]
Test flac decoding ... ERROR
Test mp3 decoding ... ERROR
Test ogg decoding ... ERROR
Test wav decoding ... ERROR
Test 32kHz wav decoding ... ERROR
Test mono wav decoding ... ERROR
[TestDecodingShortBlock]
Test flac decoding ... ERROR
Test mp3 decoding ... ERROR
Test ogg decoding ... ERROR
Test wav decoding ... ERROR
Test 32kHz wav decoding ... ERROR
Test mono wav decoding ... ERROR
[TestDecodingStereo]
Test flac decoding ... ERROR
Test mp3 decoding ... ERROR
Test ogg decoding ... ERROR
Test wav decoding ... ERROR
Test 32kHz wav decoding ... ERROR
Test mono wav decoding ... ERROR
[TestDecodingStereoDownsampling]
Test flac decoding ... ERROR
Test mp3 decoding ... ERROR
Test ogg decoding ... ERROR
Test wav decoding ... ERROR
Test 32kHz wav decoding ... ERROR
Test mono wav decoding ... ERROR
[TestDecodingStereoUpsampling]
Test flac decoding ... ERROR
Test mp3 decoding ... ERROR
Test ogg decoding ... ERROR
Test wav decoding ... ERROR
Test 32kHz wav decoding ... ERROR
Test mono wav decoding ... ERROR
[TestDecodingWrongFiles]
Test decoding dev null ... ERROR
Test decoding empty file ... ERROR
Test decoding missing file ... ok
Test decoding file withouth audio stream ... ERROR
[TestEncoding]
Test flac encoding ... ERROR
Test mp3 encoding ... ERROR
Test vorbis encoding ... ERROR
Test wav encoding ... ERROR
[TestEncodingHighSamplerate]
Test flac encoding ... ERROR
Test mp3 encoding ... ERROR
Test vorbis encoding ... ERROR
Test wav encoding ... ERROR
[TestEncodingLongBlock]
Test flac encoding ... ERROR
Test mp3 encoding ... ERROR
Test vorbis encoding ... ERROR
Test wav encoding ... ERROR
[TestEncodingLowSamplerate]
Test flac encoding ... ERROR
Test mp3 encoding ... ERROR
Test vorbis encoding ... ERROR
Test wav encoding ... ERROR
[TestEncodingOverwriteFails]
Test flac encoding ... ok
Test mp3 encoding ... ok
Test vorbis encoding ... ok
Test wav encoding ... ok
Test webm encoding ... ok
[TestEncodingOverwriteForced]
Test flac encoding ... ok
Test mp3 encoding ... ok
Test vorbis encoding ... ok
Test wav encoding ... ok
[TestEncodingShortBlock]
Test flac encoding ... ERROR
Test mp3 encoding ... ERROR
Test vorbis encoding ... ERROR
Test wav encoding ... ERROR
[TestEncodingStereo]
Test flac encoding ... ERROR
Test mp3 encoding ... ERROR
Test vorbis encoding ... ERROR
Test wav encoding ... ERROR
[TestEncodingToDevNull]
Test flac encoding ... ERROR
Test mp3 encoding ... ERROR
Test vorbis encoding ... ERROR
Test wav encoding ... ERROR
[TestEncodingToDirectory]
Test flac encoding ... ok
Test mp3 encoding ... ok
Test vorbis encoding ... ok
Test wav encoding ... ok
[TestFixedSizeInputAdapter]
Test automatic padding support ... ok
Test a stream which contain a multiple number of buffers ... ok
Test simple stream with two channels ... ok
[TestGraphing]
Test FLAC to Spectrogram ... ERROR
Test FLAC to Waveform ... ERROR
Test FLAC to WaveformContourBlack ... ERROR
Test FLAC to WaveformContourWhite ... ERROR
Test MP3 to Spectrogram ... ERROR
Test MP3 to Waveform ... ERROR
Test MP3 to WaveformContourBlack ... ERROR
Test MP3 to WaveformContourWhite ... ERROR
Test OGG to Spectrogram ... ERROR
Test OGG to Waveform ... ERROR
Test OGG to WaveformContourBlack ... ERROR
Test OGG to WaveformContourWhite ... ERROR
Test WAV to Spectrogram ... ERROR
Test WAV to Waveform ... ERROR
Test WAV to WaveformContourBlack ... ERROR
Test WAV to WaveformContourWhite ... ERROR
Test WAV to WaveformSimple ... ERROR
[TestTranscodingFrom32kHzWav]
Test conversion to mp3 ... ERROR
Test conversion to ogg ... ERROR
Test conversion to wav ... ERROR
[TestTranscodingFromAnotherWav]
Test conversion to mp3 ... ERROR
Test conversion to ogg ... ERROR
Test conversion to wav ... ERROR
[TestTranscodingFromFlac]
Test conversion to mp3 ... ERROR
Test conversion to ogg ... ERROR
Test conversion to wav ... ERROR
[TestTranscodingFromMissingFile]
Test conversion to mp3 ... ok
Test conversion to ogg ... ok
Test conversion to wav ... ok
[TestTranscodingFromMonoWav]
Test conversion to mp3 ... ERROR
Test conversion to ogg ... ERROR
Test conversion to wav ... ERROR
[TestTranscodingFromMp3]
Test conversion to mp3 ... ERROR
Test conversion to ogg ... ERROR
Test conversion to wav ... ERROR
[TestTranscodingFromOgg]
Test conversion to mp3 ... ERROR
Test conversion to ogg ... ERROR
Test conversion to wav ... ERROR
[TestTranscodingFromWav]
Test conversion to mp3 ... ERROR
Test conversion to ogg ... ERROR
Test conversion to wav ... ERROR
======================================================================
ERROR: Test mean DC shift
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testanalyzing.py", line 32, in tearDown
(decoder | self.analyzer).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test max level
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testanalyzing.py", line 32, in tearDown
(decoder | self.analyzer).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mean level
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testanalyzing.py", line 32, in tearDown
(decoder | self.analyzer).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test flac decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mp3 decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test ogg decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test 32kHz wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mono wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test flac decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mp3 decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test ogg decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test 32kHz wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mono wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test flac decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mp3 decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test ogg decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test 32kHz wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mono wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test flac decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mp3 decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test ogg decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test 32kHz wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mono wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test flac decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mp3 decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test ogg decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test 32kHz wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mono wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test flac decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mp3 decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test ogg decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test 32kHz wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mono wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test flac decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mp3 decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test ogg decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test 32kHz wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mono wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test flac decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mp3 decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test ogg decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test 32kHz wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test mono wav decoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 57, in tearDown
decoder.setup(samplerate = self.samplerate, channels = self.channels, blocksize = self.blocksize)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test decoding dev null
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 152, in testDevNull
self.assertRaises(IOError, FileDecoder.setup, decoder)
File "/usr/lib/python2.7/unittest/case.py", line 476, in assertRaises
callableObj(*args, **kwargs)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test decoding empty file
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 166, in testEmptyFile
self.assertRaises(IOError, FileDecoder.setup, decoder)
File "/usr/lib/python2.7/unittest/case.py", line 476, in assertRaises
callableObj(*args, **kwargs)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test decoding file withouth audio stream
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testdecoding.py", line 158, in testNoAudioStream
self.assertRaises(IOError, FileDecoder.setup, decoder)
File "/usr/lib/python2.7/unittest/case.py", line 476, in assertRaises
callableObj(*args, **kwargs)
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test flac encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/flac.py", line 50, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test mp3 encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/mp3.py", line 59, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test vorbis encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/ogg.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test wav encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/wav.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test flac encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/flac.py", line 50, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test mp3 encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/mp3.py", line 59, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test vorbis encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/ogg.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test wav encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/wav.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test flac encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/flac.py", line 50, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test mp3 encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/mp3.py", line 59, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test vorbis encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/ogg.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test wav encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/wav.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test flac encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/flac.py", line 50, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test mp3 encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/mp3.py", line 59, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test vorbis encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/ogg.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test wav encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/wav.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test flac encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/flac.py", line 50, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test mp3 encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/mp3.py", line 59, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test vorbis encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/ogg.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test wav encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/wav.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test flac encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/flac.py", line 50, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test mp3 encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/mp3.py", line 59, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test vorbis encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/ogg.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test wav encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/wav.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test flac encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/flac.py", line 50, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test mp3 encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/mp3.py", line 59, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test vorbis encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/ogg.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test wav encoding
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testencoding.py", line 50, in tearDown
self.encoder.setup(channels = self.channels, samplerate = self.samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/wav.py", line 52, in setup
self.start_pipeline(channels, samplerate)
File "/usr/lib/python2.7/dist-packages/timeside/encoder/core.py", line 63, in start_pipeline
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "appsrc"
======================================================================
ERROR: Test FLAC to Spectrogram
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test FLAC to Waveform
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test FLAC to WaveformContourBlack
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test FLAC to WaveformContourWhite
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test MP3 to Spectrogram
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test MP3 to Waveform
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test MP3 to WaveformContourBlack
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test MP3 to WaveformContourWhite
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test OGG to Spectrogram
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test OGG to Waveform
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test OGG to WaveformContourBlack
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test OGG to WaveformContourWhite
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test WAV to Spectrogram
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test WAV to Waveform
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test WAV to WaveformContourBlack
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test WAV to WaveformContourWhite
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test WAV to WaveformSimple
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testgraphing.py", line 141, in tearDown
(decoder | self.grapher).run()
File "/usr/lib/python2.7/dist-packages/timeside/core.py", line 213, in run
source.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to mp3
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to ogg
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to wav
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to mp3
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to ogg
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to wav
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to mp3
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to ogg
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to wav
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to mp3
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to ogg
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to wav
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to mp3
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to ogg
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to wav
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to mp3
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to ogg
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to wav
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to mp3
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to ogg
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
======================================================================
ERROR: Test conversion to wav
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/timeside/tests/testtranscoding.py", line 59, in tearDown
self.setUpDecoder()
File "/root/timeside/tests/testtranscoding.py", line 51, in setUpDecoder
self.decoder.setup()
File "/usr/lib/python2.7/dist-packages/timeside/decoder/core.py", line 88, in setup
self.pipeline = gst.parse_launch(self.pipe)
GError: no element "uridecodebin"
----------------------------------------------------------------------
Ran 151 tests in 0.045s
FAILED (errors=120)
Exception AttributeError: "'NoneType' object has no attribute 'release'" in <bound method WaveformContourWhite.__del__ of <timeside.grapher.waveform_contour_wh.WaveformContourWhite object at 0x161b450>> ignored
Exception AttributeError: "'NoneType' object has no attribute 'release'" in <bound method WaveformContourBlack.__del__ of <timeside.grapher.waveform_contour_bk.WaveformContourBlack object at 0x161b410>> ignored
Exception AttributeError: "'NoneType' object has no attribute 'release'" in <bound method WaveformContourWhite.__del__ of <timeside.grapher.waveform_contour_wh.WaveformContourWhite object at 0x161b350>> ignored
Exception AttributeError: "'NoneType' object has no attribute 'release'" in <bound method WaveformContourBlack.__del__ of <timeside.grapher.waveform_contour_bk.WaveformContourBlack object at 0x161b310>> ignored
Exception AttributeError: "'NoneType' object has no attribute 'release'" in <bound method WaveformContourWhite.__del__ of <timeside.grapher.waveform_contour_wh.WaveformContourWhite object at 0x161b250>> ignored
Exception AttributeError: "'NoneType' object has no attribute 'release'" in <bound method WaveformContourBlack.__del__ of <timeside.grapher.waveform_contour_bk.WaveformContourBlack object at 0x161b210>> ignored
Exception AttributeError: "'NoneType' object has no attribute 'release'" in <bound method WaveformContourWhite.__del__ of <timeside.grapher.waveform_contour_wh.WaveformContourWhite object at 0x1612fd0>> ignored
Exception AttributeError: "'NoneType' object has no attribute 'release'" in <bound method WaveformContourBlack.__del__ of <timeside.grapher.waveform_contour_bk.WaveformContourBlack object at 0x1612f90>> ignored
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment