![]() |
|
convolution with acourate fir filter - Printable Version +- MinimServer Forum (https://forum.minimserver.com) +-- Forum: MinimServer (/forumdisplay.php?fid=1) +--- Forum: MinimStreamer (/forumdisplay.php?fid=11) +--- Thread: convolution with acourate fir filter (/showthread.php?tid=4457) |
RE: convolution with acourate fir filter - Alandbush - 10-12-2018 00:27 (09-12-2018 22:10)SMSWAP Wrote:(09-12-2018 21:46)simoncn Wrote: I think the problem is caused by having -version in the convOut string. Please try removing this. My apologies for providing poor information that caused you both problems. I thought I had used that command as part of convout myself but I have found previous notes etc. that showed I had invoked ffmpeg directly with just the -version command. Glad it is now working for you. RE: convolution with acourate fir filter - SMSWAP - 10-12-2018 07:27 (10-12-2018 00:27)Alandbush Wrote:(09-12-2018 22:10)SMSWAP Wrote:(09-12-2018 21:46)simoncn Wrote: I think the problem is caused by having -version in the convOut string. Please try removing this. Thanks Alan. Well, it was a learning
RE: convolution with acourate fir filter - SMSWAP - 13-01-2019 13:19 Hi Simon & the Other Experts, while Minim is working absolutely fine with the latest updates, I have tried the recommended changes to suppress the click in-between tracks: convOut=-i f:\mark_gb\Cor1S44.wav -filter_complex [0]apad=pad_len=32768[2];[2][1]afir[3];[3]atrim=start_sample=32768 When applying it, I get an error message (incorrect values). Has anybody tested it? Cheers, SMSWAP RE: convolution with acourate fir filter - simoncn - 13-01-2019 13:48 Try this instead: convOut={-i f:\mark_gb\Cor1S44.wav -lavfi apad=pad_len=32768,afir,atrim=start_sample=32768} RE: convolution with acourate fir filter - SMSWAP - 13-01-2019 14:29 (13-01-2019 13:48)simoncn Wrote: Try this instead: This gives again the error message: "options incorrect for converter" Regards, SMSWAP RE: convolution with acourate fir filter - simoncn - 13-01-2019 16:10 Which version of ffmpeg are you using as the stream converter program? RE: convolution with acourate fir filter - SMSWAP - 13-01-2019 18:18 (13-01-2019 16:10)simoncn Wrote: Which version of ffmpeg are you using as the stream converter program? Version 4.1 RE: convolution with acourate fir filter - simoncn - 13-01-2019 21:28 Does the file f:\mark_gb\Cor1S44.wav exist on the machine you are using to run MinimServer? RE: convolution with acourate fir filter - SMSWAP - 14-01-2019 07:35 (13-01-2019 21:28)simoncn Wrote: Does the file f:\mark_gb\Cor1S44.wav exist on the machine you are using to run MinimServer? No. Mine is a QNAP, so the file stream.options looks like this: convOut=-i /share/CACHEDEV1_DATA/Music/ConvolutionFiles/Cor1S*.wav -lavfi afir Cheers, SSMWAP RE: convolution with acourate fir filter - simoncn - 14-01-2019 15:15 OK, so this would mean you need: convOut={-i /share/CACHEDEV1_DATA/Music/ConvolutionFiles/Cor1S44.wav -lavfi apad=pad_len=32768,afir,atrim=start_sample=32768} This is because the Cor1S*.wav setting doesn't work when you use the above setting (starting apad...) for -lavfi. This will be fixed in the next test build. |