<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, Jan 30, 2021 at 11:08 PM Paul B Mahol <<a href="mailto:onemda@gmail.com">onemda@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, Jan 30, 2021 at 11:00 PM ilkercan Kaya <<a href="mailto:canilkerkaya@gmail.com" target="_blank">canilkerkaya@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="auto"><div dir="auto">Hi Everyone, </div><div dir="auto"><br></div>I am making a mobile music app where the user can add FX to current playing music through a two dimensional pad. I am using FFmpeg, libavfilter in C++ to add FX to the audio. In FFmpeg you can create an audio filter and set it parameters and initialize a graph.<div dir="auto"><br></div><div dir="auto">My problem is since the user will use a FX pad to change these parameters with their fingers I need to be able to modify these parameters during runtime. </div><div dir="auto"><br></div><div dir="auto">Looking at ffmpeg filter documentation, it says the following:</div><div dir="auto"><br></div><div dir="auto">"Some options can be changed during the operation of the filter using a command. These options are marked ’T’ on the output of ffmpeg -h filter=. The name of the command is the name of the option and the argument is the new value."</div><div dir="auto"><br></div><div dir="auto">I looked at aecho, agate, acrusher and more but nearly all the effects I want have 0 modifiable option which makes my FX pad nonadjustable.</div><div dir="auto"><br></div><div dir="auto">Is there a way to make ffmpeg audio filters change their parameters during runtime?</div><div dir="auto"><br></div><div dir="auto">I could really use the help, thank you! </div></div></blockquote><div><br></div><div>It is currently not implemented, because nobody needed such feature.</div><div><br></div><div>Latest git ffmpeg master, have T support for agate and acompressor and couple others. </div></div></div></blockquote><div><br></div><div>Also you really want both T and C (and S if performance is important)</div><div>C is for commands</div><div>T is for timeline with enable options.</div><div><br></div><div>Also that documentation is wrong, C is flag you need.</div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="auto"><div dir="auto"><br></div></div>
_______________________________________________<br>
Libav-user mailing list<br>
<a href="mailto:Libav-user@ffmpeg.org" target="_blank">Libav-user@ffmpeg.org</a><br>
<a href="https://ffmpeg.org/mailman/listinfo/libav-user" rel="noreferrer" target="_blank">https://ffmpeg.org/mailman/listinfo/libav-user</a><br>
<br>
To unsubscribe, visit link above, or email<br>
<a href="mailto:libav-user-request@ffmpeg.org" target="_blank">libav-user-request@ffmpeg.org</a> with subject "unsubscribe".</blockquote></div></div>
</blockquote></div></div>