<?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 for ManyCam Blog</title>
	<atom:link href="http://blog.manycam.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.manycam.com</link>
	<description></description>
	<lastBuildDate>Wed, 15 Feb 2012 18:05:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on ManyCam 2.6.65 Released (Windows) by sally</title>
		<link>http://blog.manycam.com/manycam-2-6-65-released-windows/comment-page-1/#comment-12746</link>
		<dc:creator>sally</dc:creator>
		<pubDate>Wed, 15 Feb 2012 18:05:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.manycam.com/?p=287#comment-12746</guid>
		<description>when will there another update for both windows and mac ?</description>
		<content:encoded><![CDATA[<p>when will there another update for both windows and mac ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ManyCam 2.6.65 Released (Windows) by Ulf</title>
		<link>http://blog.manycam.com/manycam-2-6-65-released-windows/comment-page-1/#comment-12737</link>
		<dc:creator>Ulf</dc:creator>
		<pubDate>Tue, 14 Feb 2012 14:42:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.manycam.com/?p=287#comment-12737</guid>
		<description>Great product.

Only one issue.
How set up to use 16:9.
I have two cams (MSFT Life Cam Studio) connected and can view them in Lync, Movie Maker and other software. 
But no 16:9 resolution. It&#039;s allways cropped to 4:3 and in smaller resolution than the source. Force resolution don&#039;t work either.</description>
		<content:encoded><![CDATA[<p>Great product.</p>
<p>Only one issue.<br />
How set up to use 16:9.<br />
I have two cams (MSFT Life Cam Studio) connected and can view them in Lync, Movie Maker and other software.<br />
But no 16:9 resolution. It&#8217;s allways cropped to 4:3 and in smaller resolution than the source. Force resolution don&#8217;t work either.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ManyCam 2.6.65 Released (Windows) by Ian</title>
		<link>http://blog.manycam.com/manycam-2-6-65-released-windows/comment-page-1/#comment-12735</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Tue, 14 Feb 2012 02:31:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.manycam.com/?p=287#comment-12735</guid>
		<description>I&#039;m having problems with outgoing sound on movies. No idea where to start. Any suggestions?</description>
		<content:encoded><![CDATA[<p>I&#8217;m having problems with outgoing sound on movies. No idea where to start. Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ManyCam 2.6.65 Released (Windows) by Steve</title>
		<link>http://blog.manycam.com/manycam-2-6-65-released-windows/comment-page-1/#comment-12730</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 13 Feb 2012 16:04:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.manycam.com/?p=287#comment-12730</guid>
		<description>I have downloaded, installed, rebooted, and ran ManyCam 2.6.0.65 on my computer for the first time and I get an &quot;Initialization Error&quot;. I have opened up ManyCam in a debugger to step through the code and track down the bug. The error happens when ManyCam attempts to Load the ManyCam Logo using the CxImage library (ManyCam\Data\effect_data\logo\logo.png). In short, I think the CxImage library thinks that the image is a BMP instead of PNG and tries to read it as that. I am not sure why this happens, but I will try to briefly break it down.

First, this is called from ximaenc.cpp:
CxImage::CxImage(const TCHAR * filename, DWORD imagetype)
{
	Startup(imagetype);
	Load(filename,imagetype);
}

Example of its usage in ManyCam code: CxImage LogoImage(L&quot;...\\ManyCam\\Data\\effect_data\\logo\\logo.png&quot;, CXIMAGE_FORMAT_UNKNOWN);

Following where the error occurs, we enter the Load function in ximaenc.cpp:
bool CxImage::Load(const TCHAR * filename, DWORD imagetype);

Then we follow the code in the Decode function (inside Load):
bOK = Decode(hFile,CXIMAGE_FORMAT_UNKNOWN);

There are several Decode functions, but this is the one that gets called:
bool CxImage::Decode(FILE *hFile, DWORD imagetype)
{
	CxIOFile file(hFile);
	return Decode(&amp;file,imagetype);
}

Inside that next Decode function call is where the exception occurs. I have sent the detailed bug report via helpdesk email and also through the crash report dialog in ManyCam.</description>
		<content:encoded><![CDATA[<p>I have downloaded, installed, rebooted, and ran ManyCam 2.6.0.65 on my computer for the first time and I get an &#8220;Initialization Error&#8221;. I have opened up ManyCam in a debugger to step through the code and track down the bug. The error happens when ManyCam attempts to Load the ManyCam Logo using the CxImage library (ManyCam\Data\effect_data\logo\logo.png). In short, I think the CxImage library thinks that the image is a BMP instead of PNG and tries to read it as that. I am not sure why this happens, but I will try to briefly break it down.</p>
<p>First, this is called from ximaenc.cpp:<br />
CxImage::CxImage(const TCHAR * filename, DWORD imagetype)<br />
{<br />
	Startup(imagetype);<br />
	Load(filename,imagetype);<br />
}</p>
<p>Example of its usage in ManyCam code: CxImage LogoImage(L&#8221;&#8230;\\ManyCam\\Data\\effect_data\\logo\\logo.png&#8221;, CXIMAGE_FORMAT_UNKNOWN);</p>
<p>Following where the error occurs, we enter the Load function in ximaenc.cpp:<br />
bool CxImage::Load(const TCHAR * filename, DWORD imagetype);</p>
<p>Then we follow the code in the Decode function (inside Load):<br />
bOK = Decode(hFile,CXIMAGE_FORMAT_UNKNOWN);</p>
<p>There are several Decode functions, but this is the one that gets called:<br />
bool CxImage::Decode(FILE *hFile, DWORD imagetype)<br />
{<br />
	CxIOFile file(hFile);<br />
	return Decode(&amp;file,imagetype);<br />
}</p>
<p>Inside that next Decode function call is where the exception occurs. I have sent the detailed bug report via helpdesk email and also through the crash report dialog in ManyCam.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ManyCam 2.6.65 Released (Windows) by arah</title>
		<link>http://blog.manycam.com/manycam-2-6-65-released-windows/comment-page-1/#comment-12728</link>
		<dc:creator>arah</dc:creator>
		<pubDate>Mon, 13 Feb 2012 10:57:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.manycam.com/?p=287#comment-12728</guid>
		<description>Love ManyCam !!!!
Can you add custom resolution in the future ? I mean custom forced size where we can choose the resolution we want. 
Or at least more resolutions that stretch the image vertically a bit, to make the image look thinner/slimmer/longer ? 
Thank you !</description>
		<content:encoded><![CDATA[<p>Love ManyCam !!!!<br />
Can you add custom resolution in the future ? I mean custom forced size where we can choose the resolution we want.<br />
Or at least more resolutions that stretch the image vertically a bit, to make the image look thinner/slimmer/longer ?<br />
Thank you !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ManyCam 2.6.65 Released (Windows) by Thisguy</title>
		<link>http://blog.manycam.com/manycam-2-6-65-released-windows/comment-page-1/#comment-12702</link>
		<dc:creator>Thisguy</dc:creator>
		<pubDate>Wed, 08 Feb 2012 20:06:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.manycam.com/?p=287#comment-12702</guid>
		<description>Is there a way to get your video feed to be a picture-in-picture function? Like you&#039;re chatting on google hangouts and have your video within a picture? If not, can we expect this update or at least this feature for Mac OSX soon?</description>
		<content:encoded><![CDATA[<p>Is there a way to get your video feed to be a picture-in-picture function? Like you&#8217;re chatting on google hangouts and have your video within a picture? If not, can we expect this update or at least this feature for Mac OSX soon?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ManyCam 2.6.65 Released (Windows) by Amigofriends Community</title>
		<link>http://blog.manycam.com/manycam-2-6-65-released-windows/comment-page-1/#comment-12699</link>
		<dc:creator>Amigofriends Community</dc:creator>
		<pubDate>Wed, 08 Feb 2012 00:40:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.manycam.com/?p=287#comment-12699</guid>
		<description>Hello friends,
great player it works fine and fast.

I have an couple propositions

1. Dynamically changing the avatars by timer
2. Dynamically text in small fonts
3. MP4 not ever works fine

Thank you guys for this great tool:)</description>
		<content:encoded><![CDATA[<p>Hello friends,<br />
great player it works fine and fast.</p>
<p>I have an couple propositions</p>
<p>1. Dynamically changing the avatars by timer<br />
2. Dynamically text in small fonts<br />
3. MP4 not ever works fine</p>
<p>Thank you guys for this great tool:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ManyCam 2.6.65 Released (Windows) by DroidSeeker</title>
		<link>http://blog.manycam.com/manycam-2-6-65-released-windows/comment-page-1/#comment-12698</link>
		<dc:creator>DroidSeeker</dc:creator>
		<pubDate>Tue, 07 Feb 2012 04:07:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.manycam.com/?p=287#comment-12698</guid>
		<description>My ManyCam was unable to initializing.....someone help me :(</description>
		<content:encoded><![CDATA[<p>My ManyCam was unable to initializing&#8230;..someone help me <img src='http://blog.manycam.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ManyCam 2.6.65 Released (Windows) by Colin</title>
		<link>http://blog.manycam.com/manycam-2-6-65-released-windows/comment-page-1/#comment-12695</link>
		<dc:creator>Colin</dc:creator>
		<pubDate>Mon, 06 Feb 2012 21:55:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.manycam.com/?p=287#comment-12695</guid>
		<description>I tried to install manycam 2.6.65 but when it download it stops the older version from working and delets all the short cuts then manycam 2.6.65 never starts or even installs new short cuts! :( any help on this will be very much appreciated, thank you :D</description>
		<content:encoded><![CDATA[<p>I tried to install manycam 2.6.65 but when it download it stops the older version from working and delets all the short cuts then manycam 2.6.65 never starts or even installs new short cuts! <img src='http://blog.manycam.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  any help on this will be very much appreciated, thank you <img src='http://blog.manycam.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ManyCam 2.6.65 Released (Windows) by Cindy</title>
		<link>http://blog.manycam.com/manycam-2-6-65-released-windows/comment-page-1/#comment-12677</link>
		<dc:creator>Cindy</dc:creator>
		<pubDate>Thu, 02 Feb 2012 00:14:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.manycam.com/?p=287#comment-12677</guid>
		<description>Please someone tell me can I use manycam to send my webcam to multiple users on msn messenger at the same time??
If so then how..

Please help..</description>
		<content:encoded><![CDATA[<p>Please someone tell me can I use manycam to send my webcam to multiple users on msn messenger at the same time??<br />
If so then how..</p>
<p>Please help..</p>
]]></content:encoded>
	</item>
</channel>
</rss>

