<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 16bit WAV Network Audio Streamer (Server/Client)</title>
	<atom:link href="http://blog.graceabundant.com/archives/2009/07/16bit-wav-network-audio-streamer-serverclient/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.graceabundant.com/archives/2009/07/16bit-wav-network-audio-streamer-serverclient/</link>
	<description>Touching but the surface of a wonderful and unknown world</description>
	<lastBuildDate>Sat, 14 Nov 2009 08:46:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Sam</title>
		<link>http://blog.graceabundant.com/archives/2009/07/16bit-wav-network-audio-streamer-serverclient/comment-page-1/#comment-24137</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Sat, 14 Nov 2009 08:46:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/?p=456#comment-24137</guid>
		<description>Dear Hoong, 

Thank you for your reply. I have been running the app for a few hours today across my wireless network with out any problems, So I&#039;m not sure what was the cause of the crashes as I&#039;m using exactly the same configuration as before, Windows XP 64 → Wifi-&gt; Windows XP 32.

Regards
Sam</description>
		<content:encoded><![CDATA[<p>Dear Hoong, </p>
<p>Thank you for your reply. I have been running the app for a few hours today across my wireless network with out any problems, So I'm not sure what was the cause of the crashes as I'm using exactly the same configuration as before, Windows XP 64 → Wifi-&gt; Windows XP 32.</p>
<p>Regards<br />
Sam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hoong Ern</title>
		<link>http://blog.graceabundant.com/archives/2009/07/16bit-wav-network-audio-streamer-serverclient/comment-page-1/#comment-24088</link>
		<dc:creator>Hoong Ern</dc:creator>
		<pubDate>Mon, 09 Nov 2009 05:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/?p=456#comment-24088</guid>
		<description>Hi Sam, I sent you an email. Repeated here:

I actually did this project in a rush, it was a final project for one of my classes, so indeed there may be bugs (I&#039;m not even convinced myself whether it works that well). What version of Windows are you running? Does the server crash all the time you run it? i.e. - is the crash replicable? Just confirming, you&#039;re running 1 server and 1 client instance? Does it crash if you run it purely on localhost (127.0.0.1)? I&#039;ll run some tests on my side and see what I can do.

As for choosing multiple soundcards, I&#039;ll see what I can do. It&#039;s actually not that hard to implement. But I guess it&#039;s not that useful to have that option if it&#039;s crashing anyway, so I&#039;ll try to look at that first.</description>
		<content:encoded><![CDATA[<p>Hi Sam, I sent you an email. Repeated here:</p>
<p>I actually did this project in a rush, it was a final project for one of my classes, so indeed there may be bugs (I'm not even convinced myself whether it works that well). What version of Windows are you running? Does the server crash all the time you run it? i.e. - is the crash replicable? Just confirming, you're running 1 server and 1 client instance? Does it crash if you run it purely on localhost (127.0.0.1)? I'll run some tests on my side and see what I can do.</p>
<p>As for choosing multiple soundcards, I'll see what I can do. It's actually not that hard to implement. But I guess it's not that useful to have that option if it's crashing anyway, so I'll try to look at that first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://blog.graceabundant.com/archives/2009/07/16bit-wav-network-audio-streamer-serverclient/comment-page-1/#comment-23932</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 03 Nov 2009 11:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/?p=456#comment-23932</guid>
		<description>Actually no, its not prefect. Using the windows version the server crashes after an hour or so. 

Using windows batch I wrap the RX side in this batch

@echo off

echo ///Streaming PCM 16 bit Audio.

set server_url=192.168.88.68
set port=12000

:start
title Receiving from %server_url%

echo.
echo -------------------------------------------------------------------------------
audiostreamer.exe c %port% %server_url%
echo -------------------------------------------------------------------------------

ping -n 1 %server_url% &gt;nul

goto :start


and the TX side in this batch

@echo off

echo ///Streaming PCM Audio.
set port=12000

:start
title ///Streaming PCM Audio.


echo.
echo -------------------------------------------------------------------------------
audiostreamer.exe s %port%
echo -------------------------------------------------------------------------------

ping -n 3 %server_url% &gt; nul

goto start</description>
		<content:encoded><![CDATA[<p>Actually no, its not prefect. Using the windows version the server crashes after an hour or so. </p>
<p>Using windows batch I wrap the RX side in this batch</p>
<p>@echo off</p>
<p>echo ///Streaming PCM 16 bit Audio.</p>
<p>set server_url=192.168.88.68<br />
set port=12000</p>
<p>:start<br />
title Receiving from %server_url%</p>
<p>echo.<br />
echo -------------------------------------------------------------------------------<br />
audiostreamer.exe c %port% %server_url%<br />
echo -------------------------------------------------------------------------------</p>
<p>ping -n 1 %server_url% &gt;nul</p>
<p>goto :start</p>
<p>and the TX side in this batch</p>
<p>@echo off</p>
<p>echo ///Streaming PCM Audio.<br />
set port=12000</p>
<p>:start<br />
title ///Streaming PCM Audio.</p>
<p>echo.<br />
echo -------------------------------------------------------------------------------<br />
audiostreamer.exe s %port%<br />
echo -------------------------------------------------------------------------------</p>
<p>ping -n 3 %server_url% &gt; nul</p>
<p>goto start</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://blog.graceabundant.com/archives/2009/07/16bit-wav-network-audio-streamer-serverclient/comment-page-1/#comment-23928</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 03 Nov 2009 10:02:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/?p=456#comment-23928</guid>
		<description>Nice one mate, works perfectly, Are you still working on this project? I would love to be able to select sound cards.</description>
		<content:encoded><![CDATA[<p>Nice one mate, works perfectly, Are you still working on this project? I would love to be able to select sound cards.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
