Changes between Version 2 and Version 3 of gstreamer
- Timestamp:
- 02/01/2020 01:20:56 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
gstreamer
v2 v3 718 718 * The CODA driver requires CMA memory for buffers when it is used. Make sure to provide the kernel with enough CMA memory with the kernel command-line (ie 'cma=64M' for 64MB which should be enough) 719 719 720 Note that the following examples assume you are using raw video encoded files, not container formats used for mimxed multimedia types (audio + video) such as ogg, avi, or mov (Quicktime). For information on de-muxing container formats see [ wiki:gstreamer/multimedia]720 Note that the following examples assume you are using raw video encoded files, not container formats used for mimxed multimedia types (audio + video) such as ogg, avi, or mov (Quicktime). For information on de-muxing container formats see [#multimedia] 721 721 722 722 Examples: … … 730 730 }}} 731 731 732 For more examples including working with 'multimedia' files that contain both audio and video see [ wiki:gstreamer/multimedia]732 For more examples including working with 'multimedia' files that contain both audio and video see [#multimedia] 733 733 734 734 … … 802 802 There are many more. You can search for your specified one by running a similar search: {{{gst-inspect-1.0 | grep enc}}}. 803 803 804 Note that each encoder has its own limits on the samples it accepts (S16LE, S24LE etc). You can find the formats accepted via {{{gst-inspect-1.0 <element>}}} and you can use the [#audioconvert {{{audioconvert}}}] element to convert audio samplerate / bitwidth / format (via software algorithms) as needed between two elements.804 Note that each encoder has its own limits on the samples it accepts (S16LE, S24LE etc). You can find the formats accepted via {{{gst-inspect-1.0 <element>}}} and you can use the [#audioconvertaudioconvert] element to convert audio samplerate / bitwidth / format (via software algorithms) as needed between two elements. 805 805 806 806 Examples: … … 824 824 * flacdec - decode {{{audio/x-flac}}} to {{{audio/x-raw}}} 825 825 826 Note that each decoder has its own limits on the samples it produces at its src pad (S16LE, S24LE etc). You can find the formats accepted via {{{gst-inspect-1.0 <element>}}} and you can use the [#audioconvert {{{audioconvert}}}] element to convert audio samplerate / bitwidth / format (via software algorithms) as needed between two elements.826 Note that each decoder has its own limits on the samples it produces at its src pad (S16LE, S24LE etc). You can find the formats accepted via {{{gst-inspect-1.0 <element>}}} and you can use the [#audioconvert audioconvert] element to convert audio samplerate / bitwidth / format (via software algorithms) as needed between two elements. 827 827 828 828 Examples: … … 838 838 Audio samples specified by the {{{audio/x-raw}}} vary between bit width and endieness as well as the sampling rate (how many times a second audio is measured) and the number of channels that are sampled. 839 839 840 To specify the details of the audio format, you use a [#capsfilter GStreamer {{{capsfilter}}}] and to convert it from one format to another you use the GStreamer {{{audioconvert}}} element.840 To specify the details of the audio format, you use a [#capsfilter GStreamer capsfilter] and to convert it from one format to another you use the GStreamer {{{audioconvert}}} element. 841 841 842 842 Examples: