← Back to team overview

openshot.code team mailing list archive

[Branch ~openshot.code/openshot/main] Rev 520: Added two more color correction effects - tint0r and coloradj_RGB. The coloradj_RGB effect should...

 

------------------------------------------------------------
revno: 520
committer: Andy Finch <we.rocked.in79@xxxxxxxxx>
branch nick: openshot
timestamp: Mon 2011-08-29 22:05:39 +0100
message:
  Added two more color correction effects - tint0r and coloradj_RGB. The coloradj_RGB effect should only be visible to those users who have v1.2 and above of frei0r-plugins. Thanks to Joop Mevissen for the coloradj_RGB contribution.
added:
  openshot/effects/coloradj_RGB.xml
  openshot/effects/icons/medium/coloradj_RGB.png
  openshot/effects/icons/medium/tintor.png
  openshot/effects/icons/small/coloradj_RGB.png
  openshot/effects/icons/small/tintor.png
  openshot/effects/tintor.xml


--
lp:openshot
https://code.launchpad.net/~openshot.code/openshot/main

Your team OpenShot Code is subscribed to branch lp:openshot.
To unsubscribe from this branch go to https://code.launchpad.net/~openshot.code/openshot/main/+edit-subscription
=== added file 'openshot/effects/coloradj_RGB.xml'
--- openshot/effects/coloradj_RGB.xml	1970-01-01 00:00:00 +0000
+++ openshot/effects/coloradj_RGB.xml	2011-08-29 21:05:39 +0000
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE openshot-effect>
+<effect>
+	<title translatable="True">Color adjustment</title>
+	<description translatable="True">Simple color adjustment</description>
+	<icon>coloradj_RGB.png</icon>
+	<category>Video</category>
+	<service>frei0r.coloradj_RGB</service>
+	
+	<param name="R" type="spinner" title="Red" description="Amount of red">
+		<min>0.0</min>
+		<max>1.0</max>
+		<default>0.5</default>
+	</param>
+
+	<param name="G" type="spinner" title="Green" description="Amount of green">
+		<min>0.0</min>
+		<max>1.0</max>
+		<default>0.5</default>
+	</param>
+
+	<param name="B" type="spinner" title="Blue" description="Amount of blue">
+		<min>0.0</min>
+		<max>1.0</max>
+		<default>0.5</default>
+	</param>
+
+	<param name="Action" type="dropdown" title="Action" description="Type of color adjustment">
+		<values>
+			<value name="Add constant" num="0.0"/>
+			<value name="Change gamma" num="0.5"/>
+			<value name="Multiply" num="1.0"/>
+		</values>
+		<default>0.5</default>
+	</param>
+
+	<param name="Keep luma" type="dropdown" title="Keep luma" description="Don't change brightness">
+		<values>
+			<value name="Yes" num="1"/>
+			<value name="No" num="0"/>
+		</values>
+		<default>1</default>
+	</param>
+
+	<param name="Alpha controlled" type="dropdown" title="Alpha controlled" description="Adjust only areas with nonzero alpha">
+		<values> 
+			<value name="Yes" num="1"/> 
+			<value name="No" num="0"/> 
+		</values>		
+		<default>0</default>
+	</param>
+
+	<param name="Luma formula" type="dropdown" title="Luma formula" description="Choose which ITU-R recommendation is used for luma coefficients">
+		<values>
+			<value name="Rec. 601 (SD)" num="0.0"/>
+			<value name="Rec. 709 (HD)" num="1.0"/>
+		</values>
+		<default>1.0</default>
+	</param>
+</effect>
+

=== added file 'openshot/effects/icons/medium/coloradj_RGB.png'
Binary files openshot/effects/icons/medium/coloradj_RGB.png	1970-01-01 00:00:00 +0000 and openshot/effects/icons/medium/coloradj_RGB.png	2011-08-29 21:05:39 +0000 differ
=== added file 'openshot/effects/icons/medium/tintor.png'
Binary files openshot/effects/icons/medium/tintor.png	1970-01-01 00:00:00 +0000 and openshot/effects/icons/medium/tintor.png	2011-08-29 21:05:39 +0000 differ
=== added file 'openshot/effects/icons/small/coloradj_RGB.png'
Binary files openshot/effects/icons/small/coloradj_RGB.png	1970-01-01 00:00:00 +0000 and openshot/effects/icons/small/coloradj_RGB.png	2011-08-29 21:05:39 +0000 differ
=== added file 'openshot/effects/icons/small/tintor.png'
Binary files openshot/effects/icons/small/tintor.png	1970-01-01 00:00:00 +0000 and openshot/effects/icons/small/tintor.png	2011-08-29 21:05:39 +0000 differ
=== added file 'openshot/effects/tintor.xml'
--- openshot/effects/tintor.xml	1970-01-01 00:00:00 +0000
+++ openshot/effects/tintor.xml	2011-08-29 21:05:39 +0000
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE openshot-effect>
+<effect>
+	<title translatable="True">Tint</title>
+	<description translatable="True">Tint a source image with specified color</description>
+	<icon>tintor.png</icon>
+	<category>Video</category>
+	<service>frei0r.tint0r</service>
+	
+	<param name="Map black to" type="color" title="Map black to" description="The color to map source color with null luminance.">
+		<default>#000000</default>
+	</param>
+	
+	<param name="Map white to" type="color" title="Map white to" description="The color to map source color with full luminance.">
+		<default>#80FF80</default>
+	</param>
+	
+	<param name="Tint amount" type="spinner" title="Tint amount" description="Amount of color">
+		<min>0.0</min>
+		<max>1.0</max>
+		<default>0.25</default>
+	</param>
+
+</effect>