gst-python: remuxer.py: list files named *.og[gvax], not only *.ogg
Tim Müller
tpm at kemper.freedesktop.org
Mon Sep 26 09:28:45 PDT 2011
Module: gst-python
Branch: master
Commit: bbeaad89bdd9b810f80ddcd29a8290493546a9d3
URL: http://cgit.freedesktop.org/gstreamer/gst-python/commit/?id=bbeaad89bdd9b810f80ddcd29a8290493546a9d3
Author: Vincent Penquerc'h <vincent.penquerch at collabora.co.uk>
Date: Thu Jan 13 14:19:05 2011 +0000
remuxer.py: list files named *.og[gvax], not only *.ogg
These are all recommended extensions for Ogg streams.
https://bugzilla.gnome.org/show_bug.cgi?id=639423
---
examples/remuxer.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/examples/remuxer.py b/examples/remuxer.py
index fa32134..096344a 100644
--- a/examples/remuxer.py
+++ b/examples/remuxer.py
@@ -709,7 +709,7 @@ class PlayerWindow(gtk.Window):
chooser.add_filter(f)
f = gtk.FileFilter()
f.set_name("Ogg files")
- f.add_pattern("*.ogg") # as long as this is the only thing we
+ f.add_pattern("*.og[gvax]") # as long as this is the only thing we
# support...
chooser.add_filter(f)
chooser.set_filter(f)
More information about the gstreamer-commits
mailing list