我有以下代码
pathToFile = "R:\T2 Output\12345--01--Some File 1--ABCD.mp4"
process = subprocess.Popen(['ffprobe.exe', '-show_streams', '"'+pathToFile+'"'],
shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
我收到错误:
[Error 2] The system cannot find the file specified
我尝试过:
注意事项:
我确定我错过了一些简单的事情。谁能指出我正确的方向?我已经在这个网站和其他网站上做了很多搜索,并尝试了一些建议。
答案 0 :(得分:4)
\
符号在python中计为转义字符,请使用r
将其关闭:
pathToFile = r"R:\T2 Output\12345--01--Some File 1--ABCD.mp4"