Re: [Lazarus] Play video from memory

2015-03-17 Thread aradeonas
Thank you all, Now with help of author of FFVCL I can do what I want. That is great library with a great support.After testing many libraries I think its best choice for any one wants expert and easy to use tools in video field (also audio and .. but I didn't work with them). Regards,

Re: [Lazarus] Play video from memory

2015-03-17 Thread aradeonas
Hi, You need to take a look at MemoryPlayer demo of FFVCL,There is not  much I done and demo is documented fairly,my version is just simpler but if you wants any help tell me although Im newbie in this subject ;) http://www.delphiffmpeg.com/ Regards, Ara --

Re: [Lazarus] Play video from memory

2015-03-17 Thread aradeonas
I forgot to say I made it work with Delphi not Lazarus and for making it with Lazarus you will need full source version that it will compile only for windows. Regards, Ara -- http://www.fastmail.com - Same, same, but different... -- ___

Re: [Lazarus] Play video from memory

2015-03-17 Thread vfclists .
On 17 March 2015 at 08:23, aradeonas aradeo...@operamail.com wrote: Thank you all, Now with help of author of FFVCL I can do what I want. That is great library with a great support.After testing many libraries I think its best choice for any one wants expert and easy to use tools in video

Re: [Lazarus] Play video from memory

2015-03-14 Thread aradeonas
Hi. Silvio you are right,That is a miss understanding. Here another test with DelphiFFmpeg,I don't have full version and I can test it with Delphi. I made a test that play video from memory but there is a delay between changing files,Can any one test this demo and help me with this? My goal is

Re: [Lazarus] Play video from memory

2015-03-09 Thread aradeonas
Thank you Silvio, I spoke with author and he its not have this ability but maybe its a misundesrtanding. I will check this library today. Regards, Ara On Sun, Mar 8, 2015, at 07:16 PM, silvioprog wrote: On Fri, Mar 6, 2015 at 2:32 PM, aradeonas aradeo...@operamail.com wrote: __ Dear

Re: [Lazarus] Play video from memory

2015-03-08 Thread silvioprog
On Fri, Mar 6, 2015 at 2:32 PM, aradeonas aradeo...@operamail.com wrote: Dear Silvio I checked them before and I couldn't find out way for opening from memory. Ara FFVCL (from the link that I sent in previous message) offer support to video stream (FPC/Dephi):

Re: [Lazarus] Play video from memory

2015-03-06 Thread Leonardo M. Ramé
Assunto: Re: [Lazarus] Play video from memory 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

Re: [Lazarus] Play video from memory

2015-03-06 Thread aradeonas
: [Lazarus] Play video from memory 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

Re: [Lazarus] Play video from memory

2015-03-06 Thread Philippe Lévi
by glutCreateWindow ... De: aradeonas aradeo...@operamail.com Enviado: sexta-feira, 6 de março de 2015 12:58 Para: lazarus@lists.lazarus.freepascal.org Assunto: Re: [Lazarus] Play video from memory Leonardo, Im not familiar with Mplayer but take a look at here

Re: [Lazarus] Play video from memory

2015-03-06 Thread aradeonas
@lists.lazarus.freepascal.org *Assunto:* Re: [Lazarus] Play video from memory Leonardo, Im not familiar with Mplayer but take a look at here: http://wiki.freepascal.org/TMPlayerControl And in MPlayerCtrl unit line 665 it just pass handle. Do you have opinion about how to pass memory stream? Regards, Ara On Fri

Re: [Lazarus] Play video from memory

2015-03-06 Thread aradeonas
Thank you HTH, I already look at that but my project is a free project and I cant buy this and I think there a way to open video from memory but its hard to find! Ara On Fri, Mar 6, 2015, at 10:58 AM, ListMember wrote: On 2015-03-06 19:32, aradeonas wrote: Dear Silvio I checked them before

Re: [Lazarus] Play video from memory

2015-03-06 Thread aradeonas
Dear Silvio I checked them before and I couldn't find out way for opening from memory. Ara On Fri, Mar 6, 2015, at 09:25 AM, silvioprog wrote: On Fri, Mar 6, 2015 at 2:02 PM, aradeonas aradeo...@operamail.com wrote: __ Anyway if anyone know a way or library please tell me. Ara You can

Re: [Lazarus] Play video from memory

2015-03-06 Thread ListMember
On 2015-03-06 19:32, aradeonas wrote: Dear Silvio I checked them before and I couldn't find out way for opening from memory. Seeing that there isn't an option to feed a memorystream to a video player, it seems your best option to do that using a RAMDisk. You could use mapped file streams for

Re: [Lazarus] Play video from memory

2015-03-06 Thread silvioprog
On Fri, Mar 6, 2015 at 2:02 PM, aradeonas aradeo...@operamail.com wrote: Anyway if anyone know a way or library please tell me. Ara You can get some video libraries here: http://wiki.freepascal.org/Video_Playback_Libraries -- Silvio Clécio My public projects - github.com/silvioprog --

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] 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

Re: [Lazarus] Play video from memory

2015-03-05 Thread Philippe Lévi
@lists.lazarus.freepascal.org Assunto: Re: [Lazarus] Play video from memory 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ó

[Lazarus] Play video from memory

2015-03-04 Thread aradeonas
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 file from memory. Regards, Ara -- http://www.fastmail.com - IMAP accessible web-mail --