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.
Search found 3 matches
- Fri May 22, 2020 9:05 am
- Forum: Support and Development
- Topic: [SOLVED] Using a video crashes Love
- Replies: 5
- Views: 4811
- Fri May 22, 2020 9:04 am
- Forum: Support and Development
- Topic: [SOLVED] Using a video crashes Love
- Replies: 5
- Views: 4811
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...
- Thu May 21, 2020 4:07 am
- Forum: Support and Development
- Topic: [SOLVED] Using a video crashes Love
- Replies: 5
- Views: 4811
[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...