Skip to content

Commit

Permalink
tweak docs
Browse files Browse the repository at this point in the history
  • Loading branch information
naanlizard committed Nov 19, 2024
1 parent 3d61a6b commit 5354e2f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 9 deletions.
17 changes: 9 additions & 8 deletions docs/transcoding/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,16 +348,17 @@ Supported since OvenmediaEngine version 0.18.0

```xml
<OutputProfiles>
<!--
Common setting for decoders. Decodes is optional.
-->
<Decodes>
<!-- Common setting for decoders. Decodes is optional. -->
<Decodes>
<!--
By default, OME decodes all video frames. If OnlyKeyframes is true, only the keyframes will be decoded, massively improving performance
The trade off is that since thumbnails can only be generated on a keyframe, you have less control regarding the exact timing of the thumbnail generation
By default, OME decodes all video frames.
With OnlyKeyframes, only keyframes are decoded,
massively improving performance.
Thumbnails are generated only on keyframes,
they may not generate at your requested fps!
-->
<OnlyKeyframes>true</OnlyKeyframes>
</Decodes>
<OnlyKeyframes>true</OnlyKeyframes>
</Decodes>

<OutputProfile>
<Encodes>
Expand Down
12 changes: 11 additions & 1 deletion misc/conf_examples/Server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,17 @@
<!-- Application type (live/vod) -->
<Type>live</Type>
<OutputProfiles>

<!-- Common setting for decoders. Decodes is optional. -->
<Decodes>
<!--
By default, OME decodes all video frames.
With OnlyKeyframes, only keyframes are decoded,
massively improving performance.
Thumbnails are generated only on keyframes,
they may not generate at your requested fps!
-->
<OnlyKeyframes>true</OnlyKeyframes>
</Decodes>
<!--
Common setting for decoders. Decodes is optional.
Expand Down

0 comments on commit 5354e2f

Please sign in to comment.