summaryrefslogtreecommitdiff
path: root/data/audio-profiles/wav.xml.in
blob: 1759f3ccd8d3b475ecf209536c6fb4dcad125914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8"?>
<audio-profiles>
  <profiles>
    <profile id="wav">
      <_name>Waveform PCM</_name>
      <_description>WAV+PCM is a lossless format that holds uncompressed, raw pulse-code modulated (PCM) audio.</_description>
      <output-file-extension>wav</output-file-extension>
      <mimetype>audio/x-wav</mimetype>
      <mimetype>audio/wav</mimetype>
      <pipeline>
        <process id="gstreamer">
        <![CDATA[
            (gst-construct-pipeline
                "audioresample"
                "audioconvert" 
                (+ "audio/x-raw, "
                   "format=(string)S16LE, "
                   "rate=(int)44100, "
                   "channels=(int)2" )
                "wavenc")
        ]]>
        </process>
      </pipeline>
    </profile>
  </profiles>
</audio-profiles>