-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
nv-video-info | ||
============= | ||
|
||
This project provides utilities to print out the capabilities of the NVDEC and | ||
NVENC functions in nvidia GPUs. | ||
|
||
NVDEC and NVENC | ||
--------------- | ||
|
||
NVDEC and NVENC are nvidia's names for their GPUs dedicated video decoding and | ||
encoding functions respectively. These allow, in theory, for video processing | ||
to be done more quickly and efficiently than on a CPU. | ||
|
||
More details about NVDEC and NVENC are can be found | ||
[here](https://developer.nvidia.com/nvidia-video-codec-sdk). | ||
|
||
`nvdecinfo` and `nvencinfo` | ||
--------------------------- | ||
|
||
The two utilities provided by this project will print out the capabilities | ||
reported by nvidia GPUs. Most, but not all, GPUs have both decoding and | ||
encoding functionality. | ||
|
||
Requirements | ||
------------ | ||
|
||
* [nv-codec-headers](https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git) >= 9.1.23.0 | ||
* nvidia GPU drivers installed on the system | ||
|
||
Operating Systems | ||
----------------- | ||
|
||
I developed these utilities on Linux and have only tested them there. I believe | ||
it is fairly simple to build them on Windows, and would happily accept any PRs | ||
to make that work out-of-the-box. |