Differenze tra le versioni di "Visualizzare un oscilloscopio di GStreamer mediante la funzione 'gst parse launch()' durante l'esecuzione di un file audio"

Da Gambas-it.org - Wikipedia.
(Creata pagina con "La funzione esterna ''gst_parse_launch()'' della libreria ''GStreamer'' consente di costruire e gestire in modo semplice una pipeline ''GStreamer''. La riga della pipeline ges...")
 
 
(5 versioni intermedie di uno stesso utente non sono mostrate)
Riga 1: Riga 1:
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 separati da punti esclamativi (!). Le proprietà possono essere aggiunte agli elementi, sotto forma di: ''proprietà = valore''.
+
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 separati da punti esclamativi (!). Le proprietà possono essere aggiunte agli elementi, sotto forma di: ''proprietà = valore''.
  
Sarà necessario avere installata nel sistema e richiamare nell'applicazione Gambas la libreria dinamica condivisa: "''libgstreamer-1.0''"
+
Sarà necessario avere installata nel sistema e richiamare nell'applicazione Gambas la libreria condivisa: "''libgstreamer-1.0'' ".
  
Usando i plugin "''wavescope''" e "''autoaudiosink''" all'interno della riga della ''pipeline'' della funzione ''gst_parse_launch()'', è possibile visualizzare un oscilloscopio attivo durante l'esecuzione di un file audio di formato wav, mp3 ed .ogg.
+
Usando i plugin ''wavescope'' o ''monoscope'' unitamente a ''autoaudiosink'' all'interno della riga della ''pipeline'' della funzione "gst_parse_launch()", è possibile scegliere la visualizzazione di due tipi diversi di oscilloscopio attivo durante l'esecuzione di un file audio di formato wav, mp3 ed .ogg.
  
  
Mostriamo un esempio pratico:
+
==Uso del plugin ''wavescope''==
 +
Mostriamo un esempio pratico usando i plugin "''wavescope''" e "''autoaudiosink''" all'interno della riga della ''pipeline'' della funzione ''gst_parse_launch()'':
 
  Library "libgstreamer-1.0"
 
  Library "libgstreamer-1.0"
 
   
 
   
Riga 37: Riga 38:
 
   
 
   
 
   
 
   
  '''Public''' Sub Main()
+
  Public Sub Main()
 
+
 
   Dim audio As Pointer
 
   Dim audio As Pointer
     
+
  Dim durata, pos As Long
  gst_init(0, 0)
+
 +
  gst_init(0, 0)
 
    
 
    
  audio = gst_parse_launch("filesrc location=<FONT Color=gray>''/percorso/del/file/audio''</font> ! decodebin ! tee name=t " &
+
  audio = gst_parse_launch("filesrc location=<FONT Color=darkgreen>''/percorso/del/file/audio''</font> ! decodebin ! tee name=t " &
                            "! queue ! audioconvert ! wavescope style=3 ! video/x-raw, width=1000 ! videoconvert ! ximagesink t. " &
+
          "! queue ! audioconvert ! wavescope style=3 ! video/x-raw, width=1000 ! videoconvert ! ximagesink t. " &
                            "! queue ! audioconvert! m. t. ! queue ! autoaudiosink", 0)
+
          "! queue ! audioconvert ! m. t. ! queue ! autoaudiosink", 0)
             
+
 
  <FONT Color=gray>' ''Avviamo l'esecuzione del file audio:''</font>
 
  <FONT Color=gray>' ''Avviamo l'esecuzione del file audio:''</font>
  gst_element_set_state(audio, GST_STATE_PLAYING)
+
  gst_element_set_state(audio, GST_STATE_PLAYING)
 
    
 
    
  While True
+
  Repeat
    gst_element_query_position(audio, GST_FORMAT_TIME, VarPtr(pos))
+
    gst_element_query_duration(audio, GST_FORMAT_TIME, VarPtr(durata))
    gst_element_query_duration(audio, GST_FORMAT_TIME, VarPtr(dur))
+
    Wait 0.01
    po = Date(0, 0, 0, 0, 0, 0, pos / 1000000)
+
  Until durata > -1
     du = Date(0, 0, 0, 0, 0, 0, dur / 1000000)
+
    If (pos > 0) And (CStr(po) >= CStr(du)) Then Break
+
  Repeat
    Write #File.Out, "\rDurata: " & du & "      " & "Tempo trascorso: " & po
+
    gst_element_query_position(audio, GST_FORMAT_TIME, VarPtr(pos))
  Wend
+
    Write "\r\e[0mDurata: " & Time(0, 0, 0, durata / 1000000) & "     Pos. \e[31m" & Time(0, 0, 0, pos / 1000000)
 +
    Wait 0.001
 +
  Until pos >= durata
 +
 +
  gst_object_unref(audio)
 +
  Print "\nEsecuzione terminata."
 +
  Quit
 
    
 
    
  Termina()
+
End
       
+
 
  '''End'''
+
 
 +
 
 +
==Uso del plugin ''monoscope''==
 +
Mostriamo un esempio pratico usando i plugin "''monoscope''" e "''autoaudiosink''" all'interno della riga della ''pipeline'' della funzione ''gst_parse_launch()'':
 +
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
 +
 
 +
  <FONT Color=gray>' ''gst_init (int *argc, char **argv[])''
 +
' ''Initializes the GStreamer library, setting up internal path lists, registering built-in elements, and loading standard plugins.''</font>
 +
Private Extern gst_init(argc As Pointer, argv As Pointer)
 
   
 
   
 +
<FONT Color=gray>' ''GstElement * gst_parse_launch (const gchar *pipeline_description, GError **error)''
 +
' ''Create a new pipeline based on command line syntax.''</font>
 +
Private Extern gst_parse_launch(description As String, GError As Pointer) As Pointer
 +
 +
<FONT Color=gray>' ''GstStateChangeReturn gst_element_set_state(GstElement *element, GstState state)''
 +
' ''Sets the state of the element.''</font>
 +
Private Extern gst_element_set_state(gstelement As Pointer, state As Integer) As Integer
 
   
 
   
  '''Public''' Sub Application_Read()
+
  <FONT Color=gray>' ''gboolean gst_element_query_duration(GstElement * element, GstFormat format, gint64 * duration)''
 
+
' ''Queries an element For the total stream duration In nanoseconds.''</font>
  Dim s As String
+
Private Extern gst_element_query_duration(gselement As Pointer, formatI As Integer, duration As Pointer) As Boolean
 +
 
 +
<FONT Color=gray>' ''gboolean gst_element_query_position(GstElement * element, GstFormat format, gint64 * cur)''
 +
' ''Queries an element For the stream position In nanoseconds.''</font>
 +
Private Extern gst_element_query_position(gstelement As Pointer, gstformat As Pointer, cur As Pointer) As Boolean
 
    
 
    
  Input #File.In, s
+
<FONT Color=gray>' ''void gst_object_unref(gpointer object)''
 +
' ''Decrements the reference count on object.''</font>
 +
Private Extern gst_object_unref(gobject As Pointer)
 +
 +
 +
Public Sub Main()
 +
 +
  Dim audio As Pointer
 +
  Dim durata, pos As Long
 +
 +
  gst_init(0, 0)
 
    
 
    
  Select Case s
+
  audio = gst_parse_launch("filesrc location=<FONT Color=darkgreen>''/percorso/del/file/audio''</font> ! decodebin ! tee name=t " &
    Case "p"
+
                          "! queue ! audioconvert ! monoscope ! ximagesink ! queue ! m. t. ! queue ! autoaudiosink", 0)
<FONT Color=gray>' ''Pone in pausa la riproduzione del file mediale:''</font>
+
      gst_element_set_state(audio, GST_STATE_PAUSED)
+
  <FONT Color=gray>' ''Avviamo l'esecuzione del file audio:''</font>
    Case "r"
+
  gst_element_set_state(audio, GST_STATE_PLAYING)
<FONT Color=gray>' ''Riprende la riproduzione del file mediale:''</font>
 
      gst_element_set_state(audio, GST_STATE_PLAYING)
 
    Case "s"
 
  <FONT Color=gray>' ''Arresta la riproduzione del file mediale:''</font>
 
      gst_element_set_state(audio, GST_STATE_NULL)
 
      Termina()
 
  End Select
 
 
    
 
    
'''End'''
+
  Repeat
 +
    gst_element_query_duration(audio, GST_FORMAT_TIME, VarPtr(durata))
 +
    Wait 0.01
 +
  Until durata > -1
 
   
 
   
 +
  Repeat
 +
    gst_element_query_position(audio, GST_FORMAT_TIME, VarPtr(pos))
 +
    Write "\r\e[0mDurata: " & Time(0, 0, 0, durata / 1000000) & "      Pos. \e[31m" & Time(0, 0, 0, pos / 1000000)
 +
    Wait 0.001
 +
  Until pos >= durata
 
   
 
   
'''Private''' Procedure Termina()
+
  gst_object_unref(audio)
+
  Print "\nEsecuzione terminata."
  gst_object_unref(audio)
+
  Quit
  Print "\nEsecuzione terminata."
 
  Quit
 
 
    
 
    
  '''End'''     
+
  End
 
 
  
  
Riga 100: Riga 138:
 
* http://docs.gstreamer.com/display/GstSDK/gst-launch
 
* http://docs.gstreamer.com/display/GstSDK/gst-launch
 
* https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-bad-plugins/html/gst-plugins-bad-plugins-wavescope.html
 
* https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-bad-plugins/html/gst-plugins-bad-plugins-wavescope.html
 +
* https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-good-plugins/html/gst-plugins-good-plugins-monoscope.html
 
* http://gstreamer.freedesktop.org/
 
* http://gstreamer.freedesktop.org/
 
* http://gstreamer.com/
 
* http://gstreamer.com/

Versione attuale delle 06:15, 12 dic 2023

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 separati da punti esclamativi (!). Le proprietà possono essere aggiunte agli elementi, sotto forma di: proprietà = valore.

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

Usando i plugin wavescope o monoscope unitamente a autoaudiosink all'interno della riga della pipeline della funzione "gst_parse_launch()", è possibile scegliere la visualizzazione di due tipi diversi di oscilloscopio attivo durante l'esecuzione di un file audio di formato wav, mp3 ed .ogg.


Uso del plugin wavescope

Mostriamo un esempio pratico usando i plugin "wavescope" e "autoaudiosink" all'interno della riga della pipeline della funzione gst_parse_launch():

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_duration(GstElement * element, GstFormat format, gint64 * duration)
' Queries an element For the total stream duration In nanoseconds.
Private Extern gst_element_query_duration(gselement As Pointer, formatI As Integer, duration As Pointer) As Boolean
 
' 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 audio As Pointer
 Dim durata, pos As Long

 gst_init(0, 0)
  
 audio = gst_parse_launch("filesrc location=/percorso/del/file/audio ! decodebin ! tee name=t " &
         "! queue ! audioconvert ! wavescope style=3 ! video/x-raw, width=1000 ! videoconvert ! ximagesink t. " &
         "! queue ! audioconvert ! m. t. ! queue ! autoaudiosink", 0)

' Avviamo l'esecuzione del file audio:
 gst_element_set_state(audio, GST_STATE_PLAYING)
  
 Repeat
   gst_element_query_duration(audio, GST_FORMAT_TIME, VarPtr(durata))
   Wait 0.01
 Until durata > -1

 Repeat
   gst_element_query_position(audio, GST_FORMAT_TIME, VarPtr(pos))
   Write "\r\e[0mDurata: " & Time(0, 0, 0, durata / 1000000) & "      Pos. \e[31m" & Time(0, 0, 0, pos / 1000000)
   Wait 0.001
 Until pos >= durata

 gst_object_unref(audio)
 Print "\nEsecuzione terminata."
 Quit
  
End


Uso del plugin monoscope

Mostriamo un esempio pratico usando i plugin "monoscope" e "autoaudiosink" all'interno della riga della pipeline della funzione gst_parse_launch():

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_duration(GstElement * element, GstFormat format, gint64 * duration)
' Queries an element For the total stream duration In nanoseconds.
Private Extern gst_element_query_duration(gselement As Pointer, formatI As Integer, duration As Pointer) As Boolean
 
' 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 audio As Pointer
 Dim durata, pos As Long

 gst_init(0, 0)
  
 audio = gst_parse_launch("filesrc location=/percorso/del/file/audio ! decodebin ! tee name=t " &
                          "! queue ! audioconvert ! monoscope ! ximagesink ! queue ! m. t. ! queue ! autoaudiosink", 0)

' Avviamo l'esecuzione del file audio:
 gst_element_set_state(audio, GST_STATE_PLAYING)
  
 Repeat
   gst_element_query_duration(audio, GST_FORMAT_TIME, VarPtr(durata))
   Wait 0.01
 Until durata > -1

 Repeat
   gst_element_query_position(audio, GST_FORMAT_TIME, VarPtr(pos))
   Write "\r\e[0mDurata: " & Time(0, 0, 0, durata / 1000000) & "      Pos. \e[31m" & Time(0, 0, 0, pos / 1000000)
   Wait 0.001
 Until pos >= durata

 gst_object_unref(audio)
 Print "\nEsecuzione terminata."
 Quit
  
End


Riferimenti