ffmpeg conversion .dav to any video files

前端 未结 6 1892
再見小時候
再見小時候 2021-02-14 13:12

I am trying for days to convert .dav file (file generated by dvrs [image recorders]). I have tried several variations with ffmpeg and can not succeed.<

6条回答
  •  太阳男子
    2021-02-14 13:58

    ffmpeg doesn't support DAV (yet) as shown by ffmpeg -formats.

    The reason why it appears to work for a while is because DAV is a Chinese modified version of H.264/AVC. ffmpeg attempts to guess your input format and it settles on its standard H.264 decoder as the best available match.

    The decoding obviously fails at some point since DAV has vendor specific modifications. The format is also proprietary.

    You can see this by running the following command:

    ffprobe -i input.dav -v debug

    The result is:

    [h264 @ 0x264ec00] Format h264 probed with size=2048 and score=51

    The score is only 51/100.

提交回复
热议问题