With caps, suitable for CD burning

Original commit message from CVS:
With caps, suitable for CD burning
This commit is contained in:
Johan Dahlin 2004-03-29 10:27:27 +00:00
parent 4cee56e76c
commit 5811dfc3a6

View file

@ -4,7 +4,7 @@ import gst
def decode(filename):
output = filename + '.wav'
pipeline = ('filesrc location="%s" ! spider ! wavenc ! '
pipeline = ('filesrc location="%s" ! spider ! audio/x-raw-int,rate=44100,stereo=2 ! wavenc ! '
'filesink location="%s"') % (filename, output)
bin = gst.parse_launch(pipeline)