如何在linux中使用perl脚本执行avconv命令

时间:2021-10-19 08:59:42

I need to execute following command with given arguments using perl script

我需要使用perl脚本使用给定的参数执行以下命令

avconv -threads 4 -ss 0.0 -i /path/to/movie.avi output.ts

avconv -threads 4 -ss 0.0 -i /path/to/movie.avi output.ts

How to execute this command using perl script in linux environment?

如何在linux环境下使用perl脚本执行此命令?

1 个解决方案

#1


1  

Consider using system function. For more details see here

考虑使用系统功能。有关详细信息,请参阅此处

#1


1  

Consider using system function. For more details see here

考虑使用系统功能。有关详细信息,请参阅此处