Search found 262 matches

by vuott
Wednesday 3rd January 2024 6:59pm
Forum: General
Topic: How to do audio output selection for MediaPlayer control?
Replies: 20
Views: 17280

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: 17280

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: 17280

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: 17280

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: 15906

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: 13825

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: 13825

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: 13825

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: 2074

Re: SpinBar Precision

cogier's solution, suggest you create ex novo your own Control, is the most expedient and most appropriate.
by vuott
Tuesday 26th December 2023 4:55am
Forum: Component
Topic: SpinBar Precision
Replies: 4
Views: 2074

Re: SpinBar Precision

a range of 0.0000 to 0.0160. By manipulating the "SpinBar" Control a bit, I got :? this: Public Sub Form_Open() Dim da As DrawingArea Private tw As Integer Private th As Integer With SpinBar1 .W = 100 .H = 50 .X = 0 .MinValue = 0.0 .MaxValue = 16.0 End With With da = New DrawingArea(SpinB...