[E-devel] Music player API?

2006-09-24 Thread Andreas Volz
Hi, I search a solution to play music files with the EFL. There's Emotion to play videos, but without an example how to play a music file. Is Emotion the correct library for this? And is there a small example how to play music files? With music files I mean MP3, OGG, WAV and perhaps WMA.

Re: [E-devel] Music player API?

2006-09-24 Thread Stephen Houston
Emotion can play audio files obviously.. but it will treat it like a video.. (xine-lib side will at least), which makes things heavier than you need to play audio. So the short solution is to use another lib. The long solution is to add support to emotion for playing just audio. The gstreamer side

Re: [E-devel] Music player API?

2006-09-24 Thread Andreas Volz
Am Sun, 24 Sep 2006 09:18:10 -0400 schrieb Stephen Houston: Emotion can play audio files obviously.. but it will treat it like a video.. (xine-lib side will at least), which makes things heavier than you need to play audio. So the short solution is to use another lib. The long solution is to

Re: [E-devel] Music player API?

2006-09-24 Thread Stephen Houston
Really what I would like to see is you take xinelib and add music only api to emotion... that would be nice :) On 9/24/06, Andreas Volz [EMAIL PROTECTED] wrote: Am Sun, 24 Sep 2006 09:18:10 -0400 schrieb Stephen Houston: Emotion can play audio files obviously.. but it will treat it like a

Re: [E-devel] Music player API?

2006-09-24 Thread Andreas Volz
Am Sun, 24 Sep 2006 11:37:33 -0400 schrieb Stephen Houston: Really what I would like to see is you take xinelib and add music only api to emotion... that would be nice :) Ok, why not. I could try it. I created an example that plays only audio (without video) files with xine-lib. It's not that

Re: [E-devel] Music player API?

2006-09-24 Thread Hisham Mardam Bey
On 9/24/06, Andreas Volz [EMAIL PROTECTED] wrote: Am Sun, 24 Sep 2006 11:37:33 -0400 schrieb Stephen Houston: Really what I would like to see is you take xinelib and add music only api to emotion... that would be nice :) Ok, why not. I could try it. I created an example that plays only

Re: [E-devel] Music player API?

2006-09-24 Thread Nicolas Aguirre
With the gstreamer plugins, emotion object can play visualizations like goom if the visualisation plugins is installed on your system (with gstreamer-plugins-good I think). If you hide the evas object containing video, I don't think that emotion take more ressources. I use it for enna and it works

Re: [E-devel] Music player API?

2006-09-24 Thread Stephen Houston
Hiding the evas object is just a way around the problem. The object is still there and thats heavier than it has to be. The solution is to add an api to emotion that will simply play sounds without creating an evas object... if Andreas has the code already he just needs to add some api calls..

Re: [E-devel] Music player API?

2006-09-24 Thread The Rasterman
On Sun, 24 Sep 2006 11:16:02 +0200 Andreas Volz [EMAIL PROTECTED] babbled: Hi, I search a solution to play music files with the EFL. There's Emotion to play videos, but without an example how to play a music file. Is Emotion the correct library for this? And is there a small example how to

Re: [E-devel] E CVS: libs/evas sebastid

2006-09-24 Thread The Rasterman
On Sun, 24 Sep 2006 09:24:28 -0400 (EDT) Enlightenment CVS [EMAIL PROTECTED] babbled: how on earth did that get in and i didnt see it or it not-compile? i swear sometimes of late jed is magically inserting characters when i scroll around :) Enlightenment CVS committal Author : sebastid

Re: [E-devel] another segfault

2006-09-24 Thread Jochen Schroeder
Jochen Schroeder wrote: Why does it always seem to be me stumbling upon these weird things. Well e17 seems to segfault reproducibly when I open a file which has a swap file with gvim. Gvim pops up a dialog asking if I want to edit the file abort ..., when I click on any of the choices I get a

Re: [E-devel] Music player API?

2006-09-24 Thread The Rasterman
On Sun, 24 Sep 2006 17:29:07 -0400 Stephen Houston [EMAIL PROTECTED] babbled: no - the solution is to not use emotion. the object is not heavy it and of itself. maybe 1kb on a bad day. its the fact that the api to emotion was not intended for fine grained audio control, and that the back-ends

Re: [E-devel] Music player API?

2006-09-24 Thread Vincent Torri
On Mon, 25 Sep 2006, Carsten Haitzler (The Rasterman) wrote: On Sun, 24 Sep 2006 09:18:10 -0400 Stephen Houston [EMAIL PROTECTED] babbled: Emotion can play audio files obviously.. but it will treat it like a video.. (xine-lib side will at least), which makes things heavier than you need to

Re: [E-devel] Music player API?

2006-09-24 Thread The Rasterman
On Mon, 25 Sep 2006 07:15:44 +0200 (CEST) Vincent Torri [EMAIL PROTECTED] babbled: On Mon, 25 Sep 2006, Carsten Haitzler (The Rasterman) wrote: On Sun, 24 Sep 2006 09:18:10 -0400 Stephen Houston [EMAIL PROTECTED] babbled: Emotion can play audio files obviously.. but it will treat

Re: [E-devel] E CVS: libs/ecore onefang

2006-09-24 Thread Sebastian Dransfeld
{ - if (!desktop-data) desktop-data = ecore_desktop_ini_get(desktop-original_path); + desktop-data = ecore_desktop_ini_get(desktop-original_path); If you always want to init data, should you not delete it first if it exists? Sebastian