Re: [FFmpeg-user] Multiple parts of a video

2022-05-31 Thread Bo Berglund
On Tue, 31 May 2022 13:15:02 +0200, Michael Koch wrote: >> So reading this thread I get the feeling that there is a way to use the list >> of >> cut times in a *single ffmpeg command* to create the output mp4 file >> *without* >> creating the list file and essentially doing everything in this

Re: [FFmpeg-user] Multiple parts of a video

2022-05-31 Thread Michael Koch
Am 31.05.2022 um 20:27 schrieb Cecil Westerhof via ffmpeg-user: Michael Koch writes: Am 31.05.2022 um 18:43 schrieb Cecil Westerhof via ffmpeg-user: Michael Koch writes: I have a short example in chapter 2.57 of my book: http://www.astro-electronic.de/FFmpeg_Book.pdf Just to make sure I

Re: [FFmpeg-user] Multiple parts of a video

2022-05-31 Thread Michael Koch
Am 31.05.2022 um 20:27 schrieb Cecil Westerhof via ffmpeg-user: Michael Koch writes: Am 31.05.2022 um 18:43 schrieb Cecil Westerhof via ffmpeg-user: Michael Koch writes: I have a short example in chapter 2.57 of my book: http://www.astro-electronic.de/FFmpeg_Book.pdf Just to make sure I

Re: [FFmpeg-user] Multiple parts of a video

2022-05-31 Thread Cecil Westerhof via ffmpeg-user
Michael Koch writes: > Am 31.05.2022 um 18:43 schrieb Cecil Westerhof via ffmpeg-user: >> Michael Koch writes: >> >>> I have a short example in chapter 2.57 of my book: >>> http://www.astro-electronic.de/FFmpeg_Book.pdf >> Just to make sure I understand it, I should do something like: >>

Re: [FFmpeg-user] Multiple parts of a video

2022-05-31 Thread Michael Koch
Am 31.05.2022 um 18:43 schrieb Cecil Westerhof via ffmpeg-user: Michael Koch writes: I have a short example in chapter 2.57 of my book: http://www.astro-electronic.de/FFmpeg_Book.pdf Just to make sure I understand it, I should do something like: ffmpeg -ss %S1% -t %L1% -i %I1% \

Re: [FFmpeg-user] Multiple parts of a video

2022-05-31 Thread Cecil Westerhof via ffmpeg-user
Michael Koch writes: > I have a short example in chapter 2.57 of my book: > http://www.astro-electronic.de/FFmpeg_Book.pdf Just to make sure I understand it, I should do something like: ffmpeg -ss %S1% -t %L1% -i %I1% \ -ss %S2% -t %L2% -i %I1% \ -ss %S3% -t

Re: [FFmpeg-user] (no subject)

2022-05-31 Thread Carl Zwanzig
On 5/31/2022 4:11 AM, Shazly Sayed wrote: Can you help me summarize what is required and help not to repeat mistakes again, and thank you for your patience with us If you don't actually state a problem, no one can help with it. We don't know what you're trying to to, how you've tried, and

Re: [FFmpeg-user] Multiple parts of a video

2022-05-31 Thread Paul B Mahol
On Tue, May 31, 2022 at 6:15 PM Bo Berglund wrote: > On Tue, 31 May 2022 13:15:02 +0200, Michael Koch < > astroelectro...@t-online.de> > wrote: > > >Am 31.05.2022 um 11:17 schrieb Bo Berglund: > >> On Sun, 29 May 2022 13:17:55 +0200, Michael Koch < > astroelectro...@t-online.de> > >> wrote: >

Re: [FFmpeg-user] Multiple parts of a video

2022-05-31 Thread Bo Berglund
On Tue, 31 May 2022 13:15:02 +0200, Michael Koch wrote: >Am 31.05.2022 um 11:17 schrieb Bo Berglund: >> On Sun, 29 May 2022 13:17:55 +0200, Michael Koch >> >> wrote: > Using concat filter. That is exactly what I already know: cutting the different parts. Probably one command for

Re: [FFmpeg-user] (no subject)

2022-05-31 Thread Reindl Harald
moron you recently sent already a pointless mail without a subject - if you are not able to tell anybody what you are talking about you won#t get help Am 31.05.22 um 13:11 schrieb Shazly Sayed: Can you help me summarize what is required and help not to repeat mistakes again, and thank you for

Re: [FFmpeg-user] Multiple parts of a video

2022-05-31 Thread Michael Koch
Am 31.05.2022 um 11:17 schrieb Bo Berglund: On Sun, 29 May 2022 13:17:55 +0200, Michael Koch wrote: Using concat filter. That is exactly what I already know: cutting the different parts. Probably one command for each part and then concatenate them. So n + 1 commands. My question was: can it

[FFmpeg-user] (no subject)

2022-05-31 Thread Shazly Sayed
Can you help me summarize what is required and help not to repeat mistakes again, and thank you for your patience with us ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link

[FFmpeg-user] Weird cross platform support in ffmpeg

2022-05-31 Thread Александр
I tried to build ffmpeg 4.4 library and link with it and I received multiple unresolved references. I came across on unusual architecture in ffmpeg for multiple platforms.The library has many places with code like this: void foo() { // DO SOMETHING if (ARCH_MIPS) // maybe #if ARCH_MIPS

Re: [FFmpeg-user] Multiple parts of a video

2022-05-31 Thread Bo Berglund
On Sun, 29 May 2022 13:17:55 +0200, Michael Koch wrote: >>> Using concat filter. >> That is exactly what I already know: cutting the different parts. >> Probably one command for each part and then concatenate them. >> So n + 1 commands. >> My question was: can it be done with one command? >> >