mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 13:41:48 +00:00
examples/: New tool, runs the discoverer on a file and prints out what we get.
Original commit message from CVS: 2006-11-07 Andy Wingo <wingo@pobox.com> * examples/Makefile.am (examples_DATA): * examples/gst-discover: New tool, runs the discoverer on a file and prints out what we get.
This commit is contained in:
parent
fb36295c7a
commit
0650a27089
3 changed files with 94 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2006-11-07 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
|
* examples/Makefile.am (examples_DATA):
|
||||||
|
* examples/gst-discover: New tool, runs the discoverer on a file
|
||||||
|
and prints out what we get.
|
||||||
|
|
||||||
2006-11-03 Edward Hervey <edward@fluendo.com>
|
2006-11-03 Edward Hervey <edward@fluendo.com>
|
||||||
|
|
||||||
* gst/gst.override:
|
* gst/gst.override:
|
||||||
|
|
|
@ -8,6 +8,7 @@ examples_DATA = \
|
||||||
f2f.py \
|
f2f.py \
|
||||||
filesrc.py \
|
filesrc.py \
|
||||||
fvumeter.py \
|
fvumeter.py \
|
||||||
|
gst-discover \
|
||||||
gstfile.py \
|
gstfile.py \
|
||||||
play.py \
|
play.py \
|
||||||
pipeline-tester \
|
pipeline-tester \
|
||||||
|
|
87
examples/gst-discover
Executable file
87
examples/gst-discover
Executable file
|
@ -0,0 +1,87 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
# gst-python
|
||||||
|
# Copyright (C) 2006 Andy Wingo <wingo at pobox.com>
|
||||||
|
#
|
||||||
|
# This library is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of the GNU Library General Public
|
||||||
|
# License as published by the Free Software Foundation; either
|
||||||
|
# version 2 of the License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This library is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
# Library General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Library General Public
|
||||||
|
# License along with this library; if not, write to the
|
||||||
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
# Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
import pygtk
|
||||||
|
pygtk.require('2.0')
|
||||||
|
import gobject
|
||||||
|
gobject.threads_init()
|
||||||
|
import pygst
|
||||||
|
pygst.require('0.10')
|
||||||
|
import gst
|
||||||
|
from gst.extend import discoverer
|
||||||
|
|
||||||
|
def fail(path):
|
||||||
|
print "error: %r does not appear to be a media file" % path
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
def succeed(d):
|
||||||
|
def pp(prop, val):
|
||||||
|
print '%s: %s' % (prop, val)
|
||||||
|
pp('media type', d.mimetype)
|
||||||
|
|
||||||
|
pp('has video', d.is_video)
|
||||||
|
if d.is_video:
|
||||||
|
pp('video caps', d.videocaps)
|
||||||
|
pp('video width', d.videowidth)
|
||||||
|
pp('video height', d.videoheight)
|
||||||
|
pp('framerate', '%s/%s' % (d.videorate.num, d.videorate.denom))
|
||||||
|
|
||||||
|
pp('has audio', d.is_audio)
|
||||||
|
if d.is_audio:
|
||||||
|
pp('audio caps', d.audiocaps)
|
||||||
|
pp('audio format', d.audiofloat and 'floating-point' or 'integer')
|
||||||
|
pp('sample rate', d.audiorate)
|
||||||
|
pp('sample width', d.audiowidth)
|
||||||
|
pp('sample depth', d.audiodepth)
|
||||||
|
pp('audio channels', d.audiochannels)
|
||||||
|
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
def discover(path):
|
||||||
|
def discovered(d, is_media):
|
||||||
|
if is_media:
|
||||||
|
succeed(d)
|
||||||
|
else:
|
||||||
|
fail(path)
|
||||||
|
|
||||||
|
d = discoverer.Discoverer(path)
|
||||||
|
d.connect('discovered', discovered)
|
||||||
|
d.discover()
|
||||||
|
gobject.MainLoop().run()
|
||||||
|
|
||||||
|
def usage():
|
||||||
|
print >>sys.stderr, "usage: gst-discover PATH-TO-MEDIA-FILE"
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
def main(argv):
|
||||||
|
if len(argv) != 2:
|
||||||
|
usage()
|
||||||
|
path = argv.pop()
|
||||||
|
if not os.path.isfile(path):
|
||||||
|
print >>sys.stderr, "error: file %r does not exist" % path
|
||||||
|
usage()
|
||||||
|
|
||||||
|
return discover(path)
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.exit(main(sys.argv))
|
Loading…
Reference in a new issue