~ubuntu-branches/ubuntu/trusty/gstreamer1.0/trusty-proposed

« back to all changes in this revision

Viewing changes to docs/manual/appendix-checklist.xml

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2012-09-14 09:04:41 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120914090441-1ul912ezvm3xfael
Tags: 0.11.94-1
* New upstream release:
  + debian/libgstreamer.symbols:
    - Update symbols file.
  + debian/control.in:
    - Build-depend on gtk-doc >= 1.12.
  + debian/patches/0001-netclientclock-simplify-by-using-g_socket_condition_.patch:
    - Dropped, merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
    <para>
133
133
      &GStreamer; contains a bunch of conversion plugins that most
134
134
      applications will find useful. Specifically, those are videoscalers
135
 
      (videoscale), colorspace convertors (ffmpegcolorspace), audio format
 
135
      (videoscale), colorspace convertors (videoconvert), audio format
136
136
      convertors and channel resamplers (audioconvert) and audio samplerate
137
137
      convertors (audioresample). Those convertors don't do anything when not
138
138
      required, they will act in passthrough mode. They will activate when
155
155
        <command>gst-launch</command> is a simple script-like commandline
156
156
        application that can be used to test pipelines. For example, the
157
157
        command <command>gst-launch audiotestsrc ! audioconvert ! 
158
 
        audio/x-raw-int,channels=2 ! alsasink</command> will run
 
158
        audio/x-raw,channels=2 ! alsasink</command> will run
159
159
        a pipeline which generates a sine-wave audio stream and plays it
160
160
        to your ALSA audio card. <command>gst-launch</command> also allows
161
161
        the use of threads (will be used automatically as required or as queue
165
165
        or even omit the padname to automatically select a pad. Using
166
166
        all this, the pipeline
167
167
        <command>gst-launch filesrc location=file.ogg ! oggdemux name=d
168
 
         d. ! queue ! theoradec ! ffmpegcolorspace ! xvimagesink
 
168
         d. ! queue ! theoradec ! videoconvert ! xvimagesink
169
169
         d. ! queue ! vorbisdec ! audioconvert ! audioresample ! alsasink
170
170
        </command> will play an Ogg file
171
171
        containing a Theora video-stream and a Vorbis audio-stream. You can