I have a problem per bug report (https://bugs.launchpad.net/openshot/+bug/1198555). How would I install this patch? I need step by step instructions verbose. Thank you! I'm using Debian Jessie 8 and openshot 1.4.3
Here's the patch below from (https://launchpadlibrarian.net/190471629/in_time_out_time.patch):
--- openshot/windows/ClipProperties.py.orig 2012-09-30 22:33:29.000000000 +0200
+++ openshot/windows/ClipProperties.py 2014-11-16 09:25:38.395363569 +0100
@@ -88,8 +88,8 @@
self.txtFileName.set_text(fname)
self.spinbtnStart.set_value(self.current_clip.position_on_track)
self.txtLength.set_text(_("{0} seconds").format(str(self.current_clip.length())))
- self.txtIn.set_value(round(self.current_clip.start_time, 2))
self.txtOut.set_value(round(self.current_clip.end_time, 2))
+ self.txtIn.set_value(round(self.current_clip.start_time, 2))
self.txtAudioFadeInAmount.set_value(round(self.current_clip.audio_fade_in_amount, 2))
self.txtAudioFadeOutAmount.set_value(round(self.current_clip.audio_fade_out_amount, 2))
self.txtVideoFadeInAmount.set_value(round(self.current_clip.video_fade_in_amount, 2))
@@ -663,10 +663,6 @@
local_out = local_in + 0.01
self.txtOut.set_text(str(local_out))
- if local_out > local_max_length:
- local_out = local_max_length
- self.txtOut.set_text(str(local_out))
-
# update length
self.txtLength.set_text(_("{0} seconds").format(str(round(local_out - local_in, 2))))