Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LibAVQt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nik | Klampfradler
LibAVQt
Commits
add8a2b5
Commit
add8a2b5
authored
4 years ago
by
Silas Della Contrada
Browse files
Options
Downloads
Patches
Plain Diff
Updated README.md with additional decoders
parent
254e6fe9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+22
-7
22 additions, 7 deletions
README.md
with
22 additions
and
7 deletions
README.md
+
22
−
7
View file @
add8a2b5
...
@@ -6,16 +6,17 @@ An object-oriented Qt interface for FFmpeg.
...
@@ -6,16 +6,17 @@ An object-oriented Qt interface for FFmpeg.
### Current
### Current
-
VAAPI accelerated decode
-
VAAPI, QSV, DXVA2 accelerated decode
-
VAAPI accelerated encode (
***WIP***
)
-
Frame sink for saving every n-th frame to file
-
Frame sink for saving every n-th frame to file
-
QOpenGLWidget based renderer
(
***WIP***
)
-
QOpenGLWidget based renderer
-
OpenAL based audio output (
***
WIP
***
)
-
OpenAL based audio output (
***
unstable
***
)
### Planned
### Planned
-
Reliable API Reference
-
Reliable API Reference
-
Audio encode
-
Audio encode
-
Other hardware accelerations
-
Other hardware accelerations
(NVDEC/NVENC, AMF, VDPAU, MMAL)
-
Frame filters for e.g. scaling or color
<->
greyscale
-
Frame filters for e.g. scaling or color
<->
greyscale
-
Other renderers (e.g. QWidget, QGraphicsItem)
-
Other renderers (e.g. QWidget, QGraphicsItem)
-
CMake module
-
CMake module
...
@@ -60,13 +61,27 @@ include_directories(<path>)
...
@@ -60,13 +61,27 @@ include_directories(<path>)
link_directories(<path>/build/AVQt)
link_directories(<path>/build/AVQt)
```
```
Dynamic link:
```
target_link_libraries(<target-name> AVQt)
```
Static link:
```
target_link_libraries(<target-name> AVQt_static)
```
## Examples
## Examples
A simple example for displaying video with the OpenGLRenderer and OpenALAudioOutput can be found
A simple example for displaying video with the OpenGLRenderer and OpenALAudioOutput can be found
in
``main.cpp``
. It
in
``main.cpp``
. It
will be compiled along with the library by the commands above.
will be compiled along with the library by the commands above.
### Run the example
### Run the example
In your build directory, run the example by:
In your build directory, run the example by:
```
```
./Player
./Player
```
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment