English 中文(简体)
python - 使用多个进程/平行处理
原标题:python - using multiple processes / parallel processing

于是我写了一个小的python脚本, 让我可以指定一些文件夹, 包含视频文件, 和一些输出目录, 以及所有视频文件的程序循环, 然后用手刹来转换它们, 例如 :

proc = subprocess.Popen( HandBrakeCLI -i ... -o ... )
proc.wait()

所以它可以逐个处理目录中的每个文件。 我有一个四重核心机器, 并且想要通过平行进行视频转换来加快速度, 但我不完全理解如何接近它。

我需要像 os.fork () 那样的东西吗? 更像是多处理模块吗? 我来自单一的刺绣地, 对我来说比较新鲜。

谢谢你的帮助!

最佳回答

类似这般的东西应该能做这个把戏:

import multiprocessing
...
def wrapper(currentfile):
    #create your commandline -- for the sake of simplicity, I assume that
    #the only thing that changes is the filename you are passing to
    #HandBrakeCLI (and that the filename is the last argument to pass)
    cmd= HandBrakeCLI -i ... -o ...  +currentfile 
    proc = subprocess.Popen(cmd)
    proc.wait()
    return  foo 

files=os.listdir(path)  #Any way that you build up your list of files is fine
output = multiprocessing.Pool(4).map(wrapper,files) #output is [ foo ,  foo , ...,  foo ]

当然, 这使用类似 < code> map 的函数来表达许多python 人不喜欢的副作用... 但我觉得它足够直观 -- 特别是如果你留下一个评论的话。 我还让函数返回 Foo 来证明您可以很容易地从函数中获取返回值 。

问题回答

我建议使用“https://github.com/kennethreitz/envoy” rel=“nofollow”>envoy 图书馆。在引擎盖下,它利用线线库生成新的 cmd 线程序,所以如果你使用 连接 函数, 像这样 :

import envoy
proc = envoy.connect( HandBrakeCLI -i ... -o ... )
while proc.status_code = None:
    sleep(5)

您可以一次产多少胎, 并等待一个出口再产另一个出口。 请注意, 如果您有问题, 我有一个 < a href=" https:// github. com/ srathbun/ envoy" rel=" nofollow" > fork , 您可能想要检查我的修正 。

我遇到了一个引号问题, 涉及Shlex图书馆如何处理报价 以及你Cmd的线条程序所期望的。 自从我把它用在窗户上, 在一个po6/ non-posix 模式的问题中。





相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签