我正在评估使用MLT框架来处理和连接一些视频。我需要将它与32位C#应用程序集成,并对基于C#数据结构的数据应用一些动态的自定义覆盖,因此我计划构建C API并在C#中通过P / Invoke使用它。 / p>
我已经设法使用SDL,libavcodec和dlfcn-win32构建了库的简约配置,所有其他模块都被禁用,https://www.mltframework.org/docs/windowsbuild/之后。 但是,使用C API或C ++ API时,我的32位版本无法正常工作。我在使用SDL时会收到段错误,虚拟输出视频或挂起。创建的melt.exe和示例项目play.cpp也有同样的问题。
现在这让我觉得32位版本可能存在问题,所以我也尝试了64位版本,结果相似。 之后,我尝试了以下配置和编译器:
最后一个不起作用的事实令人惊讶,让我觉得必须我的环境或我正在做的事情。我按照那些指示写信。此外,构建的Shotcut.exe在启动时崩溃。 在所有这些情况下,构建确实成功,但构建的二进制文件没有按预期工作。
有没有人让MLT的C API在Windows 32位上正常运行视频编码?
这是我的小型测试项目,改编自https://www.mltframework.org/docs/framework/。
(我已编辑此代码示例以反映Sergey的回答中的一些问题,但最终结果没有变化。)
#include <windows.h>
#include <stdio.h>
#include "include/mlt/framework/mlt.h"
int main()
{
mlt_repository repo = mlt_factory_init(NULL);
fprintf(stderr, "start\n");
if (repo != NULL)
{
mlt_consumer consumer = mlt_factory_consumer(NULL, "sdl", NULL);
fprintf(stderr, "Creating consumer %p\n", consumer);
if (consumer == NULL)
{
fprintf(stderr, "Consumer NULL. Aborting");
return 1;
}
mlt_producer producer = mlt_factory_producer(NULL, "color", "red");
fprintf(stderr, "Creating producer %p\n", producer);
if (producer == NULL)
{
fprintf(stderr, "Producer NULL. Aborting");
return 1;
}
fprintf(stderr, "Connecting %p to %p\n", producer, consumer);
mlt_consumer_connect(consumer, mlt_producer_service(producer));
fprintf(stderr, "Starting consumer %p\n", consumer);
mlt_consumer_start(consumer);
fprintf(stderr, "Wait for consumer\n");
while (!mlt_consumer_is_stopped(consumer))
{
Sleep(1000);
fprintf(stderr, "Wait more for consumer...\n");
}
fprintf(stderr, "Close consumer\n");
// Close the consumer
mlt_consumer_close(consumer);
fprintf(stderr, "Close producer\n");
// Close the producer
mlt_producer_close(producer);
fprintf(stderr, "Close factory\n");
// Close the factory
mlt_factory_close();
}
else
{
// Report an error during initialisation
fprintf(stderr, "Unable to locate factory modules\n");
}
return 0;
}
答案 0 :(得分:0)
来自MLT文档:
mlt_consumer mlt_factory_consumer(mlt_profile,const char *,const void *)
从存储库中获取使用者
您没有检查mlt_factory_consumer
返回的值,它是NULL
。
mlt_consumer hello = mlt_factory_consumer(NULL, "color", "red");
printf("Created consumer %p\n", hello);
mlt_producer world = mlt_factory_producer(NULL, NULL, NULL);
printf("Created producer %p\n", world);
mlt_service service = mlt_producer_service (world);
printf("Created service %p\n", service);
> gcc test.c -lmlt -g && ./a.out
Created consumer (nil)
Created producer (nil)
Created service (nil)
Segmentation fault (core dumped)
当给定默认参数时,它返回一个有效指针:
mlt_consumer hello = mlt_factory_consumer(NULL, NULL, NULL);
printf("Created consumer %p\n", hello);
printf("Loop over parent %p\n", hello -> parent . child);
. . .
> gcc test.c -lmlt -g && ./a.out
Created consumer 0x561978461cf0
Loop over parent 0x561978461cf0
Created producer (nil)
Created service (nil)
Connected 0
Starting consumer 0
Wait for consumer
Wait more for consumer...
Wait more for consumer...
CTRL-C
Close consumer
Close producer
Close factory
从您提供的链接:
默认消费者为
sdl
。另请注意,您可以按如下方式覆盖默认值:
MLT_CONSUMER=xml ./hello file.avi
将在stdout上创建一个XML文档。
MLT_CONSUMER=xml MLT_PRODUCER=avformat ./hello file.avi
将直接使用avformat制作人播放视频,因此它 将绕过规范化功能。
MLT_CONSUMER=libdv ./hello file.avi > /dev/dv1394
如果幸运的话,可以随时将file.avi实时转换为DV并将其广播到您的DV设备。
很明显,您必须为mlt_factory_consumer
提供有效参数或NULL
(并根据需要覆盖默认使用者):
mlt_consumer hello = mlt_factory_consumer(NULL, "xml", NULL);
printf("Created consumer %p\n", hello);
. . .
> gcc test.c -lmlt -g && ./a.out
Created consumer 0x55ab3ceb7660
Loop over parent 0x55ab3ceb7660
Created producer (nil)
Created service (nil)
Connected 0
Starting consumer 0
Wait for consumer
Close consumer
Close producer
Close factory
答案 1 :(得分:0)
我已经解决了这个问题。在Windows上存在一个错误,当没有传入时,不会创建默认的mlt_profile。
因此,请明确创建一个并将其传递给工厂调用:
mlt_profile profile = mlt_profile_init(NULL);
这解决了我在Windows上使用C API的问题。 不,SDL出于某种原因仍然无法正常工作。但它并不那么重要。