kopia lustrzana https://gitlab.com/zeograd/rnsutils
rodzic
bbde89f956
commit
c5652e22d4
|
@ -1,4 +1,4 @@
|
||||||
## [Unreleased]
|
## [0.9.0] - 2017-02-08
|
||||||
### Added
|
### Added
|
||||||
- added support for midi key influence to pitch = 0% to enable drum kit like sf2 converts
|
- added support for midi key influence to pitch = 0% to enable drum kit like sf2 converts
|
||||||
- added keymap expansion when converting sf2 (to fill all key range)
|
- added keymap expansion when converting sf2 (to fill all key range)
|
||||||
|
|
|
@ -32,7 +32,7 @@ renoise instrument.
|
||||||
[-o OUTPUT_DIR] [-t TEMPLATE]
|
[-o OUTPUT_DIR] [-t TEMPLATE]
|
||||||
sf2_filename [sf2_filename ...]
|
sf2_filename [sf2_filename ...]
|
||||||
|
|
||||||
GPL v3+ 2016 Olivier Jolly
|
GPL v3+ 2016-2017 Olivier Jolly
|
||||||
|
|
||||||
positional arguments:
|
positional arguments:
|
||||||
sf2_filename input file in SoundFont2 format
|
sf2_filename input file in SoundFont2 format
|
||||||
|
@ -111,7 +111,7 @@ case sensitive filesystem). As SFZ support in Renoise will progress, this conver
|
||||||
[-t TEMPLATE] [-u] [--no-unused]
|
[-t TEMPLATE] [-u] [--no-unused]
|
||||||
sfz_filename [sfz_filename ...]
|
sfz_filename [sfz_filename ...]
|
||||||
|
|
||||||
GPL v3+ 2016 Olivier Jolly
|
GPL v3+ 2016-2017 Olivier Jolly
|
||||||
|
|
||||||
positional arguments:
|
positional arguments:
|
||||||
sfz_filename input file in SFZ format
|
sfz_filename input file in SFZ format
|
||||||
|
|
|
@ -31,7 +31,7 @@ from sf2utils.generator import Sf2Gen
|
||||||
from sf2utils.sf2parse import Sf2File
|
from sf2utils.sf2parse import Sf2File
|
||||||
|
|
||||||
__date__ = '2016-01-22'
|
__date__ = '2016-01-22'
|
||||||
__updated__ = '2016-04-05'
|
__updated__ = '2017-02-08'
|
||||||
__author__ = 'olivier@pcedev.com'
|
__author__ = 'olivier@pcedev.com'
|
||||||
|
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ def main(argv=None):
|
||||||
|
|
||||||
program_version_string = 'sf2toxrni %s (%s)' % (program_version, program_build_date)
|
program_version_string = 'sf2toxrni %s (%s)' % (program_version, program_build_date)
|
||||||
program_longdesc = '''Convert sf2 file into renoise instrument'''
|
program_longdesc = '''Convert sf2 file into renoise instrument'''
|
||||||
program_license = "GPL v3+ 2016 Olivier Jolly"
|
program_license = "GPL v3+ 2016-2017 Olivier Jolly"
|
||||||
|
|
||||||
if argv is None:
|
if argv is None:
|
||||||
argv = sys.argv[1:]
|
argv = sys.argv[1:]
|
||||||
|
|
|
@ -29,7 +29,7 @@ from rnsutils.instrument import RenoiseInstrument, second_to_renoise_time, db_to
|
||||||
from rnsutils.utils import ENCODING_NONE, ENCODING_FLAC, ENCODING_OGG, encode_audio_file
|
from rnsutils.utils import ENCODING_NONE, ENCODING_FLAC, ENCODING_OGG, encode_audio_file
|
||||||
|
|
||||||
__date__ = '2016-01-28'
|
__date__ = '2016-01-28'
|
||||||
__updated__ = '2017-02-03'
|
__updated__ = '2017-02-08'
|
||||||
__author__ = 'olivier@pcedev.com'
|
__author__ = 'olivier@pcedev.com'
|
||||||
|
|
||||||
|
|
||||||
|
@ -291,12 +291,12 @@ class SfzToXrni(object):
|
||||||
|
|
||||||
def main(argv=None):
|
def main(argv=None):
|
||||||
program_name = os.path.basename(sys.argv[0])
|
program_name = os.path.basename(sys.argv[0])
|
||||||
program_version = "v0.8"
|
program_version = "v0.9"
|
||||||
program_build_date = "%s" % __updated__
|
program_build_date = "%s" % __updated__
|
||||||
|
|
||||||
program_version_string = 'sfztoxrni %s (%s)' % (program_version, program_build_date)
|
program_version_string = 'sfztoxrni %s (%s)' % (program_version, program_build_date)
|
||||||
program_longdesc = '''Convert SFZ file into renoise instrument'''
|
program_longdesc = '''Convert SFZ file into renoise instrument'''
|
||||||
program_license = "GPL v3+ 2016 Olivier Jolly"
|
program_license = "GPL v3+ 2016-2017 Olivier Jolly"
|
||||||
|
|
||||||
if argv is None:
|
if argv is None:
|
||||||
argv = sys.argv[1:]
|
argv = sys.argv[1:]
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -23,7 +23,7 @@ setup(
|
||||||
# Versions should comply with PEP440. For a discussion on single-sourcing
|
# Versions should comply with PEP440. For a discussion on single-sourcing
|
||||||
# the version across setup.py and the project code, see
|
# the version across setup.py and the project code, see
|
||||||
# https://packaging.python.org/en/latest/single_source_version.html
|
# https://packaging.python.org/en/latest/single_source_version.html
|
||||||
version='0.8.0',
|
version='0.9.0',
|
||||||
|
|
||||||
description='Renoise library and utilities',
|
description='Renoise library and utilities',
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
@ -87,7 +87,7 @@ setup(
|
||||||
# your project is installed. For an analysis of "install_requires" vs pip's
|
# your project is installed. For an analysis of "install_requires" vs pip's
|
||||||
# requirements files see:
|
# requirements files see:
|
||||||
# https://packaging.python.org/en/latest/requirements.html
|
# https://packaging.python.org/en/latest/requirements.html
|
||||||
install_requires=['lxml', 'sf2utils>=0.8.0'],
|
install_requires=['lxml', 'sf2utils>=0.9.0'],
|
||||||
|
|
||||||
# List additional groups of dependencies here (e.g. development
|
# List additional groups of dependencies here (e.g. development
|
||||||
# dependencies). You can install these using the following syntax,
|
# dependencies). You can install these using the following syntax,
|
||||||
|
|
Ładowanie…
Reference in New Issue