Python使用Windows命令行

时间:2017-10-01 13:58:04

标签: python cmd ffmpeg

我有这个python代码:

        import os
        os.system('cd C:\yt')
        os.system("ffmpeg.exe -i test.mp4 newfilename.mp3")

yt文件夹包含ffmeg.exe和test.mp4,但是我在cmd everthing上分开编写代码但是我收到此错误消息:

       'ffmpeg.exe' is not recognized as an internal or external command,
       operable program or batch file.

如果我使用C:\ yt \ ffmpeg.exe -i test.mp4 newfilename.mp3不起作用,如果我只使用os.system('cd C:\ yt')我没有收到错误消息。 我的代码出了什么问题?

1 个答案:

答案 0 :(得分:0)

您需要移动到该目录。请尝试以下方法:

import os
os.chdir('C:\yt')
print os.getcwd() # confirm location
os.system("ffmpeg.exe -i test.mp4 newfilename.mp3")