bytedeco/javacv

Do you support rubberband filter?

Open

#2.130 geöffnet am 20. Nov. 2023

Auf GitHub ansehen
 (7 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Java (1.583 Forks)batch import
enhancementhelp wanted

Repository-Metriken

Stars
 (6.985 Stars)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

I want to execute the ffmpeg command in Android. I have introduced the Javacv ffmpeg library in the project, and I used the following method to call the ffmpeg command

String ffmpeg = Loader.load(org.bytedeco.ffmpeg.ffmpeg.class);
ProcessBuilder processBuilder = new ProcessBuilder(ffmpeg, "-i", "1.mp3");

but, I have found that this ffmpeg does not support rubberband filters. May I know what to do

I need to use this filter to change the pitch of the audio

https://ffmpeg.org/ffmpeg-filters.html#rubberband

Contributor Guide