I had been somewhat optimistic in hoping this could be the solution:
Code: Select all
function love.load()
video = love.graphics.newVideo("http://www.website.com/videofile.ogg")
video:play()
end
function love.draw()
love.graphics.draw(video, 0, 0)
end
I thought I'd try my chances and see if there were any libraries on this forum that could help me achieve this but my searches came up empty.
I'm wondering if there is an answer to this question or if for whatever reason, it cannot be achieved in Love?