Comment 6 for bug 1100007

Revision history for this message
Experimenter (experimenter) wrote : Re: [Bug 1100007] Re: unable to separate video and audio by using "ungroup clips" button

The updated patch should solve your problem. I realized that zoom
setting might be important for some effects. The new patch just catches
the exception if it occurs and the program flow resumes.
please remove the previous patch before applying this.

--- /usr/lib/pitivi/python/pitivi/ui/clipproperties.py
+++ clipproperties.py
@@ -609,7 +609,10 @@
          else:
              if self._current_tl_obj:
                  self._current_tl_obj = None
- self.zoom_scale.set_value(1.0)
+ try:
+ self.zoom_scale.set_value(1.0)
+ except:
+ pass
                  self.app.gui.viewer.pipeline.flushSeekVideo()
              self.effect = None
              self.set_sensitive(False)

Regards
Experimenter

On Wednesday 16 January 2013 10:32 PM, Experimenter wrote:
> Excuse me for the mistake.. The patch is at line no 609 and not 162 of
> the file
> change in the patch @ line 609 in
> /usr/lib/pitivi/python/pitivi/ui/clipproperties.py
>
> - self.zoom_scale.set_value(1.0)
> + #self.zoom_scale.set_value(1.0)
>
> I tried the patch on a different machine and it is working fine there
> too.
>
> Regards
> Experimenter
>
> On Wednesday 16 January 2013 06:00 PM, Experimenter wrote:
>> I have not experienced any problems with the patch.
>> There is only 1 change in the patch @ line 162 in
>> /usr/lib/pitivi/python/pitivi/ui/clipproperties.py
>>
>> - self.zoom_scale.set_value(1.0)
>> + #self.zoom_scale.set_value(1.0)
>>
>> kindly try adding the change manually.
>> also verify if you are using the ver 0.15.2-0ubuntu0.1 in 12.04 LTS
>>
>> Regards
>> Experimenter
>>
>> On Wednesday 16 January 2013 03:59 PM, Benjamin Kerensa wrote:
>>> Experimenter,
>>>
>>> Thanks for the patch I was testing it out and there were some errors
>>> with self.effect = None although it did ungroup the clips but for some
>>> reason that portion of your patch appears to cause some instability and
>>> requires a force quit.
>>>
>>> Have you had the same results with your patch?
>>>
>>
>