Hi friend, it's not a 360 Karaoke, i'm just need to change the audio pitch from the normal media.
Look, we have in english a lot synonym word, i'm searching synonym right now from pitch and i have "tone" "hue" "pitch" etc... i'm looking into the class this words to finally found how change the TONE/PITCH of AUDIO. (i know that is not hue) let get next word.
this code bellow show the ModuleDescription of scaletempo_pitch Audio pitch changer Pitch Shifter, now i'm looking how to use Audio Filters.
Code: Select all
List<ModuleDescription> audioFilters = vlcPlayer.mediaPlayerFactory().application().audioFilters();
for(int i = 0; i < audioFilters.size(); i ++ ) {
dump(i, audioFilters.get(i));
}
private static void dump(int i, ModuleDescription moduleDescription) {
System.out.printf(FORMAT_PATTERN, String.valueOf(i + 1), moduleDescription.name(), moduleDescription.shortName(), moduleDescription.longName(), formatHelp(moduleDescription.help()));
}
private static String formatHelp(String help) {
return help != null ? help.replaceAll("\\n", " ") : "";
}
i think i need somethink like a Audio Filter to change the pitch, someone know audio filter ?
Thank's.