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: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: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: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: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:getSource

Video:getSource Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the audio Source used for playing back the video's audio. May return nil if the video has no audio, or if Video:setSource is called with a nil argument. Function Synopsis source = Video:getSource( ) Arguments None. Returns Source source The audio Source used for audio playback, or nil if the video has no audio. See Also Video Video:setSource Source

Video:getHeight

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

Video:getFilter

Video:getFilter Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the scaling filters used when drawing the Video. Function Synopsis min, mag, anisotropy = Video:getFilter( ) Arguments None. Returns 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. See Also Video Video:setFilter FilterMode

Video:getDimensions

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

Thread:wait

Thread:wait Available since LÖVE 0.7.0 This function is not supported in earlier versions. Wait for a thread to finish. This call will block until the thread finishes. Function Synopsis Thread:wait( ) Arguments None. Returns None. See Also Thread