love-video
SKILL.md
When to use this skill
This module is responsible for decoding, controlling, and streaming video files. It can't draw the videos, see love.graphics.newVideo and Video objects for that. Use this skill when working with video operations, video decoding, video streaming, or any video-related operations in LÖVE games.
Common use cases
- Playing video files and streams
- Managing video playback and control
- Handling video decoding and processing
- Implementing video-based game elements
- Working with video metadata and properties
Functions
love.video.newVideoStream- Creates a new VideoStream. Currently only Ogg Theora video files are supported. VideoStreams can't draw videos, see love.graphics.newVideo for that.love.video.newVideoStream(filename: string) -> videostream: VideoStream: No descriptionlove.video.newVideoStream(file: File) -> videostream: VideoStream: No description