Search found 3 matches

by Smy
Fri May 22, 2020 9:05 am
Forum: Support and Development
Topic: [SOLVED] Using a video crashes Love
Replies: 5
Views: 4344

Re: Using a video crashes Love

slime wrote: Fri May 22, 2020 12:47 am mp4 videos aren't supported by love - currently it only supports Ogg Theora (which normally has the .ogv extension).
Aw, that's a shame. Thanks for letting me know though! I'll try to find a work around where I can use an .ogv video rather than a .mp4 one.
by Smy
Fri May 22, 2020 9:04 am
Forum: Support and Development
Topic: [SOLVED] Using a video crashes Love
Replies: 5
Views: 4344

Re: Using a video crashes Love

You are calling loading:play() every time love.update is called, it's called a lot of time. Do something like that function love.load() loading = love.graphics.newVideo('Loading.mp4') loading:play() end function love.update(dt) timer = timer + dt if timer > 10 and loading:isPlaying() then loaing:st...
by Smy
Thu May 21, 2020 4:07 am
Forum: Support and Development
Topic: [SOLVED] Using a video crashes Love
Replies: 5
Views: 4344

[SOLVED] Using a video crashes Love

Hey guys! So I've noticed lately that whenever I try to incorporate a video into my code, Love decides to crash completely. And I'm not talking about a blue screen error, I'm talking about a "Love.exe has stopped responding." I've looked all over the internet and I couldn't find a solution...