<?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: detecting mono/stereo files</title>
		<atom:link href="http://cycling74.com/forums/topic/detecting-monostereo-files/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/detecting-monostereo-files/feed</link>
		<description></description>
		<pubDate>Wed, 19 Jun 2013 02:13:09 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-29236</guid>
					<title><![CDATA[detecting mono/stereo files]]></title>
					<link>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-29236</link>
					<pubDate>Fri, 15 Dec 2006 05:09:51 +0000</pubDate>
					<dc:creator>Roman Thilenius</dc:creator>

					<description>
						<![CDATA[
						<p>
if i have a simple sampler application with drag and drop<br />
and a file open dialog, how can i find out if a file<br />
is mono or stereo so that the 1 or 2 channel version<br />
of the sampler (built around buffer or groove) is chosen?</p>
<p>
-110</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-90846</guid>
					<title><![CDATA[Re: detecting mono/stereo files]]></title>
					<link>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-90846</link>
					<pubDate>Fri, 15 Dec 2006 08:35:23 +0000</pubDate>
					<dc:creator>Emmanuel Jourdan</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-90847</guid>
					<title><![CDATA[Re: detecting mono/stereo files]]></title>
					<link>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-90847</link>
					<pubDate>Fri, 15 Dec 2006 08:47:20 +0000</pubDate>
					<dc:creator>Jean-Michel Darremont</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-90848</guid>
					<title><![CDATA[Re: detecting mono/stereo files]]></title>
					<link>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-90848</link>
					<pubDate>Fri, 15 Dec 2006 09:00:14 +0000</pubDate>
					<dc:creator>Patrick Delges</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-90849</guid>
					<title><![CDATA[Re: detecting mono/stereo files]]></title>
					<link>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-90849</link>
					<pubDate>Sat, 16 Dec 2006 04:21:37 +0000</pubDate>
					<dc:creator>Roman Thilenius</dc:creator>

					<description>
						<![CDATA[
						<p>
okay, so since there is no &#8220;bufferinfo~&#8221; i will use<br />
[sfinfo~] to find out the channel number _before<br />
loading it into my buffers. <br />
(here: one buffer subpatch for stereo and one for mono!)</p>
<p>
-110 ?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-90850</guid>
					<title><![CDATA[Re: detecting mono/stereo files]]></title>
					<link>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-90850</link>
					<pubDate>Sat, 16 Dec 2006 09:03:13 +0000</pubDate>
					<dc:creator>Patrick Delges</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-90851</guid>
					<title><![CDATA[Re: detecting mono/stereo files]]></title>
					<link>http://cycling74.com/forums/topic/detecting-monostereo-files/#post-90851</link>
					<pubDate>Sat, 16 Dec 2006 11:34:17 +0000</pubDate>
					<dc:creator>f</dc:creator>

					<description>
						<![CDATA[
						<p>On 16.12.2006, at 05:21, Roman Thilenius wrote:</p>
<p>><br />
><br />
> okay, so since there is no &#8220;bufferinfo~&#8221; i will use<br />
> [sfinfo~] to find out the channel number _before<br />
> loading it into my buffers.<br />
> (here: one buffer subpatch for stereo and one for mono!)</p>
<p>
hello roman,<br />
there&#8217;s the getChannels method for mxj buf.Op</p>
<p>#P window setfont &#8220;Sans Serif&#8221; 9.;<br />
#P window linecount 1;<br />
#P newex 319 145 87 196617 mxj buf.Op asdf2;<br />
#P newex 202 136 72 196617 buffer~ asdf2;<br />
#P message 202 108 43 196617 replace;<br />
#P newex 319 179 73 196617 print channels;<br />
#P message 319 110 63 196617 getChannels;<br />
#P connect 0 0 4 0;<br />
#P connect 4 0 1 0;<br />
#P connect 2 0 3 0;<br />
#P window clipboard copycount 5;</p>
<p>
or you can do it with sfinfo~ too of course.  in the example only 1 <br />
buffer subpatch needed (the stereo one).</p>
<p>#P window setfont &#8220;Sans Serif&#8221; 9.;<br />
#P window linecount 1;<br />
#P comment 365 399 99 196617 one or two channels;<br />
#P comment 403 455 62 196617 keep stereo;<br />
#P message 307 455 95 196617 clear , 0 0 1 , 1 1 1;<br />
#P comment 403 433 78 196617 mono -> stereo;<br />
#P user meter~ 71 424 129 436 50 0 168 0 103 103 103 255 153 0 255 0 0 <br />
217 217 0 153 186 0 12 3 3 3 3;<br />
#P user meter~ 56 407 114 419 50 0 168 0 103 103 103 255 153 0 255 0 0 <br />
217 217 0 153 186 0 12 3 3 3 3;<br />
#P user meter~ 48 555 106 567 50 0 168 0 103 103 103 255 153 0 255 0 0 <br />
217 217 0 153 186 0 12 3 3 3 3;<br />
#P user meter~ 33 538 91 550 50 0 168 0 103 103 103 255 153 0 255 0 0 <br />
217 217 0 153 186 0 12 3 3 3 3;<br />
#P user ezdac~ 62 624 106 657 0;<br />
#P comment 276 290 150 196617 then load into buffer and resize;<br />
#P comment 408 256 61 196617 length (ms);<br />
#P comment 395 238 63 196617 sample rate;<br />
#P comment 382 220 25 196617 bits;<br />
#P number 362 255 45 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;<br />
#P number 349 237 45 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;<br />
#P number 336 219 45 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;<br />
#P number 323 201 45 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;<br />
#P newex 194 308 66 196617 buffer~ asdf;<br />
#P newex 49 382 78 196617 groove~ asdf 2;<br />
#P newex 49 505 65 196617 matrix~ 2 2;<br />
#P newex 323 175 79 196617 sfinfo~ asdf;<br />
#P newex 323 156 68 196617 prepend open;<br />
#P newex 194 46 56 196617 opendialog;<br />
#P message 194 29 35 196617 sound;<br />
#P newex 194 289 81 196617 prepend replace;<br />
#P newex 194 76 30 196617 t s s;<br />
#P comment 369 202 69 196617 num channels;<br />
#P comment 323 127 198 196617 first open header to get info about the <br />
file;<br />
#P comment 230 27 183 196617 click to load mono or stereo soundfiles;<br />
#P newex 49 335 41 196617 sig~ 1.;<br />
#P message 78 311 51 196617 startloop;<br />
#P message 307 433 95 196617 clear , 0 0 1 , 0 1 1;<br />
#P newex 323 398 41 196617 sel 1 2;<br />
#P connect 12 3 19 0;<br />
#P connect 12 2 18 0;<br />
#P connect 12 1 17 0;<br />
#P connect 16 0 0 0;<br />
#P connect 12 0 16 0;<br />
#P connect 11 0 12 0;<br />
#P connect 7 1 11 0;<br />
#P connect 0 1 30 0;<br />
#P connect 0 0 1 0;<br />
#P connect 8 0 15 0;<br />
#P connect 7 0 8 0;<br />
#P connect 10 0 7 0;<br />
#P connect 9 0 10 0;<br />
#P connect 14 1 28 0;<br />
#P connect 14 1 13 1;<br />
#P connect 13 1 26 0;<br />
#P connect 13 1 24 1;<br />
#P connect 13 0 25 0;<br />
#P connect 13 0 24 0;<br />
#P connect 14 0 27 0;<br />
#P connect 30 0 13 0;<br />
#P connect 1 0 13 0;<br />
#P connect 14 0 13 0;<br />
#P connect 3 0 14 0;<br />
#P connect 2 0 14 0;<br />
#P window clipboard copycount 33;</p>
<p>
   #|<br />
      fredrikolofsson.com     klippav.org     musicalfieldsforever.com<br />
   |#</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

