FFMPEG 和 CPU 利用率

发布于 2024-12-07 03:16:38 字数 1459 浏览 1 评论 0原文

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

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

发布评论

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

评论(1

救星 2024-12-14 03:16:38

我猜你正在 Linux 上运行这个。快速谷歌给了我这个:
更改 Linux 进程的优先级

这些准则称为美好或美好价值。 Linux 的良好程度从 -20 到 19。数字越低,任务获得的优先级越高。如果niceness值很高,比如19,任务将被设置为最低优先级,CPU将在有机会时处理它。默认的nice值为零。

创建具有特定优先级的新流程:

nice -n [nice-value from -20 to 19] [command]

因此,在您的情况下:

nice -n 10 ffmpeg .....

I guess you are running this on Linux. A quick Google gave me this:
Changing Priority on Linux Processes

These guidelines are called niceness or nice value. The Linux niceness scale goes from -20 to 19. The lower the number the more priority that task gets. If the niceness value is high number like 19 the task will be set to the lowest priority and the CPU will process it whenever it gets a chance. The default nice value is zero.

Create new process with a specific priority:

nice -n [nice-value from -20 to 19] [command]

So, in your case:

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