通过ffmpeg将.flv文件转换为.mp4格式导致错误

通过ffmpeg将.flv文件转换为.mp4格式导致错误

我目前使用的是 ffmpeg 版本 3.2.2,我遇到的问题是,当我尝试转换示例 .flv 文件时,它无法将其正确转换为预期的 .mp4 格式。我遇到的错误是:

ffmpeg -i flv.flv -vcodec copy -acodec copy flv.mp4
ffmpeg version 3.2.2 Copyright (c) 2000-2016 the FFmpeg developers
  built with Apple LLVM version 8.0.0 (clang-800.0.42.1)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/3.2.2 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --disable-lzma --enable-vda
  libavutil      55. 34.100 / 55. 34.100
  libavcodec     57. 64.101 / 57. 64.101
  libavformat    57. 56.100 / 57. 56.100
  libavdevice    57.  1.100 / 57.  1.100
  libavfilter     6. 65.100 /  6. 65.100
  libavresample   3.  1.  0 /  3.  1.  0
  libswscale      4.  2.100 /  4.  2.100
  libswresample   2.  3.100 /  2.  3.100
  libpostproc    54.  1.100 / 54.  1.100
[flv @ 0x7f9af4800000] audio stream discovered after head already parsed
[flv @ 0x7f9af4800000] video stream discovered after head already parsed
Input #0, flv, from 'flv.flv':
  Metadata:
    encoder         : Lavf53.24.2
  Duration: 00:00:26.40, start: 0.000000, bitrate: 1589 kb/s
    Stream #0:0: Audio: aac (LC), 48000 Hz, 5.1, fltp
    Stream #0:1: Video: flv1, yuv420p, 1280x720, 25 fps, 25 tbr, 1k tbn
File 'flv.mp4' already exists. Overwrite ? [y/N] y
[mp4 @ 0x7f9af5829e00] Could not find tag for codec flv1 in stream #0, codec not currently supported in container
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argumentStream mapping:
  Stream #0:1 -> #0:0 (copy)
  Stream #0:0 -> #0:1 (copy)
    Last message repeated 1 times

我尝试使用一些在线转换器来查看它们是否存在转换文件的问题,但它们都正确地将其转换为 mp4。

我将非常感激任何对此提供帮助的!

答案1

正如评论中所提到的,ffmpeg 不会flv1在 MP4 中复用视频流。

重新编码:

ffmpeg -i flv.flv -vcodec libx264 -acodec copy flv.mp4

答案2

如果 flv 容器使用 flv1 视频编解码器,则如果不重新编码视频流,您将无法转换为 mp4 容器。

2 个选项:

  1. 转换为容器mkv,无需重新编码:

ffmpeg -i input.flv -c copy -copyts output.mkv

请注意,这-copyts是可选的,意味着copy timestamps:它将有助于音频同步。

  1. 将视频流重新编码为新的 h265(HVEC)标准:

ffmpeg -i input.flv -c:v libx265 -crf 23 -c:a copy output_h265.mp4

相关内容