Re: [FFmpeg-user] Need help resolving concat error

2016-07-24 Thread Carl Eugen Hoyos
Nicolas George nsup.org> writes: > Le septidi 7 thermidor, an CCXXIV, Carl Eugen Hoyos a écrit : > > The concat demuxer has immanent security issues and > > is therefore never auto-detected > It is detected but will only accept safe file paths. Thanks for the correction! Carl Eugen

Re: [FFmpeg-user] Need help resolving concat error

2016-07-24 Thread Nicolas George
Le septidi 7 thermidor, an CCXXIV, Carl Eugen Hoyos a écrit : > The concat demuxer has immanent security issues and > is therefore never auto-detected You are mistaken: /tmp $ echo 'ffconcat version 1.0' > test /tmp $ echo 'file /dev/null' >> test /tmp $ ffprobe test [concat @ 0x21f45e0]

Re: [FFmpeg-user] Need help resolving concat error

2016-07-24 Thread Carl Eugen Hoyos
Moritz Barsnick gmx.net> writes: > But, as Cley pointed out, that file doesn't have a > proper extension or a proper header, so "-f concat" > should be added as an input option. This is neither extension- nor header-related: The concat demuxer has immanent security issues and is therefore

Re: [FFmpeg-user] Need help resolving concat error

2016-07-24 Thread Peter White
Am 24.07.2016 um 17:16 schrieb Moritz Barsnick: On Sun, Jul 24, 2016 at 16:49:30 +0200, Peter White wrote: <(for f in ./*.MOV; do echo "file '$PWD/$f'"; done) is a very fancy way of saying *.MOV. ;) Essentially that is what happens there: ffmpeg -i *.MOV No, it isn't at all. It's a bash-ism

Re: [FFmpeg-user] Need help resolving concat error

2016-07-24 Thread Walid Salman
Hello, I test the the split directly on server with this command : [root@ns1 ~]# ffmpeg -i /home/lamas44747/public_html/sarmaye.mp4 -ss 00:00:10 -to 00:00:20 -c copy /home/lamas44747/public_html/split.mp4 The server show this error : FFmpeg version 0.6.5, Copyright (c) 2000-2010 the FFmpeg

Re: [FFmpeg-user] Need help resolving concat error

2016-07-24 Thread Moritz Barsnick
On Sun, Jul 24, 2016 at 16:49:30 +0200, Peter White wrote: > <(for f in ./*.MOV; do echo "file '$PWD/$f'"; done) > > is a very fancy way of saying *.MOV. ;) Essentially that is what > happens there: > > ffmpeg -i *.MOV No, it isn't at all. It's a bash-ism (or perhaps zdh-ism) which provides a

Re: [FFmpeg-user] Need help resolving concat error

2016-07-24 Thread Peter White
Mark Strecker wrote: > Here is the command line we tried originally (this is the one we intend to > use and works on Windows ... except the file input of course): > > *ffmpeg -safe 0 -analyzeduration 40 -probesize 40 -i <(for > f in ./*.MOV; do echo "file '$PWD/$f'"; done)

Re: [FFmpeg-user] Need help resolving concat error

2016-07-24 Thread Moritz Barsnick
On Sat, Jul 23, 2016 at 15:39:27 -0400, Mark Strecker wrote: > *[mov @ 0x7fa74b008000] Could not find tag for codec ansi in stream #0, codec > not currently supported in container* Have you managed to decode a single one of these files using ffmpeg? Have you managed to remux a single one of

Re: [FFmpeg-user] Need help resolving concat error

2016-07-24 Thread Cley Faye
2016-07-23 21:39 GMT+02:00 Mark Strecker : > *ffmpeg -i files.txt -c:v copy -c:a copy OUT.MOV* > > *ffmpeg version 3.1.1 Copyright (c) 2000-2016 the FFmpeg developers* > > *Input #0, tty, from 'files.txt':* > > * Duration: 00:00:00.04, bitrate: 29 kb/s* > > *Stream

[FFmpeg-user] Need help resolving concat error

2016-07-24 Thread Mark Strecker
Hello All, I am new to ffmpeg and need help resolving an error. We are trying to concatenate MOV files and figured out the options we need on Windows. We then tried it on OS X and ran into problems. We are using the latest version downloaded from the ffmpeg site : 3.1.1 Here is the command line