我需要开发一个涉及硬件的项目,该项目在 Windows 和 Mac 上也应该同样工作。前进的方向是什么?
我可以采取的最佳方法(无痛)是什么? 首先,应用程序需要将网络摄像头视频+麦克风录音录制到磁盘上,并使用 ffmpeg(或类似的东西)压缩视频。
因此涉及硬件+运行单独的编码进程。
我正在认真考虑 Adobe AIR - 但我在 Adobe 网站上读到,它没有运行其他应用程序的权限,如果我想使用 ffmpeg 对视频进行编码,这可能会出现问题。
Whats the best approach (read painless) that I could take?
Primarily, the application needs to record the webcam video + mic recording on the disk and compress the video using ffmpeg (or something similar).
So there is hardware involved + running a separate process for encoding.
I was seriously considering Adobe AIR - but I read on the Adobe site that it does not have permission to run other applications which can be problematic if I want to encode the video using ffmpeg.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您考虑过用 Java 开发它吗?在这种情况下,您应该查看 Eclipse Rich Client 平台。我已经使用 Eclipse RCP 开发了几个程序,如果没有它,我永远不会用 Java 开发应用程序。它使用 SWT 和 jFace,并提供导出应用程序以在 OSX、Linux 和 Windows 上运行的选项。
你应该尝试一下。
Did you consider developing it in Java? In that case you should take a look at the Eclipse Rich Client platform. I have developed a couple of programs by using Eclipse RCP and I would never develop an app in Java without it. It uses SWT and jFace and provides options for exporting the app to run on OSX, Linux and Windows.
You should give it a try.
如果您可以在 Mono 下开发它,那么其中大部分内容都可以在两个平台上运行。
If you can develop it under Mono, much of it will work on both platforms.
Qt。简单如馅饼。
Qt. Simple as pie.