-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
If a job has input parameters specified that are not valid for ffprobe the job will fails. Common parameters that are not valid for ffprobe are for instance hwaccel. Example job:
{
"profile": "nvenc-test",
"outputFolder": "/output/folder",
"baseName": "tos",
"duration": null,
"inputs": [
{
"uri": "/folder/Videos/tos-padded.mp4",
"type": "AudioVideo",
"params": {
"hwaccel": "cuda",
"hwaccel_output_format": "cuda"
}
}
]
}
The cause of this seems to be that all input parameters are passed on to ffprobe for analyzing the input before transcodig is started.
To Reproduce
Steps to reproduce the behavior:
- Create a job with input paramters that are valid as ffmpeg input parameters, but not valid for ffprobe
- Run the job
- Job will fail
Expected behavior
Job should start.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working