Nodes
This module contains all node types that make up the FFmpeg processing graph.
Base Node Classes
pyffmpeg.node.Node
Abstract base class for all components in the FFmpeg processing graph.
pyffmpeg.node.ProcessableNode
Bases: Node
Nodes that can be further processed with filters.
Source code in src/pyffmpeg/node.py
17 18 19 20 21 22 23 | |
__init__(num_output_streams=1)
Source code in src/pyffmpeg/node.py
20 21 22 23 | |
pyffmpeg.node.RunnableNode
Bases: Node
Source code in src/pyffmpeg/node.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | |
__init__()
Source code in src/pyffmpeg/node.py
27 28 | |
global_args(*args)
Adds global options
Source code in src/pyffmpeg/node.py
30 31 32 33 | |
overwrite_output()
Adds global overwrite option
Source code in src/pyffmpeg/node.py
35 36 37 38 | |
get_args(overwrite_output=False, **global_options)
Builds a list of command arguments based on the current graph.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
overwrite_output
|
bool
|
If True, adds the '-y' flag to overwrite output files without asking. Defaults to False. |
False
|
**global_options
|
Arbitrary global options passed to FFmpeg (e.g., v="quiet" becomes -v quiet). |
{}
|
Returns:
| Type | Description |
|---|---|
list[str]
|
list[str]: A list of command-line arguments (excluding the executable name). |
Source code in src/pyffmpeg/node.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | |
compile(cmd='ffmpeg', overwrite_output=False, **global_options)
Builds the full command line arguments for invoking FFmpeg, including the executable.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cmd
|
str
|
The path to the FFmpeg executable or command list. Defaults to "ffmpeg". |
'ffmpeg'
|
overwrite_output
|
bool
|
If True, adds the '-y' flag to overwrite output files. Defaults to False. |
False
|
**global_options
|
Additional global options. |
{}
|
Returns:
| Type | Description |
|---|---|
list[str]
|
list[str]: The complete command line arguments ready for execution. |
Source code in src/pyffmpeg/node.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | |
run(cmd='ffmpeg', capture_stdout=False, capture_stderr=False, input=None, quiet=False, overwrite_output=False, cwd=None, compile_function=None)
Execute the ffmpeg command represented by a RunnableNode synchronously.
This method compiles the graph into an FFmpeg command and runs it using subprocess.run. It waits for the command to finish.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cmd
|
str | list[str]
|
The path to the FFmpeg executable or a command list. Defaults to "ffmpeg". |
'ffmpeg'
|
capture_stdout
|
bool
|
If True, captures standard output and returns it. Defaults to False. |
False
|
capture_stderr
|
bool
|
If True, captures standard error and returns it. Defaults to False. |
False
|
input
|
bytes | None
|
Input data to be passed to the process's stdin. Defaults to None. |
None
|
quiet
|
bool
|
If True, passes a quiet flag to the compilation step to suppress logs. Defaults to False. |
False
|
overwrite_output
|
bool
|
If True, adds the '-y' flag to overwrite output files. Defaults to False. |
False
|
cwd
|
str | None
|
Sets the current working directory for the process. Defaults to None. |
None
|
compile_function
|
Callable | None
|
A custom function to compile the arguments. If None, uses self.class.compile. Defaults to None. |
None
|
Returns:
| Type | Description |
|---|---|
bytes | None
|
tuple[bytes | None, bytes | None]: A tuple containing (stdout, stderr). |
bytes | None
|
If capture_stdout/stderr is False, the corresponding value will be None. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If the current instance is not a RunnableNode. |
Error
|
If the FFmpeg process returns a non-zero exit code (wraps CalledProcessError). |
Source code in src/pyffmpeg/node.py
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | |
run_async(cmd='ffmpeg', pipe_stdin=False, pipe_stdout=False, pipe_stderr=False, quiet=False, overwrite_output=False, cwd=None)
Runs the ffmpeg process asynchronously and returns a Popen object.
This method compiles the graph and starts the process using subprocess.Popen. It does not wait for the process to finish.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cmd
|
str | list[str]
|
The path to the FFmpeg executable. Defaults to "ffmpeg". |
'ffmpeg'
|
pipe_stdin
|
bool
|
If True, opens a pipe for standard input (stdin=subprocess.PIPE). Defaults to False. |
False
|
pipe_stdout
|
bool
|
If True, opens a pipe for standard output (stdout=subprocess.PIPE). Defaults to False. |
False
|
pipe_stderr
|
bool
|
If True, opens a pipe for standard error (stderr=subprocess.PIPE). Defaults to False. |
False
|
quiet
|
bool
|
If True, redirects stderr to stdout and stdout to DEVNULL. Overrides pipe configurations to silence output. Defaults to False. |
False
|
overwrite_output
|
bool
|
If True, adds the '-y' flag to overwrite output files. Defaults to False. |
False
|
cwd
|
str | None
|
Sets the current working directory for the process. Defaults to None. |
None
|
Returns:
| Type | Description |
|---|---|
Popen
|
subprocess.Popen: A handle to the running FFmpeg process. |
Source code in src/pyffmpeg/node.py
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | |
Input/Output Nodes
pyffmpeg.node.InputNode
Bases: ProcessableNode
Nodes representing input files.
Source code in src/pyffmpeg/node.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | |
__init__(filename, options=None)
Source code in src/pyffmpeg/node.py
228 229 230 231 | |
get_input_args()
Returns command args for this input
Source code in src/pyffmpeg/node.py
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | |
pyffmpeg.node.OutputNode
Bases: RunnableNode
Nodes representing output files.
Source code in src/pyffmpeg/node.py
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | |
__init__(filename, inputs, output_options={})
Source code in src/pyffmpeg/node.py
262 263 264 265 266 267 268 269 270 271 | |
get_output_args(enforce_output_mapping)
Builds command args representing the output
Source code in src/pyffmpeg/node.py
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | |
pyffmpeg.node.MergedOutputNode
Bases: RunnableNode
Node representing multiple outputs
Source code in src/pyffmpeg/node.py
339 340 341 342 343 344 | |
__init__(outputs)
Source code in src/pyffmpeg/node.py
342 343 344 | |
pyffmpeg.node.SinkNode
Bases: RunnableNode
Represents a graph terminal node that is a sink filter (e.g., nullsink, buffersink), not a file output.
Source code in src/pyffmpeg/node.py
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | |
__init__(filter_node)
Source code in src/pyffmpeg/node.py
353 354 355 356 | |
Filter Nodes
pyffmpeg.node.FilterNode
Bases: ProcessableNode
Nodes representing filter operations.
Source code in src/pyffmpeg/node.py
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 | |
__init__(filter_name, positional_arguments, named_arguments, inputs, num_output_streams=1)
Source code in src/pyffmpeg/node.py
370 371 372 373 374 375 376 377 378 379 380 381 382 | |
get_command_string()
Builds a command string based on this filter
Source code in src/pyffmpeg/node.py
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 | |
pyffmpeg.node.FilterMultiOutput
Filter node wrapper which allows creating arbitrary outputs for the filter node dynamically
Source code in src/pyffmpeg/node.py
776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 | |
__getitem__(key)
Returns new or existing stream under label
Source code in src/pyffmpeg/node.py
783 784 785 786 787 788 789 790 791 792 | |