Merge branch 'master' into 0.11
[platform/upstream/gstreamer.git] / tools / gst-discoverer.c
1 /* GStreamer
2  * Copyright (C) 2009 Edward Hervey <edward.hervey@collabora.co.uk>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include <stdlib.h>
25 #include <glib.h>
26 #include <gst/gst.h>
27 #include <gst/pbutils/pbutils.h>
28
29 static gboolean async = FALSE;
30 static gboolean silent = FALSE;
31 static gboolean verbose = FALSE;
32
33 typedef struct
34 {
35   GstDiscoverer *dc;
36   int argc;
37   char **argv;
38 } PrivStruct;
39
40 static void
41 my_g_string_append_printf (GString * str, int depth, const gchar * format, ...)
42 {
43   va_list args;
44
45   while (depth-- > 0) {
46     g_string_append (str, "  ");
47   }
48
49   va_start (args, format);
50   g_string_append_vprintf (str, format, args);
51   va_end (args);
52 }
53
54 static gchar *
55 gst_stream_audio_information_to_string (GstDiscovererStreamInfo * info,
56     gint depth)
57 {
58   GstDiscovererAudioInfo *audio_info;
59   GString *s;
60   gchar *tmp;
61   const gchar *ctmp;
62   int len = 400;
63   const GstTagList *tags;
64   GstCaps *caps;
65
66   g_return_val_if_fail (info != NULL, NULL);
67
68   s = g_string_sized_new (len);
69
70   my_g_string_append_printf (s, depth, "Codec:\n");
71   caps = gst_discoverer_stream_info_get_caps (info);
72   tmp = gst_caps_to_string (caps);
73   gst_caps_unref (caps);
74   my_g_string_append_printf (s, depth, "  %s\n", tmp);
75   g_free (tmp);
76
77   my_g_string_append_printf (s, depth, "Additional info:\n");
78   if (gst_discoverer_stream_info_get_misc (info)) {
79     tmp = gst_structure_to_string (gst_discoverer_stream_info_get_misc (info));
80     my_g_string_append_printf (s, depth, "  %s\n", tmp);
81     g_free (tmp);
82   } else {
83     my_g_string_append_printf (s, depth, "  None\n");
84   }
85
86   audio_info = (GstDiscovererAudioInfo *) info;
87   ctmp = gst_discoverer_audio_info_get_language (audio_info);
88   my_g_string_append_printf (s, depth, "Language: %s\n",
89       ctmp ? ctmp : "<unknown>");
90   my_g_string_append_printf (s, depth, "Channels: %u\n",
91       gst_discoverer_audio_info_get_channels (audio_info));
92   my_g_string_append_printf (s, depth, "Sample rate: %u\n",
93       gst_discoverer_audio_info_get_sample_rate (audio_info));
94   my_g_string_append_printf (s, depth, "Depth: %u\n",
95       gst_discoverer_audio_info_get_depth (audio_info));
96
97   my_g_string_append_printf (s, depth, "Bitrate: %u\n",
98       gst_discoverer_audio_info_get_bitrate (audio_info));
99   my_g_string_append_printf (s, depth, "Max bitrate: %u\n",
100       gst_discoverer_audio_info_get_max_bitrate (audio_info));
101
102   my_g_string_append_printf (s, depth, "Tags:\n");
103   tags = gst_discoverer_stream_info_get_tags (info);
104   if (tags) {
105     tmp = gst_structure_to_string ((GstStructure *) tags);
106     my_g_string_append_printf (s, depth, "  %s\n", tmp);
107     g_free (tmp);
108   } else {
109     my_g_string_append_printf (s, depth, "  None\n");
110   }
111   if (verbose)
112     my_g_string_append_printf (s, depth, "\n");
113
114   return g_string_free (s, FALSE);
115 }
116
117 static gchar *
118 gst_stream_video_information_to_string (GstDiscovererStreamInfo * info,
119     gint depth)
120 {
121   GstDiscovererVideoInfo *video_info;
122   GString *s;
123   gchar *tmp;
124   int len = 500;
125   const GstStructure *misc;
126   const GstTagList *tags;
127   GstCaps *caps;
128
129   g_return_val_if_fail (info != NULL, NULL);
130
131   s = g_string_sized_new (len);
132
133   my_g_string_append_printf (s, depth, "Codec:\n");
134   caps = gst_discoverer_stream_info_get_caps (info);
135   tmp = gst_caps_to_string (caps);
136   gst_caps_unref (caps);
137   my_g_string_append_printf (s, depth, "  %s\n", tmp);
138   g_free (tmp);
139
140   my_g_string_append_printf (s, depth, "Additional info:\n");
141   misc = gst_discoverer_stream_info_get_misc (info);
142   if (misc) {
143     tmp = gst_structure_to_string (misc);
144     my_g_string_append_printf (s, depth, "  %s\n", tmp);
145     g_free (tmp);
146   } else {
147     my_g_string_append_printf (s, depth, "  None\n");
148   }
149
150   video_info = (GstDiscovererVideoInfo *) info;
151   my_g_string_append_printf (s, depth, "Width: %u\n",
152       gst_discoverer_video_info_get_width (video_info));
153   my_g_string_append_printf (s, depth, "Height: %u\n",
154       gst_discoverer_video_info_get_height (video_info));
155   my_g_string_append_printf (s, depth, "Depth: %u\n",
156       gst_discoverer_video_info_get_depth (video_info));
157
158   my_g_string_append_printf (s, depth, "Frame rate: %u/%u\n",
159       gst_discoverer_video_info_get_framerate_num (video_info),
160       gst_discoverer_video_info_get_framerate_denom (video_info));
161
162   my_g_string_append_printf (s, depth, "Pixel aspect ratio: %u/%u\n",
163       gst_discoverer_video_info_get_par_num (video_info),
164       gst_discoverer_video_info_get_par_denom (video_info));
165
166   my_g_string_append_printf (s, depth, "Interlaced: %s\n",
167       gst_discoverer_video_info_is_interlaced (video_info) ? "true" : "false");
168
169   my_g_string_append_printf (s, depth, "Bitrate: %u\n",
170       gst_discoverer_video_info_get_bitrate (video_info));
171   my_g_string_append_printf (s, depth, "Max bitrate: %u\n",
172       gst_discoverer_video_info_get_max_bitrate (video_info));
173
174   my_g_string_append_printf (s, depth, "Tags:\n");
175   tags = gst_discoverer_stream_info_get_tags (info);
176   if (tags) {
177     tmp = gst_structure_to_string ((GstStructure *) tags);
178     my_g_string_append_printf (s, depth, "  %s\n", tmp);
179     g_free (tmp);
180   } else {
181     my_g_string_append_printf (s, depth, "  None\n");
182   }
183   if (verbose)
184     my_g_string_append_printf (s, depth, "\n");
185
186   return g_string_free (s, FALSE);
187 }
188
189 static gchar *
190 gst_stream_subtitle_information_to_string (GstDiscovererStreamInfo * info,
191     gint depth)
192 {
193   GstDiscovererSubtitleInfo *subtitle_info;
194   GString *s;
195   gchar *tmp;
196   const gchar *ctmp;
197   int len = 400;
198   const GstTagList *tags;
199   GstCaps *caps;
200
201   g_return_val_if_fail (info != NULL, NULL);
202
203   s = g_string_sized_new (len);
204
205   my_g_string_append_printf (s, depth, "Codec:\n");
206   caps = gst_discoverer_stream_info_get_caps (info);
207   tmp = gst_caps_to_string (caps);
208   gst_caps_unref (caps);
209   my_g_string_append_printf (s, depth, "  %s\n", tmp);
210   g_free (tmp);
211
212   my_g_string_append_printf (s, depth, "Additional info:\n");
213   if (gst_discoverer_stream_info_get_misc (info)) {
214     tmp = gst_structure_to_string (gst_discoverer_stream_info_get_misc (info));
215     my_g_string_append_printf (s, depth, "  %s\n", tmp);
216     g_free (tmp);
217   } else {
218     my_g_string_append_printf (s, depth, "  None\n");
219   }
220
221   subtitle_info = (GstDiscovererSubtitleInfo *) info;
222   ctmp = gst_discoverer_subtitle_info_get_language (subtitle_info);
223   my_g_string_append_printf (s, depth, "Language: %s\n",
224       ctmp ? ctmp : "<unknown>");
225
226   my_g_string_append_printf (s, depth, "Tags:\n");
227   tags = gst_discoverer_stream_info_get_tags (info);
228   if (tags) {
229     tmp = gst_structure_to_string ((GstStructure *) tags);
230     my_g_string_append_printf (s, depth, "  %s\n", tmp);
231     g_free (tmp);
232   } else {
233     my_g_string_append_printf (s, depth, "  None\n");
234   }
235   if (verbose)
236     my_g_string_append_printf (s, depth, "\n");
237
238   return g_string_free (s, FALSE);
239 }
240
241 static void
242 print_stream_info (GstDiscovererStreamInfo * info, void *depth)
243 {
244   gchar *desc = NULL;
245   GstCaps *caps;
246
247   caps = gst_discoverer_stream_info_get_caps (info);
248
249   if (caps) {
250     if (gst_caps_is_fixed (caps) && !verbose)
251       desc = gst_pb_utils_get_codec_description (caps);
252     else
253       desc = gst_caps_to_string (caps);
254     gst_caps_unref (caps);
255   }
256
257   g_print ("%*s%s: %s\n", 2 * GPOINTER_TO_INT (depth), " ",
258       gst_discoverer_stream_info_get_stream_type_nick (info), desc);
259
260   if (desc) {
261     g_free (desc);
262     desc = NULL;
263   }
264
265   if (verbose) {
266     if (GST_IS_DISCOVERER_AUDIO_INFO (info))
267       desc =
268           gst_stream_audio_information_to_string (info,
269           GPOINTER_TO_INT (depth) + 1);
270     else if (GST_IS_DISCOVERER_VIDEO_INFO (info))
271       desc =
272           gst_stream_video_information_to_string (info,
273           GPOINTER_TO_INT (depth) + 1);
274     else if (GST_IS_DISCOVERER_SUBTITLE_INFO (info))
275       desc =
276           gst_stream_subtitle_information_to_string (info,
277           GPOINTER_TO_INT (depth) + 1);
278     if (desc) {
279       g_print ("%s", desc);
280       g_free (desc);
281     }
282   }
283 }
284
285 static void
286 print_topology (GstDiscovererStreamInfo * info, gint depth)
287 {
288   GstDiscovererStreamInfo *next;
289
290   if (!info)
291     return;
292
293   print_stream_info (info, GINT_TO_POINTER (depth));
294
295   next = gst_discoverer_stream_info_get_next (info);
296   if (next) {
297     print_topology (next, depth + 1);
298     gst_discoverer_stream_info_unref (next);
299   } else if (GST_IS_DISCOVERER_CONTAINER_INFO (info)) {
300     GList *tmp, *streams;
301
302     streams =
303         gst_discoverer_container_info_get_streams (GST_DISCOVERER_CONTAINER_INFO
304         (info));
305     for (tmp = streams; tmp; tmp = tmp->next) {
306       GstDiscovererStreamInfo *tmpinf = (GstDiscovererStreamInfo *) tmp->data;
307       print_topology (tmpinf, depth + 1);
308     }
309     gst_discoverer_stream_info_list_free (streams);
310   }
311 }
312
313 static gboolean
314 print_tag_each (GQuark field_id, const GValue * value, gpointer user_data)
315 {
316   gint tab = GPOINTER_TO_INT (user_data);
317   gchar *ser;
318
319   if (G_VALUE_HOLDS_STRING (value))
320     ser = g_value_dup_string (value);
321   else if (GST_VALUE_HOLDS_BUFFER (value)) {
322     GstBuffer *buf = gst_value_get_buffer (value);
323     ser =
324         g_strdup_printf ("<GstBuffer [%" G_GSIZE_FORMAT " bytes]>",
325         gst_buffer_get_size (buf));
326   } else
327     ser = gst_value_serialize (value);
328
329   g_print ("%*s%s: %s\n", tab, " ",
330       gst_tag_get_nick (g_quark_to_string (field_id)), ser);
331   g_free (ser);
332
333   return TRUE;
334 }
335
336 static void
337 print_properties (GstDiscovererInfo * info, gint tab)
338 {
339   const GstTagList *tags;
340
341   g_print ("%*sDuration: %" GST_TIME_FORMAT "\n", tab + 1, " ",
342       GST_TIME_ARGS (gst_discoverer_info_get_duration (info)));
343   g_print ("%*sSeekable: %s\n", tab + 1, " ",
344       (gst_discoverer_info_get_seekable (info) ? "yes" : "no"));
345   if ((tags = gst_discoverer_info_get_tags (info))) {
346     g_print ("%*sTags: \n", tab + 1, " ");
347     gst_structure_foreach ((const GstStructure *) tags, print_tag_each,
348         GINT_TO_POINTER (tab + 5));
349   }
350 }
351
352 static void
353 print_info (GstDiscovererInfo * info, GError * err)
354 {
355   GstDiscovererResult result = gst_discoverer_info_get_result (info);
356   GstDiscovererStreamInfo *sinfo;
357
358   g_print ("Done discovering %s\n", gst_discoverer_info_get_uri (info));
359   switch (result) {
360     case GST_DISCOVERER_OK:
361     {
362       break;
363     }
364     case GST_DISCOVERER_URI_INVALID:
365     {
366       g_print ("URI is not valid\n");
367       break;
368     }
369     case GST_DISCOVERER_ERROR:
370     {
371       g_print ("An error was encountered while discovering the file\n");
372       g_print (" %s\n", err->message);
373       break;
374     }
375     case GST_DISCOVERER_TIMEOUT:
376     {
377       g_print ("Analyzing URI timed out\n");
378       break;
379     }
380     case GST_DISCOVERER_BUSY:
381     {
382       g_print ("Discoverer was busy\n");
383       break;
384     }
385     case GST_DISCOVERER_MISSING_PLUGINS:
386     {
387       g_print ("Missing plugins\n");
388       if (verbose) {
389         gchar *tmp =
390             gst_structure_to_string (gst_discoverer_info_get_misc (info));
391         g_print (" (%s)\n", tmp);
392         g_free (tmp);
393       }
394       break;
395     }
396   }
397
398   if ((sinfo = gst_discoverer_info_get_stream_info (info))) {
399     g_print ("\nTopology:\n");
400     print_topology (sinfo, 1);
401     g_print ("\nProperties:\n");
402     print_properties (info, 1);
403     gst_discoverer_stream_info_unref (sinfo);
404   }
405
406   g_print ("\n");
407 }
408
409 static void
410 process_file (GstDiscoverer * dc, const gchar * filename)
411 {
412   GError *err = NULL;
413   GDir *dir;
414   gchar *uri, *path;
415   GstDiscovererInfo *info;
416
417   if (!gst_uri_is_valid (filename)) {
418     /* Recurse into directories */
419     if ((dir = g_dir_open (filename, 0, NULL))) {
420       const gchar *entry;
421
422       while ((entry = g_dir_read_name (dir))) {
423         gchar *path;
424         path = g_strconcat (filename, G_DIR_SEPARATOR_S, entry, NULL);
425         process_file (dc, path);
426         g_free (path);
427       }
428
429       g_dir_close (dir);
430       return;
431     }
432
433     if (!g_path_is_absolute (filename)) {
434       gchar *cur_dir;
435
436       cur_dir = g_get_current_dir ();
437       path = g_build_filename (cur_dir, filename, NULL);
438       g_free (cur_dir);
439     } else {
440       path = g_strdup (filename);
441     }
442
443     uri = g_filename_to_uri (path, NULL, &err);
444     g_free (path);
445     path = NULL;
446
447     if (err) {
448       g_warning ("Couldn't convert filename to URI: %s\n", err->message);
449       g_error_free (err);
450       return;
451     }
452   } else {
453     uri = g_strdup (filename);
454   }
455
456   if (async == FALSE) {
457     g_print ("Analyzing %s\n", uri);
458     info = gst_discoverer_discover_uri (dc, uri, &err);
459     print_info (info, err);
460     if (err)
461       g_error_free (err);
462     gst_discoverer_info_unref (info);
463   } else {
464     gst_discoverer_discover_uri_async (dc, uri);
465   }
466
467   g_free (uri);
468 }
469
470 static void
471 _new_discovered_uri (GstDiscoverer * dc, GstDiscovererInfo * info, GError * err)
472 {
473   print_info (info, err);
474 }
475
476 static gboolean
477 _run_async (PrivStruct * ps)
478 {
479   gint i;
480
481   for (i = 1; i < ps->argc; i++)
482     process_file (ps->dc, ps->argv[i]);
483
484   return FALSE;
485 }
486
487 static void
488 _discoverer_finished (GstDiscoverer * dc, GMainLoop * ml)
489 {
490   g_main_loop_quit (ml);
491 }
492
493 int
494 main (int argc, char **argv)
495 {
496   GError *err = NULL;
497   GstDiscoverer *dc;
498   gint timeout = 10;
499   GOptionEntry options[] = {
500     {"async", 'a', 0, G_OPTION_ARG_NONE, &async,
501         "Run asynchronously", NULL},
502     {"silent", 's', 0, G_OPTION_ARG_NONE, &silent,
503         "Don't output the information structure", NULL},
504     {"timeout", 't', 0, G_OPTION_ARG_INT, &timeout,
505         "Specify timeout (in seconds, default 10)", "T"},
506     /* {"elem", 'e', 0, G_OPTION_ARG_NONE, &elem_seek, */
507     /*     "Seek on elements instead of pads", NULL}, */
508     {"verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose,
509         "Verbose properties", NULL},
510     {NULL}
511   };
512   GOptionContext *ctx;
513
514   ctx =
515       g_option_context_new
516       ("- discover files synchronously with GstDiscoverer");
517   g_option_context_add_main_entries (ctx, options, NULL);
518   g_option_context_add_group (ctx, gst_init_get_option_group ());
519
520   if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
521     g_print ("Error initializing: %s\n", err->message);
522     exit (1);
523   }
524
525   g_option_context_free (ctx);
526
527   if (argc < 2) {
528     g_print ("usage: %s <uris>\n", argv[0]);
529     exit (-1);
530   }
531
532   dc = gst_discoverer_new (timeout * GST_SECOND, &err);
533   if (G_UNLIKELY (dc == NULL)) {
534     g_print ("Error initializing: %s\n", err->message);
535     exit (1);
536   }
537
538   if (async == FALSE) {
539     gint i;
540     for (i = 1; i < argc; i++)
541       process_file (dc, argv[i]);
542   } else {
543     PrivStruct *ps = g_new0 (PrivStruct, 1);
544     GMainLoop *ml = g_main_loop_new (NULL, FALSE);
545
546     ps->dc = dc;
547     ps->argc = argc;
548     ps->argv = argv;
549
550     /* adding uris will be started when the mainloop runs */
551     g_idle_add ((GSourceFunc) _run_async, ps);
552
553     /* connect signals */
554     g_signal_connect (dc, "discovered", G_CALLBACK (_new_discovered_uri), NULL);
555     g_signal_connect (dc, "finished", G_CALLBACK (_discoverer_finished), ml);
556
557     gst_discoverer_start (dc);
558     /* run mainloop */
559     g_main_loop_run (ml);
560
561     gst_discoverer_stop (dc);
562     g_free (ps);
563     g_main_loop_unref (ml);
564   }
565   g_object_unref (dc);
566
567   return 0;
568 }