WWBN / AVideo-Encoder

Encoder Server for AVideo Platform Open-Source
https://platform.avideo.com
GNU Affero General Public License v3.0
152 stars 189 forks source link

Allow multiple encoding at the same time #407

Closed aolvictim closed 3 years ago

aolvictim commented 3 years ago

Is there a way to allow multiple encoding running at the same time? The use case is when the encoder server has multiple GPUs or high thread count CPUs, I can speed up the encoding process greatly if I can run multiple encodings at the same time.

DanielnetoDotCom commented 3 years ago

You may want to use this ...

https://github.com/WWBN/AVideo-Encoder-Network

or you may want to add the variable $global['concurrent'] in your Encoder/videos/configuration.php

For example:

$global['concurrent'] = 3;

you will encode up to 3 videos at the same time

aolvictim commented 3 years ago

Got it. Thanks

akhilleusuggo commented 3 years ago

@DanielnetoDotCom wow, didn't know that. You need to update the wiki, specially with this hidden variable as we did on AVideo main site.

https://github.com/WWBN/AVideo/wiki/Configuration.php-variable-(-some-are-hidden-)

DanielnetoDotCom commented 3 years ago

This variable is for the encoder I will create something similar on the encoder project

DanielnetoDotCom commented 3 years ago

https://github.com/WWBN/AVideo-Encoder/wiki/Configuration.php-variable-(-some-are-hidden-)

akhilleusuggo commented 3 years ago

Thank you !