#6909 closed defect (wontfix)
vlc play properly,ffmpeg convert failed
Reported by: | tinybug | Owned by: | |
---|---|---|---|
Priority: | important | Component: | avformat |
Version: | git-master | Keywords: | mov edts regression |
Cc: | Blocked By: | ||
Blocking: | Reproduced by developer: | yes | |
Analyzed by developer: | yes |
Description
run: ffmpeg -i 0c490b1e-3342-4b00-a33e-1ce5ae26af21.mp4 -y test.mp4
cause error: Too many packets buffered for output stream 0:1.
Attachments (1)
Change History (6)
by , 7 years ago
Attachment: | 0c490b1e-3342-4b00-a33e-1ce5ae26af21.mp4 added |
---|
comment:1 by , 7 years ago
Component: | undetermined → avformat |
---|---|
Keywords: | mov edts regression added; convert failed removed |
Priority: | normal → important |
comment:2 by , 7 years ago
comment:3 by , 7 years ago
Analyzed by developer: | set |
---|---|
Reproduced by developer: | set |
Resolution: | → wontfix |
Status: | new → closed |
comment:4 by , 7 years ago
hello isasi, but in the video track header atom with duration "16375[00:00:27]", why not use this duration or compatible with it?
comment:5 by , 7 years ago
if I'm use "-ignore_editlist 1" option for input file, it convert success.
ffmpeg -ignore_editlist 1 -i 0c490b1e-3342-4b00-a33e-1ce5ae26af21.mp4 -y test.mp4
Note:
See TracTickets
for help on using tickets.
This video has an edit list with duration "0", which means we should play for "0" seconds, so ffmpeg won't output any video packets. This is in line with Quicktime player behavior. If you play the file with Quicktime the video won't play, just the audio.
Even if conversion succeeds, the output won't have any video which is not what you want I guess. This is similar to many other bugs . Please see https://trac.ffmpeg.org/ticket/6138#comment:7 . You can use -advanced_editlist=0 (which avoids parsing edit lists) to play this file .