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

[WIP] Use jack module from system #83

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Use jack module from system
  • Loading branch information
Vampouille committed Sep 30, 2019
commit 1bbae40830433ccf2df5a81ab6fd261584f0bdcd
2 changes: 2 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Build-Depends: debhelper (>= 9),
dh-python,
python3-all (>= 3.3),
python3-cffi (>= 1.12),
python3-jack-client (>=0.4.5),
python3-numpy (>= 1.16),
python3-pyqt5 (>= 5.11),
python3-setuptools,
Expand All @@ -18,6 +19,7 @@ Depends: ${shlibs:Depends}, ${misc:Depends},
libjack-jackd2-dev,
libsndfile1-dev,
python3-cffi (>= 1.12),
python3-jack-client (>=0.4.5),
python3-numpy (>= 1.16),
python3-pyqt5 (>= 5.11),
python3-soundfile (>= 0.10),
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
SoundFile>=0.10
JACK-Client>=0.4.5
PyQt5>=5.11
SoundFile>=0.10
numpy>=1.16
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
author_email='superboucle@nura.eu',
description='Loop application synced with jack transport',
long_description=open('readme.md').read(),
install_requires=["SoundFile>=0.10", "PyQt5>=5.11", "numpy>=1.16"],
install_requires=["JACK-Client>=0.4.5",
"PyQt5>=5.11",
"SoundFile>=0.10",
"numpy>=1.16"],
include_package_data=True,
url='http://superboucle.nura.eu',
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion superboucle/boucle.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"""JACK client that prints all received MIDI events."""

import superboucle.jack as jack
import jack
import sys, os.path
from superboucle.clip import Clip, Song, load_song_from_file
from superboucle.gui import Gui
Expand Down
Loading