<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>mp3 on S Anand</title>
    <link>https://www.s-anand.net/blog/tag/mp3/</link>
    <description>Recent content in mp3 on S Anand</description>
    <generator>Hugo -- 0.164.0</generator>
    <language>en-us</language>
    <lastBuildDate>Fri, 08 Jan 2021 09:37:52 +0000</lastBuildDate>
    <atom:link href="https://www.s-anand.net/blog/tag/mp3/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>How to extend Markdown with custom blocks</title>
      <link>https://www.s-anand.net/blog/how-to-extend-markdown-with-custom-blocks/</link>
      <pubDate>Fri, 08 Jan 2021 09:37:48 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/how-to-extend-markdown-with-custom-blocks/</guid>
      <description>&lt;p&gt;One problem I&amp;rsquo;ve had in Markdown is rendering a content in columns.&lt;/p&gt;
&lt;p&gt;On Bootstrap, the markup would look like this:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code class=&#34;language-markup&#34; data-lang=&#34;markup&#34;&gt;&amp;lt;div class=&amp;#34;row&amp;#34;&amp;gt;
  &amp;lt;div class=&amp;#34;col&amp;#34;&amp;gt;...&amp;lt;/div&amp;gt;
  &amp;lt;div class=&amp;#34;col&amp;#34;&amp;gt;...&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;How do we get that into Markdown without writing HTML?&lt;/p&gt;
&lt;p&gt;On Python, the &lt;a href=&#34;https://python-markdown.github.io/extensions/attr_list/&#34;&gt;attribute lists extension&lt;/a&gt; lets you add a class. For example:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-markdown&#34; data-lang=&#34;markdown&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;This is some content
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;{: .row}
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&amp;hellip; renders &lt;code&gt;&amp;lt;p class=&amp;quot;row&amp;quot;&amp;gt;This is some content&amp;lt;/p&amp;gt;&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;But I can&amp;rsquo;t do that to multiple paragraphs. Nor can I next content, i.e. add a &lt;code&gt;.col&lt;/code&gt; inside the &lt;code&gt;.row&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Enter &lt;a href=&#34;https://pypi.org/project/markdown-customblocks/&#34;&gt;markdown-customblocks&lt;/a&gt;. It&amp;rsquo;s a Python module that extends &lt;a href=&#34;https://python-markdown.github.io/&#34;&gt;Python Markdown&lt;/a&gt;. This lets me write:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-markdown&#34; data-lang=&#34;markdown&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;::: row
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;::: col
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Content in column 1
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;::: col
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Content in column 2
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;::: row
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;::: col
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Content in column 1
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;::: col
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Content in column 2
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This translates to:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code class=&#34;language-markup&#34; data-lang=&#34;markup&#34;&gt;&amp;lt;div class=&amp;#34;row&amp;#34;&amp;gt;
  &amp;lt;div class=&amp;#34;col&amp;#34;&amp;gt;Content in column 1&amp;lt;/div&amp;gt;
  &amp;lt;div class=&amp;#34;col&amp;#34;&amp;gt;Content in column 2&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Better yet, we can create our own custom HTML block types. For example, this code:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;from&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;markdown&lt;/span&gt; &lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;Markdown&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;from&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;customblocks&lt;/span&gt; &lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;CustomBlocksExtension&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;def&lt;/span&gt; &lt;span class=&#34;nf&#34;&gt;audio&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;ctx&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;src&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;nb&#34;&gt;type&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;audio/mp3&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;):&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;k&#34;&gt;return&lt;/span&gt; &lt;span class=&#34;sa&#34;&gt;f&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;&amp;#39;&amp;#39;&amp;lt;audio src=&amp;#34;&lt;/span&gt;&lt;span class=&#34;si&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;src&lt;/span&gt;&lt;span class=&#34;si&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#34; type=&amp;#34;&lt;/span&gt;&lt;span class=&#34;si&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;type&lt;/span&gt;&lt;span class=&#34;si&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#34;&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s1&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;si&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;ctx&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;content&lt;/span&gt;&lt;span class=&#34;si&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s1&#34;&gt;    &amp;lt;/audio&amp;gt;&amp;#39;&amp;#39;&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;md&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;Markdown&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;extensions&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;CustomBlocksExtension&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;generators&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;s1&#34;&gt;&amp;#39;audio&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;audio&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;p&#34;&gt;}),&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;])&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&amp;hellip; lets you convert this piece of Markdown:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;md&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;convert&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;&amp;#34;&amp;#34;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s2&#34;&gt;::: audio src=&amp;#34;mymusic.ogg&amp;#34; type=&amp;#34;audio/ogg&amp;#34;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s2&#34;&gt;    Your browser does not support `audio`.
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;&amp;#34;&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&amp;hellip; into this HTML:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code class=&#34;language-markup&#34; data-lang=&#34;markup&#34;&gt;&amp;lt;audio src=&amp;#34;mymusic.ogg&amp;#34; type=&amp;#34;audio/ogg&amp;#34;&amp;gt;
  Your browser does not support &amp;lt;code&amp;gt;audio&amp;lt;/code&amp;gt;.
&amp;lt;/audio&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;a href=&#34;https://pypi.org/project/markdown-customblocks/&#34;&gt;markdown-customblocks&lt;/a&gt; is easily the most useful Python module I discovered last quarter.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Streaming audio to iOS via VLC</title>
      <link>https://www.s-anand.net/blog/streaming-audio-to-ios-via-vlc/</link>
      <pubDate>Sat, 13 Oct 2012 15:50:59 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/streaming-audio-to-ios-via-vlc/</guid>
      <description>&lt;p&gt;You can play a song on your PC and listen to it on your iPhone / iPad – converting your PC into a radio station. As with most things &lt;a href=&#34;https://www.s-anand.net/blog/downloading-songs-from-youtube/&#34;&gt;VLC related&lt;/a&gt;, it’s tough to figure out but obvious in retrospect.&lt;/p&gt;
&lt;p&gt;The first thing to do is set up the MIME type for the streaming. This is a &lt;a href=&#34;http://trac.videolan.org/vlc/ticket/7208&#34;&gt;bug that has been fixed&lt;/a&gt;, but might not have made it into your version of VLC.&lt;/p&gt;
&lt;p&gt;Go to Tools – Preferences.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/vlc-pref-1.webp&#34;&gt;&lt;img alt=&#34;vlc-pref-1&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/vlc-pref-1.webp&#34; title=&#34;vlc-pref-1&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Click on “All” to see all the settings.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/vlc-pref-2.webp&#34;&gt;&lt;img alt=&#34;vlc-pref-2&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/vlc-pref-2.webp&#34; title=&#34;vlc-pref-2&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Under Stream output – Access output – HTTP, set Mime to &lt;code&gt;audio/x-mpeg&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/vlc-pref-3.webp&#34;&gt;&lt;img alt=&#34;vlc-pref-3&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/vlc-pref-3.webp&#34; title=&#34;vlc-pref-3&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;At this point, you should restart VLC.&lt;/p&gt;
&lt;p&gt;As I mentioned earlier, you might not need to do this if you have new enough a version of VLC that auto-detects the content’s MIME type.&lt;/p&gt;
&lt;p&gt;Re-open VLC, and go to the Media – Stream menu.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/vlc-stream-1.webp&#34;&gt;&lt;img alt=&#34;vlc-stream-1&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/vlc-stream-1.webp&#34; title=&#34;vlc-stream-1&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Click Add and choose the file you want to stream. Then click on Stream.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/vlc-stream-2.webp&#34;&gt;&lt;img alt=&#34;vlc-stream-2&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/vlc-stream-2.webp&#34; title=&#34;vlc-stream-2&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Click Next.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/vlc-stream-3.webp&#34;&gt;&lt;img alt=&#34;vlc-stream-3&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/vlc-stream-3.webp&#34; title=&#34;vlc-stream-3&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Select HTTP and click Add.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/vlc-stream-4.webp&#34;&gt;&lt;img alt=&#34;vlc-stream-4&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/vlc-stream-4.webp&#34; title=&#34;vlc-stream-4&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Select Audio – MP3 and click on Stream.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/vlc-stream-5.webp&#34;&gt;&lt;img alt=&#34;vlc-stream-5&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/vlc-stream-5.webp&#34; title=&#34;vlc-stream-5&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;At this point, the audio is being streamed at port 8080 of your machine. You can change the port and path in the menu above. (To find your local IP address, open the Command Prompt and type ipconfig.)&lt;/p&gt;
&lt;p&gt;Open Safari on your iPhone or iPad, and visit &lt;a href=&#34;http://your-ip-address:8080/&#34;&gt;http://your-ip-address:8080/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/vlc-ipad-streaming.webp&#34;&gt;&lt;img alt=&#34;vlc-ipad-streaming&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/vlc-ipad-streaming.webp&#34; title=&#34;vlc-ipad-streaming&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I haven’t figured out the right codec and MIME type to do this for videos yet, but hopefully will figure it out soon.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Shibu&lt;/strong&gt; &lt;em&gt;19 Sep 2014 10:12 am&lt;/em&gt;:
You should try out any of the light weight DLNA servers&amp;hellip;.&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>Audio data URI</title>
      <link>https://www.s-anand.net/blog/audio-data-uri/</link>
      <pubDate>Tue, 17 Jul 2012 11:41:29 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/audio-data-uri/</guid>
      <description>&lt;p&gt;Turns out that you can use &lt;a href=&#34;http://en.wikipedia.org/wiki/Data_URI_scheme&#34;&gt;data URIs&lt;/a&gt; in the &lt;code&gt;&amp;lt;audio&amp;gt;&lt;/code&gt; tag.&lt;/p&gt;
&lt;p&gt;Just upload an MP3 file to &lt;a href=&#34;http://dataurl.net/#dataurlmaker&#34;&gt;http://dataurl.net/#dataurlmaker&lt;/a&gt; and you’ll get a long string starting with &lt;code&gt;data:audio/mp3;base64...&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Insert this into your HTML:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;audio&lt;/span&gt; &lt;span class=&#34;na&#34;&gt;controls&lt;/span&gt; &lt;span class=&#34;na&#34;&gt;src&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;”data:audio/mp3;base64...”&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;That’s it – the entire MP3 file is embedded into your HTML page without requiring additional downloads.&lt;/p&gt;
&lt;p&gt;This takes a bit more bandwidth than the MP3, and won’t work on Internet Explorer. But for modern browsers, and small audio files, it reduces the overall load time – sort of like &lt;a href=&#34;http://css-tricks.com/css-sprites/&#34;&gt;CSS sprites&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;So, on my bus ride today, I built a little HTML5 musical keyboard that generates data URIs on the fly. Click to play.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;http://s-anand.net/musical-keyboard.html&#34;&gt;&lt;img alt=&#34;keyboard&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/keyboard.webp&#34; title=&#34;keyboard&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Fabio Mazarotto&lt;/strong&gt; &lt;em&gt;9 May 2013 8:07 pm&lt;/em&gt;:
Can you confirm that it no longer works in Safari &amp;gt;= 6.0?&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>Downloading songs from YouTube</title>
      <link>https://www.s-anand.net/blog/downloading-songs-from-youtube/</link>
      <pubDate>Thu, 15 Mar 2012 13:11:36 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/downloading-songs-from-youtube/</guid>
      <description>&lt;p&gt;Five years ago, I built a &lt;a href=&#34;http://www.s-anand.net/hindi&#34;&gt;song search engine&lt;/a&gt; – mainly because I needed to listen to songs. Three years ago, I stopped updating it – mainly because I stopped listening to songs actively, and have been busy since. For those of you who have been using my site for music: my apologies.
These days, I don’t really find the need to download music. &lt;a href=&#34;http://www.youtube.com/&#34;&gt;YouTube&lt;/a&gt; has most of the songs I need. Bandwidth is pretty good too &lt;a href=&#34;https://twitter.com/#!/sanand0/status/166886668958318592&#34;&gt;even when on the move&lt;/a&gt;.
But when I do need to download music, this is my new workflow.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Find the song on &lt;a href=&#34;http://www.youtube.com/&#34;&gt;YouTube&lt;/a&gt;. (Misspellings are still an issue, but you’ll usually find what you need)&lt;/li&gt;
&lt;li&gt;Download the video. &lt;a href=&#34;http://keepvid.com/&#34;&gt;Keepvid&lt;/a&gt; is the simple option. &lt;a href=&#34;http://rg3.github.com/youtube-dl/&#34;&gt;youtube-dl&lt;/a&gt;is the geek’s option (for multiple downloads)&lt;/li&gt;
&lt;li&gt;Use &lt;a href=&#34;http://www.videolan.org/vlc/&#34;&gt;VLC&lt;/a&gt; – the swiss-army knife of media – to convert the video into an MP3.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;That last step requires a bit of explaining. It’s very simple once you know how, but it took me a few months to get it right. So here goes.
&lt;strong&gt;Select the Convert / Save option in the Media menu.&lt;/strong&gt;
&lt;a href=&#34;https://www.s-anand.net/blog/assets/audio-conversion-1.webp&#34;&gt;&lt;img alt=&#34;audio-conversion-1&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/audio-conversion-1.webp&#34; title=&#34;audio-conversion-1&#34;&gt;&lt;/a&gt;
&lt;strong&gt;Click on Add to open file you want to convert.&lt;/strong&gt; You can pick a track from an disk as well if you want to rip an audio CD or a DVD.
&lt;a href=&#34;https://www.s-anand.net/blog/assets/audio-conversion-2.webp&#34;&gt;&lt;img alt=&#34;audio-conversion-2&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/audio-conversion-2.webp&#34; title=&#34;audio-conversion-2&#34;&gt;&lt;/a&gt;
&lt;strong&gt;Choose the file.&lt;/strong&gt;
&lt;a href=&#34;https://www.s-anand.net/blog/assets/audio-conversion-3.webp&#34;&gt;&lt;img alt=&#34;audio-conversion-3&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/audio-conversion-3.webp&#34; title=&#34;audio-conversion-3&#34;&gt;&lt;/a&gt;
&lt;strong&gt;Click on Convert / Save.&lt;/strong&gt;
&lt;a href=&#34;https://www.s-anand.net/blog/assets/audio-conversion-4.webp&#34;&gt;&lt;img alt=&#34;audio-conversion-4&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/audio-conversion-4.webp&#34; title=&#34;audio-conversion-4&#34;&gt;&lt;/a&gt;
&lt;strong&gt;Type the destination filename.&lt;/strong&gt; Make sure you type the full file name, and not just the name of the folder.
&lt;a href=&#34;https://www.s-anand.net/blog/assets/audio-conversion-5.webp&#34;&gt;&lt;img alt=&#34;audio-conversion-5&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/audio-conversion-5.webp&#34; title=&#34;audio-conversion-5&#34;&gt;&lt;/a&gt;
&lt;strong&gt;Select the output format you want under Settings – Profile.&lt;/strong&gt; You can tweak the bitrate with the settings button, but I usually don’t bother.
&lt;a href=&#34;https://www.s-anand.net/blog/assets/audio-conversion-6.webp&#34;&gt;&lt;img alt=&#34;audio-conversion-6&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/audio-conversion-6.webp&#34; title=&#34;audio-conversion-6&#34;&gt;&lt;/a&gt;
&lt;strong&gt;When you click on the Start button, the file will be converted&lt;/strong&gt; or the CD will be ripped. You’ll see the position marker move fairly fast.
&lt;a href=&#34;https://www.s-anand.net/blog/assets/audio-conversion-7.webp&#34;&gt;&lt;img alt=&#34;audio-conversion-7&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/audio-conversion-7.webp&#34; title=&#34;audio-conversion-7&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The only problem I have with this method is that I can’t seem to do batch conversions easily enough with the GUI. Does anyone have any other workflow they like?
&lt;strong&gt;Update (31 Jul 2012)&lt;/strong&gt;: Aditya Sengupta suggests the following: (should&amp;rsquo;ve guessed VLC would have something up its sleeve)&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;vlc -I dummy $FILENAME --no-sout-video --sout &amp;#34;#transcode{acodec=mp3,5Dab=&amp;lt;wbr&amp;gt;AUDIO_BITRATE,channels=2}:std{&amp;lt;wbr&amp;gt;access=file,mux=raw,dst=$NAME.&amp;lt;wbr&amp;gt;mp3}&amp;#34; vlc://quit
&lt;/code&gt;&lt;/pre&gt;&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;408wij&lt;/strong&gt; &lt;em&gt;15 Mar 2012 1:48 pm&lt;/em&gt;:
Coincidentally, I just ripped a bunch of MP3s from AVIs last night. I used a Windows program called Format Factory. It supports batch conversion. Some AVIs failed on first past, so I reset their status in the queue and reran.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;vB&lt;/strong&gt; &lt;em&gt;16 Mar 2012 5:31 am&lt;/em&gt;:
Hey
Try using freemake. The best as per me. You paste youtube URL and select the format you want to save on your machine and it does the rest.
btw - found your website pretty neat, do not remember what was i looking for when i discovered it couple of days back, but now have put it on my reader.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://ramanuj.me&#34;&gt;Ramanujam&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;24 Mar 2012 1:18 pm&lt;/em&gt;:
Alternatively, you can skip all the steps and use one of the numerous sites that will directly give you the mp3.
Here is one that works pretty well.
&lt;a href=&#34;http://www.youtube-mp3.org/&#34;&gt;http://www.youtube-mp3.org/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.geekshike.co.cc/&#34;&gt;Pravin&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;16 Mar 2012 5:50 pm&lt;/em&gt;:
I&amp;rsquo;ve been using this nifty little freeware for a long time and i would suggest it to you if you are interested in an all-in-one video downloading and format conversion. The feature set is really impressive for a freeware. It has also got support for GPU acceleration which might prove use full for those who want to work while conversion is on.
&lt;a href=&#34;http://bit.ly/aayV0&#34;&gt;http://bit.ly/aayV0&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Pravin&lt;/strong&gt; &lt;em&gt;25 Mar 2012 12:48 pm&lt;/em&gt;:
@Sanketh
normally flv&amp;rsquo;s have ~32kbps audio bit rate
if you could go for 480p mode you will get ~128kbps(Audio CD Quality) audio bit rate&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://pankajnath.in&#34;&gt;Pankaj&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;10 Apr 2012 8:57 pm&lt;/em&gt;:
Seems you take a lot pain in getting few MP3s. :P
Try freemake software (freeware) or even simpler this one &lt;a href=&#34;http://www.youtube-mp3.org/&#34;&gt;http://www.youtube-mp3.org/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sanketh&lt;/strong&gt; &lt;em&gt;20 Mar 2012 3:49 pm&lt;/em&gt;:
Roughly what bitrate are the youtube flv encoded at?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ganesh Kondal&lt;/strong&gt; &lt;em&gt;4 Apr 2012 4:54 pm&lt;/em&gt;:
youtube-dl works like a charm. Thanks dude. Using it in Ubuntu 11&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Chaitanya&lt;/strong&gt; &lt;em&gt;20 Mar 2012 9:01 am&lt;/em&gt;:
Hey Anand
This blog post has been very useful. I just used Freemake and it&amp;rsquo;s cool and easy.
Also, converting few videos using VLC Player. Does it take as much time as the length of the video? Or conversion is slow because I am doing it on my pretty old spec&amp;rsquo;ed laptop.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sendhil&lt;/strong&gt; &lt;em&gt;17 Mar 2012 6:18 pm&lt;/em&gt;:
I heard of this one-step workflow from my colleague:
&lt;a href=&#34;http://www.singyoutube.com/&#34;&gt;http://www.singyoutube.com/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Deepak&lt;/strong&gt; &lt;em&gt;17 Mar 2012 7:11 am&lt;/em&gt;:
I have used Listen to Youtube (&lt;a href=&#34;http://www.listentoyoutube.com/)&#34;&gt;http://www.listentoyoutube.com/)&lt;/a&gt;. Works very well, especially for my son and his nursery rhymes and we dont want to see the computer screen for a long time.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://fillambazi.com&#34;&gt;Ganesh&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;29 Mar 2012 10:50 am&lt;/em&gt;:
If listening to mp3 is what you want then there are several free mp3 search sites. I use &lt;a href=&#34;https://www.mp3skull.com&#34;&gt;www.mp3skull.com&lt;/a&gt; You get a lot of options with various bit rates, and can listen to the song before downloading it.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vishal Dalmia&lt;/strong&gt; &lt;em&gt;24 May 2012 6:46 am&lt;/em&gt;:
&lt;a href=&#34;http://musicable.com/&#34;&gt;http://musicable.com/&lt;/a&gt; is a simple site that does the download easily with no downloads or installation required.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vijay Gnanaraj&lt;/strong&gt; &lt;em&gt;30 Sep 2012 12:29 am&lt;/em&gt;:
The next best option wud be IDM, internetdownloadmanager, which can download any video (almost from any website) playing on ur screen&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.s-anand.net/blog/streaming-audio-to-ios-via-vlc/&#34;&gt;Streaming audio to iOS via VLC | s-anand.net&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;13 Oct 2012 4:51 pm&lt;/em&gt; &lt;em&gt;(pingback)&lt;/em&gt;:
[&amp;hellip;] listen to it on your iPhone / iPad – converting your PC into a radio station. As with most things VLC related, it’s tough to figure out but obvious in [&amp;hellip;]&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>Recording online songs</title>
      <link>https://www.s-anand.net/blog/recording-online-songs/</link>
      <pubDate>Sun, 21 Sep 2008 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/recording-online-songs/</guid>
      <description>&lt;p&gt;In the 1980s, we rarely used to buy audio cassettes. It was a lot cheaper to record songs from the radio. It&amp;rsquo;s amazing that in the 2000s, this technique seems to be less used than before.&lt;/p&gt;
&lt;p&gt;If you wanted to record a song that was streamed online, you could go through the complex procedures I&amp;rsquo;d mentioned earlier to &lt;a href=&#34;https://www.s-anand.net/blog/downloading-online-songs/&#34;&gt;download online songs&lt;/a&gt;, or you could use the 1980s technologies. Get a tape recorder, connect the headphones of your PC to the tape recorder&amp;rsquo;s microphone using a stereo cable, and record to your heart&amp;rsquo;s content.&lt;/p&gt;
&lt;p&gt;Except, of course, that tape recorders are rather outdated. And with the right software, your PC can act like a tape recorder. Here&amp;rsquo;s how you can go about it.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&#34;http://audacity.sourceforge.net/download/&#34;&gt;Download Audacity&lt;/a&gt; and install it&lt;/li&gt;
&lt;li&gt;Download &lt;a href=&#34;http://lame.buanzo.com.ar/&#34;&gt;Lame&lt;/a&gt; and save it&lt;/li&gt;
&lt;li&gt;Open Audacity and select &amp;ldquo;Wave Out&amp;rdquo; as the source&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.s-anand.net/blog/hindi&#34;&gt;Play a song online&lt;/a&gt; and click on the Record button. Press the Stop button when done&lt;/li&gt;
&lt;li&gt;File - Export as MP3. (The first time, you need to tell Audacity where you&amp;rsquo;ve saved Lame)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;That&amp;rsquo;s it. You can convert anything your computer plays into an MP3 file. (The general rule in digital media is: if you can see / hear it, you can copy it.)&lt;/p&gt;
&lt;p&gt;OK, lets&amp;rsquo; do this more slowly.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. &lt;a href=&#34;http://audacity.sourceforge.net/download/&#34;&gt;Download Audacity&lt;/a&gt; and install it.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Audacity is a program lets you record and edit music. Just visit the link above (or search on Google for &amp;ldquo;Download Audacity&amp;rdquo;) and install the program. This is what it looks like.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-audacity_2875838821_o-jpg.webp&#34;&gt;&lt;img alt=&#34;Audacity&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-audacity_2875838821_o-jpg.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Download &lt;a href=&#34;http://lame.buanzo.com.ar/&#34;&gt;Lame&lt;/a&gt; and save it&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;When you record something with Audacity, you&amp;rsquo;ll usually want to save it as an MP3 file. Lame is another software that lets you do that. Go to the link above, download the ZIP file, and unzip it in some folder. (Remember where you unzipped it.)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Open Audacity and select &amp;ldquo;Wave Out&amp;rdquo; as the source&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;You can choose which source to record from in Audacity. Do you see the &amp;ldquo;Line In&amp;rdquo; in the screenshot below? That&amp;rsquo;s the source from which Audacity will record sound from. Usually, your PC will have a &amp;ldquo;Microphone&amp;rdquo; socket, and may have a &amp;ldquo;Line in&amp;rdquo; socket. It may also have a built-in microphone. Depending on what sockets and capabilities your PC has, you may see different things.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-audacity-source_2875838825_o-jpg.webp&#34;&gt;&lt;img alt=&#34;Audacity source&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-audacity-source_2875838825_o-jpg.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;One of these sources will probably be &amp;ldquo;Wave Out&amp;rdquo;. That lets you record any sound played by your computer. So if you want to record a song your computer&amp;rsquo;s playing, what&amp;rsquo;s what you should choose.&lt;/p&gt;
&lt;p&gt;Not all sound cards have the &amp;ldquo;Wave Out&amp;rdquo; option, though. Many laptops that I have used don&amp;rsquo;t seem to have this option. If that&amp;rsquo;s the case with you, there&amp;rsquo;s a fairly simple solution. Just buy a stereo-to-stereo cable (shown below) and connect your headphone socket to your microphone socket.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-stereo-to-stereo-cable_2875838813_o-jpg.webp&#34; title=&#34;Stereo to stereo cable by S Anand, on Flickr&#34;&gt;&lt;img alt=&#34;Stereo to stereo cable&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-stereo-to-stereo-cable_2875838813_o-jpg.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This transfers everything your computer plays back into the microphone, and you can select &amp;ldquo;External Mic&amp;rdquo; as your source.&lt;/p&gt;
&lt;p&gt;Buying this stereo cable has another advantage. Rather than connect one end to your computer&amp;rsquo;s headphones, you can connect it to anything: your old cassette player, your radio, a microphone, whatever. So that means you can now:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Convert your old tapes to MP3&lt;/li&gt;
&lt;li&gt;Record songs on the radio as MP3&lt;/li&gt;
&lt;li&gt;Record songs from the TV / DVD player as MP3&lt;/li&gt;
&lt;li&gt;Record live conversations as MP3&lt;/li&gt;
&lt;li&gt;Record phone conversations as MP3&lt;/li&gt;
&lt;li&gt;etc.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;4. &lt;a href=&#34;https://www.s-anand.net/blog/hindi&#34;&gt;Play a song online&lt;/a&gt; and click on the Record button. Press the Stop button when done&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;That&amp;rsquo;s easy. The Record button is the red circular button that&amp;rsquo;s third from the left. The Stop button is the yellow square button that&amp;rsquo;s second from the right.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. File - Export as MP3&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;When you&amp;rsquo;ve stopped recording, you can actually do a bunch of useful things with Audacity.&lt;/p&gt;
&lt;p&gt;The first is to &lt;strong&gt;adjust the volume level&lt;/strong&gt;. Go to the Effect menu and select Amplify. Then you can try different amplification levels to see how it sounds.&lt;/p&gt;
&lt;p&gt;The next is to &lt;strong&gt;trim the audio&lt;/strong&gt;. Unless you&amp;rsquo;re really fast with the keyboard, you probably have some unwanted sound recorded at the beginning or the end. You can select these pieces by dragging the mouse over the wiggly blue lines, and go to the Edit menu and pick Delete.&lt;/p&gt;
&lt;p&gt;Lastly, you&amp;rsquo;ll want to &lt;strong&gt;set the sound quality&lt;/strong&gt;. Go to Edit - Preferences and under the File Formats tab, set the bit rate under the MP3 Export Setup section. (If you don&amp;rsquo;t know what rate to put in there, 128 is a safe number. If you want better quality, increase it. If you&amp;rsquo;re short of disk space or want to mail it to someone, decrease it. Based on my &lt;a href=&#34;https://www.s-anand.net/blog/mp3-bitrates-and-sound-quality/&#34;&gt;experiments&lt;/a&gt;, even a good ear can&amp;rsquo;t tell the difference at 128. I use 64 or 96. My ear is pretty bad.)&lt;/p&gt;
&lt;p&gt;All of the above was optional. If you just wanted to save the file, go to the File menu and select &amp;ldquo;Export as MP3&amp;rdquo;. The first time you do that, you&amp;rsquo;ll be asked to mention the folder where you saved lame_enc.dll (which is where you unzipped Lame.) Show Audacity the folder, and that&amp;rsquo;s it.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Vivetha&lt;/strong&gt; &lt;em&gt;26 Sep 2008 4:03 am&lt;/em&gt;:
Hai Anand,&lt;br&gt;
&lt;br&gt;
Thanks lot for your technical supports and guidlines. Still I couldn&amp;rsquo;t able to understand what have to do for recording my skype conversation. Can you help on this?&lt;br&gt;
&lt;br&gt;
I use Acer 2413 laptop which has one headphone port and another microphone port. I have Stereo to Stereo to cable. Can you tell me what the next step to proceed for recording Skype conversation, and next for recording online songs?&lt;br&gt;
&lt;br&gt;
Thanks &amp;amp; Regards&lt;br&gt;
Vivetha&lt;br&gt;
Madurai&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;26 Sep 2008 12:51 pm&lt;/em&gt;:
@Vivetha: This link explains how to record Skype conversations:&lt;br&gt;
&lt;a href=&#34;http://www.voip-sol.com/15-apps-for-recording-skype-conversations/&#34;&gt;http://www.voip-sol.com/15-apps-for-recording-skype-conversations/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Preet&lt;/strong&gt; &lt;em&gt;27 Sep 2008 10:12 pm&lt;/em&gt;:
Hello Anand,&lt;br&gt;
&lt;br&gt;
Thank you for the updates.&lt;br&gt;
Can it download all Online songs from all sites?&lt;br&gt;
The Lame site says as follows: &amp;ldquo;Once you have unzipped the archive, you will have a file called LameLib or libmp3lame.dylib&amp;rdquo;&lt;br&gt;
However after downloading I am not getting the above files in the zip folder. There are 2 notepad files and one dll files in the zip folder.&lt;br&gt;
Could you please advise me what to do next.&lt;br&gt;
Thanks and Rgds,&lt;br&gt;
Preet&lt;br&gt;
Chennai&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Preet&lt;/strong&gt; &lt;em&gt;28 Sep 2008 3:39 am&lt;/em&gt;:
Also Anand one more help&amp;hellip;&lt;br&gt;
&lt;br&gt;
The wave out option is not appearing in the Audacity version 1.2.6 which I downloaded.&lt;br&gt;
Thanks and Rgds,&lt;br&gt;
&lt;br&gt;
Preet&lt;br&gt;
Chennai&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;28 Sep 2008 4:48 am&lt;/em&gt;:
@Preet: You need to copy the DLL file (lame_enc.dll) to your C:\Windows\system32 folder. (Or any other folder would be fine, as long as you remember to tell Audacity where the file is.&lt;br&gt;
&lt;br&gt;
If &amp;ldquo;Wave Out&amp;rdquo; does not appear as an option, your sound card doesn&amp;rsquo;t support that option. Your only option is to use the stereo cable.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ashwani&lt;/strong&gt; &lt;em&gt;18 Nov 2008 4:54 am&lt;/em&gt;:
hi anand&lt;br&gt;
thanx for ur support&lt;br&gt;
i have a proble, no any option highlighted in &amp;lsquo;&amp;lsquo;SELECT COURCE&amp;rsquo;&amp;rsquo; area&lt;br&gt;
&lt;br&gt;
plz told me solution&lt;br&gt;
here i see recordind &amp;amp; save that but without sound&lt;br&gt;
&lt;br&gt;
Thanx &amp;amp; rtegards,&lt;br&gt;
&lt;br&gt;
Ashwani Shukla&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ssr&lt;/strong&gt; &lt;em&gt;3 Dec 2008 2:14 am&lt;/em&gt;:
how to download songs from &lt;a href=&#34;https://www.devotionalsongs.com&#34;&gt;www.devotionalsongs.com&lt;/a&gt;&lt;br&gt;
It is a challenging job?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&amp;gt;kk;&lt;/strong&gt; &lt;em&gt;9 Dec 2008 9:58 am&lt;/em&gt;:
hi anand,&lt;br&gt;
great site and very helpful.&lt;br&gt;
My sound card does not support &amp;ldquo;Wave Out&amp;rdquo; so i bought a stereo-to-stereo cable, exactly as the pic you&amp;rsquo;ve put.&lt;br&gt;
After connecting the ends to my headphone and mic slots, i tried to record, but no positive results.&lt;br&gt;
The options shown by audacity both before and after plugging in the cable are &amp;ldquo;Front mic, Mic Colume, CD Volume, Line Volume&amp;rdquo;.&lt;br&gt;
I&amp;rsquo;ve got a Logitech webcam,which is the &amp;ldquo;Front mic&amp;rdquo; i think, and it does record my voice when i record after chosing that as the option.&lt;br&gt;
How do i go about recording playback of whatever songs i play on my PC using audacity using the cable ?&lt;br&gt;
Any help is greatly appreciated. (&amp;hellip;.u&amp;rsquo;re on vacation..)&lt;br&gt;
keep up the good work !!&lt;br&gt;
-kk&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;9 Dec 2008 8:35 pm&lt;/em&gt;:
KK, try plugging the cable into each slot (line out / mic) and try all&lt;br&gt;
options: &amp;ldquo;Front mic&amp;rdquo;, &amp;ldquo;Mic Volume&amp;rdquo;, etc. I usually do this hit-and-miss, and&lt;br&gt;
something eventually works.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;tk&lt;/strong&gt; &lt;em&gt;29 Jan 2009 10:59 am&lt;/em&gt;:
Hey&lt;br&gt;
&lt;br&gt;
My audacity doesn&amp;rsquo;t even have that drop down menu. Its just a gray box&amp;hellip;any ideas?&lt;br&gt;
&lt;br&gt;
Thanks&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;31 Jan 2009 5:57 am&lt;/em&gt;:
In that case, the sound card probably doesn&amp;rsquo;t support it. I&amp;rsquo;m afraid&lt;br&gt;
you may have to do it the old-fashioned way: play it on one computer,&lt;br&gt;
connect the headphone socket to another computer&amp;rsquo;s mic socket, and&lt;br&gt;
record it on the second computer.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;swapna&lt;/strong&gt; &lt;em&gt;6 Mar 2009 12:32 pm&lt;/em&gt;:
Hi,
Am Indian classical Music singer . I would like to sing and record my songs which people must be able to listen it on internet. Can you please tell me how it is possible .
Thanks&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.s-anand.net/&#34;&gt;S Anand&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;6 Mar 2009 2:25 pm&lt;/em&gt;:
Swapna, just record your songs on to a tape recorder. Then connect its headphone socket to a PC&amp;rsquo;s mic socket. Install Audacity and select &amp;ldquo;Microphone&amp;rdquo; or &amp;ldquo;Line in&amp;rdquo; as the source. Play the tape and press the red record button. When done, press the stop button and save the file from Audacity. You can upload the file to sites like odeo.com&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Purushothaman&lt;/strong&gt; &lt;em&gt;8 Mar 2009 1:38 pm&lt;/em&gt;:
Hi,
How can I record the conversations and online-music class in skype?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.s-anand.net/&#34;&gt;S Anand&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;8 Mar 2009 4:06 pm&lt;/em&gt;:
Here are some ways of recording Skype conversations: &lt;a href=&#34;http://www.voip-sol.com/15-apps-for-recording-skype-conversations/&#34;&gt;http://www.voip-sol.com/15-apps-for-recording-skype-conversations/&lt;/a&gt;
I haven&amp;rsquo;t tried any of them myself. If they fail, you could always download Audacity, select &amp;ldquo;Wave Out&amp;rdquo; as your input and press the Record button during the class.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.s-anand.net/&#34;&gt;S Anand&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;23 Mar 2009 7:44 am&lt;/em&gt;:
This might be because MusicIndiaOnline is down. That&amp;rsquo;s where I&amp;rsquo;m getting this songs from, ultimately. It&amp;rsquo;s a pity that MusicIndiaOnline is down quite frequently these days. Could you please try again when their site is up?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Valavan&lt;/strong&gt; &lt;em&gt;23 Mar 2009 12:16 am&lt;/em&gt;:
Hi Anand,
I&amp;rsquo;m unable to download the songs of &amp;ldquo;Dance of Shiva&amp;rdquo; by Sudha Raghunathan from your website s-anand.net/carnatic. I&amp;rsquo;m using latest ver of firefox. I&amp;rsquo;m getting the error &amp;ldquo;Couldn&amp;rsquo;t match M in&amp;rdquo; after saving the file name in local disk. I tried in i.e. 8 also and got the same error. Please help me in downloading the songs&amp;hellip;&amp;hellip;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://Hindiwapsite&#34;&gt;Kapil India&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;13 May 2010 5:17 am&lt;/em&gt;:
Ahaan&amp;hellip;why record that way &amp;hellip; simply using windows Sound Recorder and double clicking Volume Icon in taskbar with Recording Device selected as Stereo Mix will do the job and by default it can support mp3 at 56Kbps or else download Lame or other Mp3 encoders and use it in sound record&amp;hellip;also some WinAmp Plugin will do that for you too.
Simple
Kapil&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>Playing sounds backwards</title>
      <link>https://www.s-anand.net/blog/playing-sounds-backwards/</link>
      <pubDate>Mon, 25 Sep 2006 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/playing-sounds-backwards/</guid>
      <description>&lt;p&gt;You can &lt;a href=&#34;https://www.s-anand.net/blog/music-video-filmed-backwards/&#34;&gt;play a video backwards&lt;/a&gt; and still recognise the scenes quite well. Can you do that with sound?&lt;/p&gt;
&lt;p&gt;I tried it on this Bryan Adams clip of &lt;a href=&#34;https://files.s-anand.net/blog/a/Bryan_Adams.Summer_of_69.mp3&#34;&gt;Summer of &amp;lsquo;69 (mp3)&lt;/a&gt;. &lt;a href=&#34;https://files.s-anand.net/blog/a/Bryan_Adams.Summer_of_69.rev.mp3&#34;&gt;When played backwards (mp3)&lt;/a&gt;, it almost sounds like Arabic!&lt;/p&gt;
&lt;p&gt;Instruments sound weird backwards too, like the &lt;a href=&#34;https://files.s-anand.net/blog/a/Guitar.mp3&#34;&gt;guitar&lt;/a&gt; played &lt;a href=&#34;https://files.s-anand.net/blog/a/Guitar.rev.mp3&#34;&gt;backwards&lt;/a&gt; and &lt;a href=&#34;https://files.s-anand.net/blog/a/Drums.mp3&#34;&gt;drums&lt;/a&gt; played &lt;a href=&#34;https://files.s-anand.net/blog/a/Drums.rev.mp3&#34;&gt;backwards&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s seems obvious once you see the wave file. The picture below shows the guitar. The sounds are clearly not symmetric left to right.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-sound-wave-diagram-of-a-guitar_248964843_o-png.webp&#34;&gt;&lt;img alt=&#34;Sound wave diagram of a guitar&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-sound-wave-diagram-of-a-guitar_248964843_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Whereas &lt;a href=&#34;https://files.s-anand.net/blog/a/Guitar2.mp3&#34;&gt;this guitar&lt;/a&gt; is a lot more symmetric, and doesn&amp;rsquo;t sound too different &lt;a href=&#34;https://files.s-anand.net/blog/a/Guitar2.rev.mp3&#34;&gt;backwards&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-sound-wave-diagram-of-another-guitar_248964844_o-png.webp&#34;&gt;&lt;img alt=&#34;Sound wave diagram of another guitar&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-sound-wave-diagram-of-another-guitar_248964844_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;So how come we can&amp;rsquo;t recognise sounds played backwards, but can recognise video played backwards? (Initially, I thought it was a trivial question. But I couldn&amp;rsquo;t find a trivial answer. The question may be subtler than it looks.)&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;B anand Prasad&lt;/strong&gt; &lt;em&gt;25 Sep 2006 12:35 pm&lt;/em&gt;:
its nothing to do with the technology Mr. Anand let me give an example dnana &amp;hellip;.you just spell it&amp;hellip; it sounds something like (d-na-na) now if we know that reversing it could(possibly) result in Anand &amp;mdash; dnanA, then we could recognize all backward sounds its just that we r not acustomed to hear sounds backward. now practice daily some words which are often used like &amp;ldquo;good morning&amp;rdquo; &amp;ldquo;thanks&amp;rdquo; now say them to someone in a correct situation&amp;hellip;90% of them will recognize it.. thats it my friend&amp;hellip;.sorry for reversing &amp;ldquo;Anand&amp;rdquo; name&amp;hellip;.its my name too&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;25 Sep 2006 1:48 pm&lt;/em&gt;:
Anand, if I&amp;rsquo;ve understood you right, we don&amp;rsquo;t recognise sounds backwards because we&amp;rsquo;re not used to hearing them. Agreed. My reasoning was: we&amp;rsquo;re not used to seeing things backwards either. How come we&amp;rsquo;re so much better at recognising those? A part of the answer is, we recognise sounds mainly by their movement in time, but images by their spread across space. But I wonder if there&amp;rsquo;s more to it&amp;hellip;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ND&lt;/strong&gt; &lt;em&gt;26 Sep 2006 3:07 am&lt;/em&gt;:
I think this may have to do with the fact that seeing consists of detecting multiple facets like motion, pattern etc. The brain may have more data points decompose and &amp;ldquo;meaningfully&amp;rdquo; analyze backward. While hearing consists of analyzing the frequencies and amplitude implying lesser data points to &amp;ldquo;meaningfully&amp;rdquo; analyze backward with the same speed as visual stimuli. Caveat - Just my guess!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;26 Sep 2006 6:23 am&lt;/em&gt;:
Hmm&amp;hellip; ND, that&amp;rsquo;s a possibility! Certainly, in terms of information content, there&amp;rsquo;s more coming in visually than aurally.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ND&lt;/strong&gt; &lt;em&gt;27 Sep 2006 12:42 pm&lt;/em&gt;:
I asked three intelligent folks (an american, a german and an indian) to read &amp;ldquo;eye&amp;rdquo;, &amp;ldquo;racecar&amp;rdquo;, &amp;ldquo;malayalam&amp;rdquo; and &amp;ldquo;never odd or even&amp;rdquo; and waited for their reaction. Got blank stares! But it was sitter when explained. Guess some humans find it difficult to recognize a palindrome while reading and speaking. Taking a few million huge steps to infer humans normally normally don&amp;rsquo;t even try to process sound or reading alphabets backward. Is it easier to recognize a popular word like one&amp;rsquo;s name or a tune like Happy B&amp;rsquo;day when spoken or sung backward? A related front and back concept - I have always wondered why the bar showing s/w installing moves from left to right. And the same when uninstalling also. Is it convention? Why not show something more perceptive like a container getting filled or getting drained?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sudeep Nair&lt;/strong&gt; &lt;em&gt;20 Nov 2006 5:40 am&lt;/em&gt;:
Anand, I feel that the fundamental difference between a reversed text and reversed sound is that the text is still completely visible to the eye at once, and so there is a subconscious process where the brain is able to decipher the text by trying out some permutations, whereas in case of sound, the individual notes reach the ears and disappear. They do not remain &amp;ldquo;static&amp;rdquo; or &amp;ldquo;stationary&amp;rdquo; for the brain to be able to try some reverse permuations of individual notes and identify the original sound. This reminds me of another observation that in case of English text, the reader is able to decipher the words if the first and last letter of every word is kept fixed and all other letters in between are jumbled. Msot raeedrs wlil be albe to udnreatsnd tihs snetncee atlohugh the lteerts are jbulmed.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Anonymous&lt;/strong&gt; &lt;em&gt;20 Nov 2006 6:15 am&lt;/em&gt;:
If we extend this logic from text to video, I think there is some degree of &amp;ldquo;persistence of vision&amp;rdquo; which allows the brain to &amp;ldquo;refer back&amp;rdquo;, unjumble and make sense of video images, but there is no persistence of sound. So in addition to anand prasad&amp;rsquo;s point about &amp;ldquo;familiarity of words&amp;rdquo;, and ND&amp;rsquo;s point about &amp;ldquo;more meaningful data points&amp;rdquo;, I would think that &amp;ldquo;persistence of images&amp;rdquo; is a major factor helping us understand visual images better than sound.&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>MP3 bitrates and sound quality</title>
      <link>https://www.s-anand.net/blog/mp3-bitrates-and-sound-quality/</link>
      <pubDate>Fri, 10 Feb 2006 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/mp3-bitrates-and-sound-quality/</guid>
      <description>&lt;p&gt;At what bitrate should you encode your MP3 files? &lt;a href=&#34;http://www.mp3-tech.org/tests/gb/index.html&#34;&gt;Listening tests&lt;/a&gt; show that at 256kbps, you can&amp;rsquo;t tell the difference. But that&amp;rsquo;s with 2 amplifiers and big speakers. What about headphones?&lt;/p&gt;
&lt;p&gt;I tried an experiment with my cousin, who has the best ear for music that I know. We ripped a good audio CD of his at 128 kbps. He put on a pair of headphones (the kind that fit into your ear) connected to my laptop. I played the first half a minute of the original and the ripped version 10 times, in a random order, asking him to guess which was which. Result: 5 correct and 5 wrong. He couldn&amp;rsquo;t tell the difference.&lt;/p&gt;
&lt;p&gt;We tried again, ripping at 64kbps this time. Same experiment, and surprisingly, same result &amp;ndash; 5 correct and 5 wrong.&lt;/p&gt;
&lt;p&gt;Conclusion: With a pair of headphones, even a good ear can&amp;rsquo;t tell the difference between a 64kbps MP3 and an original CD. So, if you want to cram in more songs into your iPod, just re-encode them at 64kbps. You&amp;rsquo;ll easily shrink the size in half, as most of them are at least 128kbps.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Madhu&lt;/strong&gt; &lt;em&gt;13 Feb 2006 5:05 am&lt;/em&gt;:
How good were the headphones? Also i think the sample size is a little small:0&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;13 Feb 2006 7:54 am&lt;/em&gt;:
The headphones were cheap ones I bought in Bombay. Besides, this isn&amp;rsquo;t a sampling thing&amp;hellip; if he can&amp;rsquo;t tell the difference, I&amp;rsquo;m pretty sure no one I know can. I certainly can&amp;rsquo;t! What I should&amp;rsquo;ve done, though, is cut the same encodings back to a CD and played it on his system. THEN we&amp;rsquo;d have really know.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Venkat&lt;/strong&gt; &lt;em&gt;14 Feb 2006 5:42 pm&lt;/em&gt;:
U&amp;rsquo;ll find out if played in the system. But, the purpose here is to compress in a mp3 player, which anywhich way we are using with headfones right?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;sLaSh&lt;/strong&gt; &lt;em&gt;16 Feb 2006 9:41 am&lt;/em&gt;:
A Short History of Nearly Everything&amp;hellip;. is that really a &amp;ldquo;English Fiction&amp;rdquo;?????&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;16 Feb 2006 10:04 pm&lt;/em&gt;:
Sorry &amp;ndash; corrected that.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Dhar&lt;/strong&gt; &lt;em&gt;11 Mar 2006 12:09 am&lt;/em&gt;:
Err, was this a variable bit rate encoding or a constant bit rate encoding that you and your cousin experimented with?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;24 Mar 2006 3:42 pm&lt;/em&gt;:
Constant bit rate. I don&amp;rsquo;t know how to encode VBR.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Milind&lt;/strong&gt; &lt;em&gt;9 Apr 2006 12:27 pm&lt;/em&gt;:
1] What headphones you used? [2] What music you listened to? [3] What Soundcard was there? [4] Finally Wat is your cousin&amp;rsquo;s qualifications as far as music engineering is concerned? Please don&amp;rsquo;t feel bad, but almost any person when explained the difference, after that can tell the difference. Still you are correct somewhat in saying this. Caught off guard they almost sound same.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vaduvur Kumar&lt;/strong&gt; &lt;em&gt;26 Feb 2007 12:38 am&lt;/em&gt;:
Ya,its correct. I too tried on this some time. I do not care much on this as I have a good size of harddisk.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Skip Kite&lt;/strong&gt; &lt;em&gt;25 Mar 2009 2:48 pm&lt;/em&gt;:
This is probably a dead topic but here goes:
The whole purpose of mp3&amp;rsquo;s is so you can take them with you on small players&amp;hellip; not so you can reburn cd&amp;rsquo;s out of them to playback on your 1000 $$$ home stereo system. I&amp;rsquo;m a bit tired of reading post after post from snooty Audiophiler&amp;rsquo;s who say &amp;ldquo;Excuse me but there is a difference in quality&amp;rdquo; when I think that most of these AP&amp;rsquo;s are not listening to Baroque, Classical or even something from the late Renaissance&amp;hellip;(where sound quality really matters) but are probably listening to Alicia Keys, Beyonce, Lil Wayne, or any number of punk bands out today&amp;hellip;
I listen to everything between Renaissance music to Late 90&amp;rsquo;s and haven&amp;rsquo;t noticed a big deal of difference&amp;hellip; so what&amp;rsquo;s the point of having mp3&amp;rsquo;s if you are going to encode every piece of music at 160 or higher. Shouldn&amp;rsquo;t we try and find the right settings that balance quality and size. I also did various tests with different bit rates and didn&amp;rsquo;t notice much depreciable difference so now I just encode everything at 80kbps so that I save on space and it is still pretty good to ok quality.
good post S anand&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;M&lt;/strong&gt; &lt;em&gt;20 Sep 2009 10:03 pm&lt;/em&gt;:
My friend swears that on his headphones (while they are excellent quality, they can&amp;rsquo;t be better than a good stereo system), even 256 mbps is not even a high enough bitrate. I&amp;rsquo;ve never believed him. This further reassures me.&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>Windows Media Player 8</title>
      <link>https://www.s-anand.net/blog/windows-media-player-8/</link>
      <pubDate>Thu, 05 Apr 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/windows-media-player-8/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.microsoft.com/windows/windowsmedia/en/WM8/default.asp&#34;&gt;Windows Media Player 8&lt;/a&gt; lets you convert audio &amp;amp; video files into its new format. It compresses better than MP3, apparantly.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Legality of illegal MP3s</title>
      <link>https://www.s-anand.net/blog/legality-of-illegal-mp3s/</link>
      <pubDate>Mon, 22 Jan 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/legality-of-illegal-mp3s/</guid>
      <description>&lt;p&gt;Sweden has &lt;a href=&#34;http://slashdot.org/yro/99/12/28/0814212.shtml&#34;&gt;ruled&lt;/a&gt; that it&amp;rsquo;s OK to have links to illegal MP3s, so long as the server is in a country where illegal MP3s are legal. That&amp;rsquo;s in stark contrast with &lt;a href=&#34;http://www.zdnet.com/intweek/stories/news/0,4164,2656099,00.html&#34;&gt;France vs Yahoo&lt;/a&gt;. In fact, the norm is that linking even to the front page of commercial sites &lt;a href=&#34;http://www.llrx.com/features/weblink1.htm&#34;&gt;needs permission&lt;/a&gt; sometimes. A court in Utah &lt;a href=&#34;http://www.cnn.com/1999/TECH/computing/12/13/illegal.links.idg/&#34;&gt;ruled&lt;/a&gt; that providing links to copyrighted material could constitute copyright infringement. Better check out &lt;a href=&#34;http://law.about.com/newsissues/law/msub34.htm?once=true&amp;amp;&#34;&gt;cyberlaws&lt;/a&gt; and ensure compliance with &lt;a href=&#34;http://www.fplc.edu/tfield/cOpyNet.htm&#34;&gt;copyright rules on the Internet&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Violation is often in the eye of the beholder. &amp;ldquo;Anyone who makes derogatory references to others (or their sites, products or services), however it is done, invites trouble.&amp;rdquo;&lt;/p&gt;
</description>
    </item>
    <item>
      <title>CD-Recordable FAQ</title>
      <link>https://www.s-anand.net/blog/cd-recordable-faq/</link>
      <pubDate>Thu, 07 Dec 2000 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/cd-recordable-faq/</guid>
      <description>&lt;p&gt;Want to record downloaded MP3s into an audio CD? Want to take home software? See the &lt;a href=&#34;http://www.fadden.com/cdrfaq/&#34;&gt;CD-Recordable FAQ&lt;/a&gt;. Rookies, see &lt;a href=&#34;http://www.cdpage.com/Compact_Disc_Consulting/Tutorial/mp3.html&#34;&gt;Josh&amp;rsquo;s page&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
  </channel>
</rss>
