live audio streaming server based on gstreamer and a client with vlc playing the incoming stream -


I must set up a live audio streaming server with Gstreamer and send the live audio in the server client and on the client side, VLC The player should be used to run the incoming stream I am using the following code

  VIDEO_CAPS = "App / X-RTP, media = (string) video, clock-rate = (int) 90000, encoding-name = (string) H264 "Gst-launch -v udpsrc caps = $ VIDEO_CAPS port = 4444 \! Gstrtpbin .recv_rtp_sink_0 \! Rtph264depay! Ffdec_h264! Xvimagesink   

Then, like the reports of gstreamer:

  Setting the pipeline in PAUSED ... The pipeline is live and does not require preroll. Setting the pipeline to play  

"post-text" itemprop = "text">

Try reading the manual on streaming with VLC. Or::

  cvlc rtp: // @: 4444   

Update: Because of my poor reading skills, Misunderstood
Here is how a server is set:

  GST-Launch-WeelersRack! Audioconver! AudioSession \! Speexenc! Rtpspeexpay \! Use udpsink host = 224.1.1.1 port = 4444 auto-multicast = true   

or multiuspsink to send multiple clients.

Comments

Popular posts from this blog

qt - switch/case statement in C++ with a QString type -

python - sqlite3.OperationalError: near "REFERENCES": syntax error - foreign key creating -

Python's equivalent for Ruby's define_method? -