User theahuramazda - Stack Overflowmost recent 30 from stackoverflow.com2010-03-20T17:51:04Zhttp://stackoverflow.com/feeds/user/99290http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2291355/in-jquery-how-do-you-resolve-the-scope-of-this-when-you-are-in-the-scope-of-e/2291572#22915720Answer by theahuramazda for In jQuery, how do you resolve the scope of "this", when you are in the scope of each()?theahuramazdahttp://stackoverflow.com/users/992902010-02-18T19:28:20Z2010-02-18T19:28:20Z<p>I normally do it this way: (note:example below is from memory but looks sound):</p>
<pre><code>function CustomObject()
{
var _instance = this;
this.debug = function(){...};
this.setup =
function()
{
var fieldsets = form.children("fieldset");
fieldsets.each(
function()
{
_instance.debug($(this).attr("class"));
});
};
}
</code></pre>
http://stackoverflow.com/questions/1614175/silverlight-audio-monitoring/1888481#18884810Answer by theahuramazda for silverlight audio monitoringtheahuramazdahttp://stackoverflow.com/users/992902009-12-11T14:39:01Z2009-12-12T01:17:56Z<p>You can use this <a href="http://prefix.teddywino.com/post/SilverlightMediaKitLiveDemo.aspx" rel="nofollow">library</a> which provides you with the raw audio data (PCM). It is a custom MediaStreamSource, as Jeremiah mentioned.</p>
<p>It currently only works with MP3 and stereo channels. You can use the Audio PreProcessor functionality to mute the specific channels if you like.</p>
<p>The demo shows this off in the Pan effect</p>
http://stackoverflow.com/questions/800547/play-mp3-in-reverse-in-silverlight/1841267#18412670Answer by theahuramazda for play mp3 in reverse in Silverlighttheahuramazdahttp://stackoverflow.com/users/992902009-12-03T16:52:13Z2009-12-12T01:17:28Z<p>It should be possible to play MP3 in reverse. The audio data is stored in chunks. The chunks will need to be read in reverse order, decoded and passed to the MediaStreamSource in reverse PCM sample order.</p>
<p>The only issue is that the stream has to be first read in fully to be able to read it backwards later.</p>
<p>I've written an MP3 decoder for Silverlight <a href="http://prefix.teddywino.com/post/SilverlightMediaKitLiveDemo.aspx" rel="nofollow">here</a> (source code will be uploaded shortly
). I think it should be easy for you to rewrite it to play an MP3 in reverse. </p>
http://stackoverflow.com/questions/661469/silverlight-live-audio-streaming/1841139#18411390Answer by theahuramazda for Silverlight Live Audio Streamingtheahuramazdahttp://stackoverflow.com/users/992902009-12-03T16:33:17Z2009-12-12T01:16:32Z<p>I've written/ported a MP3 decoder to Silverlight 3.
To get around the issue of a seekable stream and MediaStreamSource, I wrote a custom stream, SeekableStream, that wraps around any other Stream and makes it appear seekable by using an internal memory stream.</p>
<p>You can see it in action <a href="http://prefix.teddywino.com/post/SilverlightMediaKitLiveDemo.aspx" rel="nofollow">here</a> where it can play a MP3 files located locally on your machine or on the web.
Source for the library and demo is now up on <a href="http://salusemediakit.codeplex.com/" rel="nofollow">CodePlex</a></p>
http://stackoverflow.com/questions/1860932/creating-media-visualization-in-silverlight/1870562#18705623Answer by theahuramazda for Creating media visualization in Silverlighttheahuramazdahttp://stackoverflow.com/users/992902009-12-08T23:17:47Z2009-12-12T01:15:46Z<p>I wanted the same so I've created exactly that.
You can see a live demo at <a href="http://prefix.teddywino.com/post/SilverlightMediaKitLiveDemo.aspx" rel="nofollow">http://prefix.teddywino.com/post/SilverlightMediaKitLiveDemo.aspx</a></p>
<p>The library and demo source code are available at <a href="http://salusemediakit.codeplex.com/" rel="nofollow">http://salusemediakit.codeplex.com/</a>
The demo shows the added feature to alter the raw audio data to create effects.
Currently works only with MP3s and is still under development</p>
http://stackoverflow.com/questions/875421/how-do-i-seamlessly-concatenate-mp3-streams/1841363#18413631Answer by theahuramazda for How do I seamlessly concatenate MP3 streams?theahuramazdahttp://stackoverflow.com/users/992902009-12-03T17:04:26Z2009-12-03T17:04:26Z<p>You should be able to concatenate mp3 files of both CBR and VBR formats.
MP3 files do not have a main header (disregarding ID3 and Xing). The audio data is stored as chunks where every chunk includes its own header. The header contains the necessary information (bitrate, sample frequency, stereo, etc) for the decoding of the audio data in that chunk.</p>
<p>This is one of the reasons why it is difficult to determine the duration of a mp3 file.</p>
<p>Another way of looking at it is, if you concatenate a CBR MP3 file with a VBR file, the end result is the same as one long VBR file with the first section of Audio at a constant bitrate.</p>
<p>The issue is that some MP3 players may be strict and expect a Xing header for a VBR MP3 file. This however was never the specification for the MP3 format but it is now assumed to be true.</p>
http://stackoverflow.com/questions/1178217/alternatives-to-using-webclient-baseaddress-to-get-base-url-in-silverlight/1647604#16476041Answer by theahuramazda for Alternatives to using WebClient.BaseAddress to get base url in Silverlighttheahuramazdahttp://stackoverflow.com/users/992902009-10-30T01:52:54Z2009-10-30T02:07:10Z<p>I use,</p>
<pre><code>Uri baseUri = new Uri(Application.Current.Host.Source, "/");
// Example results:
// http://www.example.com:42/
// or
// https://www.example.com/
</code></pre>
<p>No string parsing needed!
You can also use this method to create full Urls, for example,</p>
<pre><code>Uri logoImageUri = new Uri(Application.Current.Host.Source, "/images/logo.jpg");
// Example result:
// http://www.example.com/images/logo.jpg
</code></pre>
http://stackoverflow.com/questions/845266/windows-media-player-11-c-plugins/1136685#11366851Answer by theahuramazda for Windows Media Player (11+) C# Pluginstheahuramazdahttp://stackoverflow.com/users/992902009-07-16T10:22:03Z2009-07-16T10:22:03Z<p>May not be exactly what you're looking for but you can have a look at the code from this project:
<a href="http://wmppluginsnet.codeplex.com/" rel="nofollow">http://wmppluginsnet.codeplex.com/</a></p>
http://stackoverflow.com/questions/69296/xml-serialization-and-empty-collections/811038#8110383Answer by theahuramazda for XML Serialization and empty collections.theahuramazdahttp://stackoverflow.com/users/992902009-05-01T11:26:14Z2009-05-01T11:26:14Z<p>I've had the same issue where I did not want an element outputted if the field is empty or 0.
The XML outputted could not use xsi:null="true" (by design).</p>
<p>I've read somewhere that if you include a property of type bool with the same name as the field you want to control but appended with 'Specified', the XMLSerializer will check the return value of this property to determine if the corresponding field should be included.</p>
<p>To achieve this without implementing IXMLSerializer:</p>
<pre><code>public List<Event> Delete { get; set; }
[XMLIgnore]
public bool DeleteSpecified
{
get
{
bool isRendered = false;
if (Delete != null)
{
isRendered = (Delete.Count > 0);
}
return isRendered;
}
set
{
}
}
</code></pre>
http://stackoverflow.com/questions/845266/windows-media-player-11-c-plugins/1136685#1136685Comment by theahuramazda on Windows Media Player (11+) C# Pluginstheahuramazdahttp://stackoverflow.com/users/992902009-07-19T17:36:20Z2009-07-19T17:36:20ZI'm the author and I've not done much with the project since then. I was suppose to show how to get the project up and running, and how to install the plugins, etc.
I'll be happy to answer any questions you may have.