]> git.sesse.net Git - kdenlive/commitdiff
Add options to "Mono to stereo" and add "Swap channels".
authorDan Dennedy <dan@dennedy.org>
Mon, 16 Aug 2010 01:02:40 +0000 (01:02 +0000)
committerDan Dennedy <dan@dennedy.org>
Mon, 16 Aug 2010 01:02:40 +0000 (01:02 +0000)
svn path=/trunk/kdenlive/; revision=4724

effects/CMakeLists.txt
effects/channelcopy.xml
effects/swapchannels.xml [new file with mode: 0644]

index 60722797e5d4e5b476a91239e3ace1d0d0913cd6..d9f551e85af1ff43ef0aa1161a06177cf76244f3 100644 (file)
@@ -77,5 +77,6 @@ fade_from_black.xml
 fade_to_black.xml
 speed.xml
 vignette.xml
+swapchannels.xml
 
 DESTINATION ${DATA_INSTALL_DIR}/kdenlive/effects)
index 1c371d112ce8328b28c7fb886c8bb6bb5b0a4dcb..77706a23134a6959cf09672ce1e9e5f17ef8a2d1 100644 (file)
@@ -1,6 +1,12 @@
 <!DOCTYPE kpartgui>
  <effect tag="channelcopy" id="channelcopy" type="audio">
          <name>Mono to stereo</name>
-         <description>Copy the left channel to the right</description>
+         <description>Copy one channel to another</description>
          <author>Dan Dennedy</author>
+         <parameter type="list" name="from" default="0" paramlist="0,1" paramlistdisplay="Left,Right">
+                 <name>From</name>
+         </parameter>
+         <parameter type="list" name="to" default="1" paramlist="0,1" paramlistdisplay="Left,Right">
+                 <name>To</name>
+         </parameter>
  </effect>
diff --git a/effects/swapchannels.xml b/effects/swapchannels.xml
new file mode 100644 (file)
index 0000000..58ea8b5
--- /dev/null
@@ -0,0 +1,6 @@
+<!DOCTYPE kpartgui>
+ <effect tag="channelswap" id="swapchannels" type="audio">
+         <name>Swap channels</name>
+         <description>Move the left channel to the right and right-to-left</description>
+         <author>Dan Dennedy</author>
+ </effect>