├── .gitignore ├── DaVinciResolve ├── DaVinciResolve.ico ├── DaVinciResolve.options ├── DaVinciResolve.param ├── DaVinciResolve.py └── dl_script.py ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | # Jupyter Notebook 78 | .ipynb_checkpoints 79 | 80 | # IPython 81 | profile_default/ 82 | ipython_config.py 83 | 84 | # pyenv 85 | .python-version 86 | 87 | # pipenv 88 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 89 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 90 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 91 | # install all needed dependencies. 92 | #Pipfile.lock 93 | 94 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 95 | __pypackages__/ 96 | 97 | # Celery stuff 98 | celerybeat-schedule 99 | celerybeat.pid 100 | 101 | # SageMath parsed files 102 | *.sage.py 103 | 104 | # Environments 105 | .env 106 | .venv 107 | env/ 108 | venv/ 109 | ENV/ 110 | env.bak/ 111 | venv.bak/ 112 | 113 | # Spyder project settings 114 | .spyderproject 115 | .spyproject 116 | 117 | # Rope project settings 118 | .ropeproject 119 | 120 | # mkdocs documentation 121 | /site 122 | 123 | # mypy 124 | .mypy_cache/ 125 | .dmypy.json 126 | dmypy.json 127 | 128 | # Pyre type checker 129 | .pyre/ 130 | -------------------------------------------------------------------------------- /DaVinciResolve/DaVinciResolve.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puppetworks-Animation-Studio/deadline-davinci-resolve/43764c3cefdd8d5e5f9ea238fde7a16c73df119f/DaVinciResolve/DaVinciResolve.ico -------------------------------------------------------------------------------- /DaVinciResolve/DaVinciResolve.options: -------------------------------------------------------------------------------- 1 | [Folders] 2 | Type=string 3 | Label=Folders 4 | Category=Project 5 | CategoryOrder=0 6 | Description=Folders in which the project is, separated by "/" 7 | Index=0 8 | Required=false 9 | DisableIfBlank=false 10 | DefaultValue= 11 | 12 | [ProjectName] 13 | Type=string 14 | Label=Project Name 15 | Category=Project 16 | CategoryOrder=0 17 | Index=1 18 | Description=The name of the project to open 19 | Required=true 20 | DisableIfBlank=false 21 | DefaultValue= 22 | 23 | [Timeline] 24 | Type=string 25 | Label=Timeline Name 26 | Category=Project 27 | CategoryOrder=0 28 | Index=2 29 | Description=The name of the timeline to render 30 | Required=false 31 | DisableIfBlank=false 32 | DefaultValue= 33 | 34 | [OutputPath] 35 | Type=FilenameSave 36 | Label=Output Path 37 | Category=Output 38 | CategoryOrder=1 39 | Description=Where to save the output 40 | Index=0 41 | Required=true 42 | DisableIfBlank=false 43 | DefaultValue= 44 | 45 | [Format] 46 | Type=string 47 | Label=Format 48 | Category=Output 49 | CategoryOrder=1 50 | Description=What format to use when exporing video 51 | Index=1 52 | Required=false 53 | DisableIfBlank=false 54 | DefaultValue= 55 | 56 | [Codec] 57 | Type=string 58 | Label=Codec 59 | Category=Output 60 | CategoryOrder=1 61 | Description=What codec to use when exporting video 62 | Index=2 63 | Required=false 64 | DisableIfBlank=false 65 | DefaultValue= 66 | 67 | [RenderPreset] 68 | Type=string 69 | Label=Render Preset 70 | Category=Output 71 | CategoryOrder=1 72 | Description=What render preset to load before exporting 73 | Index=3 74 | Required=false 75 | DisableIfBlank=false 76 | DefaultValue= -------------------------------------------------------------------------------- /DaVinciResolve/DaVinciResolve.param: -------------------------------------------------------------------------------- 1 | [About] 2 | Type=label 3 | Label=About 4 | Category=About Plugin 5 | CategoryOrder=-1 6 | Index=0 7 | Default=DaVinci Resolve plugin for Deadline 8 | Description=Not configurable 9 | 10 | [ConcurrentTasks] 11 | Type=label 12 | Label=ConcurrentTasks 13 | Category=About Plugin 14 | CategoryOrder=-1 15 | Index=0 16 | Default=True 17 | Description=Not configurable 18 | 19 | [ResolveExecutable] 20 | Type=multilinemultifilename 21 | Label=Resolve Executable 22 | Category=Render Executables 23 | CategoryOrder=0 24 | Default=C:\Program Files\Blackmagic Design\DaVinci Resolve\Resolve.exe 25 | Description=The path to the Resolve executable file. Enter alternative paths on separate lines. 26 | 27 | [FuScriptExecutable] 28 | Type=multilinemultifilename 29 | Label=FuScript Executable 30 | Category=Render Executables 31 | CategoryOrder=0 32 | Default=C:\Program Files\Blackmagic Design\DaVinci Resolve\fuscript.exe 33 | Description=The path to the Fuscript executable file. Enter alternative paths on separate lines. -------------------------------------------------------------------------------- /DaVinciResolve/DaVinciResolve.py: -------------------------------------------------------------------------------- 1 | import time 2 | from FranticX.Processes import * 3 | from Deadline.Plugins import * 4 | from Deadline.Scripting import * 5 | from System.IO import * 6 | 7 | RESOLVE_PROCESS_NAME = "DaVinci Resolve Process" 8 | FUSCRIPT_PROCESS_NAME = "FuScript Process" 9 | 10 | __version__ = "0.1.0" 11 | 12 | 13 | def GetDeadlinePlugin(): 14 | return DaVinciResolvePlugin() 15 | 16 | 17 | def CleanupDeadlinePlugin(deadlinePlugin): 18 | deadlinePlugin.Cleanup() 19 | 20 | 21 | class DaVinciResolvePlugin(DeadlinePlugin): 22 | def __init__(self): 23 | self.InitializeProcessCallback += self.InitializeProcess 24 | self.StartJobCallback += self.StartJob 25 | self.RenderTasksCallback += self.RenderTasks 26 | self.EndJobCallback += self.EndJob 27 | 28 | def Cleanup(self): 29 | del self.InitializeProcessCallback 30 | del self.StartJobCallback 31 | del self.RenderTasksCallback 32 | del self.EndJobCallback 33 | 34 | # noinspection PyAttributeOutsideInit 35 | def InitializeProcess(self): 36 | self.SingleFramesOnly = True 37 | self.PluginType = PluginType.Advanced 38 | 39 | def StartJob(self): 40 | process = ResolveProcess(self) 41 | self.StartMonitoredManagedProcess(RESOLVE_PROCESS_NAME, process) 42 | self.SetStatusMessage("Waiting to start") 43 | 44 | def RenderTasks(self): 45 | fuscript_process = FuScriptProcess(self) 46 | self.StartMonitoredManagedProcess(FUSCRIPT_PROCESS_NAME, fuscript_process) 47 | self.SetMonitoredManagedProcessExitCheckingFlag(FUSCRIPT_PROCESS_NAME, True) 48 | self.FlushMonitoredManagedProcessStdout(RESOLVE_PROCESS_NAME) 49 | 50 | while not self.WaitForMonitoredManagedProcessToExit(FUSCRIPT_PROCESS_NAME, 1000): 51 | self.FlushMonitoredManagedProcessStdout(FUSCRIPT_PROCESS_NAME) 52 | self.FlushMonitoredManagedProcessStdout(RESOLVE_PROCESS_NAME) 53 | 54 | # blockingDialogMessage = self.CheckForMonitoredManagedProcessPopups(RESOLVE_PROCESS_NAME) 55 | # if (blockingDialogMessage != ""): 56 | # self.FailRender(blockingDialogMessage) 57 | 58 | # self.FlushFusionOutput(False) 59 | 60 | # blockingDialogMessage = self.CheckForMonitoredManagedProcessPopups(RESOLVE_PROCESS_NAME) 61 | # if (blockingDialogMessage != ""): 62 | # self.FailRender(blockingDialogMessage) 63 | 64 | # self.VerifyMonitoredManagedProcess(RESOLVE_PROCESS_NAME) 65 | 66 | if self.IsCanceled(): 67 | self.FailRender("Received cancel task command") 68 | 69 | self.FlushMonitoredManagedProcessStdout(FUSCRIPT_PROCESS_NAME) 70 | self.FlushMonitoredManagedProcessStdout(RESOLVE_PROCESS_NAME) 71 | 72 | fuscript_exit_code = self.GetMonitoredManagedProcessExitCode(FUSCRIPT_PROCESS_NAME) 73 | self.LogInfo("Fuscript returned exit code " + str(fuscript_exit_code)) 74 | if fuscript_exit_code != 0: 75 | self.FailRender("Fuscript exited before finishing, it may have been terminated externally") 76 | 77 | def EndJob(self): 78 | self.ShutdownMonitoredManagedProcess(RESOLVE_PROCESS_NAME) 79 | 80 | 81 | class ResolveProcess(ManagedProcess): 82 | def __init__(self, deadline_plugin): 83 | self.deadline_plugin = deadline_plugin 84 | self.RenderExecutableCallback += self.RenderExecutable 85 | self.InitializeProcessCallback += self.InitializeProcess 86 | self.RenderArgumentCallback += self.RenderArgument 87 | 88 | self.PopupHandling = True 89 | self.HandleQtPopups = True 90 | self.PopupMaxChildWindows = 50 91 | # self.HandleWindows10Popups = True 92 | 93 | self.SetEnvironmentVariable("QT_USE_NATIVE_WINDOWS", "1") 94 | self.PopupButtonClasses = ("Qt5QWindowIcon",) 95 | self.AddPopupHandler(".*", "QPushButtonClassWindow") 96 | # self.AddPopupIgnorer(".*") 97 | 98 | def Cleanup(self): 99 | del self.InitializeProcessCallback 100 | del self.RenderExecutableCallback 101 | del self.RenderArgumentCallback 102 | 103 | def InitializeProcess(self): 104 | pass 105 | 106 | def RenderExecutable(self): 107 | return self.deadline_plugin.GetConfigEntry("ResolveExecutable") 108 | 109 | def RenderArgument(self): 110 | return "-nogui" 111 | 112 | 113 | class FuScriptProcess(ManagedProcess): 114 | def __init__(self, deadline_plugin): 115 | self.deadline_plugin = deadline_plugin 116 | self.RenderExecutableCallback += self.RenderExecutable 117 | self.InitializeProcessCallback += self.InitializeProcess 118 | self.RenderArgumentCallback += self.RenderArgument 119 | 120 | self.SetEnvironmentVariable("PYTHONUNBUFFERED", "1") 121 | 122 | self.StdoutHandling = True 123 | self.AddStdoutHandlerCallback(".*'CompletionPercentage': (\d*)\..*'JobStatus': 'Rendering'").HandleCallback += self.HandleProgress 124 | self.AddStdoutHandlerCallback(".*'JobStatus': 'Failed', 'Error': '(.+)'").HandleCallback += self.HandleJobError 125 | self.AddStdoutHandlerCallback("Traceback").HandleCallback += self.HandleTraceback 126 | 127 | def Cleanup(self): 128 | del self.InitializeProcessCallback 129 | del self.RenderExecutableCallback 130 | del self.RenderArgumentCallback 131 | 132 | def InitializeProcess(self): 133 | pass 134 | 135 | def RenderExecutable(self): 136 | # return "python.exe" 137 | return self.deadline_plugin.GetConfigEntry("FuScriptExecutable") 138 | 139 | def RenderArgument(self): 140 | project_name = self.deadline_plugin.GetPluginInfoEntry("ProjectName") 141 | output_path = self.deadline_plugin.GetPluginInfoEntry("OutputPath") 142 | folders = self.deadline_plugin.GetPluginInfoEntryWithDefault("Folders", "") 143 | timeline = self.deadline_plugin.GetPluginInfoEntryWithDefault("Timeline", "") 144 | format_ = self.deadline_plugin.GetPluginInfoEntryWithDefault("Format", "") 145 | codec = self.deadline_plugin.GetPluginInfoEntryWithDefault("Codec", "") 146 | render_preset = self.deadline_plugin.GetPluginInfoEntryWithDefault("RenderPreset", "") 147 | 148 | dl_script = Path.Combine(self.deadline_plugin.GetPluginDirectory(), "dl_script.py") 149 | 150 | args = ['"{}" "{}" "{}"'.format(dl_script, project_name, output_path)] 151 | 152 | if folders: 153 | args.append('--folders "{}"'.format(folders)) 154 | 155 | if timeline: 156 | args.append('--timeline "{}"'.format(timeline)) 157 | 158 | if format_: 159 | args.append('--format "{}"'.format(format_)) 160 | 161 | if codec: 162 | args.append('--codec "{}"'.format(codec)) 163 | 164 | if render_preset: 165 | args.append('--render_preset "{}"'.format(render_preset)) 166 | 167 | return " ".join(args) 168 | 169 | def HandleProgress(self): 170 | progress = int(self.GetRegexMatch(1)) 171 | self.deadline_plugin.SetProgress(progress) 172 | self.deadline_plugin.SetStatusMessage("Rendering") 173 | 174 | def HandleJobError(self): 175 | message = self.GetRegexMatch(1) 176 | self.deadline_plugin.AbortRender(message) 177 | 178 | def HandleTraceback(self): 179 | self.deadline_plugin.FlushMonitoredManagedProcessStdout(FUSCRIPT_PROCESS_NAME) 180 | self.deadline_plugin.AbortRender("The execution of the script failed. Check the log for the error.") 181 | -------------------------------------------------------------------------------- /DaVinciResolve/dl_script.py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | import time 4 | import argparse 5 | from datetime import datetime 6 | 7 | try: 8 | import DaVinciResolveScript as dvr_script 9 | except ImportError: 10 | # sys.path.append("%PROGRAMDATA%/Blackmagic Design/DaVinci Resolve/Support/Developer/Scripting/Modules") 11 | sys.path.append("C:/ProgramData/Blackmagic Design/DaVinci Resolve/Support/Developer/Scripting/Modules") 12 | import DaVinciResolveScript as dvr_script 13 | 14 | 15 | def main(): 16 | parser = argparse.ArgumentParser() 17 | parser.add_argument("project_name") 18 | parser.add_argument("output_path") 19 | parser.add_argument("--folders", default="") 20 | parser.add_argument("--timeline", default="") 21 | parser.add_argument("--format", default="") 22 | parser.add_argument("--codec", default="") 23 | parser.add_argument("--render_preset", default="") 24 | args = parser.parse_args() 25 | 26 | project_name = args.project_name 27 | output_path = args.output_path 28 | folders = args.folders 29 | timeline_name = args.timeline 30 | format_ = args.format 31 | codec = args.codec 32 | render_preset = args.render_preset 33 | 34 | formatted_output_path = datetime.now().strftime(output_path) 35 | 36 | resolve = _connect_to_resolve() 37 | project = _load_project(resolve, project_name, folders) 38 | 39 | if timeline_name: 40 | _set_timeline(project, timeline_name) 41 | 42 | _setup_render_job(project, formatted_output_path, format_, codec, render_preset) 43 | _start_render(project) 44 | 45 | 46 | def _connect_to_resolve(): 47 | resolve = None 48 | i = 0 49 | while i < 5: 50 | resolve = dvr_script.scriptapp("Resolve") 51 | if resolve is not None: 52 | break 53 | print "Waiting for Resolve to start..." 54 | time.sleep(5) 55 | i += 1 56 | if resolve is None: 57 | raise RuntimeError("Could not connect to DaVinci Resolve. There may be a problem starting it, or you may be using the free version.") 58 | print "wait a bit more for resolve to become responsible" 59 | time.sleep(5) 60 | return resolve 61 | 62 | 63 | def _load_project(resolve, project_name, folders): 64 | project_manager = resolve.GetProjectManager() 65 | if folders: 66 | folders = folders.replace("\\", "/") 67 | for folder in folders.split("/"): 68 | print "Opening folder:", folder 69 | assert project_manager.OpenFolder(folder), "Cannot open folder." 70 | print "Loading project:", project_name 71 | assert project_manager.LoadProject(project_name), "Cannot load project." 72 | project = project_manager.GetCurrentProject() 73 | print project 74 | return project 75 | 76 | 77 | def _set_timeline(project, timeline_name): 78 | for i in xrange(int(project.GetTimelineCount())): # GetTimelineCount returns float... 79 | timeline = project.GetTimelineByIndex(i + 1) # index starts from 1 80 | # print timeline.GetName() 81 | if timeline.GetName() == timeline_name: 82 | print "Setting current timeline to", timeline.GetName() 83 | assert project.SetCurrentTimeline(timeline), "Cannot set timeline." 84 | 85 | 86 | def _setup_render_job(project, formatted_output_path, format_="", codec="", render_preset=""): 87 | assert project.DeleteAllRenderJobs(), "Cannot delete render jobs..." 88 | 89 | print "Loading render preset [{}]".format(render_preset) 90 | assert project.LoadRenderPreset(render_preset), "Cannot set render_preset [{}]".format(render_preset) 91 | 92 | render_settings = { 93 | # "SelectAllFrames": ?, 94 | # "MarkIn": ?, 95 | # "MarkOut": ?, 96 | "TargetDir": os.path.dirname(formatted_output_path), 97 | "CustomName": os.path.basename(formatted_output_path) 98 | } 99 | assert project.SetRenderSettings(render_settings), "Cannot set render settings..." 100 | 101 | if format_ and codec: 102 | assert project.SetCurrentRenderFormatAndCodec(format_, codec), "Cannot set render format/codec." 103 | 104 | assert project.AddRenderJob(), "Cannot add render job..." 105 | 106 | 107 | def _start_render(project): 108 | assert project.StartRendering(1) 109 | while project.IsRenderingInProgress(): 110 | print project.GetRenderJobStatus(1) 111 | # sys.stdout.flush() 112 | time.sleep(1) 113 | print project.GetRenderJobStatus(1) 114 | 115 | 116 | if __name__ == '__main__': 117 | main() 118 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Puppetworks Animation Studio 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DaVinci Resolve Deadline 2 | DaVinci Resolve plugin for Thinkbox Deadline. 3 | 4 | ## Features 5 | Open a DaVinci Resolve project on Deadline, and render to a specific location. 6 | 7 | ## Requirements 8 | * Studio version of DaVinci Resolve. **It won't work with the free version**. Tested with 16.1. 9 | * Tested with Thinkbox Deadline 8, but it should work with 9/10 too. 10 | 11 | ## Installation 12 | Copy the `DaVinciResolve` folder to the `custom/plugins` folder of your Deadline installation. 13 | 14 | If you installed DaVinci in a custom location, set the `Resolve` and `fuscript` executables through `Tools/Configure Plugins/DaVinciResolve` 15 | 16 | ## Limitations 17 | * Since there is no API in DaVinci to manage the project database, the plugin can only work on the last opened one. 18 | Make sure to have only one centralized project database opened on your slaves. 19 | * DaVinci uses custom Qt dialogs, that Deadline cannot catch with `AddPopupHandler`, so make sure when opening a DaVinci project 20 | it does not pop up an error dialog like the no permission for cache/gallery/capture paths. 21 | You can avoid it by setting these paths to a shared drive. You probably also have to set as the first path the Media Storage in preferences ([more info](https://forum.blackmagicdesign.com/viewtopic.php?f=21&t=58481)). 22 | 23 | ## Usage 24 | Submit a job with `DaVinciResolve` plugin type and the following plugin parameters: 25 | * `ProjectName`: The name of the DaVinci project to load. 26 | * `Folders` (optional): Folders to open in the current project database, where the project resides. 27 | Can contain path separators (/ or \\), to open multiple subfolders. Example: `folder/subfolder1/subfolder2` 28 | * `Timeline` (optional): Name of the timeline to set as current. 29 | * `OutputPath`: File path to render to. This path is put through a `datetime.now().strftime()` so it can contain any [formatting tag](https://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior). 30 | Example: `c:/temp/output_%Y%m%d-%H%M.mov` results in `c:/temp/output_20200103-1539.mov` 31 | * `RenderPreset`: (optional): Render preset to use when exporting the movie. If you are using a custom one, make sure to save it into the project file. Example: `YouTube - 1080p` 32 | * `Format`: (optional, but Format + Codec have to be both specified to be set) Format to be used when exporting. Example: `mp4` 33 | * `Codec`: (optional, but Format + Codec have to be both specified to be set) Codec to be used when exporting. Example: `h264` 34 | 35 | ##### Notes 36 | * The RenderPreset is loaded first, then the Format+Codec, so you can override these settings from the preset. 37 | * If any of the optional parameters are not set, the values in the project file will be used. 38 | * If any of the parameters cannot be set, the job will fail. 39 | 40 | ### Example submission 41 | job_info.txt file 42 | ``` 43 | Name=Test DaVinci job 44 | Frames=1 45 | Plugin=DaVinciResolve 46 | ``` 47 | plugin_info.txt file 48 | ``` 49 | OutputPath=c:/output/%y%m%d/auto_davinci_output_%Y%m%d-%H%M.mp4 50 | ProjectName=masterproject 51 | Folders=folder1 52 | Timeline=timeline1 53 | ``` 54 | command to run: `deadlinecommand.exe job_info.txt plugin_info.txt` 55 | --------------------------------------------------------------------------------