带有 m3u8 播放列表的 FFmpeg:处理输入时发现无效数据 [关闭]

问题描述 投票:0回答:0

当我尝试使用 FFmpeg 打开播放列表时出现以下错误:

ffmpeg version 2023-03-05-git-912ac82a3c-essentials_build-www.gyan.dev Copyright (c) 2000-2023 the FFmpeg developers
  built with gcc 12.2.0 (Rev10, Built by MSYS2 project)
  configuration: --enable-gpl --enable-version3 --enable-static --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-bzlib --enable-lzma --enable-zlib --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-sdl2 --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxvid --enable-libaom --enable-libopenjpeg --enable-libvpx --enable-mediafoundation --enable-libass --enable-libfreetype --enable-libfribidi --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-d3d11va --enable-dxva2 --enable-libvpl --enable-libgme --enable-libopenmpt --enable-libopencore-amrwb --enable-libmp3lame --enable-libtheora --enable-libvo-amrwbenc --enable-libgsm --enable-libopencore-amrnb --enable-libopus --enable-libspeex --enable-libvorbis --enable-librubberband
  libavutil      58.  3.100 / 58.  3.100
  libavcodec     60.  6.100 / 60.  6.100
  libavformat    60.  4.100 / 60.  4.100
  libavdevice    60.  2.100 / 60.  2.100
  libavfilter     9.  4.100 /  9.  4.100
  libswscale      7.  2.100 /  7.  2.100
  libswresample   4. 11.100 /  4. 11.100
  libpostproc    57.  2.100 / 57.  2.100
playlist.m3u8: Invalid data found when processing input

我使用的命令:

ffmpeg [-allowed_extensions ALL] -i playlist.m3u8 -c copy playlist.mp4

播放列表文件:

#EXTM3U
#EXTINF:-1,1
https://20230515.s3.eu-central-1.amazonaws.com/output0000f.mp4
#EXTINF:-1,2
https://20230515.s3.eu-central-1.amazonaws.com/output0001f.mp4
#EXTINF:-1,3
https://20230515.s3.eu-central-1.amazonaws.com/output0002f.mp4

播放列表在 VLC 播放器中播放良好

ffmpeg m3u8
© www.soinside.com 2019 - 2024. All rights reserved.