FFMpeg 加入 mp4 文件而不重新编码但保持原始帧速率

FFMpeg 加入 mp4 文件而不重新编码但保持原始帧速率

我尝试将其添加-vsync vfr为建议的帖子https://superuser.com/a/1514949/1348487但不保留原始帧速率。

查找 *.mp4 | sed 的:\ :\\ :g'| sed 's/^/file /' > list.txt; ffmpeg -f concat -safe 0 -i list.txt -vsync vfr -c 复制输出.mp4; rm列表.txt

原始帧率:29.970000 加入后帧率:29.969974

知道如何保留原始帧速率吗29.970000

原始视频中的一个文件:

Metadata:
    major_brand     : isom
    minor_version   : 512
    compatible_brands: isomiso2avc1mp41
    creation_time   : 1970-01-01T00:00:00.000000Z
    encoder         : Lavf52.93.0
  Duration: 00:26:02.60, start: 0.000000, bitrate: 6929 kb/s
  Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 6808 kb/s, 29.97 fps, 29.97 tbr, 2997 tbn, 59.94 tbc (default)
    Metadata:
      creation_time   : 1970-01-01T00:00:00.000000Z
      handler_name    : VideoHandler
      vendor_id       : [0][0][0][0]
  Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 114 kb/s (default)
    Metadata:
      creation_time   : 1970-01-01T00:00:00.000000Z
      handler_name    : SoundHandler
      vendor_id       : [0][0][0][0]

连接后(完整文件):

Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'output.mp4':
  Metadata:
    major_brand     : isom
    minor_version   : 512
    compatible_brands: isomiso2avc1mp41
    encoder         : Lavf58.76.100
  Duration: 01:50:53.66, start: 0.000000, bitrate: 6944 kb/s
  Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 6813 kb/s, 29.97 fps, 29.97 tbr, 11988 tbn, 59.94 tbc (default)
    Metadata:
      handler_name    : VideoHandler
      vendor_id       : [0][0][0][0]
  Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 120 kb/s (default)
    Metadata:
      handler_name    : SoundHandler
      vendor_id       : [0][0][0][0]

相关内容