Video:getStream

Video:getStream Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the VideoStream object used for decoding and controlling the video. Function Synopsis stream = Video:getStream( ) Arguments None. Returns VideoStream stream The VideoStream used for decoding and controlling the video. See Also Video VideoStream

Video:getWidth

Video:getWidth Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the width of the Video in pixels. Function Synopsis width = Video:getWidth( ) Arguments None. Returns number width The width of the Video. See Also Video Video:getHeight Video:getDimensions

Video:isPlaying

Video:isPlaying Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets whether the Video is currently playing. Function Synopsis playing = Video:isPlaying( ) Arguments None. Returns boolean playing Whether the video is playing. See Also Video Video:play Video:pause

Video:pause

Video:pause Available since LÖVE 0.10.0 This function is not supported in earlier versions. Pauses the Video. Function Synopsis Video:pause( ) Arguments None. Returns Nothing. See Also Video Video:play Video:isPlaying

Video:play

Video:play Available since LÖVE 0.10.0 This function is not supported in earlier versions. Starts playing the Video. In order for the video to appear onscreen it must be drawn with love.graphics.draw. Function Synopsis Video:play( ) Arguments None. Returns Nothing. See Also Video Video:pause Video:isPlaying

Video:rewind

Video:rewind Available since LÖVE 0.10.0 This function is not supported in earlier versions. Rewinds the Video to the beginning. Function Synopsis Video:rewind( ) Arguments None. Returns Nothing. See Also Video Video:play Video:seek Video:tell

Video:seek

Video:seek Available since LÖVE 0.10.0 This function is not supported in earlier versions. Sets the current playback position of the Video. Function Synopsis Video:seek( offset ) Arguments number offset The time in seconds since the beginning of the Video. Returns Nothing. See Also Video Video:rewind Video:tell

Video:setFilter

Video:setFilter Available since LÖVE 0.10.0 This function is not supported in earlier versions. Sets the scaling filters used when drawing the Video. Function Synopsis Video:setFilter( min, mag, anisotropy ) Arguments FilterMode min The filter mode used when scaling the Video down. FilterMode mag The filter mode used when scaling the Video up. number anisotropy (1) Maximum amount of anisotropic filtering used. Returns Nothing. See Also Video Video:getFilter FilterMode

Video:setSource

Video:setSource Available since LÖVE 0.10.0 This function is not supported in earlier versions. Sets the audio Source used for playing back the video's audio. The audio Source also controls playback speed and synchronization. Function Synopsis Video:setSource( source ) Arguments Source source (nil) The audio Source used for audio playback, or nil to disable audio synchronization. Returns Nothing. See Also Video Video:getSource Source

Video:tell

Video:tell Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the current playback position of the Video. Function Synopsis seconds = Video:tell( ) Arguments None. Returns number seconds The time in seconds since the beginning of the Video. See Also Video Video:rewind Video:seek