mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-06 07:28:48 +00:00
5811dfc3a6
Original commit message from CVS: With caps, suitable for CD burning
21 lines
542 B
Python
21 lines
542 B
Python
#!/usr/bin/env python
|
|
import sys
|
|
import gst
|
|
|
|
def decode(filename):
|
|
output = filename + '.wav'
|
|
pipeline = ('filesrc location="%s" ! spider ! audio/x-raw-int,rate=44100,stereo=2 ! wavenc ! '
|
|
'filesink location="%s"') % (filename, output)
|
|
|
|
bin = gst.parse_launch(pipeline)
|
|
bin.set_state(gst.STATE_PLAYING)
|
|
while bin.iterate():
|
|
pass
|
|
bin.set_state(gst.STATE_NULL)
|
|
|
|
def main(args):
|
|
for arg in args[1:]:
|
|
decode(arg)
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main(sys.argv))
|