Visualizzare un oscilloscopio o uno spettroscopio di GStreamer mediante la funzione 'gst parse launch()' durante la registrazione di una fonte sonora esterna

Da Gambas-it.org - Wikipedia.

La funzione esterna "gst_parse_launch()" della libreria GStreamer consente di costruire e gestire in modo semplice una pipeline GStreamer. La riga della pipeline gestita dalla funzione esterna "gst_parse_launch()" è un insieme di elementi (plugin di GStreamer) separati da punti esclamativi (!). Le proprietà possono essere aggiunte agli elementi, sotto forma di: proprietà = valore.

Durante la registrazione in un file audio di una fonte sonora esterna, ad esempio con un microfono, è possibile contemporaneamente mostrare in un'apposita finestra l'oscillocopio o lo spettrografo forniti dai rispettivi plugin di GStreamer.

Sarà necessario avere installata nel sistema e richiamare nell'applicazione Gambas la libreria condivisa: "libgstreamer-1.0 ".

Con il seguente codice si registrerà la fonte sonora esterna in un file audio di formato WAV, a 44100 hertz, 2 canali, 16-bit, e contemporaneamente si mostrerà lo spettroscopio di GStreamer:

Private audio As Pointer


Library "libgstreamer-1.0"

Private Enum GST_STATE_VOID_PENDING = 0, GST_STATE_NULL, GST_STATE_READY, GST_STATE_PAUSED, GST_STATE_PLAYING
Private Const GST_FORMAT_TIME As Integer = 3

' gst_init (int *argc, char **argv[])
' Initializes the GStreamer library, setting up internal path lists, registering built-in elements, and loading standard plugins.
Private Extern gst_init(argc As Pointer, argv As Pointer)

' GstElement * gst_parse_launch (const gchar *pipeline_description, GError **error)
' Create a new pipeline based on command line syntax.
Private Extern gst_parse_launch(description As String, GError As Pointer) As Pointer

' GstStateChangeReturn gst_element_set_state(GstElement *element, GstState state)
' Sets the state of the element.
Private Extern gst_element_set_state(gstelement As Pointer, state As Integer) As Integer
 
' gboolean gst_element_query_position (GstElement *element, GstFormat format, gint64 *cur)
' Queries an element for the stream position in nanoseconds.
Private Extern gst_element_query_position(gstelement As Pointer, gstformat As Pointer, cur As Pointer) As Boolean

' void gst_object_unref(gpointer object)
' Decrements the reference count on object.
Private Extern gst_object_unref(gobject As Pointer)


Public Sub Main()
 
 Dim tempus As Long
     
 gst_init(0, 0)
  
' Salviamo l'audio, catturato dal microfono, in un file WAV 44100 hertz, 16-bit, 2 canali, e mostriamo contemporaneamente una finestra con spettrografo:
 audio = gst_parse_launch("alsasrc ! audio/x-raw,rate=44100,depth=16,channels=2,width=16,signed=true ! volume volume=2.0 ! " &
                          "tee  name=t ! queue ! spectrascope ! video/x-raw, width=680 ! videoconvert ! xvimagesink t. ! " &
                          "queue ! audioconvert ! wavenc ! location=/percorso/del/file.wav", 0)
       
' Avviamo la registrazione audio:
 gst_element_set_state(audio, GST_STATE_PLAYING)
  
 Do
   gst_element_query_position(audio, GST_FORMAT_TIME, VarPtr(tempus))
   Write "\rTempo: " & Time(0, 0, 0, tempus / 1000000)
   Wait 0.01
 Loop
 
End


Public Sub Application_Read()

 Dim s As String

 Input #File.In, s
  
 Select Case s
   Case "p"
' Pone in pausa la registrazione del file WAV:
     gst_element_set_state(audio, GST_STATE_PAUSED)
   Case "r"
' Riprende la registrazione del file WAV:
     gst_element_set_state(audio, GST_STATE_PLAYING)
   Case "s"
' Arresta la registrazione del file WAV:
     gst_element_set_state(audio, GST_STATE_NULL)
     gst_object_unref(audio)
     Print "\nEsecuzione terminata."
     Quit
 End Select

End


Riferimenti