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.
我需要使用 perl 脚本使用给定的参数执行以下命令
avconv -threads 4 -ss 0.0 -i /path/to/movie.avi output.ts
如何在 Linux 环境中使用 perl 脚本执行此命令?
考虑使用system函数。有关更多详细信息,请参见此处
system