Skip to content

Commit

Permalink
Created a new example application that resynthesizes pitch annotation…
Browse files Browse the repository at this point in the history
…s. Small change to the envelope follower was needed.
  • Loading branch information
JorenSix committed Dec 19, 2012
1 parent d842769 commit c24850a
Show file tree
Hide file tree
Showing 5 changed files with 498 additions and 4 deletions.
34 changes: 32 additions & 2 deletions build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@
</target>

<!-- builds all examples -->
<target name="build_examples" depends="example_advanced_audio_player,example_delay_effect,example_goertzel_algorithm,example_oscilloscope,example_percussion_detector,example_pitch_detector,example_spectrogram,example_sound_detector,example_time_stretch,example_utter_asterisk,example_feature_extractor,example_synthesis,example_pitch_shift,example_sample_extractor" />
<target name="build_examples" depends="example_advanced_audio_player,example_delay_effect,example_goertzel_algorithm,example_oscilloscope,example_percussion_detector,example_pitch_detector,example_spectrogram,example_sound_detector,example_time_stretch,example_utter_asterisk,example_feature_extractor,example_synthesis,example_pitch_shift,example_sample_extractor,example_resynthesizer" />

<!-- builds a release: all examples, documentation and library in the correct folders-->
<target name="release" depends="javadoc,tarsos_dsp_library,example_advanced_audio_player,example_delay_effect,example_goertzel_algorithm,example_oscilloscope,example_percussion_detector,example_pitch_detector,example_spectrogram,example_sound_detector,example_time_stretch,example_utter_asterisk,example_feature_extractor,example_synthesis,example_pitch_shift,example_sample_extractor">
<target name="release" depends="javadoc,tarsos_dsp_library,example_advanced_audio_player,example_delay_effect,example_goertzel_algorithm,example_oscilloscope,example_percussion_detector,example_pitch_detector,example_spectrogram,example_sound_detector,example_time_stretch,example_utter_asterisk,example_feature_extractor,example_synthesis,example_pitch_shift,example_sample_extractor,example_resynthesizer">

<copy todir="TarsosDSP-${version}-Documentation">
<fileset dir="../doc" />
Expand Down Expand Up @@ -569,4 +569,34 @@
</fileset>
</jar>
</target>

<target name="example_resynthesizer" depends="compile">
<jar destfile="Resynthesizer-${version}.jar" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Main-Class" value="be.hogent.tarsos.dsp.example.Resynthesizer" />
<attribute name="Class-Path" value="." />

<!-- Standard manifest attributes -->
<attribute name="Implementation-Version" value="${version}-${DSTAMP}" />
<attribute name="Built-By" value="${built_by}" />
<attribute name="Created-By" value="${built_by}" />
<attribute name="Built-Date" value="${TODAY}" />
</manifest>

<!-- include class files -->
<fileset dir="../bin">
<exclude name="**/*.wav" />
<exclude name="**/test/**" />
</fileset>

<!-- include source files -->
<fileset dir="../src">
<include name="**/*.java" />
</fileset>
<fileset dir="../examples">
<exclude name="**/*.wav" />
<include name="**/*.java" />
</fileset>
</jar>
</target>
</project>
Loading

0 comments on commit c24850a

Please sign in to comment.