<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>KraftGear: Music Production. &#187; Dave</title>
	<atom:link href="http://www.kraftgear.com/author/dave/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kraftgear.com</link>
	<description>Music Production, Music Creation, Producer-Centric Music Lifestyle</description>
	<lastBuildDate>Fri, 30 Jul 2010 06:41:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hacking the SoundCloud player (part 1)</title>
		<link>http://feedproxy.google.com/~r/soundcloudblog/~3/EGKX3eMTlF8/</link>
		<comments>http://feedproxy.google.com/~r/soundcloudblog/~3/EGKX3eMTlF8/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 09:34:56 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[syndicated]]></category>

		<guid isPermaLink="false">http://blog.soundcloud.com/?p=2433</guid>
		<description><![CDATA[A lot of people ask me about customizing the SoundCloud player, “I love the player but could you just add this&#8230;” or “the player doesn’t quite work with the background of my blog, is there a way to tweak it”. Well actually there are quite a lot of options so I thought I&#8217;d summarize a [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of people ask me about customizing the SoundCloud player, “I love the player but could you just add this&#8230;” or “the player doesn’t quite work with the background of my blog, is there a way to tweak it”. Well actually there are quite a lot of options so I thought I&#8217;d summarize a few of them here.</p>
<p><a href="http://blog.soundcloud.com/wp-content/uploads/2010/03/customiseyourplayer1.png"><img class="alignleft size-medium wp-image-2435" title="customiseyourplayer" src="http://blog.soundcloud.com/wp-content/uploads/2010/03/customiseyourplayer1-300x215.png" alt="" width="300" height="215" /></a>Hopefully you should all know by now, but SoundCloud currently has three really great players that can be customized in a number of ways. There is the mini, waveform and artwork player. Each can be used to great effect in different scenarios. And there are several standard customizations you can do with each. Please note, to access the mini and artwork players you&#8217;ll need a premium account.</p>
<p>As well as the standard player customizations there are a number of other ways that you can hack the SoundCloud player. You just need to know where to look in the embed code. There are a range of different parameters that you can change in the embed code when you share a player:</p>
<p><em>buying = true/false (show hide buy buttons)<br />
sharing = true/false (show hide share buttons)<br />
download = true/false (show hide download buttons)<br />
show_bpm  = true/false (show hide bpm display in player)<br />
show_playcount = true/false (show hide number of track plays)<br />
text_buy_track = string (e.g. &#8216;Tweet&#8217; and it goes to your buy link)<br />
text_buy_set = string (for the buy all button)</em></p>
<p>You can of course also change the height and width.</p>
<p><em>height = number of pixels<br />
width = number of pixels</em></p>
<p>But one hidden little feature that we wanted to tell you about are our new double height (or width players). All you need to do is double the number of height (or width) pixels eg.</p>
<p><em>height=&#8221;600&#8243; width=&#8221;300&#8243;</em></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="300" height="600" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fsmashingpumpkins&amp;auto_play=false&amp;player_type=artwork&amp;color=ff7700&amp;sharing=false&amp;show_playcount=false" /><embed type="application/x-shockwave-flash" width="300" height="600" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fsmashingpumpkins&amp;auto_play=false&amp;player_type=artwork&amp;color=ff7700&amp;sharing=false&amp;show_playcount=false" allowscriptaccess="always"></embed></object></p>
<p>In the above example I&#8217;ve changed two things. Example code is below.</p>
<p>1) I&#8217;ve changed the height to make a tall player<br />
2) I&#8217;ve hidden the play count<br />
3) I&#8217;ve turned the share option off</p>
<p><code>&lt;code&gt;&lt;object height="600" width="300"&gt;<br />
&lt;param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fsmashingpumpkins%2Fa-stitch-in-time&amp;color=ff7700&amp;amp;sharing=false&amp;amp;show_playcount=false"&gt; &lt;/param&gt;  &lt;param name="allowscriptaccess" value="always"&gt; &lt;/param&gt;  &lt;embed allowscriptaccess="always" height="600" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fsmashingpumpkins%2Fa-stitch-in-time&amp;color=ff7700&amp;amp;sharing=false&amp;amp;show_playcount=false" type="application/x-shockwave-flash" width="300"&gt;&lt;/embed&gt; &lt;/object&gt;&lt;/code&gt;</code></p>
<p>So that&#8217;s it. Fairly straight forward once you know how, but very handy. In part 2 we&#8217;ll share some more tips.</p>
<img src="http://feeds.feedburner.com/~r/soundcloudblog/~4/EGKX3eMTlF8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/soundcloudblog/~3/EGKX3eMTlF8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SoundCloud at SXSW 2010</title>
		<link>http://feedproxy.google.com/~r/soundcloudblog/~3/wOJVezIBNzE/</link>
		<comments>http://feedproxy.google.com/~r/soundcloudblog/~3/wOJVezIBNzE/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 15:07:25 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[syndicated]]></category>

		<guid isPermaLink="false">http://blog.soundcloud.com/?p=2339</guid>
		<description><![CDATA[Last year I was lucky enough to go out and represent SoundCloud at SXSW as we were nominated in the &#8216;music category&#8217; at the SXSW Interactive Web Awards. In a few weeks we&#8217;ll be back again and this time we have lots of parties, panels and plans to tell you about. It&#8217;s gonna be a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.soundcloud.com/wp-content/uploads/2010/03/SXSW.png"><img class="alignright size-full wp-image-2343" src="http://blog.soundcloud.com/wp-content/uploads/2010/03/SXSW.png" alt="" width="211" height="283" /></a><a href="http://blog.soundcloud.com/2009/03/10/say-hello-at-sxsw/">Last year</a> I was lucky enough to go out and represent SoundCloud at SXSW as we were nominated in the &#8216;music category&#8217; at the SXSW Interactive Web Awards. In a few weeks we&#8217;ll be back again and this time we have lots of parties, panels and plans to tell you about. It&#8217;s gonna be a great week.</p>
<p>If you&#8217;re going and would like to hook up then please get in touch or feel free to stop Alex &amp; I in the street and ask for some stickers and a chat! We&#8217;ll be updating this post over the next few days as we confirm all our plans in more detail. There&#8217;s quite a few things going on during both Interactive &amp; Music. Here&#8217;s where you&#8217;re most likely to find us.</p>
<p><span style="text-decoration: underline"><strong>Music Panel: How We&#8217;ll Be Listening To Music in 2020</strong></span></p>
<p>Date: Wednesday, March 17<br />
Time: 15:30-16:30<br />
Location: Convention Centre, 16B</p>
<p>Alex will be joining a panel discussion with Ben Perreau, Jonas Woost and Steve Savoca. <a href="http://my.sxsw.com/events/event/544">More info</a>.</p>
<p><span style="text-decoration: underline"><strong>Five Possible Futures For The Music Industry</strong></span><br />
Date: Friday, March 19<br />
Time: 17:00-18:00</p>
<p>I will be joining a panel discussion with Neil Schield, Adam Shore and Jack Horner. <a href="http://my.sxsw.com/events/event/6641">More info</a>.</p>
<p><span style="text-decoration: underline"><strong>F*CK YEAH SXSW: hosted by Tumblr, Kickstarter, SoundCloud</strong></span></p>
<p>Date: Saturday, March 13<br />
Time: 18:30 onwards<br />
Location: EMO&#8217;s, 603 Red River Street (at 6th Avenue)</p>
<p>Audio &amp; Visuals by The Eclectic Method w/ DJ Mel &amp; DJ Suspence. Sponsored by <a href="http://theplanet.com/">The Planet</a>. Open bar with <a href="http://fyeahsxsw.eventbrite.com">RSVP</a></p>
<p><span style="text-decoration: underline"><strong>MusicTech mixer: hosted by SoundCloud + Songkick</strong></span></p>
<p>Date: Tuesday, March 16th<br />
Time: 7-9pm<br />
Location: Jaime&#8217;s Spanish Village, 802 Red River St</p>
<p>Margaritas, mexican food and conversation with folks at the intersection of music &amp; technology. Free drinks and snacks until they run out &#8211; but don&#8217;t worry, there&#8217;s plenty to go around. <a href="http://musictechmixer001.eventbrite.com/">RSVP required</a>.</p>
<p><span style="text-decoration: underline"><strong>The Hype Machine&#8217;s Lose Control 2 party</strong></span></p>
<p>Date: March 17, 18, 19, 20<br />
Time: 12PM &#8211; 2AM everyday<br />
Location: Vice (6th Street + San Jacinto, Austin Texas)</p>
<p>This unofficial party spans four whole days. That&#8217;s 56 hours of music and friends with 3 floors and many more bands &amp; DJ&#8217;s. SoundCloud will be sponsoring, providing wi-fi and encouraging bands to upload their music to the <a href="http://bit.ly/hypecloud">HypeCloud Player</a>. <a href="http://hypem.com/events/losecontrol2010">More info</a>.</p>
<img src="http://feeds.feedburner.com/~r/soundcloudblog/~4/wOJVezIBNzE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/soundcloudblog/~3/wOJVezIBNzE/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What you always wanted to know about Privately Sharing your music (and weren&#8217;t afraid to ask)</title>
		<link>http://feedproxy.google.com/~r/soundcloudblog/~3/5pDyJQgeLv4/</link>
		<comments>http://feedproxy.google.com/~r/soundcloudblog/~3/5pDyJQgeLv4/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 13:10:48 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[syndicated]]></category>

		<guid isPermaLink="false">http://blog.soundcloud.com/?p=2320</guid>
		<description><![CDATA[SoundCloud is great for putting up tracks and sharing them across the web. But sometimes you want a little more privacy right? You want to send your music to a journalist or pitch some tracks to a music supervisor. Or maybe you&#8217;ve got an unfinished track that you need your vocalist to hear but certainly [...]]]></description>
			<content:encoded><![CDATA[<p>SoundCloud is great for putting up tracks and sharing them across the web. But sometimes you want a little more privacy right? You want to send your music to a journalist or pitch some tracks to a music supervisor. Or maybe you&#8217;ve got an unfinished track that you need your vocalist to hear but certainly isn&#8217;t ready for primetime.</p>
<p><img class="alignright" src="http://img.skitch.com/20100226-cydhwis5ttcjrxi2h77xhdx72e.png" alt="supermegasendfile" width="361" height="262" /></p>
<p>And most of the ways people currently use to share music privately are broken, cumbersome or plain ugly. FTP is fiddly and long. And generic file sharing services mean that the recipient sit through spammy ads, whilst waiting for the link to even become active. These links aren’t secure either, often expire and can hide viruses. Not nice!</p>
<p>SoundCloud is easy for the recipient, easy on the eye and let’s your music take center stage. And of course, we can also help you keep it private and secure.</p>
<p><strong>HOW DO I SHARE A TRACK PRIVATELY?</strong></p>
<p><strong>1. Upload your release</strong></p>
<p>If you want to send a release, showreel or playlist then upload all the tracks at the same time. This will create a &#8217;set&#8217;. Complete as much or as little metadata you want. The great thing about using SoundCloud is that you’re not just sending files, you’re creating a beautiful page on the web that can include cover artwork, video links and full descriptions or promo text.</p>
<p><strong>2. Mark as &#8216;Private&#8217;</strong></p>
<p>This will make the track completely private and secure. It won’t show up on your public SoundCloud page and can’t be searched for either. No one can get to the track unless you have given them access.</p>
<p><strong>3. Select who has access<br />
</strong><br />
There are 4 different ways that you can give people access to the track or set that you just created.</p>
<p>i. add their email address(es)<br />
ii. add their SoundCloud username(s)<br />
iii. add a previously created Contact List<br />
iv. create a &#8217;secret link&#8217;</p>
<p><img src="http://img.skitch.com/20100226-qx32tecpjw9f6ge4apms53t2b7.png" alt="SoundCloud Private Sharing" /></p>
<p><strong>4. Mark the track for download</strong></p>
<p>Now you can decide if you want the track(s) to be downloadable by the recipient or if you want to give them streaming access only. If you mark as downloadable the recipient can access the original file (WAV, MP3, AIFF etc) as well as the preview quality stream that SoundCloud creates.</p>
<p><strong>HOW WILL THE RECIPIENT GET THE TRACK(S)?</strong></p>
<p>Once you have given someone access to the track they will receive an email notification that you have shared the track(s) with them. Inside the email there is a unique link that takes them directly to the track page that you created on SoundCloud that includes all the information you added. They can also download the original artwork or view any video links that you included.</p>
<p>If you marked the track for download then they simply click to get the download. There are also direct download links in the email notification (they&#8217;ll need to be logged in to download of course).</p>
<p><img src="http://img.skitch.com/20100226-qihjjs55k9wy6196dr6b573bpj.png" alt="email notification" /></p>
<p><strong>DOES THE RECIPIENT HAVE TO SIGN UP?<br />
</strong><br />
Yes, and no. If the person you&#8217;re sending music to doesn&#8217;t already have an account then we automatically create them a temporary account and all they need to do is put in a password, known only to them. This has to be done in order to make sure your track is only available to those you&#8217;ve given access. But it&#8217;s an extremely quick process for the recipient and they don&#8217;t have to create a full account on SoundCloud or spend anytime inputting their details. Also, they can use this same password the next time you send them a track.</p>
<p><img src="http://img.skitch.com/20100226-qcaut4grd8pgrbsedsdhxpfckd.png" alt="signup to get track" /></p>
<p>If you want still want your tracks to be private but you don&#8217;t need this top level of security then you should use our &#8216;Secret Link&#8217; feature which is available for anyone with a premium account.</p>
<p><strong>YOU MENTIONED IT WAS SECURE?</strong></p>
<p>Yes, you control exactly who has access to which tracks. Recipients are sent a unique link which is tied to their own account. The link is secure and can&#8217;t be accessed by anyone else unless they also know that persons account details. You’re also able to see stats on your track. How many plays or download it has had and even who listened when.</p>
<p>Of course no audio on the web is completely secure. But we make it as secure as possible without making the user experience totally suck. And if you&#8217;re only making a stream available this is a lower MP3 quality file encoded at 128kbps.</p>
<p>If you have any questions on using SoundCloud for private sharing then please feel free to get in touch or leave comments below.</p>
<img src="http://feeds.feedburner.com/~r/soundcloudblog/~4/5pDyJQgeLv4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/soundcloudblog/~3/5pDyJQgeLv4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 reasons why SoundCloud is the best way to get music onto blogs</title>
		<link>http://feedproxy.google.com/~r/soundcloudblog/~3/hqvzmPDcMaM/</link>
		<comments>http://feedproxy.google.com/~r/soundcloudblog/~3/hqvzmPDcMaM/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 14:24:07 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[syndicated]]></category>

		<guid isPermaLink="false">http://blog.soundcloud.com/?p=2229</guid>
		<description><![CDATA[Right from the moment SoundCloud was conceived, we had one goal in mind. To make it as easy for you to upload and share your music. The vision was that you could put a track up on SoundCloud and make that the one place from which you could weave your music across the rich tapestry [...]]]></description>
			<content:encoded><![CDATA[<p>Right from the moment SoundCloud was conceived, we had one goal in mind. To make it as easy for you to upload and share your music. The vision was that you could put a track up on SoundCloud and make that the one place from which you could weave your music across the rich tapestry of the web. An essential part of that tapestry is the blogosphere. We think that SoundCloud is the best way to get music onto blogs and here&#8217;s 5 reasons why.</p>
<p><strong>1) SoundCloud is beautifully simple </strong></p>
<p>It’s so easy to get started. <a href="http://soundcloud.com/signup">Set up a free account</a> and upload your music in any audio format. You can add as much or as little metadata as you want including a description, buy links, video links, and release dates</p>
<p><strong>2) Our players are the best in town</strong></p>
<p>Our classic waveform player is now ubiquitous across the web. You’ve probably seen it quite a bit recently. But <a href="http://soundcloud.com/tour/widgets">we’ve added two other players</a>* specifically with bloggers and websites it mind. There’s the minimal player which we stripped back as much as possible. It’s literally just a play button next to artist name and track title. And there’s the artwork player. You’ve probably guessed already&#8230; it’s literally just your artwork, with a play button. So it looks beautiful on the page and the blogger doesn’t even need to add any cover art themselves. It’s right there, as the player.</p>
<p><strong>3) SoundCloud plays nice with The Hype Machine</strong></p>
<p>SoundCloud is the only service that has a streaming music player that <a href="http://bit.ly/8KJNNd">The Hype Machine</a> can detect across the blogs that it aggregates. This means that a music blogger can grab your music from SoundCloud and can customize and embed a beautiful player in a post, knowing that it will still show up on The Hype Machine. And it’s much nicer than having to send them an MP3 link or re-hosting it on one of those nasty generic file sharing sites.</p>
<p><strong>4) Geek out on stats, stats and more stats</strong></p>
<p>Let’s be honest, who doesn’t like <a href="http://soundcloud.com/tour/stats">geeking out on stats</a>? Who’s playing your music, which blogs are raving about it, what are your most popular tracks, how many times has that free track been downloaded? SoundCloud can now answer those questions. You can see how many plays/downloads came from which blogs and where in the world those listeners are*. And because The Hype Machine now plays tracks back directly from your SoundCloud account we know how many times it has been played there too.</p>
<p><strong>5) It’s easy for bloggers</strong></p>
<p>We’re trying to make it as easy as possible for bloggers to share your music. Many are already using our private or group dropboxes to receive music. Just some of the things we’ve done include making it possible to share a player to Blogger with just a couple of clicks, <a href="http://blog.soundcloud.com/2009/08/13/soundcloud-gets-full-wordpress-com-integration/">working with Wordpress.com to have an official integration</a>, allowing customization of our players, and of course the <a href="http://bit.ly/8KJNNd">partnership with The Hype Machine</a>. Of course we can’t force anyone to write about your music, but we can make it as easy as possible for you to share the music if they do want to.</p>
<p>*some features require <a href="http://soundcloud.com/premium">premium accounts</a></p>
<img src="http://feeds.feedburner.com/~r/soundcloudblog/~4/hqvzmPDcMaM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/soundcloudblog/~3/hqvzmPDcMaM/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The RPM Challenge – Get Involved!</title>
		<link>http://feedproxy.google.com/~r/soundcloudblog/~3/SAHZHZ2HfVk/</link>
		<comments>http://feedproxy.google.com/~r/soundcloudblog/~3/SAHZHZ2HfVk/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 14:58:55 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[syndicated]]></category>

		<guid isPermaLink="false">http://blog.soundcloud.com/?p=2218</guid>
		<description><![CDATA[We like a bit of a challenge at SoundCloud. And what better challenge than this, the RPM Challenge&#8230;?
Record an album in February that&#8217;s 10 songs or 35 minutes long
Recording can only be done in the month of February – no prerecorded songs.
All material must be previously unreleased, and we encourage you to write the material [...]]]></description>
			<content:encoded><![CDATA[<p>We like a bit of a challenge at SoundCloud. And what better challenge than this, <a href="http://www.rpmchallenge.com/content/view/844/290/">the RPM Challenge</a>&#8230;?</p>
<blockquote><p><strong>Record an album in February that&#8217;s 10 songs or 35 minutes long</strong></p>
<li>Recording can only be done in the month of February – no prerecorded songs.</li>
<li>All material must be previously unreleased, and we encourage you to write the material during February too.</li>
</blockquote>
<p>What better way to spend your February. It&#8217;s a perfect excuse to ignore the dark nights and crazy winter weather outside. Just stay inside and be inspired to create (or finish) your album! <a href="http://www.rpmchallenge.com/content/view/844/290/">Read all about it here.</a></p>
<p>We know that SoundCloud users are a very creative bunch so stop what you&#8217;re doing right now and sign up for the challenge. You&#8217;ve still just about got enough time left! And if you do take it up then please keep us posted with your thoughts and progress in comments below. There&#8217;s a <a href="http://soundcloud.com/groups/rpm-challenge">RPM Challenge group</a> on SoundCloud too for posting your works in progress. What are you waiting for?</p>
<p><object height="425" width="425"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fgroups%2Frpm-challenge&amp;auto_play=false&amp;player_type=artwork&amp;color=ff7700"></param><param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="425" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fgroups%2Frpm-challenge&amp;auto_play=false&amp;player_type=artwork&amp;color=ff7700" type="application/x-shockwave-flash" width="425"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/soundcloudblog/~4/SAHZHZ2HfVk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/soundcloudblog/~3/SAHZHZ2HfVk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SoundCloud + The Hype Machine = ♥</title>
		<link>http://feedproxy.google.com/~r/soundcloudblog/~3/WYBeQCfKd_c/</link>
		<comments>http://feedproxy.google.com/~r/soundcloudblog/~3/WYBeQCfKd_c/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 12:26:42 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[syndicated]]></category>

		<guid isPermaLink="false">http://blog.soundcloud.com/?p=2076</guid>
		<description><![CDATA[ We’re huge fans of the The Hype Machine at SoundCloud. And we have a sneaky suspicion that you might be too. Put simply, the The Hype Machine is the best place on the web to discover all the kick ass music that is being blogged about right now. They already use SoundCloud to host [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-2083" title="hype-machine-logo" src="http://blog.soundcloud.com/wp-content/uploads/2010/01/hype-machine-logo.jpg" alt="hype-machine-logo" width="255" height="118" /> We’re huge fans of the <a href="http://www.hypem.com">The Hype Machine</a> at SoundCloud. And we have a sneaky suspicion that you might be too. Put simply, the The Hype Machine is the best place on the web to discover all the kick ass music that is being blogged about right now. They already use SoundCloud to host their fantastic <a href="http://hypem.com/radio">radio show</a> but we wanted to find a way to work more closely together. And we’re quite excited by the results.</p>
<p>The most important part of this is to tell you that The Hype Machine now detects <a href="http://soundcloud.com/tour/widgets">SoundCloud players</a> in the blogs that it aggregates. And as you probably know, the blog post and track are then sucked into the The Hype Machine. If you’re a blogger this means that you can use our players even more now and know that your post will show up on The Hype Machine.</p>
<p>This is exciting news in itself, but wait, it doesn’t stop there. When a fan listens to that track on The Hype Machine it’s actually streamed directly from SoundCloud. This means that if you’re the artist or label that has uploaded the track you’ll actually get stats on the number of times it has been played on The Hype Machine &#8211; as well as knowing exactly which blogs embedded your music in the first place. We’ve been busy building the most <a href="http://soundcloud.com/tour/stats">kick-ass stats</a> for our users as possible and we think this is a great addition.</p>
<p>We think that this is all rather badass. The Hype Machine and the music blogs serve a massively important role in fans discovering new and exciting music. And it’s often the blogosphere that helps interesting new acts break to a wider audience. We’re thrilled to be part of that ecosystem, by allowing artists and labels to serve tracks directly to music bloggers via SoundCloud. And hopefully at the same time eliminating a lot of the hustle for the bloggers having to re-upload tracks to their own servers or use generic services like <em>zmegasupersendfile.com<br />
</em><br />
Here’s just a few of the releases you should be getting excited about. Go blog about them!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="300" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fdominorecordco%2Fsets%2Fowen-pallett-heartland&amp;auto_play=false&amp;player_type=artwork&amp;color=8edc8f" /><embed type="application/x-shockwave-flash" width="300" height="300" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fdominorecordco%2Fsets%2Fowen-pallett-heartland&amp;auto_play=false&amp;player_type=artwork&amp;color=8edc8f" allowscriptaccess="always"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="300" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Flucidonline%2Fgirl-i-love-you-she-is-danger-remix&amp;auto_play=false&amp;player_type=artwork&amp;color=8edc8f" /><embed type="application/x-shockwave-flash" width="300" height="300" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Flucidonline%2Fgirl-i-love-you-she-is-danger-remix&amp;auto_play=false&amp;player_type=artwork&amp;color=8edc8f" allowscriptaccess="always"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/soundcloudblog/~4/WYBeQCfKd_c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/soundcloudblog/~3/WYBeQCfKd_c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Abbey Road + SoundCloud</title>
		<link>http://feedproxy.google.com/~r/soundcloudblog/~3/ldhb52QcF3Q/</link>
		<comments>http://feedproxy.google.com/~r/soundcloudblog/~3/ldhb52QcF3Q/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 13:37:28 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[syndicated]]></category>

		<guid isPermaLink="false">http://blog.soundcloud.com/?p=1825</guid>
		<description><![CDATA[ At SoundCloud we&#8217;re always trying to push the boundaries of what you can do with your music on the web. That doesn&#8217;t always mean building flashy iPhone apps, working with browser-based audio tools or giving you more widgets. Sometimes, as a music professional, you just need to get your music to the places where [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="Abbey Road + SoundCloud" src="http://img.skitch.com/20091214-rfeedk49i7ad41jbkmd2edg73a.png" alt="" width="203" height="203" /> At SoundCloud we&#8217;re always trying to push the boundaries of what you can do with your music on the web. That doesn&#8217;t always mean building flashy iPhone apps, working with browser-based audio tools or giving you more widgets. Sometimes, as a music professional, you just need to get your music to the places where it always needed to be but in a much easier way. So we&#8217;re very proud to announce our working partnership with one of the most prestigious music destinations in the world: <strong>Abbey Road Studios</strong>.</p>
<p>We&#8217;ve partnered with <a href="http://www.abbeyroadonlinemastering.com/soundcloud">Abbey Road&#8217;s Online Mastering service</a> to allow you to seamlessly send your audio to Abbey Road directly from SoundCloud with just a couple of clicks. Never before has it been this simple to get your music in the hands of the world&#8217;s best mastering engineers and have it worked on with the same type of equipment that was used to add the final magic touches to classic albums such as The Beatles&#8217; &#8216;Abbey Road&#8217; and Pink Floyd&#8217;s &#8216;Dark Side Of The Moon&#8217;.</p>
<p><img class="alignright" title="Connect With SoundCloud" src="http://img.skitch.com/20091214-pgsncheeq2mrmf8ih3d5chpu25.png" alt="" /> Simply sign up at <a href="http://www.abbeyroadonlinemastering.com/soundcloud">Abbey Road&#8217;s Online Mastering site</a> then connect your SoundCloud account. Abbey Road have built the integration using our &#8216;Connect With SoundCloud&#8217; feature to make the flow extremely straight-foward for users. Once connected you can just search and select the tracks in your account that you want to be mastered. SoundCloud and Abbey Road do all the rest!</p>
<p>We&#8217;ve not only made it super simple, we&#8217;re also giving all SoundCloud users a <strong>20% discount</strong> to use the service. All you need to do is type the code &#8216;<strong>CLOUD9</strong>&#8216; into the correct box whilst making payment to make the saving. Enjoy! And let us know what you think.</p>
<p><strong>Update</strong>: Check out <a href="http://uk.reuters.com/news/video?videoId=15563918">this Reuters video</a> of our visit at the studios earlier this week (video seems broken, try <a href="http://uk.reuters.com/news/video?videoId=15563918">this link</a>)</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="422" height="346" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.reuters.com/resources/flash/include_video_aculios.swf?edition=UK&amp;videoId=15563918" /><embed type="application/x-shockwave-flash" width="422" height="346" src="http://www.reuters.com/resources/flash/include_video_aculios.swf?edition=UK&amp;videoId=15563918" wmode="transparent"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/soundcloudblog/~4/ldhb52QcF3Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/soundcloudblog/~3/ldhb52QcF3Q/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remix Delphic using Aviary</title>
		<link>http://feedproxy.google.com/~r/soundcloudblog/~3/yvW6ZMctfDY/</link>
		<comments>http://feedproxy.google.com/~r/soundcloudblog/~3/yvW6ZMctfDY/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 09:57:20 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[syndicated]]></category>

		<guid isPermaLink="false">http://blog.soundcloud.com/?p=1884</guid>
		<description><![CDATA[Manchester-based band Delphic are pretty hot at the moment. With recent appearances on Jools Holland and making the BBC Sound 2010 shortlist they&#8217;re getting ready to release their debut Ewan Pearson produced album Acolyte on 11th January. Meanwhile they&#8217;re making all the stems from lead single &#8216;Doubt&#8217; available for you to remix. Take a listen [...]]]></description>
			<content:encoded><![CDATA[<p>Manchester-based band <a href="http://delphic.cc/doubt/">Delphic</a> are pretty hot at the moment. With recent appearances on Jools Holland and making the <a href="http://news.bbc.co.uk/1/hi/8395789.stm">BBC Sound 2010</a> shortlist they&#8217;re getting ready to release their debut Ewan Pearson produced album Acolyte on 11th January. Meanwhile they&#8217;re making all the stems from lead single &#8216;Doubt&#8217; available for you to remix. Take a listen below and then read on&#8230;</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="220" height="220" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fdelphic%2Fdoubt&amp;auto_play=false&amp;player_type=artwork&amp;color=ff7700" /><embed type="application/x-shockwave-flash" width="220" height="220" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fdelphic%2Fdoubt&amp;auto_play=false&amp;player_type=artwork&amp;color=ff7700" allowscriptaccess="always"></embed></object></p>
<p>There&#8217;s a bit of twist to the contest. In fact there are three twists&#8230;</p>
<p>1) You&#8217;ll need to scavenge the music blogosphere for all the best stems. Start the hunt on <a href="http://electrorash.com/delphic-doubt-reeeemix/">Electrorash blog</a>. And actually it&#8217;s pretty easy from there.</p>
<p>2) We&#8217;ve teamed up with <a href="http://aviary.com">Aviary&#8217;s excellent audio/remix tool Myna</a> to give everyone a chance at making their own version. I might even have a crack myself over Xmas! Launch Myna from <a href="http://delphic.cc/doubt/">Delphic&#8217;s Doubt remix page</a> (and more news on SoundCloud + Aviary in a future blog post!). </p>
<p>3) The guys behind the Delphic site have built some rather wonderful wizardry using our API so that you can upload your remixes to the band directly and have added a natty little voting button next to each submitted track. Clever huh?</p>
<p>So it&#8217;s time to get busy! We&#8217;re looking forward to hearing what you do.</p>
<img src="http://feeds.feedburner.com/~r/soundcloudblog/~4/yvW6ZMctfDY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/soundcloudblog/~3/yvW6ZMctfDY/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Everybody – Wants You!</title>
		<link>http://feedproxy.google.com/~r/soundcloudblog/~3/Otqj4lzwoWU/</link>
		<comments>http://feedproxy.google.com/~r/soundcloudblog/~3/Otqj4lzwoWU/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 16:56:59 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[syndicated]]></category>

		<guid isPermaLink="false">http://blog.soundcloud.com/?p=1855</guid>
		<description><![CDATA[Now here&#8217;s a remix competition, but with a rather interesting twist. Joey Santiago and David Lovering from Pixies (one of the most influential American alternative rock bands of the late &#8217;80&#8217;s) have a new band called The Everybody, and a new album called Avatar. As you&#8217;d come to expect nowadays they&#8217;re going to be doing [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="The Everybody" src="http://www.theeverybody.com/images/everybodyCoverCC.jpg" alt="" width="231" height="230" />Now here&#8217;s a remix competition, but with a rather interesting twist. Joey Santiago and David Lovering from Pixies (one of the most influential American alternative rock bands of the late &#8217;80&#8217;s) have a new band called The Everybody, and a new album called Avatar. As you&#8217;d come to expect nowadays they&#8217;re going to be doing some pretty cool things with the album release. And this is where you and SoundCloud come in&#8230;</p>
<p>The album is being made available exclusively at <a href="http://www.TheEverybody.com">The Everybody website</a> as a Creative Commons licensed, royalty-free package of lossless stems. The band are selling this package for $40 (via our friends at Topspin), which might at first sound like quite a bit but in fact you&#8217;re actually getting a lot. The stems are licensed and royalty free which means you can make your own version and (as long as you&#8217;re providing attribution back to the band) you can in theory make lots of money selling whatever you&#8217;ve created. We think that&#8217;s pretty badass!!</p>
<p>Not only that, but you can also submit your creation to SoundCloud for review by the band. Once David and Joey have had a chance to check out all of the tracks they&#8217;re going to choose the best of the best of these new creations and turn them into an album called The Everybody Else and release it as a limited-edition gatefold vinyl alongside the originals in Spring 2010.</p>
<div><object id="TSWidget11181" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="300" height="250" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="bgcolor" value="#000000" /><param name="allowScriptAccess" value="always" /><param name="allowfullscreen" value="true" /><param name="quality" value="high" /><param name="flashvars" value="widget_id=http://cdn.topspin.net/api/v1/artist/822/bundle_widget/11181?timestamp=1260754723&amp;theme=black&amp;highlightColor=0xFFFF00" /><param name="wmode" value="transparent" /><param name="src" value="http://cdn.topspin.net/widgets/bundle/swf/TSBundleWidget.swf?timestamp=1260754723" /><embed id="TSWidget11181" type="application/x-shockwave-flash" width="300" height="250" src="http://cdn.topspin.net/widgets/bundle/swf/TSBundleWidget.swf?timestamp=1260754723" wmode="transparent" flashvars="widget_id=http://cdn.topspin.net/api/v1/artist/822/bundle_widget/11181?timestamp=1260754723&amp;theme=black&amp;highlightColor=0xFFFF00" quality="high" allowfullscreen="true" allowscriptaccess="always" bgcolor="#000000"></embed></object></div>
<p>So&#8230; what to do next?</p>
<p>1) Watch the highly entertaining infomercial (above)</p>
<p>2) Head on over to <a href="http://www.TheEverybody.com">the band&#8217;s rather nice website</a> to purchase the extended lossless album that comes with all the Creative Commons licensed royalty free stems</p>
<p>3) While you&#8217;re on the site don&#8217;t forget to pick up the free bonus tracks <a href="http://www.theeverybody.com/index2.html#home">here</a></p>
<img src="http://feeds.feedburner.com/~r/soundcloudblog/~4/Otqj4lzwoWU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/soundcloudblog/~3/Otqj4lzwoWU/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Want to hang out ‘In The City’?</title>
		<link>http://feedproxy.google.com/~r/soundcloudblog/~3/_D67gpQhjg8/</link>
		<comments>http://feedproxy.google.com/~r/soundcloudblog/~3/_D67gpQhjg8/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 11:32:40 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.soundcloud.com/?p=1417</guid>
		<description><![CDATA[
We&#8217;re pleased to say that SoundCloud will be in Manchester for In The City this year. I&#8217;ll be taking part in a panel on Monday called &#8220;New Digital Weaponry&#8221; whilst Alex will be there on Tuesday as part of the Tribes, Fans &#38; Followers session with our friends Ian Hogarth (Songkick), Sean Adams (Drowned In [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://img.skitch.com/20091012-ktkxwatycjic74aixnyd6eapcq.jpg" alt="" width="473" height="152" /></p>
<p>We&#8217;re pleased to say that SoundCloud will be in Manchester for <a href="http://www.inthecity.co.uk">In The City</a> this year. I&#8217;ll be taking part in a panel on Monday called &#8220;New Digital Weaponry&#8221; whilst Alex will be there on Tuesday as part of the <a href="http://www.inthecity.co.uk/itc-getevent.php?event_id=4199">Tribes, Fans &amp; Followers</a> session with our friends Ian Hogarth (Songkick), Sean Adams (Drowned In Sound), Anthony Volodkin (Hype Machine).</p>
<p>There&#8217;s also a whole load of amazing bands (over 150 in fact!) descending upon the city from the 18th &#8211; 20th October as part of the event. And the super-friendly chaps who are working hard to organise ITC have kindly offered <a href="http://www.inthecity.co.uk/showscreen.php?site_id=30&amp;screentype=folder&amp;screenid=5813">two pairs of wristbands</a> for us to give away to fans of SoundCloud.</p>
<p>To be one of the two winners couldn&#8217;t be simpler. Send us a tweet to <a href="http://twitter.com/soundcloud">@SoundCloud</a> telling us why you think you should win the wristabands. We&#8217;ll pick our favourite two by 4pm today (GMT, Friday 16th). For more details of what you&#8217;ll win <a href="http://www.inthecity.co.uk/showscreen.php?site_id=30&amp;screentype=folder&amp;screenid=5813">check here</a>.</p>
<img src="http://feeds.feedburner.com/~r/soundcloudblog/~4/_D67gpQhjg8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/soundcloudblog/~3/_D67gpQhjg8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
