#include <gst/gst.h>
#include <stdbool.h>
static GMainLoop *loop; 

static gbooleanbus_call (GstBus *bus,GstMessage *msg, gpointer user_data)
{    
	switch (GST_MESSAGE_TYPE (msg))   
 	{        
	case GST_MESSAGE_EOS:   
         {                
	g_message ("End-of-stream"); 
	g_main_loop_quit (loop); 
        break;       
       }       
 case GST_MESSAGE_ERROR:   
         {               

	 gchar *debug;   
         GError *err;   
         gst_message_parse_error (msg, &err, &debug);  
         g_free (debug);    
         g_error ("%s", err->message);   
         g_error_free (err);  
         g_main_loop_quit (loop);    
         break;   
         }       
 default:        
    break;  
  }     
return true;
} 

voidplay_uri (gchar *uri)
{   
 GstElement *pipeline;   
  loop = g_main_loop_new (NULL, FALSE);  
   pipeline = gst_element_factory_make ("playbin", "player");   
  if (uri)   
 {       
	 g_object_set (G_OBJECT (pipeline), "uri", uri, NULL); 
 }  
 
  {     
   GstBus *bus;    
     bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));  
      gst_bus_add_watch (bus, bus_call, NULL);  
      gst_object_unref (bus);  
  }  
  
 gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PLAYING); 
 g_main_loop_run (loop);  
 gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);  
 gst_object_unref (GST_OBJECT (pipeline));
} 
int main (int argc,      char *argv[])
{   
	 gst_init (&argc, &argv);  
  	 play_uri (argv[1]);  
  	 return 0;
}

please some one let me know on which system this can be executed ?
i think its for gstreamer related
i have red hat .
can i install gstreamer on redhat
thanks,

sorry for that first thread. i was bit hurry then.plz xcuse me for that.

my prob is .
i want to work on gstreamer. but dont know which systems have the support of it.
i am using red hat linux.
can i install gstreamer on redhat.
i just got the above code while searching for gstreamer .compiled the code on my system but got many errors.
please help me its a bit urgent.
thanks all.

#include <gst/gst.h>
#include <stdbool.h>
static GMainLoop *loop; 

static gbooleanbus_call (GstBus *bus,GstMessage *msg, gpointer user_data)
{    
	switch (GST_MESSAGE_TYPE (msg))   
 	{        
	case GST_MESSAGE_EOS:   
         {                
	g_message ("End-of-stream"); 
	g_main_loop_quit (loop); 
        break;       
       }       
 case GST_MESSAGE_ERROR:   
         {               

	 gchar *debug;   
         GError *err;   
         gst_message_parse_error (msg, &err, &debug);  
         g_free (debug);    
         g_error ("%s", err->message);   
         g_error_free (err);  
         g_main_loop_quit (loop);    
         break;   
         }       
 default:        
    break;  
  }     
return true;
} 

voidplay_uri (gchar *uri)
{   
 GstElement *pipeline;   
  loop = g_main_loop_new (NULL, FALSE);  
   pipeline = gst_element_factory_make ("playbin", "player");   
  if (uri)   
 {       
	 g_object_set (G_OBJECT (pipeline), "uri", uri, NULL); 
 }  
 
  {     
   GstBus *bus;    
     bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));  
      gst_bus_add_watch (bus, bus_call, NULL);  
      gst_object_unref (bus);  
  }  
  
 gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PLAYING); 
 g_main_loop_run (loop);  
 gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);  
 gst_object_unref (GST_OBJECT (pipeline));
} 
int main (int argc,      char *argv[])
{   
	 gst_init (&argc, &argv);  
  	 play_uri (argv[1]);  
  	 return 0;
}

please some one let me know on which system this can be executed ?
i think its for gstreamer related
i have red hat .
can i install gstreamer on redhat
thanks,

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.