各位大哥你们好,我将要运行一下命令:
shell_cmd = 'ffmpeg -ss 00:%s -i \"%s\" -to 00:%s -c copy \"%s\"'%(time_pt_ms,file_path_message,time_pw,out_dir_tmp)
os.system(shell_cmd)
但是,我不希望看到cmd返回的内容:
请问,我该如何做?os.system加什么参数隐藏?谢谢大家
各位大哥你们好,我将要运行一下命令:
shell_cmd = 'ffmpeg -ss 00:%s -i \"%s\" -to 00:%s -c copy \"%s\"'%(time_pt_ms,file_path_message,time_pw,out_dir_tmp)
os.system(shell_cmd)
但是,我不希望看到cmd返回的内容:
请问,我该如何做?os.system加什么参数隐藏?谢谢大家
import logging
logger.setLevel(logging.ERROR)