gpt4 book ai didi

c++ - libvlc 检查媒体位置是否有效

转载 作者:太空宇宙 更新时间:2023-11-04 02:45:07 28 4
gpt4 key购买 nike

我正在使用 libvlc,我想检查媒体位置/路径是否有效:

libvlc_instance_t* inst = libvlc_new(0, NULL);

libvlc_media_t* m = libvlc_media_new_path(inst, "/path/to/nothing");

if (m == NULL) // Not working
printf("Err\n");

libvlc_media_player_t* mp = libvlc_media_player_new_from_media(m);

libvlc_media_player_play(mp);

printf("Error: %s\n", libvlc_errmsg()); // (null)

libvlc_media_release(m);
libvlc_media_player_release(mp);
libvlc_release(inst);


return 0;

Libvlc 打印了一些错误消息,但我无法在我自己的代码中捕获任何错误:

Error: (null)
[0x7f8cc0004a58] filesystem access error: cannot open file /path/to/nothing (No such file or directory)
[0x7f8cc0004a58] main access error: File reading failed
[0x7f8cc0004a58] main access error: VLC could not open the file "/path/to/nothing" (No such file or directory).

最佳答案

有时您只有真正尝试播放媒体才能知道是否存在问题。

libvlc_media_player_play() 是异步的,您可以使用 LibVLC 事件检查错误(或成功)。

创建媒体播放器后,获取事件管理器:

libvlc_event_manager_t* em =
libvlc.libvlc_media_player_event_manager(mediaPlayer);

然后注册您想要的事件:

libvlc.libvlc_event_attach(
em, libvlc_MediaPlayerEncounteredError, callback, null);

回调函数是类型为 libvlc_callback_t 的事件处理程序。

void callback(const struct libvlc_event_t* event, void* userData) {
if (event->type == libvlc_MediaPlayerEncounteredError) {
// ...etc...
}
}

关于c++ - libvlc 检查媒体位置是否有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28263565/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com