Module video_player

Procs

proc audioTrack(self: VideoPlayer): int64 {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc audioTrack=(self: VideoPlayer; val: int64) {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc stream(self: VideoPlayer): VideoStream {.
gcsafe, locks: 0, raises: [Exception], tags: [RootEffect]
.}
proc stream=(self: VideoPlayer; val: VideoStream) {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc volumeDb(self: VideoPlayer): float64 {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc volumeDb=(self: VideoPlayer; val: float64) {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc volume(self: VideoPlayer): float64 {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc volume=(self: VideoPlayer; val: float64) {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc autoplay(self: VideoPlayer): bool {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc autoplay=(self: VideoPlayer; val: bool) {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc paused(self: VideoPlayer): bool {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc paused=(self: VideoPlayer; val: bool) {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc expand(self: VideoPlayer): bool {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc expand=(self: VideoPlayer; val: bool) {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc bufferingMsec(self: VideoPlayer): int64 {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc bufferingMsec=(self: VideoPlayer; val: int64) {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc streamPosition(self: VideoPlayer): float64 {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc streamPosition=(self: VideoPlayer; val: float64) {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc bus(self: VideoPlayer): string {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc bus=(self: VideoPlayer; val: string) {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc play(self: VideoPlayer) {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc stop(self: VideoPlayer) {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc isPlaying(self: VideoPlayer): bool {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc getStreamName(self: VideoPlayer): string {.
gcsafe, locks: 0, raises: [], tags: []
.}
proc getVideoTexture(self: VideoPlayer): Texture {.
gcsafe, locks: 0, raises: [Exception], tags: [RootEffect]
.}