Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 windows 上的 matlab 中运行 ffmpeg 命令。
我知道在 Linux 上我们可以使用函数 system('...') 来运行任何命令,但我如何在 Windows 上做到这一点?
任何想法将不胜感激
谢谢
system命令在Windows 机器上也应该可以正常工作。例如,我在 64 位 Windows 7 上运行以下没有问题:
system('ffmpeg -i C:\Users\Sam\demo.wav C:\Users\Sam\demo2.mpg')