Original commit message from CVS:
Prettify
This commit is contained in:
Johan Dahlin 2004-03-29 10:21:15 +00:00
parent 6ef3a7273a
commit 4cee56e76c

View file

@ -4,8 +4,7 @@ import gst
def decode(filename):
output = filename + '.wav'
pipeline = ('filesrc location="%s"' + \
' ! spider ! wavenc ! ' + \
pipeline = ('filesrc location="%s" ! spider ! wavenc ! '
'filesink location="%s"') % (filename, output)
bin = gst.parse_launch(pipeline)