Post Reply 
Use multiple FFMPEG filters
09-10-2023, 12:26 (This post was last modified: 09-10-2023 12:27 by lafuente.)
Post: #1
Use multiple FFMPEG filters
Hello,

I'm sure that this question was already asked many times. I can't really find the relevant answer :-(

I'd like to use 2 filters with FFMPEG and MinimStreamer.

Currently I use :
Code:
convOut=-af aresample=resampler=soxr:precision=33:cheby=1:dither_method=triangular

To this, I'd like to add :
Code:
bass=g=3:f=110:w=0.6

I tried :
Code:
convOut=-af aresample=resampler=soxr:precision=33:cheby=1:dither_method=triangular[2];[2]bass=g=3:f=110:w=0.6

But this don't work. Can someone point me to the right syntax ?
Thank you,
Manu
Find all posts by this user
Quote this message in a reply
09-10-2023, 17:32
Post: #2
RE: Use multiple FFMPEG filters
Try this:

Code:
convOut=-af "aresample=resampler=soxr:precision=33:cheby=1:dither_method=triangular,bass=g=3:​f=110:w=0.6"
Find all posts by this user
Quote this message in a reply
09-10-2023, 18:26
Post: #3
RE: Use multiple FFMPEG filters
Hello Simon,

Thank you. Your arguments line don't work. But I finally had something that work with the previous command :

Code:
convOut=-af aresample=resampler=soxr:precision=33:cheby=1:dither_method=triangular[2];[2]bass=g=3:f=110:w=0.6

It was a typo problem. I typed / instead of :

Anyway, the result was no "so good"...

Best regards,
Manu
Find all posts by this user
Quote this message in a reply
09-10-2023, 19:56
Post: #4
RE: Use multiple FFMPEG filters
I copied and pasted this string and it is working for me. i don't know why it didn't work for you. Do you have FFmpeg installed with libsoxr enabled?
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)