Re: [FFmpeg-user] minterpolate only frames 3, 8, 13, 18, etc.

2020-04-05 Thread Mark Filipak
Example: filter? option? value? option? value? vvv v v ffmpeg -i input -filter:a loudnorm=print_format=summary:linear=true output ^ ^

Re: [FFmpeg-user] minterpolate only frames 3, 8, 13, 18, etc.

2020-04-05 Thread Mark Filipak
On 04/05/2020 06:01 AM, Moritz Barsnick wrote: Mark, On Sun, Apr 05, 2020 at 04:53:26 -0400, Mark Filipak wrote: Correction... (This is not my day -- going stir crazy). You have disputed it before, but here it goes again. You keep opening new threads with the same or almost same topic by

Re: [FFmpeg-user] minterpolate only frames 3, 8, 13, 18, etc.

2020-04-05 Thread Moritz Barsnick
Mark, On Sun, Apr 05, 2020 at 04:53:26 -0400, Mark Filipak wrote: > Correction... (This is not my day -- going stir crazy). You have disputed it before, but here it goes again. You keep opening new threads with the same or almost same topic by writing new emails. This will make people miss

[FFmpeg-user] minterpolate only frames 3, 8, 13, 18, etc.

2020-04-05 Thread Mark Filipak
Correction... (This is not my day -- going stir crazy). Here's a pseudo-'C' sketch of what I'm trying to do: ffmpeg -i IN -filter_complex "split[A][B],[A]drop((n+1)%10==3|(n+1)%10==8)[C],[B]drop(!((n+1)%10==3&!(n+1)%10==8)[D],[D]minterpolate(mi_mode=mci(mc_mode=obmc),scd=none)[E],[C][E]merge"

[FFmpeg-user] minterpolate only frames 3, 8, 13, 18, etc.

2020-04-04 Thread Mark Filipak
Here's a pseudo-'C' sketch of what I'm trying to do: ffmpeg -i IN -filter_complex "split[A][B],[A]drop((n+1)%10==3|(n+1)%10==8)[C],[B]drop(!drop((n+1)%10==3&!(n+1)%10==8)[D],[D]minterpolate(mi_mode=mci(mc_mode=obmc),scd=none)[E],[C][E]merge" OUT I just can't understand how to form