Search found 2 matches

Go to advanced search

by Dwarf_ink
22 Sep 2021 19:48
Forum: Development around libVLC
Topic: Delphi how to do a streaming from file, camera and etc.
Replies: 7
Views: 8526

Re: Delphi how to do a streaming from file, camera and etc.

Solved! procedure TForm1.btnPlayClick(Sender: TObject); var opt:PAnsiChar; begin // create new vlc instance vlcInstance := libvlc_new(0, nil); // create new vlc media from file vlcMedia := libvlc_media_new_path(vlcInstance, '\ffmpeg\music.mp3'); // if you want to play from network, use libvlc_media_...
by Dwarf_ink
20 Sep 2021 21:15
Forum: Development around libVLC
Topic: Delphi how to do a streaming from file, camera and etc.
Replies: 7
Views: 8526

Re: Delphi how to do a streaming from file, camera and etc.

Hello! I need to send my audio via udp.The command for VLC is: '-vvv "\audiofiles\play.mp3" :sout=#transcode{vcodec=none,acodec=mp3,ab=128,channels=1,samplerate=44100,scodec=none}:udp{mux=ts,dst=224.0.224.1:11997} :no-sout-all :sout-keep' I use a sample from wiki: https://wiki.videolan.org...

Go to advanced search