The example:
<br><br>appsrc-stream.c: example for using appsrc in streaming mode.
<br><br>Fits the bill. It loads a file as a memory map but if you shoehorn in
<br>your memory location and size at lines:
<br><br>207          &nbsp;app-&gt;length = g_mapped_file_get_length (app-&gt;file);
<br>208          &nbsp;app-&gt;data = (guint8 *) g_mapped_file_get_contents (app-&gt;file);
<br><br>You'll have a working example of what I was after.
<br><br>Cheers,
<br>Brad
<br><br><br><br><br>1         /* GStreamer
<br>2          *
<br>3          * appsrc-stream.c: example for using appsrc in streaming mode.
<br>4          *
<br>5          * Copyright (C) 2008 Wim Taymans &lt;<a href="/user/SendEmail.jtp?type=node&node=3174994&i=0" target="_top" rel="nofollow">[hidden email]</a>&gt;
<br>6          *
<br>7          * This library is free software; you can redistribute it and/or
<br>8          * modify it under the terms of the GNU Library General Public
<br>9          * License as published by the Free Software Foundation; either
<br>10          * version 2 of the License, or (at your option) any later version.
<br>11          *
<br>12          * This library is distributed in the hope that it will be useful,
<br>13          * but WITHOUT ANY WARRANTY; without even the implied warranty of
<br>14          * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. &nbsp;See the GNU
<br>15          * Library General Public License for more details.
<br>16          *
<br>17          * You should have received a copy of the GNU Library General Public
<br>18          * License along with this library; if not, write to the
<br>19          * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
<br>20          * Boston, MA 02111-1307, USA.
<br>21          */
<br>22         
<br>23         #ifdef HAVE_CONFIG_H
<br>24         #include &quot;config.h&quot;
<br>25         #endif
<br>26         
<br>27         #include &lt;gst/gst.h&gt;
<br>28         
<br>29         #include &lt;stdio.h&gt;
<br>30         #include &lt;string.h&gt;
<br>31         #include &lt;stdlib.h&gt;
<br>32         
<br>33         GST_DEBUG_CATEGORY (appsrc_playbin_debug);
<br>34         #define GST_CAT_DEFAULT appsrc_playbin_debug
<br>35         
<br>36         /*
<br>37          * an example application of using appsrc in streaming push mode.
<br>We simply push
<br>38          * buffers into appsrc. The size of the buffers we push can be any size we
<br>39          * choose.
<br>40          *
<br>41          * This example is very close to how one would deal with a
<br>streaming webserver
<br>42          * that does not support range requests or does not report the
<br>total file size.
<br>43          *
<br>44          * Some optimisations are done so that we don't push too much
<br>data. We connect
<br>45          * to the need-data and enough-data signals to start/stop sending buffers.
<br>46          *
<br>47          * Appsrc in streaming mode (the default) does not support seeking
<br>so we don't
<br>48          * have to handle any seek callbacks.
<br>49          *
<br>50          * Some formats are able to estimate the duration of the media
<br>file based on the
<br>51          * file length (mp3, mpeg,..), others report an unknown length (ogg,..).
<br>52          */
<br>53         typedef struct _App App;
<br>54         
<br>55         struct _App
<br>56         {
<br>57          &nbsp;GstElement *playbin;
<br>58          &nbsp;GstElement *appsrc;
<br>59         
<br>60          &nbsp;GMainLoop *loop;
<br>61          &nbsp;guint sourceid;
<br>62         
<br>63          &nbsp;GMappedFile *file;
<br>64          &nbsp;guint8 *data;
<br>65          &nbsp;gsize length;
<br>66          &nbsp;guint64 offset;
<br>67         };
<br>68         
<br>69         App s_app;
<br>70         
<br>71         #define CHUNK_SIZE &nbsp;4096
<br>72         
<br>73         /* This method is called by the idle GSource in the mainloop. We
<br>feed CHUNK_SIZE
<br>74          * bytes into appsrc.
<br>75          * The ide handler is added to the mainloop when appsrc requests us to start
<br>76          * sending data (need-data signal) and is removed when appsrc has
<br>enough data
<br>77          * (enough-data signal).
<br>78          */
<br>79         static gboolean
<br>80         read_data (App * app)
<br>81         {
<br>82          &nbsp;GstBuffer *buffer;
<br>83          &nbsp;guint len;
<br>84          &nbsp;GstFlowReturn ret;
<br>85         
<br>86          &nbsp;buffer = gst_buffer_new ();
<br>87         
<br>88          &nbsp;if (app-&gt;offset &gt;= app-&gt;length) {
<br>89          &nbsp; &nbsp;/* we are EOS, send end-of-stream and remove the source */
<br>90          &nbsp; &nbsp;g_signal_emit_by_name (app-&gt;appsrc, &quot;end-of-stream&quot;, &ret);
<br>91          &nbsp; &nbsp;return FALSE;
<br>92          &nbsp;}
<br>93         
<br>94          &nbsp;/* read the next chunk */
<br>95          &nbsp;len = CHUNK_SIZE;
<br>96          &nbsp;if (app-&gt;offset + len &gt; app-&gt;length)
<br>97          &nbsp; &nbsp;len = app-&gt;length - app-&gt;offset;
<br>98         
<br>99          &nbsp;GST_BUFFER_DATA (buffer) = app-&gt;data + app-&gt;offset;
<br>100          &nbsp;GST_BUFFER_SIZE (buffer) = len;
<br>101         
<br>102          &nbsp;GST_DEBUG (&quot;feed buffer %p, offset %&quot; G_GUINT64_FORMAT &quot;-%u&quot;, buffer,
<br>103          &nbsp; &nbsp; &nbsp;app-&gt;offset, len);
<br>104          &nbsp;g_signal_emit_by_name (app-&gt;appsrc, &quot;push-buffer&quot;, buffer, &ret);
<br>105          &nbsp;if (ret != GST_FLOW_OK) {
<br>106          &nbsp; &nbsp;/* some error, stop sending data */
<br>107          &nbsp; &nbsp;return FALSE;
<br>108          &nbsp;}
<br>109         
<br>110          &nbsp;app-&gt;offset += len;
<br>111         
<br>112          &nbsp;return TRUE;
<br>113         }
<br>114         
<br>115         /* This signal callback is called when appsrc needs data, we add
<br>an idle handler
<br>116          * to the mainloop to start pushing data into the appsrc */
<br>117         static void
<br>118         start_feed (GstElement * playbin, guint size, App * app)
<br>119         {
<br>120          &nbsp;if (app-&gt;sourceid == 0) {
<br>121          &nbsp; &nbsp;GST_DEBUG (&quot;start feeding&quot;);
<br>122          &nbsp; &nbsp;app-&gt;sourceid = g_idle_add ((GSourceFunc) read_data, app);
<br>123          &nbsp;}
<br>124         }
<br>125         
<br>126         /* This callback is called when appsrc has enough data and we can
<br>stop sending.
<br>127          * We remove the idle handler from the mainloop */
<br>128         static void
<br>129         stop_feed (GstElement * playbin, App * app)
<br>130         {
<br>131          &nbsp;if (app-&gt;sourceid != 0) {
<br>132          &nbsp; &nbsp;GST_DEBUG (&quot;stop feeding&quot;);
<br>133          &nbsp; &nbsp;g_source_remove (app-&gt;sourceid);
<br>134          &nbsp; &nbsp;app-&gt;sourceid = 0;
<br>135          &nbsp;}
<br>136         }
<br>137         
<br>138         /* this callback is called when playbin2 has constructed a source
<br>object to read
<br>139          * from. Since we provided the appsrc:// uri to playbin2, this will be the
<br>140          * appsrc that we must handle. We set up some signals to start
<br>and stop pushing
<br>141          * data into appsrc */
<br>142         static void
<br>143         found_source (GObject * object, GObject * orig, GParamSpec *
<br>pspec, App * app)
<br>144         {
<br>145          &nbsp;/* get a handle to the appsrc */
<br>146          &nbsp;g_object_get (orig, pspec-&gt;name, &app-&gt;appsrc, NULL);
<br>147         
<br>148          &nbsp;GST_DEBUG (&quot;got appsrc %p&quot;, app-&gt;appsrc);
<br>149         
<br>150          &nbsp;/* we can set the length in appsrc. This allows some elements
<br>to estimate the
<br>151          &nbsp; * total duration of the stream. It's a good idea to set the
<br>property when you
<br>152          &nbsp; * can but it's not required. */
<br>153          &nbsp;g_object_set (app-&gt;appsrc, &quot;size&quot;, app-&gt;length, NULL);
<br>154         
<br>155          &nbsp;/* configure the appsrc, we will push data into the appsrc from the
<br>156          &nbsp; * mainloop. */
<br>157          &nbsp;g_signal_connect (app-&gt;appsrc, &quot;need-data&quot;, G_CALLBACK
<br>(start_feed), app);
<br>158          &nbsp;g_signal_connect (app-&gt;appsrc, &quot;enough-data&quot;, G_CALLBACK
<br>(stop_feed), app);
<br>159         }
<br>160         
<br>161         static gboolean
<br>162         bus_message (GstBus * bus, GstMessage * message, App * app)
<br>163         {
<br>164          &nbsp;GST_DEBUG (&quot;got message %s&quot;,
<br>165          &nbsp; &nbsp; &nbsp;gst_message_type_get_name (GST_MESSAGE_TYPE (message)));
<br>166         
<br>167          &nbsp;switch (GST_MESSAGE_TYPE (message)) {
<br>168          &nbsp; &nbsp;case GST_MESSAGE_ERROR:
<br>169          &nbsp; &nbsp; &nbsp;g_error (&quot;received error&quot;);
<br>170          &nbsp; &nbsp; &nbsp;g_main_loop_quit (app-&gt;loop);
<br>171          &nbsp; &nbsp; &nbsp;break;
<br>172          &nbsp; &nbsp;case GST_MESSAGE_EOS:
<br>173          &nbsp; &nbsp; &nbsp;g_main_loop_quit (app-&gt;loop);
<br>174          &nbsp; &nbsp; &nbsp;break;
<br>175          &nbsp; &nbsp;default:
<br>176          &nbsp; &nbsp; &nbsp;break;
<br>177          &nbsp;}
<br>178          &nbsp;return TRUE;
<br>179         }
<br>180         
<br>181         int
<br>182         main (int argc, char *argv[])
<br>183         {
<br>184          &nbsp;App *app = &s_app;
<br>185          &nbsp;GError *error = NULL;
<br>186          &nbsp;GstBus *bus;
<br>187         
<br>188          &nbsp;gst_init (&argc, &argv);
<br>189         
<br>190          &nbsp;GST_DEBUG_CATEGORY_INIT (appsrc_playbin_debug, &quot;appsrc-playbin&quot;, 0,
<br>191          &nbsp; &nbsp; &nbsp;&quot;appsrc playbin example&quot;);
<br>192         
<br>193          &nbsp;if (argc &lt; 2) {
<br>194          &nbsp; &nbsp;g_print (&quot;usage: %s &lt;filename&gt;\n&quot;, argv[0]);
<br>195          &nbsp; &nbsp;return -1;
<br>196          &nbsp;}
<br>197         
<br>198          &nbsp;/* try to open the file as an mmapped file */
<br>199          &nbsp;app-&gt;file = g_mapped_file_new (argv[1], FALSE, &error);
<br>200          &nbsp;if (error) {
<br>201          &nbsp; &nbsp;g_print (&quot;failed to open file: %s\n&quot;, error-&gt;message);
<br>202          &nbsp; &nbsp;g_error_free (error);
<br>203          &nbsp; &nbsp;return -2;
<br>204          &nbsp;}
<br>205          &nbsp;/* get some vitals, this will be used to read data from the
<br>mmapped file and
<br>206          &nbsp; * feed it to appsrc. */
<br>207          &nbsp;app-&gt;length = g_mapped_file_get_length (app-&gt;file);
<br>208          &nbsp;app-&gt;data = (guint8 *) g_mapped_file_get_contents (app-&gt;file);
<br>209          &nbsp;app-&gt;offset = 0;
<br>210         
<br>211          &nbsp;/* create a mainloop to get messages and to handle the idle
<br>handler that will
<br>212          &nbsp; * feed data to appsrc. */
<br>213          &nbsp;app-&gt;loop = g_main_loop_new (NULL, TRUE);
<br>214         
<br>215          &nbsp;app-&gt;playbin = gst_element_factory_make (&quot;playbin2&quot;, NULL);
<br>216          &nbsp;g_assert (app-&gt;playbin);
<br>217         
<br>218          &nbsp;bus = gst_pipeline_get_bus (GST_PIPELINE (app-&gt;playbin));
<br>219         
<br>220          &nbsp;/* add watch for messages */
<br>221          &nbsp;gst_bus_add_watch (bus, (GstBusFunc) bus_message, app);
<br>222         
<br>223          &nbsp;/* set to read from appsrc */
<br>224          &nbsp;g_object_set (app-&gt;playbin, &quot;uri&quot;, &quot;appsrc://&quot;, NULL);
<br>225         
<br>226          &nbsp;/* get notification when the source is created so that we get a
<br>handle to it
<br>227          &nbsp; * and can configure it */
<br>228          &nbsp;g_signal_connect (app-&gt;playbin, &quot;deep-notify::source&quot;,
<br>229          &nbsp; &nbsp; &nbsp;(GCallback) found_source, app);
<br>230         
<br>231          &nbsp;/* go to playing and wait in a mainloop. */
<br>232          &nbsp;gst_element_set_state (app-&gt;playbin, GST_STATE_PLAYING);
<br>233         
<br>234          &nbsp;/* this mainloop is stopped when we receive an error or EOS */
<br>235          &nbsp;g_main_loop_run (app-&gt;loop);
<br>236         
<br>237          &nbsp;GST_DEBUG (&quot;stopping&quot;);
<br>238         
<br>239          &nbsp;gst_element_set_state (app-&gt;playbin, GST_STATE_NULL);
<br>240         
<br>241          &nbsp;/* free the file */
<br>242          &nbsp;g_mapped_file_free (app-&gt;file);
<br>243         
<br>244          &nbsp;gst_object_unref (bus);
<br>245          &nbsp;g_main_loop_unref (app-&gt;loop);
<br>246         
<br>247          &nbsp;return 0;
<br>248         }
<br><br><br>On Wed, Jan 5, 2011 at 5:30 PM, <a href="/user/SendEmail.jtp?type=node&node=3174994&i=1" target="_top" rel="nofollow">[hidden email]</a> [via
<br>GStreamer-devel] &lt;<a href="/user/SendEmail.jtp?type=node&node=3174994&i=2" target="_top" rel="nofollow">[hidden email]</a>&gt;
<br>wrote:
<div class='shrinkable-quote'><br>&gt; It can be put in the pipeline. But you need to pump data into it from your
<br>&gt; application. Your application would be (sort of) the 'source' and appsrc is
<br>&gt; like a cheat code to make the following elements think that there is
<br>&gt; actually a source element in there at the start of the pipeline feeding them
<br>&gt; gstbuffers.
<br>&gt; Try looking up the output format of filesrc element and package your data
<br>&gt; similarly and feed it to appsrc. Rest will be taken care by the
<br>&gt; bin/pipeline.
<br>&gt; Rohit
<br>&gt; On Wed, Jan 5, 2011 at 11:34 AM, Brad Goldsmith &lt;[hidden email]&gt; wrote:
<br>&gt;&gt;
<br>&gt;&gt; Can appsrc be put in that pipeline, in place of filesrc, without any
<br>&gt;&gt; additional elements?
<br>&gt;&gt;
<br>&gt;&gt; Cheers,
<br>&gt;&gt; Brad
<br>&gt;&gt;
<br>&gt;&gt; On Wed, Jan 5, 2011 at 1:55 AM, Tim-Philipp Müller &lt;[hidden email]&gt; wrote:
<br>&gt;&gt; &gt; On Tue, 2011-01-04 at 04:35 -0800, bcg wrote:
<br>&gt;&gt; &gt;
<br>&gt;&gt; &gt; Hi,
<br>&gt;&gt; &gt;
<br>&gt;&gt; &gt;&gt; This should almost be an FAQ but it's not in there so here goes:
<br>&gt;&gt; &gt;&gt;
<br>&gt;&gt; &gt;&gt; I have a pipeline thus:
<br>&gt;&gt; &gt;&gt;
<br>&gt;&gt; &gt;&gt; file-source -&gt;  decodebin -&gt; audioresample -&gt; converter -&gt; audio_output
<br>&gt;&gt; &gt;&gt;
<br>&gt;&gt; &gt;&gt; Using location (or fd if I change file_source to a fdsrc) I can happily
<br>&gt;&gt; &gt;&gt; play
<br>&gt;&gt; &gt;&gt; most audio I throw at it (including mp3s) providing its in a file. What
<br>&gt;&gt; &gt;&gt; I
<br>&gt;&gt; &gt;&gt; would like to do is play from a memory location with the mp3 data
<br>&gt;&gt; &gt;&gt; already in
<br>&gt;&gt; &gt;&gt; it.
<br>&gt;&gt; &gt;&gt;
<br>&gt;&gt; &gt;&gt; I am assuming I would need to use a fakesrc with a callback to get my
<br>&gt;&gt; &gt;&gt; data
<br>&gt;&gt; &gt;&gt; into the pipeline - I've tried lots of variations on this and gotten
<br>&gt;&gt; &gt;&gt; nowhere.
<br>&gt;&gt; &gt;&gt;
<br>&gt;&gt; &gt;&gt; Can I just replace the file-source with the fakesrc, load the data and
<br>&gt;&gt; &gt;&gt; go
<br>&gt;&gt; &gt;&gt; (if this is possible couple someone provide an example)? Or do I have
<br>&gt;&gt; &gt;&gt; to
<br>&gt;&gt; &gt;&gt; worry about queues and caps? If so, can someone provide an example?
<br>&gt;&gt; &gt;&gt; Will
<br>&gt;&gt; &gt;&gt; decodebin suffice or will I have to be more specific?
<br>&gt;&gt; &gt;
<br>&gt;&gt; &gt; Use appsrc.
<br>&gt;&gt; &gt;
<br>&gt;&gt; &gt; Cheers
<br>&gt;&gt; &gt;  -Tim
<br>&gt;&gt; &gt;
<br>&gt;&gt; &gt;
<br>&gt;&gt; &gt;
<br>&gt;&gt; &gt;
<br>&gt;&gt; &gt; ------------------------------------------------------------------------------
<br>&gt;&gt; &gt; Learn how Oracle Real Application Clusters (RAC) One Node allows
<br>&gt;&gt; &gt; customers
<br>&gt;&gt; &gt; to consolidate database storage, standardize their database environment,
<br>&gt;&gt; &gt; and,
<br>&gt;&gt; &gt; should the need arise, upgrade to a full multi-node Oracle RAC database
<br>&gt;&gt; &gt; without downtime or disruption
<br>&gt;&gt; &gt; <a href="http://p.sf.net/sfu/oracle-sfdevnl" target="_top" rel="nofollow" link="external">http://p.sf.net/sfu/oracle-sfdevnl</a><br>&gt;&gt; &gt; _______________________________________________
<br>&gt;&gt; &gt; gstreamer-devel mailing list
<br>&gt;&gt; &gt; [hidden email]
<br>&gt;&gt; &gt; <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_top" rel="nofollow" link="external">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>&gt;&gt; &gt;
<br>&gt;&gt;
<br>&gt;&gt;
<br>&gt;&gt; ------------------------------------------------------------------------------
<br>&gt;&gt; Learn how Oracle Real Application Clusters (RAC) One Node allows customers
<br>&gt;&gt; to consolidate database storage, standardize their database environment,
<br>&gt;&gt; and,
<br>&gt;&gt; should the need arise, upgrade to a full multi-node Oracle RAC database
<br>&gt;&gt; without downtime or disruption
<br>&gt;&gt; <a href="http://p.sf.net/sfu/oracle-sfdevnl" target="_top" rel="nofollow" link="external">http://p.sf.net/sfu/oracle-sfdevnl</a><br>&gt;&gt; _______________________________________________
<br>&gt;&gt; gstreamer-devel mailing list
<br>&gt;&gt; [hidden email]
<br>&gt;&gt; <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_top" rel="nofollow" link="external">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>&gt;
<br>&gt;
<br>&gt; ------------------------------------------------------------------------------
<br>&gt; Learn how Oracle Real Application Clusters (RAC) One Node allows customers
<br>&gt; to consolidate database storage, standardize their database environment,
<br>&gt; and,
<br>&gt; should the need arise, upgrade to a full multi-node Oracle RAC database
<br>&gt; without downtime or disruption
<br>&gt; <a href="http://p.sf.net/sfu/oracle-sfdevnl" target="_top" rel="nofollow" link="external">http://p.sf.net/sfu/oracle-sfdevnl</a><br>&gt; _______________________________________________
<br>&gt; gstreamer-devel mailing list
<br>&gt; [hidden email]
<br>&gt; <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_top" rel="nofollow" link="external">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>&gt;
<br>&gt;
<br>&gt; ________________________________
<br>&gt; View message @
<br>&gt; <a href="http://gstreamer-devel.966125.n4.nabble.com/Play-audio-from-a-memory-buffer-tp3173448p3174884.html?by-user=t" target="_top" rel="nofollow" link="external">http://gstreamer-devel.966125.n4.nabble.com/Play-audio-from-a-memory-buffer-tp3173448p3174884.html</a><br>&gt; To unsubscribe from Play audio from a memory buffer?, click here.
<br></div>
<br><hr align="left" width="300">
View this message in context: <a href="http://gstreamer-devel.966125.n4.nabble.com/Play-audio-from-a-memory-buffer-tp3173448p3174994.html">Re: Play audio from a memory buffer?</a><br>
Sent from the <a href="http://gstreamer-devel.966125.n4.nabble.com/">GStreamer-devel mailing list archive</a> at Nabble.com.<br>