SDL视频驱动程序

发布于 2024-11-08 19:14:04 字数 158 浏览 0 评论 0原文

我目前正在开发一个使用 SDL 来显示视频的代码,当我通过 ssh 工作时,我正在寻找类似文本驱动程序的东西(只需避免观看视频,因为它太慢了)。

所以我需要的是一种简单的方法来避免屏幕初始化和所有使我的帧速率低于 15fps 的东西:)

有谁知道一些可以帮助我的东西吗?

I'm currently working on a code that uses SDL to display video and as i'm working through ssh, i'm looking for something like a text driver (just need to avoid seing the video because it's so slow).

So what I need is a simple way to avoid screen init and all that stuff that keep my framerate below 15fps :)

Does anyone know something that might help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尬尬 2024-11-15 19:14:04

我不确定这是否是你想要的。但尝试一下:

export SDL_VIDEODRIVER=dummy

I'm not sure if that's what you want. But try:

export SDL_VIDEODRIVER=dummy
梦里兽 2024-11-15 19:14:04

使用 aalib 作为视频驱动程序怎么样?这会将所有图形输出为 ascii art。来自 SDL 常见问题解答:

构建 SDL:make distclean; ./configure --enable-video-aalib ; make install 运行您的应用程序:将环境变量 SDL_VIDEODRIVER 设置为“aalib”。

干杯

How about using aalib as video driver? This will output all graphics as ascii art. From the SDL FAQ:

Building SDL: make distclean; ./configure --enable-video-aalib ; make install Running your app: set the environment variable SDL_VIDEODRIVER to "aalib".

Cheers

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文