video.Record
Example
How to create a basic IVideoWriter, and how to use it
local config = {
container = "webm",
video = "vp8",
audio = "vorbis",
quality = 50,
bitrate = 200,
fps = 30,
lockfps = true,
name = "Test",
width = 1280,
height = 720
}
local iVideoWriter = video.Record( config )
iVideoWriter:SetRecordSound( true )
local function Record()
iVideoWriter:AddFrame( FrameTime(), true )
end
function StartRecording()
hook.Add( "DrawOverlay", "Record", Record )
end
function StopRecording()
hook.Remove( "DrawOverlay", "Record" )
iVideoWriter:Finish()
end