Error: Could not create output file Processed 0 frames
Error: Could not create output file Processed 0 frames
我是 运行 oneVPL 样本之一 - hello-vpp。
我已经从 oneAPI 示例存储库下载了示例源代码-
https://github.com/oneapi-src/oneAPI-samples.git
我的 OS 是 Ubuntu 18.04。
构建后,我尝试了以下命令来获取输出。
./hello-vpp ../content/input.i420 640 480
我收到以下错误。
Could not create output file
Processed 0 frames
我的命令有任何更正吗?预期的输出是什么?
VPP 示例仅适用于 i420 视频格式,其大小必须为 128x96。所以 运行 hello-vpp 示例的正确命令是:
./hello-vpp ../content/input.i420 128x96
预期输出为
Found ApiVersion: 2.2
SW session created
Processing ../content/input.i420 -> out.i420
Processed 60 frames
输出文件即 out.i420 将在构建目录中找到(路径:“\Libraries\oneVPL\hello-vpp\build”),其大小默认为 640x480。
我是 运行 oneVPL 样本之一 - hello-vpp。 我已经从 oneAPI 示例存储库下载了示例源代码-
https://github.com/oneapi-src/oneAPI-samples.git
我的 OS 是 Ubuntu 18.04。
构建后,我尝试了以下命令来获取输出。
./hello-vpp ../content/input.i420 640 480
我收到以下错误。
Could not create output file
Processed 0 frames
我的命令有任何更正吗?预期的输出是什么?
VPP 示例仅适用于 i420 视频格式,其大小必须为 128x96。所以 运行 hello-vpp 示例的正确命令是:
./hello-vpp ../content/input.i420 128x96
预期输出为
Found ApiVersion: 2.2
SW session created
Processing ../content/input.i420 -> out.i420
Processed 60 frames
输出文件即 out.i420 将在构建目录中找到(路径:“\Libraries\oneVPL\hello-vpp\build”),其大小默认为 640x480。