Differenze tra le versioni di "Convertire un file MP3 in un file WAV usando una linea di pipeline con la funzione 'gst parse launch()'"

Da Gambas-it.org - Wikipedia.
Riga 21: Riga 21:
 
  ' ''Sets the state of the element.''</font>
 
  ' ''Sets the state of the element.''</font>
 
  Private Extern gst_element_set_state(gstelement As Pointer, state As Integer) As Integer
 
  Private Extern gst_element_set_state(gstelement As Pointer, state As Integer) As Integer
+
 
<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>
 
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
 
 
 
  <FONT Color=gray>' ''void gst_object_unref(gpointer object)''
 
  <FONT Color=gray>' ''void gst_object_unref(gpointer object)''
 
  ' ''Decrements the reference count on object.''</font>
 
  ' ''Decrements the reference count on object.''</font>
Riga 38: Riga 30:
 
    
 
    
 
   Dim audio As Pointer
 
   Dim audio As Pointer
  Dim pos, dur As Long
 
  Dim po, du As Date
 
 
        
 
        
 
   gst_init(0, 0)
 
   gst_init(0, 0)
 
    
 
    
 
  <FONT Color=gray>' ''Il percorso ed il nome del file origine .mp3 e quelli del file convertito .wav  NON devono contenere spazi !''</font>
 
  <FONT Color=gray>' ''Il percorso ed il nome del file origine .mp3 e quelli del file convertito .wav  NON devono contenere spazi !''</font>
   audio = gst_parse_launch("uridecodebin uri=file://<FONT Color=gray>''/percorso/del/file/audio.mp3''</font> ! mp3parse ! audioconvert ! wavenc ! filesink location=<FONT Color=gray>''/percorso/del/file/audio.wav''</font>", 0)
+
   audio = gst_parse_launch("filesrc location=<FONT Color=gray>''/percorso/del/file/audio.mp3''</font> ! mad ! audioconvert ! wavenc ! filesink location=<FONT Color=gray>''/percorso/del/file/audio.wav''</font>", 0)
 
          
 
          
 
  <FONT Color=gray>' ''Avviamo la conversione audio:''</font>
 
  <FONT Color=gray>' ''Avviamo la conversione audio:''</font>
 
   gst_element_set_state(audio, GST_STATE_PLAYING)
 
   gst_element_set_state(audio, GST_STATE_PLAYING)
 
    
 
    
   While True
+
   Sleep 5
    gst_element_query_position(audio, GST_FORMAT_TIME, VarPtr(pos))
 
    gst_element_query_duration(audio, GST_FORMAT_TIME, VarPtr(dur))
 
    po = Date(0, 0, 0, 0, 0, 0, pos / 1000000)
 
    du = Date(0, 0, 0, 0, 0, 0, dur / 1000000)
 
    If (pos > 0) And (CStr(po) = CStr(du)) Then Break
 
    Write #File.Out, "\rQuantità della durata del file convertita: " & po
 
  Wend
 
 
    
 
    
 
   gst_object_unref(audio)
 
   gst_object_unref(audio)

Versione delle 16:53, 19 mag 2018

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"


Mostriamo un esempio pratico di conversione di un file audio di formato MP3 in un file audio di formato WAV:

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
  
' 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
     
  gst_init(0, 0)
  
' Il percorso ed il nome del file origine .mp3 e quelli del file convertito .wav  NON devono contenere spazi !
  audio = gst_parse_launch("filesrc location=/percorso/del/file/audio.mp3 ! mad ! audioconvert ! wavenc ! filesink location=/percorso/del/file/audio.wav", 0)
       
' Avviamo la conversione audio:
  gst_element_set_state(audio, GST_STATE_PLAYING)
  
  Sleep 5
  
  gst_object_unref(audio)
      
End



Riferimenti