summaryrefslogtreecommitdiff
path: root/src/examples/ecore/ecore_audio_to_ogg.c
blob: fec1cc587e6450d5bbc5b50d5a103bfa8a4b62a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Compile with:
// gcc -o ecore_audio_to_ogg ecore_audio_to_ogg.c `pkg-config --libs --cflags ecore eina ecore-audio`

#include <stdio.h>
#include <libgen.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <Eo.h>
#include <Ecore.h>
#include <Ecore_Audio.h>
#include <Eina.h>

double volume = 1;
Eina_List *inputs = NULL;

static void _play_finished(void *data EINA_UNUSED, const Efl_Event *event)
{
  const char *name;
  Eo *out;

  ecore_audio_obj_name_get(event->object, &name);
  printf("Done: %s\n", name);

  ecore_audio_obj_in_output_get(event->object, &out);
  efl_del(event->object);
  efl_del(out);

  ecore_main_loop_quit();

  return EINA_TRUE;
}

int
main(int argc, char *argv[])
{
   Eo *out;
   Eo *in;
   Eina_Bool ret;

   if (argc < 3)
     {
       printf("Usage: ./example <infile> <outfile>\n");
       exit(EXIT_FAILURE);
     }

   ecore_init();
   ecore_audio_init();


   in = efl_add(ECORE_AUDIO_OBJ_IN_SNDFILE_CLASS, NULL);
   ecore_audio_obj_name_set(in, basename(argv[1]));
   ret = ecore_audio_obj_source_set(in, argv[1]);
   if (!ret) {
     printf("Could not set %s as input\n", argv[1]);
     efl_del(in);
     return 1;
   }

   efl_event_callback_add(in, ECORE_AUDIO_EV_IN_STOPPED, _play_finished, NULL);

   out = efl_add(ECORE_AUDIO_OBJ_OUT_SNDFILE_CLASS, NULL);
   ret = ecore_audio_obj_source_set(out, argv[2]);
   if (!ret) {
     printf("Could not set %s as output\n", argv[2]);
     efl_del(in);
     efl_del(out);
     return 1;
   }

   ret = ecore_audio_obj_out_input_attach(out, in);
   if (!ret) {
     printf("Could not attach input\n");
     efl_del(out);
     efl_del(in);
     return 1;
   }

   ecore_main_loop_begin();

   ecore_audio_shutdown();
   ecore_shutdown();

   return 0;
}