python脚本中的子进程错误 [英] Error with subprocess in python script

查看:34
本文介绍了python脚本中的子进程错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在创建一个程序,我将在其中使用 subprocesses 转换文件.我用于转换的代码是:

I am creating a program where I will convert files using subprocesses. The code I am using for the conversion is:

import tornado.ioloop
import tornado.web
import os

print "If at any point you wish to quit the program hit Ctrl + C"

filetype = raw_input("What kind of file would you like to convert? Audio, Image, Video or Document: ")

if filetype == "Document":
    path = raw_input("Please drag and drop the directory in which the file is stored into the terminal:")
    os.chdir(path[1:-2])
    filename = raw_input("Please enter the name of the file you would like to convert, including the file-type. e.g. test.txt, however please do make sure that the file-name does not have any spaces:")
    Fileextension = raw_input("What filetype would you like the program to convert your file to. E.g. .txt: ")
    from subprocess import check_call   
    check_call(["unoconv " ,"-f ", Fileextension , + filename])

elif filetype == "Audio":
    path = raw_input("Please drag and drop the directory in which the file is stored into the terminal:")
    os.chdir(path[1:-2])
    filename = raw_input("Please enter the name of the file you would like to convert, including the file-type. e.g. test.txt, however please do make sure that the file-name does not have any spaces:")
    Fileextension = raw_input("What filetype would you like the program to convert your file to. E.g. .mp3: ")
    body, ext = os.path.splitext("filename")
    check_call(["ffmpeg" ,"-i", filename , + body + Fileextension])

elif filetype == "Video":
    path = raw_input("Please drag and drop the directory in which the file is stored into the terminal:")
    os.chdir(path[1:-2])
    filename = raw_input("Please enter the name of the file you would like to convert, including the file-type. e.g. test.txt, however please do make sure that the file-name does not have any spaces:")
    Fileextension = raw_input("What filetype would you like the program to convert your file to. E.g. .mp4: ")
    body, ext = os.path.splitext("filename")
    from subprocess import check_call   
    check_call(["ffmpeg" ,"-i", filename , + body + Fileextension])

elif filetype == "Image":
    path = raw_input("Please drag and drop the directory in which the file is stored into the terminal:")
    os.chdir(path[1:-2])
    filename = raw_input("Please enter the name of the file you would like to convert, including the file-type. e.g. test.txt, however please do make sure that the file-name does not have any spaces:")
    Fileextension = raw_input("What filetype would you like the program to convert your file to. E.g. .Jpeg: ")
    body, ext = os.path.splitext("filename")
    from subprocess import check_call   
    check_call(["ffmpeg" ,"-i", filename , + body + Fileextension])

当我现在运行程序时出现错误:

When i run the program now I get the error:

  File "conversion.py", line 15, in <module>
    check_call(["unoconv " ,"-f ", Fileextension , + filename])
TypeError: bad operand type for unary +: 'str'

关于如何解决这个问题的任何想法.代码将不胜感激,但在这一点上,任何帮助将不胜感激.

Any ideas as to how i can solve this. Code would be much appreciated, but at this point any help would be much appreciated.

推荐答案

由于错误提示您在数组中同时具有 ,+.根据您正在做的其他事情,您可能希望去掉 Fileextension 之后的 ,.您可能想将所有这些行更改为类似

As the error suggests you have both a , and + in the array. Based on the other things you're doing, you probably want to get rid of the , after Fileextension. You probably want to change all those lines to something like

subprocess.check_call(['unoconv', '-f', Fileextension, filename])

请注意,我还删除了unoconv"中的空格,否则它会寻找该空格作为可执行文件名称的一部分.

Note that I also got rid of the space in "unoconv " because it will otherwise be looking for that space as part of the executable name.

当将列表传递给 check_call 时,每个列表元素都被视为进程的参数(这是第一个列表元素).所以如果你想运行 unoconv -f file.ext 你的 check_call 列表变成了一个 3 元素列表: ['unoconv', '-f', '.txt', 'file.ext']

When passing a list to check_call each list element is treated as an argument to the process (which is the first list element). So if you want to run unoconv -f file.ext your list for check_call becomes a 3 element list: ['unoconv', '-f', '.txt', 'file.ext']

您似乎混淆了字符串连接以将扩展名放在文件名上并构建参数列表.

You seem to be mixing up the string concatenation to put the extension on the filenames and building the list of arguments.

这篇关于python脚本中的子进程错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆