Search found 263 matches

by vuott
Wednesday 3rd January 2024 7:07pm
Forum: Beginners
Topic: Gambas3 Code Layout
Replies: 4
Views: 2109

Re: Gambas3 Code Layout

If you refer to alphanumeric character strings, you can break the string into two or more parts, enclosed by quotation marks. For convenience you can also have each one followed by the "&" symbol. Exemplum: Dim s as String s = "aaaa bbbb cccc ddd " & "eeee ffff gggg ...
by vuott
Wednesday 3rd January 2024 6:59pm
Forum: General
Topic: How to do audio output selection for MediaPlayer control?
Replies: 20
Views: 17405

Re: How to do audio output selection for MediaPlayer control?

Sorry, I don't know.
...but does the code work ?
Is it a simple warning or critical.. fatal error ?
by vuott
Tuesday 2nd January 2024 11:17pm
Forum: General
Topic: How to do audio output selection for MediaPlayer control?
Replies: 20
Views: 17405

Re: How to do audio output selection for MediaPlayer control?

Try like this:

......
flt.LinkLaterTo(rtp)
rtp.LinkLaterTo(aco)
......
by vuott
Tuesday 2nd January 2024 5:17pm
Forum: General
Topic: How to do audio output selection for MediaPlayer control?
Replies: 20
Views: 17405

Re: How to do audio output selection for MediaPlayer control?

GrantXTV wrote: Tuesday 2nd January 2024 4:14pm Other than this I can now look at doing the receiver part:
gst-launch-1.0 -v udpsrc port=5001 ! 'application/x-rtp,media=audio,payload=96,clock-rate=44100,channels=2,encoding-name=L24' ! rtpL24depay ! audioconvert ! autoaudiosink sync=false
...this does not seem to be difficult.
by vuott
Tuesday 2nd January 2024 12:43pm
Forum: General
Topic: How to do audio output selection for MediaPlayer control?
Replies: 20
Views: 17405

Re: How to do audio output selection for MediaPlayer control?

udp = New MediaControl(pl, "udpsink host=192.168.3.15 port=5001") "HOST" and "PORT" are properties of the " udpsink " GStreamer Plugin. Therefore they should be highlighted and separated. ...... udp = New MediaControl(pl, "udpsink") udp["host&q...
by vuott
Tuesday 2nd January 2024 12:03pm
Forum: Component
Topic: mediaview capture
Replies: 6
Views: 16292

Re: mediaview capture

udp = New MediaControl(pl, "udpsink host=192.168.3.15 port=5001") "HOST" and "PORT" are properties of the " udpsink " GStreamer Plugin. Therefore they should be highlighted and separated. ...... udp = New MediaControl(pl, "udpsink") udp["host&q...
by vuott
Tuesday 26th December 2023 11:23pm
Forum: Beginners
Topic: Process: write to its stdin and capture its stdout
Replies: 6
Views: 26929

Re: Process: write to its stdin and capture its stdout

Carotino wrote: Tuesday 26th December 2023 11:00pm I'll use temporary files in /dev/shm to pass data around.
For passing data from one program to another, you can also see these pages:

https://www.gambas-it.org/wiki/index.ph ... mma_Gambas
by vuott
Tuesday 26th December 2023 9:54pm
Forum: Beginners
Topic: Process: write to its stdin and capture its stdout
Replies: 6
Views: 26929

Re: Process: write to its stdin and capture its stdout

Capturing what is written in the Console/terminal in Gambas is, in my opinion, one of the most complicated and difficult problems. Some of my desperate studies in this regard: https://www.gambas-it.org/wiki/index.php/Intercettare_i_dati_inviati_allo_standard_output_da_un_programma_C https://www.gamb...
by vuott
Tuesday 26th December 2023 9:50pm
Forum: Beginners
Topic: Process: write to its stdin and capture its stdout
Replies: 6
Views: 26929

Re: Process: write to its stdin and capture its stdout

Carotino wrote: Tuesday 26th December 2023 6:09pm
    Print ostrega    
...ma sei Veneto ?
by vuott
Tuesday 26th December 2023 2:51pm
Forum: Component
Topic: SpinBar Precision
Replies: 4
Views: 2357

Re: SpinBar Precision

cogier's solution, suggest you create ex novo your own Control, is the most expedient and most appropriate.