Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/logging action py #44

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_action():

def get_dirac():
link_args = ['-framework', 'Carbon'] if is_mac else []
compile_args = [] if is_windows else ['-Wno-unused']
compile_args = [] if is_windows else ['-Wno-unused', '-Wno-error=format-security']

pydirac = os.path.join('external', 'pydirac225')
lib_sources = [os.path.join(pydirac, 'diracmodule.cpp'), os.path.join(pydirac, 'source', 'Dirac_LE.cpp')]
Expand Down Expand Up @@ -77,10 +77,10 @@ def get_soundtouch():

if is_linux:
sources += ['cpu_detect_x86_gcc.cpp']
extra_compile_args = ['-O3', '-Wno-unused']
extra_compile_args = ['-O3', '-Wno-unused', '-Wno-error=format-security']
elif is_mac:
sources += ['cpu_detect_x86_gcc.cpp']
extra_compile_args = ['-O3', '-Wno-unused']
extra_compile_args = ['-O3', '-Wno-unused', '-Wno-error=format-security']
elif is_windows:
sources += ['cpu_detect_x86_win.cpp', '3dnow_win.cpp']
pysoundtouch = os.path.join('external', 'pysoundtouch14', 'libsoundtouch')
Expand Down
1 change: 1 addition & 0 deletions src/echonest/remix/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import os
import dirac
import sys
import logging
from numpy import zeros, multiply, float32, mean, copy
from math import atan, pi
from echonest.remix.audio import assemble, AudioData
Expand Down