Re: [FFmpeg-user] H264 IP-camera dump causes wrong duration/bitrate

2015-05-20 Thread しらせ けんじ

Is it possible that your camera actually captures at a lower
framerate at night/in low light condition?


I think framerate is fixed rate.
The probrem is in frame detection.

Talking about the sample, the bitrate at night has bigger than day time 
one.

I think the frame in night doesn't need more bitrate.
That's way I think frame detection has problem.


* http://temp1.shirase.tk/1505151230.mp4
   This file is a sample in day time.
   The duration of this file is 00:01:07.20.
   The bit rate of this file is 3005 kb/s

* http://temp1.shirase.tk/1505152058.mp4
   This file is a sample in night time.
   The duration is 00:00:24.00.
   The bit rate of this file is 5545 kb/s.

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


Re: [FFmpeg-user] H264 IP-camera dump causes wrong duration/bitrate

2015-05-19 Thread Kal Sze
On Wed, 20 May 2015 at 08:56 しらせ けんじ  wrote:

> I tried to encode to mpeg / mp4 before, and the result was same.
> So, I think the problem is input data or decoder , not encorder!
>
> Are there any idea to investigate this problem?
>
> Is it possible that your camera actually captures at a lower framerate at
night/in low light condition?

I forget if ffmpeg applies a default frame rate and re-stamps your frames
when you do a `-vcodec copy`
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] H264 IP-camera dump causes wrong duration/bitrate

2015-05-19 Thread しらせ けんじ

I tried to encode to mpeg / mp4 before, and the result was same.
So, I think the problem is input data or decoder , not encorder!

Are there any idea to investigate this problem?

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


Re: [FFmpeg-user] H264 IP-camera dump causes wrong duration/bitrate

2015-05-18 Thread Carl Eugen Hoyos
しらせ けんじ  shirase.tk> writes:

> I got H264 livestream dump from my IP-camera with ffmpeg.
> The movies get shorter than real time in night time, 
> although the length is correct in day time.

Is the issue also reproducible if you encode instead 
of remuxing?
$ ffmpeg  -vcodec mpeg4 -qscale 2 ...

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


[FFmpeg-user] H264 IP-camera dump causes wrong duration/bitrate

2015-05-18 Thread しらせ けんじ

I got H264 livestream dump from my IP-camera with ffmpeg.
The movies get shorter than real time in night time, although the length 
is correct in day time.


The command line I did is below.
I used segment function with segment time = 60.
So, I expect the duration of each mp4 file is about 60 seconds.

ffmpeg -i 
"http://temp2.shirase.tk/livestream.cgi?user=guest&pwd=guest&streamid=0&audio=0&filename="; 
-y -vcodec copy \

   -loglevel verbose \
   -movflags faststart+empty_moov \
   -f segment \
   -segment_atclocktime 1 \
   -segment_time 60 \
   -reset_timestamps 1 \
   -strftime 1 \
   %y%m%d%H%M.mp4 < /dev/zero 2> dump.log

The files below is the sample files and console log.

* http://temp1.shirase.tk/1505151230.mp4
  This file is a sample in day time.
  The duration of this file is 00:01:07.20.

* http://temp1.shirase.tk/1505152058.mp4
  This file is a sample in night time.
  The duration is 00:00:24.00.

* http://temp1.shirase.tk/dump.log
  console log.


I posted this problem to ffmpeg forum before. ( 
http://ffmpeg.gusari.org/viewtopic.php?f=11&t=2013 )

But I could not get any solution.

I also asked about "h264 : data partitioning" to ffmpeg-devel after I 
found this message.

  https://ffmpeg.org/pipermail/ffmpeg-devel/2015-May/172614.html
But it's not my trouble.

Regard.

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