Re: [Lazarus] Play video from memory

2015-03-05 Thread Leonardo M. Ramé
It looks like MPlayer can do this: http://www.mplayerhq.hu/DOCS/HTML/en/streaming.html El 04/03/15 a las 13:29, aradeonas escibió: Hi, Any one know a library or way to buffer video file into memory and then pass it to player? Any simple player do the job but it should support a way to open

Re: [Lazarus] Play video from memory

2015-03-05 Thread Leonardo M. Ramé
Yes, you can!. 1) Load your Video to a TStream (TMemoryStream for example). 2) Use TProcess to execute mplayer -, the - is the parameter. 3) Send your stream to the standard input of the process. El 05/03/15 a las 16:45, aradeonas escibió: Thank you Leonardo, I saw it before but it doesn't

Re: [Lazarus] Conditional Breakpoints - are they supported yet?

2015-03-05 Thread Martin Frb
On 05/03/2015 21:16, Martin Frb wrote: On 05/03/2015 20:11, Graeme Geldenhuys wrote: eg: I set a breakpoint, then adjust it's properties and add the condition: ActualTag = 'h1' I also tried ActualTag = h1 ActualTag := 'h1' ActualTag := 'h1'; etc. Interesting, for me using a

Re: [Lazarus] Play video from memory

2015-03-05 Thread aradeonas
Thank you Leonardo, I saw it before but it doesn't seem there is a way to pass memory to it or I couldn't find out how. Do you know? Regards, Ara On Thu, Mar 5, 2015, at 11:40 AM, Leonardo M. Ramé wrote: It looks like MPlayer can do this: http://www.mplayerhq.hu/DOCS/HTML/en/streaming.html

[Lazarus] Conditional Breakpoints - are they supported yet?

2015-03-05 Thread Graeme Geldenhuys
Hi, I remember a couple of years back I asked this question, but then it wasn't implemented yet. Is this functional yet? I see the wiki page for that dialog mentions it, so it seems to be possible. http://wiki.lazarus.freepascal.org/IDE_Window:_Break_Points#Breakpoint_properties But how do I

Re: [Lazarus] Conditional Breakpoints - are they supported yet?

2015-03-05 Thread Martin Frb
On 05/03/2015 20:11, Graeme Geldenhuys wrote: Hi, I remember a couple of years back I asked this question, but then it wasn't implemented yet. Is this functional yet? I see the wiki page for that dialog mentions it, so it seems to be possible.

Re: [Lazarus] Play video from memory

2015-03-05 Thread Philippe Lévi
and you know how to tell MPLAYER to show the video in a specific window? (using WINDOWS, and glutCreateWindow). thanks Philippe De: Leonardo M. Ramé l.r...@griensu.com Enviado: quinta-feira, 5 de março de 2015 17:44 Para:

Re: [Lazarus] Conditional Breakpoints - are they supported yet?

2015-03-05 Thread Graeme Geldenhuys
On 2015-03-05 21:26, Martin Frb wrote: Just tested, condition on strings are not possible. gdb see the string as pointer, and compares the address. This condition would work (if you have the desired address) str=0x5a0b40 Thanks for testing and the info. I'm about to test, but first need to

Re: [Lazarus] Conditional Breakpoints - are they supported yet?

2015-03-05 Thread Martin Frb
On 05/03/2015 22:33, Graeme Geldenhuys wrote: On 2015-03-05 21:26, Martin Frb wrote: Just tested, condition on strings are not possible. gdb see the string as pointer, and compares the address. This condition would work (if you have the desired address) str=0x5a0b40 Thanks for testing and the

Re: [Lazarus] Lazarus Release Candidate 1 of 1.4. Message cannot be stopped

2015-03-05 Thread patspiper
On 04/03/15 19:30, Martin Frb wrote: On 04/03/2015 16:56, Jürgen Hestermann wrote: I use Lazarus V1.4RC1 on Win7 and today I had a strange situation: I started to build and run an application with F9. But my machine was quite slow so nothing (visible) happened for many seconds. It could be

Re: [Lazarus] The program can't start because libgdk_pixbuf-2.0-0.dll is missing from your computer.

2015-03-05 Thread Dan Statham
Ahhh, that fixed it. Thanks... Good Morning! Cya...Dan'l _ Every day with Jesus is a Great http://www.GreatDayDan.com! day, and He loves you Are you a Companion of Jesus http://www.CompanionsOfJesus.com? Retired? Planning to retire?

[Lazarus] Options for IDE Toolbar and others

2015-03-05 Thread Juha Manninen
Ideas are needed for placing some options. See issue : http://bugs.freepascal.org/view.php?id=27603 The feature itself works well. Very nice! Juha -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] debugger error stack

2015-03-05 Thread Martin Frb
Ok that looks like 2 issues. I opened the debugmanager and put in the breakpoint...but my program compiled and ran! The problem you have might be a race condition. Highly sensitive to any change in timing. Unfortunately any kind of debug/log will change timing. Have you tried first building,

[Lazarus] The program can't start because libgdk_pixbuf-2.0-0.dll is missing from your computer.

2015-03-05 Thread Dan Statham
Good Morning! After installing the nightly build Lazarus 1.5 starts OK. Add the customdraw package and save rebuild the IDE. Try to start Lazarus again and: --- lazarus.exe - System Error --- The program can't start because

Re: [Lazarus] The program can't start because libgdk_pixbuf-2.0-0.dll is missing from your computer.

2015-03-05 Thread Mattias Gaertner
On Thu, 5 Mar 2015 04:03:44 -0600 Dan Statham d...@greatdaydan.com wrote: Good Morning! After installing the nightly build Lazarus 1.5 starts OK. Add the customdraw package and save rebuild the IDE. Try to start Lazarus again and: --- lazarus.exe - System

Re: [Lazarus] Conditional Breakpoints - are they supported yet?

2015-03-05 Thread Martin Frb
On 05/03/2015 22:58, Martin Frb wrote: Theoretical in gdb it should be possible (zero based!!!) (s[0]='')and(s[1]='a')and() Fixed (I hope). You can now compare chars in the condition (chars, not strings) Its a crude workaround, but it works. remember that strings are (in stabs and