Skip to content

Commit

Permalink
Merge pull request #5 from yajrendrag/pr-video_transcoder
Browse files Browse the repository at this point in the history
Pr video transcoder - missing generic_kwargs
  • Loading branch information
Josh5 authored Mar 24, 2024
2 parents 925c659 + f451b03 commit 2d9bdde
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

**<span style="color:#56adda">0.1.4</span>**
- add missing 'generic_kwargs' from return statement in nvenc.py basic config section

**<span style="color:#56adda">0.1.3</span>**
- fix nvenc 10 bit profile name

Expand Down
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
"on_worker_process": 1
},
"tags": "video,ffmpeg",
"version": "0.1.3"
"version": "0.1.4"
}
2 changes: 1 addition & 1 deletion lib/encoders/nvenc.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def args(self, stream_info, stream_id):
'-profile:v:{}'.format(stream_id), str(defaults.get('nvenc_profile')),
]
# TODO: Parse stream info to optimise these settings based on resolution, HDR, etc.
return stream_encoding
return generic_kwargs, stream_encoding

# Add the preset and tune
if self.settings.get_setting('nvenc_preset'):
Expand Down

0 comments on commit 2d9bdde

Please sign in to comment.