I'm a French high school student and I'm new in this forum !
I am developing a fan-game in lua and the Love library, because it's a cool programming language and this is like python but there isn't forced indent !
I want to play a video using your library.I convert this video to a ogv format using vlc,it work...
But when I used the example code in the documentation,It justs play the sound but not the video in the window
I don't know why that's not display the video but just the sound ...
here's my code :
Code: Select all
function love.load()
video = love.graphics.newVideo("resources/test.ogv")
video:play()
end
function love.draw()
love.graphics.draw(video, 0, 0)
end
If you want the file,please reply me
Thanks for your futures replies !