ffmpeg concat并保留元数据流

时间:2018-07-16 04:42:05

标签: video ffmpeg gopro

我正在尝试合并多个文件,这些文件是GoPro Hero6分割电影以避免FAT 4GB限制的结果。 ffmpeg可以很好地实现此目的,但是我需要在元数据流中编码的遥测数据,而ffmpeg在默认情况下似乎并未保留该功能。使用ffprobe命令,您可以看到源视频具有:

Stream #0:3(eng): Data: none (gpmd / 0x646D7067), 36 kb/s (default)
Metadata:
  creation_time   : 2018-07-15T16:16:26.000000Z
  handler_name    : GoPro MET

从研究中我知道这是我需要的流(尽管我希望能够复制所有流)。但是,使用ffmpeg -f concat时,输出为:

[concat @ 0x7febb9800000] Could not find codec parameters for stream 2 (Unknown: none): unknown codec
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[concat @ 0x7febb9800000] Could not find codec parameters for stream 3 (Unknown: none): unknown codec
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[concat @ 0x7febb9800000] Could not find codec parameters for stream 4 (Unknown: none): unknown codec
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Input #0, concat, from 'tmp.txt':
  Duration: N/A, start: 0.000000, bitrate: 66194 kb/s
    Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuvj420p(pc, bt709), 2704x1520 [SAR 1:1 DAR 169:95], 66005 kb/s, 59.94 fps, 59.94 tbr, 60k tbn, 119.88 tbc
    Metadata:
      creation_time   : 2018-07-15T16:08:22.000000Z
      handler_name    : GoPro AVC
      encoder         : GoPro AVC encoder
      timecode        : 16:23:48:21
    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 189 kb/s
    Metadata:
      creation_time   : 2018-07-15T16:08:22.000000Z
      handler_name    : GoPro AAC
      timecode        : 16:23:48:21
    Stream #0:2: Unknown: none
    Stream #0:3: Unknown: none
    Stream #0:4: Unknown: none
Output #0, mp4, to 'GH0089.MP4':
  Metadata:
    encoder         : Lavf58.12.100
    Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuvj420p(pc, bt709), 2704x1520 [SAR 1:1 DAR 169:95], q=2-31, 66005 kb/s, 0.02 fps, 59.94 tbr, 60k tbn, 60k tbc
    Metadata:
      creation_time   : 2018-07-15T16:08:22.000000Z
      handler_name    : GoPro AVC
      encoder         : GoPro AVC encoder
      timecode        : 16:23:48:21
    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 189 kb/s
    Metadata:
      creation_time   : 2018-07-15T16:08:22.000000Z
      handler_name    : GoPro AAC
      timecode        : 16:23:48:21
Stream mapping:
  Stream #0:0 -> #0:0 (copy)
  Stream #0:1 -> #0:1 (copy)
Press [q] to stop, [?] for help

警告Could not find codec parameters特别有趣,Stream mapping显示仅视频和音频流被映射。我玩过map_metadata无济于事。我可能没有正确的格式,但是似乎该问题与警告有关,因为无法识别编解码器,并且我希望默认情况下会映射所有流。

我希望或希望得到一个答案,该答案将忽略警告并映射未识别的流而不会尝试理解它们。

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

最终解决了这个问题...主要是...

ffmpeg \
    -y -f concat -i test.txt -c copy \
    -map 0:v -map 0:a -map 0:3 \
    -copy_unknown -tag:2 gpmd \
    test2.mp4

似乎ffmpeg如果将其标记为gpmd,它将理解遥测数据...但是,无论我做什么,还有另外两个流不会映射。 ffmpeg似乎必须能够解析出它,并且由于某种原因不能简单地复制位。如果标记了它,它可以理解gpmd流,但是它不能理解其中的另一个({fsck,我想...似乎主要是针对硬件,因此无论如何都不重要)。时间码流被标记为tmcd,但GoPro似乎未遵循此处的标准,因此无法以1:1映射...上面的代码产生的结果似乎是最稳定的,至少使用我尝试过的设置。