Re: [FFmpeg-user] Efficiently doing thousands of edits?

2019-04-10 Thread John Hawkinson
Michael Shaffer  wrote on Wed, 10 Apr 2019
at 19:40:36 -0400 in 
:

> I'm pretty sure you could use Python and OpenCV to create a solution..

"Just because you can, doesn't mean you should."

My original post explained how to determine where the runs of black are, using 
ffmpeg (libavfilter)'s "blackdetect." The only piece left is applying the edits 
in a practical fashion.

Rolling your own with opencv would be a whole lot more work. I'm not entirely 
sure that I agree with Carl Eugen that ffmpeg isn't a video editing tool, but 
if it's not, Python certainly isn't. Yes, you can make it work. But you're 
going to spend a lot more time doing it than if higher level tools were used.

The goal here is for higher-level tools, not lower-level ones.

Or I might just end up using ffmpeg to split it into 7,000 files and then 
concatenating them. That's hardly the worst thing in the world.

--
jh...@alum.mit.edu
John Hawkinson
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Efficiently doing thousands of edits?

2019-04-10 Thread Carl Zwanzig

On 4/9/2019 4:17 PM, John Hawkinson wrote:

What would you recommend for video editing tools that use ffmpeg's libraries?


I suspect that most of the opensource editing projects use them. I've 
dabbled with ShotCut, and it seemed OK. I also suspect that they're not 
going be much of a help (need EDLs and all that).


An option, perhaps not very good, is to split the existing video into one 
file per quadrant, process the one with the dropouts, then recombine into a 
single video. If you have the space, the intermediate files could be 
uncompressed so as to lessen quality loss along the way.


Later,

z!

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Efficiently doing thousands of edits?

2019-04-10 Thread Carl Eugen Hoyos
2019-04-10 1:17 GMT+02:00, John Hawkinson :
> Carl Eugen Hoyos  wrote on Wed, 10 Apr 2019
>
>> ffmpeg, the command line application, is not a video editor. FFmpeg,
>> the project, provides libraries that can be used by video editor software.
>
> Thanks, Carl Eugen. What would you recommend for video
> editing tools that use ffmpeg's libraries?

Sorry, I don't know, I hoped that somebody else would comment.

Carl Eugen
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] wrong extradata on decoding a mxf xavc long gop file.

2019-04-10 Thread Yufei He
On 04/10/2019 03:33 PM, Carl Eugen Hoyos wrote:
> 2019-04-10 20:00 GMT+02:00, Yufei He :
>
>> https://drive.google.com/open?id=1Rugz-tKCNDViN-zxJ9pQyKqSi_Eos7QD
>>
>> On decoding the file this link, avctx->extradata is wrong
>> data, there is no valid sps and pps.
>>
>> Actually, mxf files does not need extradata. normally
>> sps and pps are stored in every IDR frame.
> This is not true for all mxf files...
Yes, it's only in the first frame for Panasonics mxf avcintra files.
>
>> My decoder expects right extradata.  Yes, I can add
>> protection to check if it's valid.
>>
>> I debugged with h264dec.c, it can not find valid sps pps either.
> But why should it abort if the extradata is not valid but unneeded?
>
> Feel free to send a patch that detects in the mxf demuxer if
> extradata has to be inserted or not.
>
> See also ticket #4820.
>
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] wrong extradata on decoding a mxf xavc long gop file.

2019-04-10 Thread Carl Eugen Hoyos
2019-04-10 20:00 GMT+02:00, Yufei He :

> https://drive.google.com/open?id=1Rugz-tKCNDViN-zxJ9pQyKqSi_Eos7QD
>
> On decoding the file this link, avctx->extradata is wrong
> data, there is no valid sps and pps.
>
> Actually, mxf files does not need extradata. normally
> sps and pps are stored in every IDR frame.

This is not true for all mxf files...

> My decoder expects right extradata.  Yes, I can add
> protection to check if it's valid.
>
> I debugged with h264dec.c, it can not find valid sps pps either.

But why should it abort if the extradata is not valid but unneeded?

Feel free to send a patch that detects in the mxf demuxer if
extradata has to be inserted or not.

See also ticket #4820.

Carl Eugen
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] wrong extradata on decoding a mxf xavc long gop file.

2019-04-10 Thread Yufei He
Hi

https://drive.google.com/open?id=1Rugz-tKCNDViN-zxJ9pQyKqSi_Eos7QD

On decoding the file this link, avctx->extradata is wrong data, there is no 
valid sps and pps.

Actually, mxf files does not need extradata. normally  sps and pps are stored 
in every IDR frame.

My decoder expects right extradata.  Yes, I can add protection to check if it's 
valid.

I debugged with h264dec.c, it can not find valid sps pps either.

Regards.

Yufei.








___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] How to restart a fmmpeg frozen stream

2019-04-10 Thread Sergio A S de Aguiar
Dear friends:

I am working in a transcoder to capture a camera stream and transcode it to 
send a multibitrate encrypted stream.
So far, so good.
The problem is that sometime the stream crashes and keep sending black frames 
(or the some frozen frame continuously), so the ffmpeg is running but there is 
no image (just the black stream or the frozen frame, as I stated).
The imput is working.
I think this can be caused by some momentanous problem with the input stream 
wich makes ffmpeg loose the sync.

I want to detectt when the output frames doesn't change and restart the bash 
script wich is using ffmpeg.

At this time I am using a compex filter to detect when there is no change of 
the frames for the last 20 seconds (600 frames).

This is the script:

#! /bin/sh

echo "Starting cam1frozen" >> /mnt/sdd/html/frozen.log
/mnt/sdd/html/./CAM1FROZEN -y -hide_banner -loglevel warning -threads 0 \
-i "rtsp://192.168.1.100:554/live/ch00_0" \
-filter_complex 
"select='not(mod(n,600))',select='lt(scene\,0.06)',drawbox=y=ih-h:color=black@0.4:width=iw:height=48:t=fill,drawtext=fontfile=/usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf:fontsize=40:fontcolor=0xAAFFAA:text='No
 Movement':x=10:y=h-th-10" \
-vsync vfr /mnt/sdd/html/hls/live/CAM1/frozen/frozen_CAM1_%06d.jpg \
>> /mnt/sdd/html/frozen.log 2>&1 &

Obs: The CAM1FROZEN  is ffmpeg renamed so it's easy to find usinf ps.

It is generating the jpg files, as expected.
Now the question: How can use this to execute an external bash script wich will 
kill and restart the capture script?

Thanks for your help

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] unsubscribe

2019-04-10 Thread Reindl Harald
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256



Am 10.04.19 um 13:42 schrieb Carlos E. R.:
> On 10/04/2019 13.01, Reindl Harald wrote:
>> it is insane type the address at all instead just click on it in
>> the list-footer, copy "unsubscribe" in the subejct and
>> press send
> 
> No. Errors are human. Your behaviour is not adequate. Trying to
> justify it makes it worse. The OP apologized. You should do the
> same and move on.
> 
> I could mention your spelling errors, for instance, but I will
> not.

until now fools like you did make a lot of more noise than everything
else, there is no excuse for not be capable click on a simple link in
a mail-client and i wonder how this guys managed to subscribe at all
and why they don't read and store welcome messages

and there is common sense that it's idiotic send multiple unscubscribe
requests to the list address spread to 1000, 1 or 10 users
which hopefully can't unsubscribe random other susbcribers
-BEGIN PGP SIGNATURE-

iQGzBAEBCAAdFiEEnStGzbwUCjZ1OuTXMxdNWliSt7gFAlyt4kEACgkQMxdNWliS
t7idOgv/QehqLfJupFD3oK+wrRa41YHq8HpnoI3KjyWbvbTUA05wH4Ma2CSSYk70
1Jb2cdYxwue7MDnTP+b86p+674NktItBWc+9yPhczU1XedG6yUd10MkGQpL/MCFX
srVu3PwA/SFq0vAGuJDor+12iXYMeJobH5GvkoOZER/ykAvRgCn/qLqh1yDk8h+g
x+EVPX6igPb5/hPsajEi87SpfM7ezlhAqTnMRUvc8NbnuHKvYqT6h7H5lhJrH7KR
JJ5hFZJNg8+nIVrgP7hUUrDYghFooECcLgA1akYgAmH6hT0A88oR8zQfDmujVaOK
s/TLkQrE7nCwN38sh0aEXDaLGWx0fydp8my78ggJhmqFAL5ryVYsk/6CvWsGun7v
+KBXO//M3RuC5uBvnnPU4boWLpF9pH5TcQ0NxxQemaapUpIbIAlJ7PGApavkNWkE
GnmD5ugQAiQPnk6Dt7fCotDxmVa+UQfAWNOz4DAPPIkxxHMj3QctYqFR56x0Vxc3
e8Iwmpjz
=W5WN
-END PGP SIGNATURE-
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] unsubscribe

2019-04-10 Thread Carlos E. R.
On 10/04/2019 13.01, Reindl Harald wrote:
> 
> 
> Am 10.04.19 um 12:55 schrieb Ted Park:
> hell you have the instructions on bottom of every single message

 It seems he was trying to follow them, but made a mistake. If you’re
>>> still here, you need to email ffmpeg-user-requ...@ffmpeg.org >> ffmpeg-user-requ...@ffmpeg.org>, not the mailing list itself dbenari
>>>
>>> what mistake can you make in case of "email
>>> ffmpeg-user-requ...@ffmpeg.org with subject unsubscribe" when you own a
>>> sane mind
>>
>>
>> Please do not be so insulting
>
> you have no idea how insulting sounds!
>

 Your comment is not helpful
>>> but yours as?
>>>
>>> sometimes stupidity needs to be pointed out to touch the ego of people,
>>> it may help power on their brain again
>>
>> I don’t know if you’re just trolling or having a bad day, but calling 
>> someone insane for mistyping an email address is pretty insulting imho. And 
>> as for things to be expected in this mailing list, I’d hope civility is one 
>> of them.
> 
> it is insane type the address at all instead just click on it in the
> list-footer, copy "unsubscribe" in the subejct and press send

No. Errors are human. Your behaviour is not adequate. Trying to justify
it makes it worse. The OP apologized. You should do the same and move on.

I could mention your spelling errors, for instance, but I will not.

-- 
Cheers / Saludos,

Carlos E. R.
(from 15.0 x86_64 at Telcontar)



signature.asc
Description: OpenPGP digital signature
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] unsubscribe

2019-04-10 Thread Reindl Harald


Am 10.04.19 um 12:55 schrieb Ted Park:
 hell you have the instructions on bottom of every single message
>>>
>>> It seems he was trying to follow them, but made a mistake. If you’re
>> still here, you need to email ffmpeg-user-requ...@ffmpeg.org > ffmpeg-user-requ...@ffmpeg.org>, not the mailing list itself dbenari
>>
>> what mistake can you make in case of "email
>> ffmpeg-user-requ...@ffmpeg.org with subject unsubscribe" when you own a
>> sane mind
>
>
> Please do not be so insulting

 you have no idea how insulting sounds!

>>>
>>> Your comment is not helpful
>> but yours as?
>>
>> sometimes stupidity needs to be pointed out to touch the ego of people,
>> it may help power on their brain again
> 
> I don’t know if you’re just trolling or having a bad day, but calling someone 
> insane for mistyping an email address is pretty insulting imho. And as for 
> things to be expected in this mailing list, I’d hope civility is one of them.

it is insane type the address at all instead just click on it in the
list-footer, copy "unsubscribe" in the subejct and press send

period
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] unsubscribe

2019-04-10 Thread Ted Park
>>> hell you have the instructions on bottom of every single message
>> 
>> It seems he was trying to follow them, but made a mistake. If you’re
> still here, you need to email ffmpeg-user-requ...@ffmpeg.org  ffmpeg-user-requ...@ffmpeg.org>, not the mailing list itself dbenari
> 
> what mistake can you make in case of "email
> ffmpeg-user-requ...@ffmpeg.org with subject unsubscribe" when you own a
> sane mind
 
 
 Please do not be so insulting
>>> 
>>> you have no idea how insulting sounds!
>>> 
>> 
>> Your comment is not helpful
> but yours as?
> 
> sometimes stupidity needs to be pointed out to touch the ego of people,
> it may help power on their brain again

I don’t know if you’re just trolling or having a bad day, but calling someone 
insane for mistyping an email address is pretty insulting imho. And as for 
things to be expected in this mailing list, I’d hope civility is one of them.

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] recording video file with 2 video tracks of two live cams

2019-04-10 Thread sekret

Complete, uncut console output missing.


Crap, you're right, thanks for pointing it out! I'll deliver asap, will most 
probably be there again tomorrow.
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Unable to identify flicker video

2019-04-10 Thread Carl Eugen Hoyos
2019-04-10 9:04 GMT+02:00, Bouke / VideoToolShed :

> The OP may be referring to the Harding test.

This would be ticket #2104 with a link to a possible future
video filter.

Carl Eugen
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] recording video file with 2 video tracks of two live cams

2019-04-10 Thread Carl Eugen Hoyos
2019-04-10 10:23 GMT+02:00, sek...@posteo.se :

> ffmpeg -i "rtsp://$USERNAME:$PASSWORD@192.168.234.34:554"
> -i "rtsp://$USERNAME:$PASSWORD@192.168.234.33:554"
> -map 0:0 -map 1:0 -map 0:1 -c copy
> "$(date +%Y%m%d%H%M%S)".mkv

Complete, uncut console output missing.

Carl Eugen
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] recording video file with 2 video tracks of two live cams

2019-04-10 Thread Ted Park
> BUT: The videos aren't in sync. The audio and video of the first camera are 
> perfectly in sync (obviously, since the mic is connected to the first 
> camera), but the second camera's video track is about 1.3 seconds ahead.
> 
> So, my questions are:
> - Is this command line of mine too primitive for this to work properly?
> - Is there a way to sync the video tracks? Maybe to delay the first one by 
> those 1.3 seconds?
> - Is there a different approach which potentionally works better?
> (- Does maybe one of you guys happen to know a perfectly working software for 
> this?) (I've searched and searched ... It's not a typical use case for 
> surveillance cameras, so no success)

I think the difference comes from which stream connects first and starts 
receiving packets first, since there’s no reference time to sync both streams 
to.

Many (most?) devices of this kind also transmit the absolute timestamps 
separately from the video stream, so if you have the system time synchronized 
on both cameras, perhaps using ntp, maybe it would be possible to use this 
information to sync the two streams up but i don’t know if it is possible to do 
this automatically using ffmpeg alone.
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] CBR Coding with force_key frames

2019-04-10 Thread Ted Park
> Thank you for responding, I tried after changing the command to -v info and
> got some output. I am sharing the information file. Could you please check
> it once.

Nothing seems out of order, what did you mean when you said “destroy a good cbr 
2-pass coding”? It seems like the video was decoded without problem, I might be 
missing something though, what did you intend for your batch file to do?
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] unsubscribe

2019-04-10 Thread Carlos E. R.
On 10/04/2019 11.04, Dean Rotherham wrote:
> Hi there Paul,
> 
> Apologies, I see I first posted with my gmail account directly so was not
> this email address. My email was :
> 
> Perhaps you can point this email in the right direction?

No, please, don't do this.

This would be "hijacking a thread" and start another tirade, and we
don't need that, do we? ;-)

(Besides, this is not a forum, but a mail list, it can not be resorted
by admins)


In practical terms, it hides your question inside another thread, and
one that people are trying to avoid.

Instead, post a *new* email addressed to the list, with your subscribed
email (don't use "reply" then change the subject or erase the content;
use a real new email), add a proper indicative subject and write your
question.

And when replying, use quoted replies (like mine here), not top posting,
or you will start another tirade ;-)

> 
> I'm hoping someone can help me with what I thought would be really simple
> but I've been battling for days. I need to keep ffmpeg "alive" even if the
> source or destination drops.
> 

-- 
Cheers / Saludos,

Carlos E. R.
(from 15.0 x86_64 at Telcontar)



signature.asc
Description: OpenPGP digital signature
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] unsubscribe

2019-04-10 Thread Dean Rotherham
Hi there Paul,

Apologies, I see I first posted with my gmail account directly so was not
this email address. My email was :

Perhaps you can point this email in the right direction?

Bye for now,
Dean Rotherham 
Mon, 1 Apr, 09:51 (9 days ago)
to ffmpeg-user
Hi there FFmpeg team,

I'm hoping someone can help me with what I thought would be really simple
but I've been battling for days. I need to keep ffmpeg "alive" even if the
source or destination drops.

The added issue is I'm using ffmpeg on tiny core linux on raspberry pi as :

ffmpeg version 3.1.3 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 6.2.0 (piCore)
configuration: --prefix=/usr/local --enable-gpl --enable-version3
--enable-nonfree --disable-static --enable-shared --enable-libass
--enable-libcelt --enable-libfaac --enable-libfontconfig
--enable-libfreetype --enable-libfribidi --enable-libgsm
--enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb
--enable-libopenh264 --enable-libopenjpeg --enable-libopus
--enable-libspeex --enable-libtwolame --enable-libvorbis --enable-libvpx
--enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265
--enable-libxvid --enable-opengl --enable-openssl --disable-neon
libavutil  55. 28.100 / 55. 28.100
libavcodec 57. 48.101 / 57. 48.101
libavformat57. 41.100 / 57. 41.100
libavdevice57.  0.101 / 57.  0.101
libavfilter 6. 47.100 /  6. 47.100
libswscale  4.  1.100 /  4.  1.100
libswresample   2.  1.100 /  2.  1.100
libpostproc54.  0.100 / 54.  0.100

In short my current command is :

sudo /DerMixD/bin/dermixd -c default_output=raw_s16
default_outfile=/dev/stdout -r main.unix=n main.socket=localhost
main.port= | FFREPORT=file=/tmp/ffreport.log:level=24 ffmpeg -nostdin
-re -f alsa -ac 2 -f s16le -i /dev/stdin -f alsa -acodec aac -b:a 64k -af
"aresample=44100" -f flv -rtmp_live live rtmp://
vetsak2.antfarm.co.za:1935/ant-l-caxton/99lpfkm &

This command starts an audio daemon that our application feeds instructions
to. This is called DerMixD - Essentially this feeds /dev/stdout and pipes
the data to ffmpeg.

ffmpeg then feeds the stream to a rtmp server.

The issues I'm having are that if my feed from dermixd stops (EOF) for even
1s, ffmpeg falls over. Further, this then causes a condition on dermixd
that the feed from dermixd then runs into /dev/stdout too fast.

The same issue happens on the other side that if the ingest point drops for
even 1s, the feed from ffmpeg stops and inturn causes dermixd to fail.

I know this is a long shot as my setup I guess is rather unique but how can
I keep ffmpeg "alive" and almost just waiting for the stream to start
again? Essentially this is a restream from local dermixd > rtmp server. But
the dermixd feed can stop / start and the rtmp server could also loose
connection and come back.

ANY help or ideas would be awesome as the normal -reconnect commands etc
are not in this version of ffmpeg.

Thanks and chat when you can.


M : 083 652 3511



  
Authorized Provider Dean Rotherham
Where The Beat Starts & Stops
 083-652-3511 <0836523511>

Support:  083-957-1797  |
 supp...@shopbeat.co.za  |
www.shopbeat.co.za


On Wed, 10 Apr 2019 at 10:23, Paul B Mahol  wrote:

> On 4/10/19, Dean Rotherham  wrote:
> > No offence but wow as a new subscriber to this channel it's crazy! :( Too
> > much nit picking.
> >
> > I joined to try solve an issue and sadly no replies to my email thread
> and
> > seems mostly the threads are "moaning".
>
> I can not find your thread. Where is it?
>
> >
> > Such a pity as I thought ffmpeg was literally an amazing tool - Now I
> can't
> > solve my problem.
> >
> > Oh well - Just wanted to comment on that. Have a good one.
> >
> > Regards,
> >
> > 
> >   
> > Authorized Provider Dean Rotherham
> > Where The Beat Starts & Stops
> >  083-652-3511
> <0836523511>
> >
> > Support: 
> 083-957-1797  |
> >  supp...@shopbeat.co.za
> |
> > www.shopbeat.co.za
> >
> >
> > On Wed, 10 Apr 2019 at 10:00, Reindl Harald 
> wrote:
> >
> >>
> >>
> >> Am 10.04.19 um 09:58 schrieb Tobias Rapp:
> >> > On 10.04.2019 09:36, Reindl Harald wrote:
> >> >>
> >> >> Am 10.04.19 um 07:14 schrieb Walter Ebert:
> >> >>> On 09.04.19 22:54, Reindl Harald wrote:
> >> 
> >>  Am 09.04.19 um 22:53 schrieb Kieran O Leary:
> >> > On Tue, 9 Apr 2019, 21:13 Reindl Harald, 
> >> > wrote:
> >> >
> >> >> Am 09.04.19 um 20:50 schrieb Ted Park:
> >>  Am 09.04.19 um 10:56 schrieb dben...@bezeqint.net:
> >> 
> >>  hell you have the instructions on bottom of every single
> message
> >> >>>

Re: [FFmpeg-user] unsubscribe

2019-04-10 Thread Carlos E. R.
On 10/04/2019 10.14, Dean Rotherham wrote:
> No offence but wow as a new subscriber to this channel it's crazy! :( Too
> much nit picking.

Yes.

> I joined to try solve an issue and sadly no replies to my email thread and
> seems mostly the threads are "moaning".

Sorry, but I searched looking for your mail address and I can't find in
my archive any post from you - I went back till 2017-01-01. Maybe your
post did not make to the list.

-- 
Cheers / Saludos,

Carlos E. R.
(from 15.0 x86_64 at Telcontar)



signature.asc
Description: OpenPGP digital signature
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] unsubscribe

2019-04-10 Thread saurav suman
Hi Paul,

Thanks for responding. Actually, I'm getting replies from many people and
It's too much confusion. Individually, I can't reply to everyone. I started
following Ted Park. What all information required you required.

regards,
Saurav

On Wed, Apr 10, 2019 at 1:53 PM Paul B Mahol  wrote:

> On 4/10/19, Dean Rotherham  wrote:
> > No offence but wow as a new subscriber to this channel it's crazy! :( Too
> > much nit picking.
> >
> > I joined to try solve an issue and sadly no replies to my email thread
> and
> > seems mostly the threads are "moaning".
>
> I can not find your thread. Where is it?
>
> >
> > Such a pity as I thought ffmpeg was literally an amazing tool - Now I
> can't
> > solve my problem.
> >
> > Oh well - Just wanted to comment on that. Have a good one.
> >
> > Regards,
> >
> > 
> >   
> > Authorized Provider Dean Rotherham
> > Where The Beat Starts & Stops
> >  083-652-3511
> <0836523511>
> >
> > Support: 
> 083-957-1797  |
> >  supp...@shopbeat.co.za
> |
> > www.shopbeat.co.za
> >
> >
> > On Wed, 10 Apr 2019 at 10:00, Reindl Harald 
> wrote:
> >
> >>
> >>
> >> Am 10.04.19 um 09:58 schrieb Tobias Rapp:
> >> > On 10.04.2019 09:36, Reindl Harald wrote:
> >> >>
> >> >> Am 10.04.19 um 07:14 schrieb Walter Ebert:
> >> >>> On 09.04.19 22:54, Reindl Harald wrote:
> >> 
> >>  Am 09.04.19 um 22:53 schrieb Kieran O Leary:
> >> > On Tue, 9 Apr 2019, 21:13 Reindl Harald, 
> >> > wrote:
> >> >
> >> >> Am 09.04.19 um 20:50 schrieb Ted Park:
> >>  Am 09.04.19 um 10:56 schrieb dben...@bezeqint.net:
> >> 
> >>  hell you have the instructions on bottom of every single
> message
> >> >>>
> >> >>> It seems he was trying to follow them, but made a mistake. If
> >> you’re
> >> >> still here, you need to email ffmpeg-user-requ...@ffmpeg.org
> >>  >> >> ffmpeg-user-requ...@ffmpeg.org>, not the mailing list itself
> >> dbenari
> >> >>
> >> >> what mistake can you make in case of "email
> >> >> ffmpeg-user-requ...@ffmpeg.org with subject unsubscribe" when
> you
> >> >> own a
> >> >> sane mind
> >> >
> >> >
> >> > Please do not be so insulting
> >> 
> >>  you have no idea how insulting sounds!
> >> 
> >> >>>
> >> >>> Your comment is not helpful
> >> >> but yours as?
> >> >>
> >> >> sometimes stupidity needs to be pointed out to touch the ego of
> people,
> >> >> it may help power on their brain again
> >> >
> >> > No, being offensive doesn't help. Everybody deserves a polite
> response.
> >> > If you do not feel like answering simple questions in an adequate
> manner
> >> > then just don't post one.
> >>
> >> frankly when every single message has a instruction "To unsubscribe" you
> >> deserve some punch for beeing stupid, it's that easy
> >> ___
> >> ffmpeg-user mailing list
> >> ffmpeg-user@ffmpeg.org
> >> https://ffmpeg.org/mailman/listinfo/ffmpeg-user
> >>
> >> To unsubscribe, visit link above, or email
> >> ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".
> > ___
> > ffmpeg-user mailing list
> > ffmpeg-user@ffmpeg.org
> > https://ffmpeg.org/mailman/listinfo/ffmpeg-user
> >
> > To unsubscribe, visit link above, or email
> > ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".
> ___
> ffmpeg-user mailing list
> ffmpeg-user@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-user
>
> To unsubscribe, visit link above, or email
> ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] recording video file with 2 video tracks of two live cams

2019-04-10 Thread sekret

Hi guys,

I'm new to this mailing list and I just subscribed because for the first time I 
have a problem with ffmpeg I cannot solve by myself. Hope I'll get some ideas, 
maybe solutions here.

What I need to do is record a video with 2 video tracks of two live 
surveillance cameras, connected by ethernet. Both can be accessed with rtsp. 
The first of the two cameras has a mic connected. The command line I've come up 
with so far looks like this:

ffmpeg -i "rtsp://$USERNAME:$PASSWORD@192.168.234.34:554" -i 
"rtsp://$USERNAME:$PASSWORD@192.168.234.33:554" -map 0:0 -map 1:0 -map 0:1 -c copy "$(date 
+%Y%m%d%H%M%S)".mkv (I don't think I need to explain, right?)

This works very well, both on my Linux laptop (Archlinux) and a Windows 10 
desktop. Both have version 4.1.2 of ffmpeg installed.

BUT: The videos aren't in sync. The audio and video of the first camera are 
perfectly in sync (obviously, since the mic is connected to the first camera), 
but the second camera's video track is about 1.3 seconds ahead.

So, my questions are:
- Is this command line of mine too primitive for this to work properly?
- Is there a way to sync the video tracks? Maybe to delay the first one by 
those 1.3 seconds?
- Is there a different approach which potentionally works better?
(- Does maybe one of you guys happen to know a perfectly working software for 
this?) (I've searched and searched ... It's not a typical use case for 
surveillance cameras, so no success)

Best
sekret
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] unsubscribe

2019-04-10 Thread Paul B Mahol
On 4/10/19, Dean Rotherham  wrote:
> No offence but wow as a new subscriber to this channel it's crazy! :( Too
> much nit picking.
>
> I joined to try solve an issue and sadly no replies to my email thread and
> seems mostly the threads are "moaning".

I can not find your thread. Where is it?

>
> Such a pity as I thought ffmpeg was literally an amazing tool - Now I can't
> solve my problem.
>
> Oh well - Just wanted to comment on that. Have a good one.
>
> Regards,
>
> 
>   
> Authorized Provider Dean Rotherham
> Where The Beat Starts & Stops
>  083-652-3511 <0836523511>
>
> Support:  083-957-1797  |
>  supp...@shopbeat.co.za  |
> www.shopbeat.co.za
>
>
> On Wed, 10 Apr 2019 at 10:00, Reindl Harald  wrote:
>
>>
>>
>> Am 10.04.19 um 09:58 schrieb Tobias Rapp:
>> > On 10.04.2019 09:36, Reindl Harald wrote:
>> >>
>> >> Am 10.04.19 um 07:14 schrieb Walter Ebert:
>> >>> On 09.04.19 22:54, Reindl Harald wrote:
>> 
>>  Am 09.04.19 um 22:53 schrieb Kieran O Leary:
>> > On Tue, 9 Apr 2019, 21:13 Reindl Harald, 
>> > wrote:
>> >
>> >> Am 09.04.19 um 20:50 schrieb Ted Park:
>>  Am 09.04.19 um 10:56 schrieb dben...@bezeqint.net:
>> 
>>  hell you have the instructions on bottom of every single message
>> >>>
>> >>> It seems he was trying to follow them, but made a mistake. If
>> you’re
>> >> still here, you need to email ffmpeg-user-requ...@ffmpeg.org
>> > >> ffmpeg-user-requ...@ffmpeg.org>, not the mailing list itself
>> dbenari
>> >>
>> >> what mistake can you make in case of "email
>> >> ffmpeg-user-requ...@ffmpeg.org with subject unsubscribe" when you
>> >> own a
>> >> sane mind
>> >
>> >
>> > Please do not be so insulting
>> 
>>  you have no idea how insulting sounds!
>> 
>> >>>
>> >>> Your comment is not helpful
>> >> but yours as?
>> >>
>> >> sometimes stupidity needs to be pointed out to touch the ego of people,
>> >> it may help power on their brain again
>> >
>> > No, being offensive doesn't help. Everybody deserves a polite response.
>> > If you do not feel like answering simple questions in an adequate manner
>> > then just don't post one.
>>
>> frankly when every single message has a instruction "To unsubscribe" you
>> deserve some punch for beeing stupid, it's that easy
>> ___
>> ffmpeg-user mailing list
>> ffmpeg-user@ffmpeg.org
>> https://ffmpeg.org/mailman/listinfo/ffmpeg-user
>>
>> To unsubscribe, visit link above, or email
>> ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".
> ___
> ffmpeg-user mailing list
> ffmpeg-user@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-user
>
> To unsubscribe, visit link above, or email
> ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] unsubscribe

2019-04-10 Thread Reindl Harald


Am 10.04.19 um 09:58 schrieb Tobias Rapp:
> On 10.04.2019 09:36, Reindl Harald wrote:
>>
>> Am 10.04.19 um 07:14 schrieb Walter Ebert:
>>> On 09.04.19 22:54, Reindl Harald wrote:

 Am 09.04.19 um 22:53 schrieb Kieran O Leary:
> On Tue, 9 Apr 2019, 21:13 Reindl Harald, 
> wrote:
>
>> Am 09.04.19 um 20:50 schrieb Ted Park:
 Am 09.04.19 um 10:56 schrieb dben...@bezeqint.net:

 hell you have the instructions on bottom of every single message
>>>
>>> It seems he was trying to follow them, but made a mistake. If you’re
>> still here, you need to email ffmpeg-user-requ...@ffmpeg.org > ffmpeg-user-requ...@ffmpeg.org>, not the mailing list itself dbenari
>>
>> what mistake can you make in case of "email
>> ffmpeg-user-requ...@ffmpeg.org with subject unsubscribe" when you
>> own a
>> sane mind
>
>
> Please do not be so insulting

 you have no idea how insulting sounds!

>>>
>>> Your comment is not helpful
>> but yours as?
>>
>> sometimes stupidity needs to be pointed out to touch the ego of people,
>> it may help power on their brain again
> 
> No, being offensive doesn't help. Everybody deserves a polite response.
> If you do not feel like answering simple questions in an adequate manner
> then just don't post one.

frankly when every single message has a instruction "To unsubscribe" you
deserve some punch for beeing stupid, it's that easy
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] unsubscribe

2019-04-10 Thread Tobias Rapp

On 10.04.2019 09:36, Reindl Harald wrote:


Am 10.04.19 um 07:14 schrieb Walter Ebert:

On 09.04.19 22:54, Reindl Harald wrote:


Am 09.04.19 um 22:53 schrieb Kieran O Leary:

On Tue, 9 Apr 2019, 21:13 Reindl Harald,  wrote:


Am 09.04.19 um 20:50 schrieb Ted Park:

Am 09.04.19 um 10:56 schrieb dben...@bezeqint.net:

hell you have the instructions on bottom of every single message


It seems he was trying to follow them, but made a mistake. If you’re

still here, you need to email ffmpeg-user-requ...@ffmpeg.org , not the mailing list itself dbenari

what mistake can you make in case of "email
ffmpeg-user-requ...@ffmpeg.org with subject unsubscribe" when you own a
sane mind



Please do not be so insulting


you have no idea how insulting sounds!



Your comment is not helpful

but yours as?

sometimes stupidity needs to be pointed out to touch the ego of people,
it may help power on their brain again


No, being offensive doesn't help. Everybody deserves a polite response. 
If you do not feel like answering simple questions in an adequate manner 
then just don't post one.


Regards,
Tobias

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] unsubscribe

2019-04-10 Thread Reindl Harald


Am 10.04.19 um 07:14 schrieb Walter Ebert:
> On 09.04.19 22:54, Reindl Harald wrote:
>>
>> Am 09.04.19 um 22:53 schrieb Kieran O Leary:
>>> On Tue, 9 Apr 2019, 21:13 Reindl Harald,  wrote:
>>>
 Am 09.04.19 um 20:50 schrieb Ted Park:
>> Am 09.04.19 um 10:56 schrieb dben...@bezeqint.net:
>>
>> hell you have the instructions on bottom of every single message
>
> It seems he was trying to follow them, but made a mistake. If you’re
 still here, you need to email ffmpeg-user-requ...@ffmpeg.org >>> ffmpeg-user-requ...@ffmpeg.org>, not the mailing list itself dbenari

 what mistake can you make in case of "email
 ffmpeg-user-requ...@ffmpeg.org with subject unsubscribe" when you own a
 sane mind
>>>
>>>
>>> Please do not be so insulting
>>
>> you have no idea how insulting sounds!
>>
> 
> Your comment is not helpful
but yours as?

sometimes stupidity needs to be pointed out to touch the ego of people,
it may help power on their brain again
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Unable to identify flicker video

2019-04-10 Thread Bouke / VideoToolShed


> On 09 Apr 2019, at 21:06, Ted Park  wrote:
> 
> 
> 
>> On Apr 9, 2019, at 2:34 AM, saurav suman  wrote:
>> 
>> Hi Team,
>> 
>> I have downloaded the latest FFmpeg.exe file from the FFmpeg website. The
>> problem is FFmpeg is unable to identify the flickers present in the video.
>> Flicker present in the video is clearly visible by the naked eye.
>> 
>> If required, I can share the recorded file.
>> 
>> Regards,
>> Saurav
> 
> Can you elaborate on what a flicker is, exactly? Also what you mean by 
> identifying them.

The OP may be referring to the Harding test.
(There was a Simpons episode situated in Japan where everyone but Homer 
suffered from the consequences.)
https://en.wikipedia.org/wiki/Harding_test 


A testfile that fails the test is here:
Download link 
https://videotoolshed.wetransfer.com/downloads/1f40e9977b12f800e4062e939d7178e720190410070204/3ac8160692f3d57b88b7c430987e269720190410070204/077992
 


(Sadly, i have no ide where it fails, it is not per definition the strobe shots 
at the end.)

Bouke


> ___
> ffmpeg-user mailing list
> ffmpeg-user@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-user
> 
> To unsubscribe, visit link above, or email
> ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] CBR Coding with force_key frames

2019-04-10 Thread saurav suman
Hi Ted,

Thank you for responding, I tried after changing the command to -v info and
got some output. I am sharing the information file. Could you please check
it once.

Regards,
Saurav

On Wed, Apr 10, 2019 at 12:34 AM Ted Park  wrote:

> Set the verbosity level lower (higher?), try -v info instead of -v error.
> That might be suppressing everything except errors.
> ___
> ffmpeg-user mailing list
> ffmpeg-user@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-user
>
> To unsubscribe, visit link above, or email
> ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".


error.log
Description: Binary data
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".