<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>Cycling 74  &#187;  Topic: vocal removing</title>
		<atom:link href="http://cycling74.com/forums/topic/vocal-removing/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/vocal-removing/feed</link>
		<description></description>
		<pubDate>Wed, 19 Jun 2013 09:39:36 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/vocal-removing/#post-29002</guid>
					<title><![CDATA[vocal removing]]></title>
					<link>http://cycling74.com/forums/topic/vocal-removing/#post-29002</link>
					<pubDate>Fri, 01 Dec 2006 20:16:54 +0000</pubDate>
					<dc:creator>bboytora</dc:creator>

					<description>
						<![CDATA[
						<p>hi, i&#8217;m fairly new to max and just had a question. I&#8217;m trying to make a vocalremover&#8230; (i know it won&#8217;t sound good, and i know the ideas behind how it works) i&#8217;ve just run into a small problem. To do the process, i would take the left or the right channel, multily it by -1 using th *~ object then sum it with the other channel with the +~ object. However I don&#8217;t notice a differnce at all in the sound of the audio when i do that. I&#8217;m not looking for something that;s going to be perfect.. more of a &#8220;shotty&#8221; remover or something. <br />
Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/vocal-removing/#post-89701</guid>
					<title><![CDATA[Re: vocal removing]]></title>
					<link>http://cycling74.com/forums/topic/vocal-removing/#post-89701</link>
					<pubDate>Fri, 01 Dec 2006 22:31:30 +0000</pubDate>
					<dc:creator>Jean-Francois Charles</dc:creator>

					<description>
						<![CDATA[
						<p></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/vocal-removing/#post-89702</guid>
					<title><![CDATA[Re: vocal removing]]></title>
					<link>http://cycling74.com/forums/topic/vocal-removing/#post-89702</link>
					<pubDate>Sat, 02 Dec 2006 19:21:53 +0000</pubDate>
					<dc:creator>Structured Loud</dc:creator>

					<description>
						<![CDATA[
						<p>What you&#8217;re talking about is called an MS matrix.</p>
<p>Here&#8217;s the lowdown:</p>
<p>From MS->Stereo<br />
M -S = L<br />
M +S = R</p>
<p>From Stereo<br />
L + R = M<br />
L &#8211; R = S</p>
<p>Basically you&#8217;re comparing what&#8217;s the same in both tracks vs, what is different in both tracks, that&#8217;s why it only works for stereo files, and furthermore, only works for vocals if the are panned dead center.</p>
<p>Here&#8217;s a rough idea to convert LR into MS, after that you can balance between the mid and side and see what happens. Afterwards, you&#8217;ll have to decode it back into LR.</p>
<p>&#8211;</p>
<p>max v2;<br />
#N vpatcher 41 75 624 505;<br />
#N comlet Side;<br />
#P outlet 365 308 15 0;<br />
#N comlet Mid;<br />
#P outlet 177 308 15 0;<br />
#P window setfont &#8220;Sans Serif&#8221; 9.;<br />
#P window linecount 1;<br />
#P comment 340 112 29 196617 Right;<br />
#P comment 195 113 29 196617 Left;<br />
#P comment 384 308 35 196617 Mid;<br />
#P newex 365 236 37 196617 *~ 2.;<br />
#P newex 177 236 37 196617 *~ 2.;<br />
#P newex 365 198 37 196617 +~;<br />
#N comlet In Right;<br />
#P inlet 322 110 15 0;<br />
#N comlet In Left;<br />
#P inlet 177 110 15 0;<br />
#P newex 177 198 37 196617 -~;<br />
#P comment 194 308 33 196617 Side;<br />
#P connect 2 0 1 0;<br />
#P connect 1 0 5 0;<br />
#P connect 5 0 10 0;<br />
#P fasten 3 0 1 1 327 161 209 161;<br />
#P connect 2 0 4 0;<br />
#P connect 4 0 6 0;<br />
#P connect 6 0 11 0;<br />
#P connect 3 0 4 1;<br />
#P pop;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/vocal-removing/#post-89703</guid>
					<title><![CDATA[Re: vocal removing]]></title>
					<link>http://cycling74.com/forums/topic/vocal-removing/#post-89703</link>
					<pubDate>Sat, 02 Dec 2006 20:17:31 +0000</pubDate>
					<dc:creator>Structured Loud</dc:creator>

					<description>
						<![CDATA[
						<p>I messed up the first *~ should actually be a /~</p>
<p>max v2;<br />
#N vpatcher 41 75 624 505;<br />
#N comlet Side;<br />
#P outlet 365 308 15 0;<br />
#N comlet Mid;<br />
#P outlet 177 308 15 0;<br />
#P window setfont &#8220;Sans Serif&#8221; 9.;<br />
#P comment 340 112 29 196617 Right;<br />
#P comment 195 113 29 196617 Left;<br />
#P comment 384 308 35 196617 Mid;<br />
#P newex 365 236 37 196617 /~ 2.;<br />
#P newex 177 236 37 196617 *~ 2.;<br />
#P newex 365 198 37 196617 +~;<br />
#N comlet In Right;<br />
#P inlet 322 110 15 0;<br />
#N comlet In Left;<br />
#P inlet 177 110 15 0;<br />
#P newex 177 198 37 196617 -~;<br />
#P comment 194 308 33 196617 Side;<br />
#P connect 2 0 1 0;<br />
#P connect 1 0 5 0;<br />
#P connect 5 0 10 0;<br />
#P fasten 3 0 1 1 327 161 209 161;<br />
#P connect 2 0 4 0;<br />
#P connect 4 0 6 0;<br />
#P connect 6 0 11 0;<br />
#P connect 3 0 4 1;<br />
#P pop;</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

