{{SKILL_DESCRIPTION}} Use this skill when working with video operations, video decoding, video streaming, or any video-related operations in LÖVE games.
-- Load and play a video file
local video = love.graphics.newVideo("intro.mp4")
video:play()
function love.draw()
if video:isPlaying() then
love.graphics.draw(video, 0, 0)
end
end
Video control
-- Control video playback
function love.keypressed(key)
if key == "space" then
if video:isPlaying() then
video:pause()
else
video:play()
end
elseif key == "escape" then
video:stop()
end
end
Best practices
Preload videos during loading screens
Consider performance implications of video playback
Use appropriate video formats and codecs
Handle video loading and playback errors gracefully
Test video playback on target platforms
Platform compatibility
Desktop (Windows, macOS, Linux): Full video support
Mobile (iOS, Android): Limited video format support
Web: Browser-based video support with format limitations
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: redkenrok-skills-love-video3description: When to use this skill4---56## When to use this skill7{{SKILL_DESCRIPTION}} Use this skill when working with video operations, video decoding, video streaming, or any video-related operations in LÖVE games.89## Common use cases10- Playing video files and streams11- Managing video playback and control12- Handling video decoding and processing13- Implementing video-based game elements14- Working with video metadata and properties1516{{MODULES_LIST}}17{{FUNCTIONS_LIST}}18{{CALLBACKS_LIST}}19{{TYPES_LIST}}20{{ENUMS_LIST}}2122## Examples2324### Playing a video25```lua26-- Load and play a video file27local video = love.graphics.newVideo("intro.mp4")28video:play()2930function love.draw()31 if video:isPlaying() then32 love.graphics.draw(video, 0, 0)33 end34end35```3637### Video control38```lua39-- Control video playback40function love.keypressed(key)41 if key == "space" then42 if video:isPlaying() then43 video:pause()44 else45 video:play()46 end47 elseif key == "escape" then48 video:stop()49 end50end51```5253## Best practices54- Preload videos during loading screens55- Consider performance implications of video playback56- Use appropriate video formats and codecs57- Handle video loading and playback errors gracefully58- Test video playback on target platforms5960## Platform compatibility61- **Desktop (Windows, macOS, Linux)**: Full video support62- **Mobile (iOS, Android)**: Limited video format support63- **Web**: Browser-based video support with format limitations6465---66> Converted and distributed by [TomeVault](https://tomevault.io/claim/redkenrok) — claim your Tome and manage your conversions.67<!-- tomevault:4.0:skill_md:2026-04-15 -->
Run npx skillmds@latest add tomevault-io/redkenrok-skills-love-video in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
When to use this skill It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.