[transmageddon] Add test to not run pipeline before missing plugins are installed
- From: Christian Fredrik Kalager Schaller <uraeus src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [transmageddon] Add test to not run pipeline before missing plugins are installed
- Date: Sun, 4 Oct 2009 21:02:25 +0000 (UTC)
commit 086a4a86a53134017021b8daa9d6f3d291ac1085
Author: Christian F.K. Schaller <christian schaller collabora co uk>
Date: Sun Oct 4 22:01:35 2009 +0100
Add test to not run pipeline before missing plugins are installed
src/transmageddon.py | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
---
diff --git a/src/transmageddon.py b/src/transmageddon.py
index c5b8040..bd301fa 100644
--- a/src/transmageddon.py
+++ b/src/transmageddon.py
@@ -230,6 +230,7 @@ class TransmageddonUI (gtk.glade.XML):
self.audiopasstoggle=False
self.containertoggle=False # this toggle is used to not check for encoders with pbutils
self.discover_done=False # lets us know that discover is finished
+ self.missingtoggle=False
self.p_duration = gst.CLOCK_TIME_NONE
self.p_time = gst.FORMAT_TIME
@@ -428,7 +429,8 @@ class TransmageddonUI (gtk.glade.XML):
self.check_for_passthrough(self.container)
else:
self.check_for_elements()
- self._start_transcoding()
+ if self.missingtoggle==False:
+ self._start_transcoding()
if self.container != False:
self.check_for_passthrough(self.container)
@@ -507,7 +509,7 @@ class TransmageddonUI (gtk.glade.XML):
audiocodec = codecfinder.codecmap[self.AudioCodec]
else:
audiocodec = gst.Caps.to_string(self.asourcecaps)
-
+ print "videocodec is " + str(videocodec)
container = self.get_widget ("containerchoice").get_active_text ()
self._transcoder = transcoder_engine.Transcoder(filechoice, self.filename, self.videodirectory, container,
audiocodec, videocodec, self.devicename,
@@ -528,6 +530,9 @@ class TransmageddonUI (gtk.glade.XML):
else:
print "GStreamer registry update failed"
if self.containertoggle == False:
+ # print "done installing plugins, starting transcode"
+ # FIXME - might want some test here to check plugins needed are actually installed
+ # but it is a rather narrow corner case when it fails
self._start_transcoding()
elif donemessage == gst.pbutils.INSTALL_PLUGINS_PARTIAL_SUCCESS:
#print "partial success " + str(donemessage)
@@ -566,6 +571,7 @@ class TransmageddonUI (gtk.glade.XML):
audiostatus= "apass"
if not containerstatus or not videostatus or not audiostatus:
+ self.missingtoggle=True
fail_info = []
if self.containertoggle==True:
audiostatus=True
@@ -612,7 +618,8 @@ class TransmageddonUI (gtk.glade.XML):
self.ProgressBar.set_text(_("Pass " + str(self.passcounter) + " Progress"))
if self.audiodata.has_key("samplerate"):
self.check_for_elements()
- self._start_transcoding()
+ if self.missingtoggle==False:
+ self._start_transcoding()
else:
self.waiting_for_signal="True"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]