-
Notifications
You must be signed in to change notification settings - Fork 7
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
303 changed files
with
24,429 additions
and
3,100 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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,84 @@ | ||
--- | ||
layout: standard | ||
title: Documentation | ||
wrap_title: "Consumer: sdl2" | ||
category: plugin | ||
--- | ||
* TOC | ||
{:toc} | ||
|
||
## Plugin Information | ||
|
||
title: SDL2 | ||
media types: | ||
Audio Video | ||
description: Simple DirectMedia Layer audio and video output module | ||
version: 1 | ||
creator: Dan Dennedy | ||
copyright: Meltytech, LLC | ||
license: LGPLv2.1 | ||
|
||
## Parameters | ||
|
||
### resolution | ||
|
||
title: Resolution | ||
description: | ||
The size of the window as WxH pixels | ||
type: string | ||
readonly: no | ||
required: no | ||
|
||
### volume | ||
|
||
title: Volume | ||
description: | ||
Audio level factor | ||
type: float | ||
readonly: no | ||
required: no | ||
|
||
### video_off | ||
|
||
title: Video off | ||
description: | ||
Disable video output | ||
type: boolean | ||
readonly: no | ||
required: no | ||
default: 0 | ||
widget: checkbox | ||
|
||
### audio_off | ||
|
||
title: Audio off | ||
description: | ||
Disable audio output | ||
type: boolean | ||
readonly: no | ||
required: no | ||
default: 0 | ||
widget: checkbox | ||
|
||
### audio_buffer | ||
|
||
title: Audio buffer | ||
description: | ||
Size of the SDL audio buffer | ||
type: integer | ||
readonly: no | ||
required: no | ||
minimum: 128 | ||
default: 2048 | ||
|
||
### scrub_audio | ||
|
||
title: Audio scrubbing | ||
description: | ||
Play sound even when the speed is not normal. | ||
type: boolean | ||
readonly: no | ||
required: no | ||
default: 1 | ||
widget: checkbox | ||
|
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,68 @@ | ||
--- | ||
layout: standard | ||
title: Documentation | ||
wrap_title: "Consumer: sdl_audio" | ||
category: plugin | ||
--- | ||
* TOC | ||
{:toc} | ||
|
||
## Plugin Information | ||
|
||
title: SDL Audio Only | ||
media types: | ||
Audio | ||
description: Simple DirectMedia Layer audio only output module. | ||
version: 1 | ||
creator: Dan Dennedy | ||
copyright: Meltytech, LLC | ||
license: LGPLv2.1 | ||
|
||
## Parameters | ||
|
||
### volume | ||
|
||
title: Volume | ||
description: | ||
Audio level factor. | ||
type: float | ||
readonly: no | ||
required: no | ||
|
||
### audio_off | ||
|
||
title: Audio off | ||
description: | ||
If 1, disable audio output | ||
type: integer | ||
readonly: no | ||
required: no | ||
minimum: 0 | ||
maximum: 1 | ||
default: 0 | ||
widget: checkbox | ||
|
||
### audio_buffer | ||
|
||
title: Audio buffer | ||
description: | ||
Size of the sdl audio buffer. | ||
type: integer | ||
readonly: no | ||
required: no | ||
minimum: 128 | ||
default: 2048 | ||
|
||
### scrub_audio | ||
|
||
title: Audio scrubbing | ||
description: | ||
If enabled, sound is played even when the speed is not normal. | ||
type: integer | ||
readonly: no | ||
required: no | ||
minimum: 0 | ||
maximum: 1 | ||
default: 0 | ||
widget: checkbox | ||
|
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
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
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
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,17 @@ | ||
--- | ||
layout: standard | ||
title: Documentation | ||
wrap_title: "Filter: avfilter.acopy" | ||
category: plugin | ||
--- | ||
* TOC | ||
{:toc} | ||
|
||
## Plugin Information | ||
|
||
title: acopy | ||
media types: | ||
Audio | ||
description: Copy the input audio unchanged to the output. | ||
version: Lavfi6.107.100 | ||
creator: libavfilter maintainers |
Oops, something went wrong.