ffmpeg conversion .dav to any video files

前端 未结 6 1914
再見小時候
再見小時候 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条回答
  •  猫巷女王i
    2021-02-14 13:55

    for %%i in (*.dav) do (
      ffmpeg -i "%%i" -c:v libx264 "%%~i.mp4"
    )
    done
    

    Try this for batch conversation. I have used another version of this to convert images & mp3's to videos. You probably need to tweak it a liitle to fit your needs.

提交回复
热议问题