-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
562 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,4 @@ playlist-out/* | |
formant-out-*/ | ||
out*.wav | ||
packages/ | ||
otherbuilds/docker/Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ | ||
|
||
/* | ||
Rubber Band Library | ||
An audio time-stretching and pitch-shifting library. | ||
Copyright 2007-2022 Particular Programs Ltd. | ||
This program is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU General Public License as | ||
published by the Free Software Foundation; either version 2 of the | ||
License, or (at your option) any later version. See the file | ||
COPYING included with this distribution for more information. | ||
Alternatively, if you have a valid commercial licence for the | ||
Rubber Band Library obtained by agreement with the copyright | ||
holders, you may redistribute and/or modify it under the terms | ||
described in that licence. | ||
If you wish to distribute code using the Rubber Band Library | ||
under terms other than those of the GNU General Public License, | ||
you must obtain a valid commercial licence before doing so. | ||
*/ | ||
|
||
package com.breakfastquay.rubberband; | ||
|
||
public class RubberBandLiveShifter | ||
{ | ||
public RubberBandLiveShifter(int sampleRate, int channels, | ||
int options) { | ||
handle = 0; | ||
initialise(sampleRate, channels, options); | ||
} | ||
|
||
public native void dispose(); | ||
|
||
public native void reset(); | ||
|
||
public native void setPitchScale(double scale); | ||
|
||
public native int getChannelCount(); | ||
public native double getPitchScale(); | ||
|
||
public native int getStartDelay(); | ||
|
||
public native void setFormantOption(int options); | ||
|
||
public native int getBlockSize(); | ||
|
||
public native void shift(float[][] input, int inOffset, float[][] output, int outOffset); | ||
public void shift(float[][] input, float[][] output) { | ||
shift(input, 0, output, 0); | ||
} | ||
|
||
private native void initialise(int sampleRate, int channels, int options); | ||
private long handle; | ||
|
||
public static final int OptionWindowShort = 0x00000000; | ||
public static final int OptionWindowMedium = 0x00100000; | ||
|
||
public static final int OptionFormantShifted = 0x00000000; | ||
public static final int OptionFormantPreserved = 0x01000000; | ||
|
||
public static final int OptionChannelsApart = 0x00000000; | ||
public static final int OptionChannelsTogether = 0x10000000; | ||
|
||
static { | ||
System.loadLibrary("rubberband-jni"); | ||
} | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
FROM ubuntu:22.04 | ||
MAINTAINER Chris Cannam <[email protected]> | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
software-properties-common \ | ||
build-essential \ | ||
pkg-config \ | ||
libsamplerate0-dev \ | ||
libsndfile1-dev \ | ||
libfftw3-dev \ | ||
ladspa-sdk \ | ||
lv2-dev \ | ||
vamp-plugin-sdk \ | ||
libboost-test-dev \ | ||
mercurial \ | ||
ninja-build \ | ||
plocate | ||
|
||
RUN apt-get install -y \ | ||
openjdk-21-jdk | ||
|
||
WORKDIR /root | ||
|
||
ADD https://github.com/mesonbuild/meson/releases/download/1.5.2/meson-1.5.2.tar.gz . | ||
RUN tar xvf meson-1.5.2.tar.gz | ||
RUN ln -s $(pwd)/meson-1.5.2/meson.py /usr/bin/meson | ||
|
||
RUN hg clone -u [[REVISION]] https://hg.sr.ht/~breakfastquay/rubberband | ||
|
||
WORKDIR rubberband | ||
|
||
RUN meson setup build | ||
RUN ninja -C build | ||
RUN meson test -C build | ||
|
||
WORKDIR build | ||
|
||
RUN java -Djava.library.path=$(pwd) -cp rubberband-test.jar com.breakfastquay.rubberband.test.RubberBandTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
|
||
revision=$(hg id | sed 's/[^0-9a-z].*$//') | ||
|
||
cat Dockerfile.in | perl -p -e "s/\[\[REVISION\]\]/$revision/g" > Dockerfile | ||
|
||
sudo docker build -f Dockerfile . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.