Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
I think I found a solution myself. Instead of using the between() function, you can use the gte() (greater than or equal to) function. So the command above would be: ffmpeg -i video.mp4 -vf "yadif...
Answer
#2: Post edited
I think I found a solution myself. Instead of using the `between()` function, you can use the `gte()` (greater than or equal to) function. So the command would be:- ```
- ffmpeg -i video.mp4 -vf "yadif:enable='gte(t,30)'" output.mp4
- ```
- I discovered this command by looking through the [FFmpeg Utilities Documentation](https://ffmpeg.org/ffmpeg-utils.html#Expression-Evaluation) page.
- I think I found a solution myself. Instead of using the `between()` function, you can use the `gte()` (greater than or equal to) function. So the command above would be:
- ```
- ffmpeg -i video.mp4 -vf "yadif:enable='gte(t,30)'" output.mp4
- ```
- I discovered this command by looking through the [FFmpeg Utilities Documentation](https://ffmpeg.org/ffmpeg-utils.html#Expression-Evaluation) page.
#1: Initial revision
I think I found a solution myself. Instead of using the `between()` function, you can use the `gte()` (greater than or equal to) function. So the command would be: ``` ffmpeg -i video.mp4 -vf "yadif:enable='gte(t,30)'" output.mp4 ``` I discovered this command by looking through the [FFmpeg Utilities Documentation](https://ffmpeg.org/ffmpeg-utils.html#Expression-Evaluation) page.