begin opening input file fmt is NULL, find in hisi ext iformat init protocal buffer size is 32768 fmt is NULL, find in hisi ext iformat [mov,mp4,m4a,3gp,3g2,mj2 @ 0x8eb35000] [avformat_open_input] mov_context_ext_get_size = 416 done [mov,mp4,m4a,3gp,3g2,mj2 @ 0x8eb35000] [mov_read_header,8747] read_header use max_index_numbers:400000 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x8eb35000] [mov_read_header,8751] read_header start...disable_qs = 0 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x8eb35000] [mov_read_stsz,3871][Qstart] ic=0x8eb35000, eof_reached=0, atom size=28800, track[0] entries=7197, field_size=32, num_bytes=28788
时间: 2024-01-20 19:03:14 浏览: 134
这个错误提示通常出现在使用 FFmpeg 打开视频文件时,表示输入视频文件的格式无法被 FFmpeg 自动识别,需要手动指定输入视频的格式。
解决这个问题的方法是使用 `-f` 选项手动指定输入视频的格式。可以使用以下命令对视频进行处理:
```
ffmpeg -f mp4 -i input.mp4 output.mp4
```
其中,`-f` 选项表示要使用的视频格式,`mp4` 表示输入视频的格式为 MP4 格式。
如果手动指定格式仍然无法解决问题,可以尝试升级 FFmpeg 版本或者检查输入视频文件是否正常。可以使用 FFmpeg 自带的 `ffprobe` 工具来分析视频文件的信息,以便更好地了解视频文件的格式和问题所在。具体命令如下:
```
ffprobe -i input.mp4
```
希望这些方法能够帮助你解决问题。
阅读全文