命令
ffprobe rtsp://localhost/myvideo -codec:v libx264 -show_frames -of csv输出
Failed to set value 'libx264' for option 'codec:v': Option not found但似乎已经安装了libx264 - sudo apt install libx264-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
libx264-dev is already the newest version (2:0.152.2854+gite9a5903-2).发布于 2021-05-27 23:38:07
libx264是一个编码器。ffprobe只探测和打印关于现有媒体输入的信息-没有指定编码器的范围。删除-codec:v libx264。
https://stackoverflow.com/questions/67725371
复制相似问题