Autore Topic: Con Shell funziono, con Exec no  (Letto 1206 volte)

Online vuott

  • Moderatore globale
  • Senatore Gambero
  • *****
  • Post: 11.370
  • Ne mors quidem nos iunget
    • Mostra profilo
Re:Con Shell funziono, con Exec no
« Risposta #15 il: 12 Agosto 2018, 19:33:45 »
...file mp4 in 3gp

Per ora, senza "Shell ", sono riuscito solo a ottenere da un file video MP4 un file 3GP solo video;D
Codice: [Seleziona]
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 video As Pointer
 Dim pos, dur As Long
 Dim po, du As Date
     
  gst_init(0, 0)
 
' Il percorso ed il nome del file origine .mp4 e quelli del file convertito .3gp  NON devono contenere spazi !
  video = gst_parse_launch("filesrc location=/percorso/del/file.mp4 ! qtdemux ! 3gppmux ! filesink location = /tmp/solovideo.3gp", 0)
       
' Avviamo la conversione video:
  gst_element_set_state(video, GST_STATE_PLAYING)
 
  Sleep 1
 
  Do
    gst_element_query_position(video, GST_FORMAT_TIME, VarPtr(pos))
    gst_element_query_duration(video, 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)
    Write "\rTempo: " & po
  Loop Until Str(po) >= Str(du)
 
     
  Print "\nConversione terminata."
  gst_object_unref(video)
     
End


e un file 3GP solo audio;D
Codice: [Seleziona]
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 pos, dur As Long
 Dim po, du As Date
     
  gst_init(0, 0)
 
' Il percorso ed il nome del file origine .mp4 e quelli del file convertito .3gp  NON devono contenere spazi !
  audio = gst_parse_launch("filesrc location=/percorso/del/file.mp4 ! qtdemux ! queue ! 3gppmux ! filesink location = /tmp/soloaudio.3gp", 0)
       
' Avviamo la conversione audio:
  gst_element_set_state(audio, GST_STATE_PLAYING)
 
  Sleep 1
 
  Do
    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)
    Write "\rTempo: " & po
  Loop Until Str(po) >= Str(du)
 
     
  Print "\nConversione terminata."
  gst_object_unref(audio)
     
End
« Ultima modifica: 13 Agosto 2018, 00:39:53 da vuott »
« Chiunque, non ricorrendo lo stato di necessità, nel proprio progetto Gambas fa uso delle istruzioni Shell o Exec, è punito con la sanzione pecuniaria da euro 20,00 a euro 60,00. »

Offline Gianluigi

  • Moderatore globale
  • Senatore Gambero
  • *****
  • Post: 4.161
  • Tonno verde
    • Mostra profilo
Re:Con Shell funziono, con Exec no
« Risposta #16 il: 12 Agosto 2018, 20:07:55 »
Per ora, senza "Shell ", sono riuscito ...

 :ok:
E senza librerie esterne?  ;D
nuoto in attesa del bacio di una principessa che mi trasformi in un gambero azzurro

Online vuott

  • Moderatore globale
  • Senatore Gambero
  • *****
  • Post: 11.370
  • Ne mors quidem nos iunget
    • Mostra profilo
Re:Con Shell funziono, con Exec no
« Risposta #17 il: 12 Agosto 2018, 21:12:36 »
E senza librerie esterne?  ;D

...'na botta 'n cap' !

 :violent:
« Chiunque, non ricorrendo lo stato di necessità, nel proprio progetto Gambas fa uso delle istruzioni Shell o Exec, è punito con la sanzione pecuniaria da euro 20,00 a euro 60,00. »

Online vuott

  • Moderatore globale
  • Senatore Gambero
  • *****
  • Post: 11.370
  • Ne mors quidem nos iunget
    • Mostra profilo
Re:Con Shell funziona, con Exec no
« Risposta #18 il: 15 Agosto 2018, 17:59:28 »
Sempre ancora con le funzioni esterne  >:( della risorsa GStreamer ho ottenuto finalmente un file video/audio .3gp da un file .mp4, ma... non vedo riduzione della dimensione del file finale.

Codice: [Seleziona]
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 video As Pointer
 Dim pos, dur As Long
 Dim po, du As Date
     
  gst_init(0, 0)
 
' Il percorso ed il nome del file origine .mp4 e quelli del file convertito .3gp  NON devono contenere spazi ! '
  video = gst_parse_launch("filesrc location=/percorso/file/video.mp4 ! qtdemux name=d ! queue ! h264parse ! 3gppmux name=mux ! filesink location=/tmp/prova.3gp d. ! queue ! aacparse ! mux.", 0)
       
' Avviamo la conversione video:
  gst_element_set_state(video, GST_STATE_PLAYING)
 
  Repeat
    gst_element_query_duration(video, GST_FORMAT_TIME, VarPtr(dur))
  Until dur > 0
 
  Repeat
    gst_element_query_position(video, GST_FORMAT_TIME, VarPtr(pos))
    gst_element_query_duration(video, 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)
    Write "\rTempo: " & po
  Until Str(po) >= Str(du)
     
  Print "\nConversione terminata."
  gst_object_unref(video)
     
End
« Ultima modifica: 06 Settembre 2021, 16:31:23 da vuott »
« Chiunque, non ricorrendo lo stato di necessità, nel proprio progetto Gambas fa uso delle istruzioni Shell o Exec, è punito con la sanzione pecuniaria da euro 20,00 a euro 60,00. »