Re: [FFmpeg-user] Use concat filter with a fade

2022-06-14 Thread Michael Koch
Am 14.06.2022 um 16:30 schrieb Cecil Westerhof via ffmpeg-user: Michael Koch writes: Am 14.06.2022 um 15:33 schrieb Cecil Westerhof via ffmpeg-user: Michael Koch writes: Am 14.06.2022 um 13:47 schrieb Cecil Westerhof via ffmpeg-user: Sometimes I have to cut parts out of a video. I now

Re: [FFmpeg-user] Use concat filter with a fade

2022-06-14 Thread Cecil Westerhof via ffmpeg-user
Michael Koch writes: > Am 14.06.2022 um 15:33 schrieb Cecil Westerhof via ffmpeg-user: >> Michael Koch writes: >> >>> Am 14.06.2022 um 13:47 schrieb Cecil Westerhof via ffmpeg-user: Sometimes I have to cut parts out of a video. I now use for this (bash on Debian): ffmpeg

Re: [FFmpeg-user] Use concat filter with a fade

2022-06-14 Thread Michael Koch
Am 14.06.2022 um 15:33 schrieb Cecil Westerhof via ffmpeg-user: Michael Koch writes: Am 14.06.2022 um 13:47 schrieb Cecil Westerhof via ffmpeg-user: Sometimes I have to cut parts out of a video. I now use for this (bash on Debian): ffmpeg -y

Re: [FFmpeg-user] Use concat filter with a fade

2022-06-14 Thread Cecil Westerhof via ffmpeg-user
Michael Koch writes: > Am 14.06.2022 um 13:47 schrieb Cecil Westerhof via ffmpeg-user: >> Sometimes I have to cut parts out of a video. I now use for this (bash on >> Debian): >> ffmpeg -y\ >> -ss ${videoStart} -to ${cutStart} -i

Re: [FFmpeg-user] Use concat filter with a fade

2022-06-14 Thread Michael Koch
Am 14.06.2022 um 13:47 schrieb Cecil Westerhof via ffmpeg-user: Sometimes I have to cut parts out of a video. I now use for this (bash on Debian): ffmpeg -y\ -ss ${videoStart} -to ${cutStart} -i ${inputFile} \ -ss

[FFmpeg-user] Use concat filter with a fade

2022-06-14 Thread Cecil Westerhof via ffmpeg-user
Sometimes I have to cut parts out of a video. I now use for this (bash on Debian): ffmpeg -y\ -ss ${videoStart} -to ${cutStart} -i ${inputFile} \ -ss ${cutEnd} -to ${videoEnd} -i ${inputFile} \ -vcodec