透過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 不會混合flv1MP4 中的視訊串流。

重新編碼:

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

相關內容