New submission from Johannes Wilm <[EMAIL PROTECTED]>:

When trying to open an AVCHD file (H.264), the fps is wrongly reported as 29.97,
while it really is 60. This cannot be overriden either ("-r" seems to just be
doing nothing). The following way one can achieve the same result anyway though,
by using mjpegtools:

ffmpeg -i INPUT.mts -s 720x480 -f yuv4mpegpipe - | yuvfps -s 60:1 -r 30:1  |
ffmpeg -f yuv4mpegpipe -i - -i INPUT.mts  -map 0:0 -map 1:1 -acodec copy -vcodec
libx264 -b 28800k -y OUTPUT.avi

Input fps: 60
Output fps: 30
Output size: 720x480 (NTSC DVD 16:9)

The Gmerlin player and gmerlin_avdecoder do manage to get the right fps and
their demuxer has implemented seeking as well. ( gmerlin.sf.net )

A sample movie can be found here:

http://www.johanneswilm.org/download/johanneswilm.mts

This bug is likely to be found in libavformat/mpegts.c .

----------
messages: 2334
nosy: johanneswilm
priority: normal
status: new
substatus: new
title: wrong fps on mpegts file, can't be overriden
type: bug

______________________________________________________
FFmpeg issue tracker <[EMAIL PROTECTED]>
<https://roundup.mplayerhq.hu/roundup/ffmpeg/issue506>
______________________________________________________

Reply via email to