Fix script_load_modules test failures in power sequencer

This commit is contained in:
Brecht Van Lommel 2019-09-08 13:55:01 +02:00
parent 547f313f07
commit 69d8bf08be
3 changed files with 8 additions and 8 deletions

View File

@ -16,10 +16,6 @@
#
import numpy as np
from scipy.signal import hamming, lfilter
from scipy.fftpack import fft
from scipy.fftpack.realtransforms import dct
from .trfbank import trfbank
from .segment_axis import segment_axis
@ -56,6 +52,10 @@ def mfcc(input, nwin=256, nfft=512, fs=16000, nceps=13):
spoken sentences", IEEE Trans. Acoustics. Speech, Signal Proc.
ASSP-28 (4): 357-366, August 1980."""
from scipy.signal import hamming, lfilter
from scipy.fftpack import fft
from scipy.fftpack.realtransforms import dct
# MFCC parameters: taken from auditory toolbox
over = nwin - 160
# Pre-emphasis factor (to take into account the -6dB/octave rolloff of the

View File

@ -14,8 +14,6 @@
# You should have received a copy of the GNU General Public License along with Power Sequencer. If
# not, see <https://www.gnu.org/licenses/>.
#
from setuptools import setup
def readme():
with open("README.rst") as f:
@ -23,6 +21,8 @@ def readme():
if __name__ == "__main__":
from setuptools import setup
setup(
name="bpsproxy",
version="0.1.3.post1",

View File

@ -14,8 +14,6 @@
# You should have received a copy of the GNU General Public License along with Power Sequencer. If
# not, see <https://www.gnu.org/licenses/>.
#
from setuptools import setup
def readme():
with open("README.rst") as f:
@ -23,6 +21,8 @@ def readme():
if __name__ == "__main__":
from setuptools import setup
setup(
name="bpsrender",
version="0.1.40.post1",