Difference between revisions of "Theora.new"

From GiderosMobile
 
Line 18: Line 18:
 
'''A Video Sprite'''
 
'''A Video Sprite'''
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
Theora=require "theora.core"
+
Theora = require "Theora"
 
local videoSource = Theora.new("videos/file_example_OGG_480_1_7mg.ogg")
 
local videoSource = Theora.new("videos/file_example_OGG_480_1_7mg.ogg")
 
local videoStream = videoSource:play()
 
local videoStream = videoSource:play()

Latest revision as of 05:25, 26 August 2024

Available since: Gideros 2017.10
Class: Ogg

Description

Creates a new Theora source.

(object) = Theora.new(file)

Parameters

file: (string) path to the Theora file

Return values

Returns (object) the object to use as a source

Example

A Video Sprite

Theora = require "Theora"
local videoSource = Theora.new("videos/file_example_OGG_480_1_7mg.ogg")
local videoStream = videoSource:play()
local videoSprite = videoStream:getVideo()
videoSprite:setPosition(0, 64)
stage:addChild(videoSprite)