Re: [FFmpeg-user] Concat with listing all files in command?

2018-12-04 Thread Ben
> Did you tried ffmpeg -i "concat:file1.ts|file2.ts|file3.ts" ? > But remember that concat input only accepts "headless" containers like mpg > or ts, mp4 isn't one of them. I need exactly such a command but for MP4s. According to your comment ffmpeg does not offer such a feature. Since this is b

Re: [FFmpeg-user] Concat with listing all files in command?

2018-11-19 Thread Micael Silva
On Sat, Nov 17, 2018 at 2:36 PM Ben wrote: > I want to concat various video files with ffmpeg (in WinOS). Therefore I > used so far the following command: > >ffmpeg.exe" -f concat -safe 0 -i "D:\clips\filelist.txt" -c copy > "ffmpegconcatout.mp4" > > Where D:\filelist.txt contains all filenam

Re: [FFmpeg-user] Concat with listing all files in command?

2018-11-19 Thread Moritz Barsnick
On Mon, Nov 19, 2018 at 08:49:07 -0600, Ben wrote: > Hmm, filelist.txt IS an INTERMEDIATE file! I wrote all the filenames (line > by line) to concatenate into this file and it works. However I want to omit > it and use a cmdline only. Similar to what Carl Eugen mentioned, I would call it a tempora

Re: [FFmpeg-user] Concat with listing all files in command?

2018-11-19 Thread Carl Eugen Hoyos
2018-11-19 15:49 GMT+01:00, Ben : > >> No intermediate file is used in above command, you simply have >> to provide the names of the files you want to concatenate. > > Hmm, filelist.txt IS an INTERMEDIATE file! By definition, when talking about transcoding multimedia files, an intermediate file is

Re: [FFmpeg-user] Concat with listing all files in command?

2018-11-19 Thread Ben
> No intermediate file is used in above command, you simply have > to provide the names of the files you want to concatenate. Hmm, filelist.txt IS an INTERMEDIATE file! I wrote all the filenames (line by line) to concatenate into this file and it works. However I want to omit it and use a cmdline

Re: [FFmpeg-user] Concat with listing all files in command?

2018-11-17 Thread Carl Eugen Hoyos
2018-11-17 17:36 GMT+01:00, Ben : > I want to concat various video files with ffmpeg (in WinOS). Therefore I > used so far the following command: > >ffmpeg.exe" -f concat -safe 0 -i "D:\clips\filelist.txt" -c copy > "ffmpegconcatout.mp4" > > Where D:\filelist.txt contains all filenames to conca

[FFmpeg-user] Concat with listing all files in command?

2018-11-17 Thread Ben
I want to concat various video files with ffmpeg (in WinOS). Therefore I used so far the following command: ffmpeg.exe" -f concat -safe 0 -i "D:\clips\filelist.txt" -c copy "ffmpegconcatout.mp4" Where D:\filelist.txt contains all filenames to concatenate. Now I want to change the command so