Search found 27 matches

by flashkot
Sat Jun 14, 2014 5:54 pm
Forum: Libraries and Tools
Topic: Playing Video. mjpeg decoder in pure lua. With audio!
Replies: 23
Views: 18134

Re: Playing Video. mjpeg decoder in pure lua. With audio!

Hi, everyone.

As murks asked, i put VideoPlayer under Apache 2.0 license.

So, where is code updated for 0.9? :awesome:
by flashkot
Wed Aug 15, 2012 9:41 am
Forum: Support and Development
Topic: [Help] UDP network
Replies: 8
Views: 7586

Re: [Help] UDP network

Strange. Looks like problem is with your network and not with Love2d or Lua.

I will test it today and write about my results.
by flashkot
Tue Aug 14, 2012 7:45 pm
Forum: Games and Creations
Topic: Square Killer 2000 Livestream Game!
Replies: 9
Views: 5684

Re: Square Killer 2000 Livestream Game!

No, no, no... Why you livestream? O.o
by flashkot
Tue Aug 14, 2012 7:44 pm
Forum: Support and Development
Topic: [Help] UDP network
Replies: 8
Views: 7586

Re: [Help] UDP network

Sorry, can't help you at the moment. But, can you try to run unmodified example from the Wiki UDP tutorial?
by flashkot
Tue Aug 14, 2012 4:01 pm
Forum: Support and Development
Topic: [Help] UDP network
Replies: 8
Views: 7586

Re: [Help] UDP network

Get IP addres of your server machine. If you on windows, open cmd prompt and type

Code: Select all

ipconfig
You will see IP address somewhere in the output.

Then put this into setpeername parameters instead of localhost.

That should be enough.
by flashkot
Tue Aug 14, 2012 3:46 pm
Forum: Games and Creations
Topic: Square Killer 2000 Livestream Game!
Replies: 9
Views: 5684

Re: Square Killer 2000 Livestream Game!

Why? Why you did this?
by flashkot
Fri Aug 10, 2012 9:25 pm
Forum: Support and Development
Topic: Dr. Device :: (bullets shoot more bullets, but lag & freeze)
Replies: 4
Views: 2722

Re: Dr. Device :: (need help w/bullets that shoot more bulle

Basically I want it to be where when I shoot enemies with the third weapon, the enemy explodes into three more yellow balls that fire in different directions, and then when those balls hit enemies, they explode into three more yellow balls that fire in different directions, and you see where this i...
by flashkot
Thu Aug 09, 2012 6:57 am
Forum: Libraries and Tools
Topic: Playing Video. mjpeg decoder in pure lua. With audio!
Replies: 23
Views: 18134

Re: Playing Video. mjpeg decoder in pure lua. With audio!

Hmmm... I just get some ideas with threading. And it is also interesting to make this player feature rich...

So i decided to rewrite it as nice and friendly library and put to my gitbox with all helper scripts for video converting. Stay tuned. ;)
by flashkot
Thu Aug 09, 2012 6:43 am
Forum: Libraries and Tools
Topic: Playing Video. mjpeg decoder in pure lua. With audio!
Replies: 23
Views: 18134

Re: Playing Video. mjpeg decoder in pure lua. With audio!

retrotails wrote:This is awesome. I assume it would work with lossless images as well?
Yes, but data size will be much bigger.
by flashkot
Thu Aug 09, 2012 6:39 am
Forum: Libraries and Tools
Topic: Playing Video. mjpeg decoder in pure lua. With audio!
Replies: 23
Views: 18134

Re: Playing Video. mjpeg decoder in pure lua. With audio!

Then the memory usage gets much lower -- 25mb Wow! Thanks a lot! This is what this code needed so musch! But, what if we need some full video playing features ? go forth, go back , stop, resume, etc... You can easily add this features. For example, this is all you need for play/pause with space bar...