mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 02:15:31 +00:00
ext/soup/gstsouphttpsrc.c: Update documentation a bit.
Original commit message from CVS: Patch by: Wouter Cloetens <wouter at mind dot be> * ext/soup/gstsouphttpsrc.c: Update documentation a bit. * docs/plugins/gst-plugins-bad-plugins.args: * docs/plugins/gst-plugins-bad-plugins.hierarchy: * docs/plugins/gst-plugins-bad-plugins.interfaces: * docs/plugins/gst-plugins-bad-plugins.prerequisites: * docs/plugins/inspect/plugin-alsaspdif.xml: * docs/plugins/inspect/plugin-dvb.xml: * docs/plugins/inspect/plugin-filter.xml: * docs/plugins/inspect/plugin-glimagesink.xml: * docs/plugins/inspect/plugin-mpegvideoparse.xml: * docs/plugins/inspect/plugin-quicktime.xml: * docs/plugins/inspect/plugin-rawparse.xml: * docs/plugins/inspect/plugin-replaygain.xml: * docs/plugins/inspect/plugin-sdl.xml: * docs/plugins/inspect/plugin-soundtouch.xml: * docs/plugins/inspect/plugin-soup.xml: * docs/plugins/inspect/plugin-spcdec.xml: * docs/plugins/inspect/plugin-spectrum.xml: * docs/plugins/inspect/plugin-speed.xml: * docs/plugins/inspect/plugin-speexresample.xml: * docs/plugins/inspect/plugin-switch.xml: * docs/plugins/inspect/plugin-videocrop.xml: Regenerate everything for the documentation changes we had.
This commit is contained in:
parent
e70e239168
commit
0465f9b72f
1 changed files with 13 additions and 7 deletions
|
@ -23,8 +23,14 @@
|
||||||
* Supported protocols are 'http', 'https', 'dav', or 'davs'.
|
* Supported protocols are 'http', 'https', 'dav', or 'davs'.
|
||||||
* </para>
|
* </para>
|
||||||
* <para>
|
* <para>
|
||||||
|
* An HTTP proxy must be specified by its URL.
|
||||||
|
* If the "http_proxy" environment variable is set, its value is used.
|
||||||
|
* The element-souphttpsrc::proxy property can be used to override the
|
||||||
|
* default.
|
||||||
|
* </para>
|
||||||
|
* <para>
|
||||||
* In case the element-souphttpsrc::iradio-mode property is set and the
|
* In case the element-souphttpsrc::iradio-mode property is set and the
|
||||||
* location is a http resource, souphttpsrc will send special Icecast HTTP
|
* location is an HTTP resource, souphttpsrc will send special Icecast HTTP
|
||||||
* headers to the server to request additional Icecast meta-information. If
|
* headers to the server to request additional Icecast meta-information. If
|
||||||
* the server is not an Icecast server, it will behave as if the
|
* the server is not an Icecast server, it will behave as if the
|
||||||
* element-souphttpsrc::iradio-mode property were not set. If it is,
|
* element-souphttpsrc::iradio-mode property were not set. If it is,
|
||||||
|
@ -37,7 +43,7 @@
|
||||||
* Example pipeline:
|
* Example pipeline:
|
||||||
* <programlisting>
|
* <programlisting>
|
||||||
* gst-launch -v souphttpsrc location=https://some.server.org/index.html
|
* gst-launch -v souphttpsrc location=https://some.server.org/index.html
|
||||||
* ! filesink location=/home/joe/server.html
|
* ! filesink location=/home/joe/server.html
|
||||||
* </programlisting>
|
* </programlisting>
|
||||||
* The above pipeline reads a web page from a server using the HTTPS protocol
|
* The above pipeline reads a web page from a server using the HTTPS protocol
|
||||||
* and writes it to a local file.
|
* and writes it to a local file.
|
||||||
|
@ -46,9 +52,9 @@
|
||||||
* Another example pipeline:
|
* Another example pipeline:
|
||||||
* <programlisting>
|
* <programlisting>
|
||||||
* gst-launch -v souphttpsrc user-agent="FooPlayer 0.99 beta"
|
* gst-launch -v souphttpsrc user-agent="FooPlayer 0.99 beta"
|
||||||
* automatic-redirect=false proxy=http://proxy.intranet.local:8080
|
* automatic-redirect=false proxy=http://proxy.intranet.local:8080
|
||||||
* location=http://music.foobar.com/demo.mp3 ! mad ! audioconvert
|
* location=http://music.foobar.com/demo.mp3 ! mad ! audioconvert
|
||||||
* ! audioresample ! alsasink
|
* ! audioresample ! alsasink
|
||||||
* </programlisting>
|
* </programlisting>
|
||||||
* The above pipeline will read and decode and play an mp3 file from a
|
* The above pipeline will read and decode and play an mp3 file from a
|
||||||
* web server using the HTTP protocol. If the server sends redirects,
|
* web server using the HTTP protocol. If the server sends redirects,
|
||||||
|
@ -61,8 +67,8 @@
|
||||||
* <programlisting>
|
* <programlisting>
|
||||||
* gst-launch -v souphttpsrc location=http://10.11.12.13/mjpeg
|
* gst-launch -v souphttpsrc location=http://10.11.12.13/mjpeg
|
||||||
* do-timestamp=true ! multipartdemux
|
* do-timestamp=true ! multipartdemux
|
||||||
* ! image/jpeg,width=640,height=480 ! matroskamux
|
* ! image/jpeg,width=640,height=480 ! matroskamux
|
||||||
* ! filesink location=mjpeg.mkv
|
* ! filesink location=mjpeg.mkv
|
||||||
* </programlisting>
|
* </programlisting>
|
||||||
* The above pipeline reads a motion JPEG stream from an IP camera
|
* The above pipeline reads a motion JPEG stream from an IP camera
|
||||||
* using the HTTP protocol, encoded as mime/multipart image/jpeg
|
* using the HTTP protocol, encoded as mime/multipart image/jpeg
|
||||||
|
|
Loading…
Reference in a new issue