<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jennifer Lin's Weblog</title>
	<atom:link href="http://jenniferlinca.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jenniferlinca.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 02 Oct 2011 03:44:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jenniferlinca.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Jennifer Lin's Weblog</title>
		<link>http://jenniferlinca.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jenniferlinca.wordpress.com/osd.xml" title="Jennifer Lin&#039;s Weblog" />
	<atom:link rel='hub' href='http://jenniferlinca.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Command line SFTP</title>
		<link>http://jenniferlinca.wordpress.com/2011/10/01/command-line-sftp/</link>
		<comments>http://jenniferlinca.wordpress.com/2011/10/01/command-line-sftp/#comments</comments>
		<pubDate>Sun, 02 Oct 2011 03:44:40 +0000</pubDate>
		<dc:creator>jennyca</dc:creator>
				<category><![CDATA[UNIX/LINUX]]></category>

		<guid isPermaLink="false">http://jenniferlinca.wordpress.com/?p=1559</guid>
		<description><![CDATA[http://kb.iu.edu/data/akqg.html You can use command line SFTP from your Unix account, or from your Mac OS X or Unix workstation. To start an SFTP session, at the command prompt, enter: sftp username@host For example, to connect to your dvader account on the host sithlord.org, you would enter: sftp dvader@sithlord.org Enter your password when prompted. Some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1559&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>http://kb.iu.edu/data/akqg.html</p>
<p>You can use command line SFTP from your Unix account, or from your Mac OS X or Unix workstation. To start an SFTP session, at the command prompt, enter:</p>
<p>sftp username@host</p>
<p>For example, to connect to your <code>dvader</code> account on the host <code>sithlord.org</code>, you would enter:</p>
<p>sftp dvader@sithlord.org</p>
<p>Enter your password when prompted.</p>
<p>Some standard commands for command line SFTP include:</p>
<table cellpadding="4">
<col />
<col />
<tbody>
<tr valign="top">
<td align="left"><code>cd</code></td>
<td align="left">Change the directory on the remote computer</td>
</tr>
<tr valign="top">
<td align="left"><code>chmod</code></td>
<td align="left">Change the permissions of files on the remote computer</td>
</tr>
<tr valign="top">
<td align="left"><code>chown</code></td>
<td align="left">Change the owner of files on the remote computer</td>
</tr>
<tr valign="top">
<td align="left"><code>dir</code> (or <code>ls</code>)</td>
<td align="left">List the files in the current directory on the remote computer</td>
</tr>
<tr valign="top">
<td align="left"><code>exit</code> (or <code>quit</code>)</td>
<td align="left">Close the connection to the remote computer and exit SFTP</td>
</tr>
<tr valign="top">
<td align="left"><code>get</code></td>
<td align="left">Copy a file from the remote computer to the local computer</td>
</tr>
<tr valign="top">
<td align="left"><code>help</code> (or <code>?</code>)</td>
<td align="left">Get help on the use of SFTP commands</td>
</tr>
<tr valign="top">
<td align="left"><code>lcd</code></td>
<td align="left">Change the directory on the local computer</td>
</tr>
<tr valign="top">
<td align="left"><code>lls</code></td>
<td align="left">See a list of the files in the current directory on the local computer</td>
</tr>
<tr valign="top">
<td align="left"><code>lmkdir</code></td>
<td align="left">Create a directory on the local computer</td>
</tr>
<tr valign="top">
<td align="left"><code>ln</code> (or <code>symlink</code>)</td>
<td align="left">Create a symbolic link for a file on the remote computer</td>
</tr>
<tr valign="top">
<td align="left"><code>lpwd</code></td>
<td align="left">Show the current directory (present working directory) on the local computer</td>
</tr>
<tr valign="top">
<td align="left"><code>lumask</code></td>
<td align="left">Change the local umask value</td>
</tr>
<tr valign="top">
<td align="left"><code>mkdir</code></td>
<td align="left">Create a directory on the remote computer</td>
</tr>
<tr valign="top">
<td align="left"><code>put</code></td>
<td align="left">Copy a file from the local computer to the remote computer</td>
</tr>
<tr valign="top">
<td align="left"><code>pwd</code></td>
<td align="left">Show the current directory (present working directory) on the remote computer</td>
</tr>
<tr valign="top">
<td align="left"><code>rename</code></td>
<td align="left">Rename a file on the remote host</td>
</tr>
<tr valign="top">
<td align="left"><code>rm</code></td>
<td align="left">Delete files from the remote computer</td>
</tr>
<tr valign="top">
<td align="left"><code>rmdir</code></td>
<td align="left">Remove a directory on the remote host (the directory usually has to be empty)</td>
</tr>
<tr valign="top">
<td align="left"><code>version</code></td>
<td align="left">Display the SFTP version</td>
</tr>
<tr valign="top">
<td align="left"><code> ! </code></td>
<td align="left">In Unix, exit to the shell prompt, where you can enter commands. Enter <code>exit</code> to get back to SFTP. If you follow <code> ! </code> with a command (e.g., <code>!pwd</code>), SFTP will execute the command without dropping you to the Unix prompt.</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jenniferlinca.wordpress.com/1559/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jenniferlinca.wordpress.com/1559/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jenniferlinca.wordpress.com/1559/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jenniferlinca.wordpress.com/1559/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jenniferlinca.wordpress.com/1559/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jenniferlinca.wordpress.com/1559/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jenniferlinca.wordpress.com/1559/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jenniferlinca.wordpress.com/1559/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jenniferlinca.wordpress.com/1559/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jenniferlinca.wordpress.com/1559/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jenniferlinca.wordpress.com/1559/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jenniferlinca.wordpress.com/1559/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jenniferlinca.wordpress.com/1559/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jenniferlinca.wordpress.com/1559/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1559&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jenniferlinca.wordpress.com/2011/10/01/command-line-sftp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e728fcceac535625565cbb3df3034e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jennyca</media:title>
		</media:content>
	</item>
		<item>
		<title>What Is FLAC?</title>
		<link>http://jenniferlinca.wordpress.com/2011/08/10/what-is-flac/</link>
		<comments>http://jenniferlinca.wordpress.com/2011/08/10/what-is-flac/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 04:18:48 +0000</pubDate>
		<dc:creator>jennyca</dc:creator>
				<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://jenniferlinca.wordpress.com/?p=1555</guid>
		<description><![CDATA[FLAC stands for Free Lossless Audio Codec, a leading compression technique that preserves original audio quality while reducing file size. FLAC is an open-source, royalty-free format that has been adopted widely for its many advantages in digital audio reproduction. Compression techniques take large files such as wave (.wav) files and reduce the data bits while [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1555&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>FLAC stands for <em>Free Lossless Audio Codec</em>, a leading compression technique that preserves original audio quality while reducing <a href="http://www.wisegeek.com/what-is-a-file-size.htm">file size</a>. FLAC is an open-source, royalty-free format that has been adopted widely for its many advantages in digital audio reproduction.</p>
<p>Compression techniques take large files such as wave (.wav) files and reduce the data bits while preserving as much of the audio landscape as possible. A well-known audio compression format is <a href="http://www.wisegeek.com/what-is-an-mp3.htm">MP3</a> (.mp3). MP3 files slim down bulky wave and compact disk (.cda) files to a fraction of their original size, making MP3 an ideal format for <a href="http://www.wisegeek.com/what-is-portable-audio.htm">portable audio</a> players. The MP3 format allows a vast library of songs to fill a very small storage footprint. However, there is a trade-off in audio quality.</p>
<p>FLAC surpasses MP3 quality by preserving the original soundscape in exact detail. The FLAC format reduces the original file size by roughly 30-60% with no loss of quality, hence it is a <em>lossless</em> format. This differs from the MP3 format which is a <em>lossy</em> format, or a format that loses quality in the conversion process.</p>
<p>One of the great strengths of FLAC is its very fast decoding time, or ability to stream even on modest hardware. Technical specifics in the framed architecture also allow it to be error resistant, in that each frame has the information it needs to decode itself. If a frame is corrupted, the data lost in the stream is a mere blip. This differs from other types of lossless formats where the entire stream would essentially become corrupted.</p>
<p>Another feature of FLAC is that it can handle up to eight channels of audio for preserving <a href="http://www.wisegeek.com/what-is-surround-sound.htm">surround sound</a> recordings. FLAC is also a good choice for archiving audio CDs, as one can always use the FLAC file later to convert to future formats. A further advantage of FLAC is that it supports <em>replaygain</em>, a technique for ensuring that recorded sound files play at the same volume level.</p>
<p>The only real disadvantage of FLAC files is that the compression ratio is not as steep as other <a href="http://www.wisegeek.com/what-is-a-codec.htm">codecs</a>. Files will be somewhat larger. However, with all of the advantages of FLAC, this is a happy trade off for many audiophiles.</p>
<p>Considering the falling prices of flash cards, portable players, and storage devices, the FLAC format will likely only gain support. FLAC files can play on <a href="http://www.wisegeek.com/what-is-an-ipod.htm">iPods</a>® with installation of the open source <a href="http://www.wisegeek.com/what-is-firmware.htm">firmware</a> replacement, Rockbox (though this might affect warranty). FLAC files can also be played on other portable devices and on home or auto compact disc players that support the FLAC format.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jenniferlinca.wordpress.com/1555/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jenniferlinca.wordpress.com/1555/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jenniferlinca.wordpress.com/1555/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jenniferlinca.wordpress.com/1555/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jenniferlinca.wordpress.com/1555/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jenniferlinca.wordpress.com/1555/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jenniferlinca.wordpress.com/1555/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jenniferlinca.wordpress.com/1555/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jenniferlinca.wordpress.com/1555/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jenniferlinca.wordpress.com/1555/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jenniferlinca.wordpress.com/1555/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jenniferlinca.wordpress.com/1555/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jenniferlinca.wordpress.com/1555/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jenniferlinca.wordpress.com/1555/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1555&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jenniferlinca.wordpress.com/2011/08/10/what-is-flac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e728fcceac535625565cbb3df3034e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jennyca</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://jenniferlinca.wordpress.com/2011/08/01/1551/</link>
		<comments>http://jenniferlinca.wordpress.com/2011/08/01/1551/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 19:40:23 +0000</pubDate>
		<dc:creator>jennyca</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://jenniferlinca.wordpress.com/?p=1551</guid>
		<description><![CDATA[Induction Heating System，均匀加热， 保温24小时后的米饭基本和刚煮的一样。 磁感应加热，锅体自加热，比传统电热盘加热受热更均匀。 其实一个电饭锅的好坏，有很多因素： 1. 加热方式（电磁加热还是电热盘加热） 2. 控制程序（各个厂家都有自己的流程，基本靠经验，当然近代表芯片控制的，那种传统机械控制的完全不谈） 3. 加热部位（底部加热还是全方位加热，高端型号甚至有顶部锅盖加热，避免蒸汽凝结的水滴在饭上影响最上面一层米饭的口感） 4. 内部涂层（目前电饭锅上用的最好的涂层是大金的，国内一些品牌的高端型号用的也是大金涂层） 5. 内锅厚度（内胆越厚越好，加热越均匀，去超市比较比较不同价位的内锅厚度就明白了） Zojirushi NP-HBC10 5-1/2-Cup Rice Cooker and Warmer with Induction Heating System, Stainless Steel Amazon price history http://www.camelcamelcamel.com/products?sq=induction+heating+system http://www.newegg.ca/Product/ProductList.aspx?Submit=ENE&#038;DEPA=0&#038;Order=BESTMATCH&#038;Description=rice+cooker+zojirushi &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1551&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Induction Heating System，均匀加热， 保温24小时后的米饭基本和刚煮的一样。</p>
<p>磁感应加热，锅体自加热，比传统电热盘加热受热更均匀。</p>
<p>其实一个电饭锅的好坏，有很多因素：<br />
1. 加热方式（电磁加热还是电热盘加热）<br />
2. 控制程序（各个厂家都有自己的流程，基本靠经验，当然近代表芯片控制的，那种传统机械控制的完全不谈）<br />
3. 加热部位（底部加热还是全方位加热，高端型号甚至有顶部锅盖加热，避免蒸汽凝结的水滴在饭上影响最上面一层米饭的口感）<br />
4. 内部涂层（目前电饭锅上用的最好的涂层是大金的，国内一些品牌的高端型号用的也是大金涂层）<br />
5. 内锅厚度（内胆越厚越好，加热越均匀，去超市比较比较不同价位的内锅厚度就明白了）</p>
<div style="width: 110px; text-align: center; background: #fff; border: 1px solid #aaa; margin: 3px; padding: 2px;">
<p style="margin: 10px 17.5px;"><a href="http://www.amazon.com/Zojirushi-NP-HBC10-Induction-Heating-Stainless/dp/B000MAKVLQ/ref=sr_1_3?ie=UTF8&#038;s=home-garden&#038;qid=1271381301&#038;sr=1-3" target="_blank"><img src="http://ecx.images-amazon.com/images/I/41%2BUfnFcIzL._SL75_.jpg" height="75" width="75" alt="Zojirushi NP-HBC10 5-1/2-Cup Rice Cooker and Warmer with Induction Heating System, Stainless Steel" style="padding:0;margin:0;border:none;" /></a></p>
<p style="font-size: 10px;"><a href="http://www.amazon.com/Zojirushi-NP-HBC10-Induction-Heating-Stainless/dp/B000MAKVLQ/ref=sr_1_3?ie=UTF8&#038;s=home-garden&#038;qid=1271381301&#038;sr=1-3" target="_blank">Zojirushi NP-HBC10 5-1/2-Cup Rice Cooker and Warmer with Induction Heating System, Stainless Steel</a></p>
<p style="font-size: 10px;">
<p style="margin: 10px 10px;"><a href="http://www.amazon.com/Zojirushi-NP-HBC10-Induction-Heating-Stainless/dp/B000MAKVLQ/ref=sr_1_3?ie=UTF8&#038;s=home-garden&#038;qid=1271381301&#038;sr=1-3" target="_blank"><img alt="Buy from Amazon" src="http://ecx.images-amazon.com/images/G/01/buttons/buy-from-tan.gif"" style="padding:0;margin:0;border:none;" /></a></p>
</p></div>
<div style="width: 110px; text-align: center; background: #fff; border: 1px solid #aaa; margin: 3px; padding: 2px;">
<p style="margin: 10px 17.5px;"><a href="http://www.amazon.com/Zojirushi-NS-TGC18-10-Cup-Cooker-Stainless/dp/B000M3W49A/ref=sr_1_12?ie=UTF8&#038;s=home-garden&#038;qid=1270579801&#038;sr=1-12" target="_blank"><img src="http://ecx.images-amazon.com/images/I/41Q6ptx5ZLL._SL75_.jpg" height="75" width="75" alt="Zojirushi NS-TGC18 10-Cup Micom Rice Cooker and Warmer, Stainless Steel" style="padding:0;margin:0;border:none;" /></a></p>
<p style="font-size: 10px;"><a href="http://www.amazon.com/Zojirushi-NS-TGC18-10-Cup-Cooker-Stainless/dp/B000M3W49A/ref=sr_1_12?ie=UTF8&#038;s=home-garden&#038;qid=1270579801&#038;sr=1-12" target="_blank">Zojirushi NS-TGC18 10-Cup Micom Rice Cooker and Warmer, Stainless Steel</a></p>
<p style="font-size: 10px;">
<p style="margin: 10px 10px;"><a href="http://www.amazon.com/Zojirushi-NS-TGC18-10-Cup-Cooker-Stainless/dp/B000M3W49A/ref=sr_1_12?ie=UTF8&#038;s=home-garden&#038;qid=1270579801&#038;sr=1-12" target="_blank"><img alt="Buy from Amazon" src="http://ecx.images-amazon.com/images/G/01/buttons/buy-from-tan.gif"" style="padding:0;margin:0;border:none;" /></a></p>
</p></div>
<p>Amazon price history</p>
<p>http://www.camelcamelcamel.com/products?sq=induction+heating+system</p>
<p>http://www.newegg.ca/Product/ProductList.aspx?Submit=ENE&#038;DEPA=0&#038;Order=BESTMATCH&#038;Description=rice+cooker+zojirushi</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jenniferlinca.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jenniferlinca.wordpress.com/1551/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jenniferlinca.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jenniferlinca.wordpress.com/1551/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jenniferlinca.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jenniferlinca.wordpress.com/1551/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jenniferlinca.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jenniferlinca.wordpress.com/1551/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jenniferlinca.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jenniferlinca.wordpress.com/1551/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jenniferlinca.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jenniferlinca.wordpress.com/1551/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jenniferlinca.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jenniferlinca.wordpress.com/1551/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1551&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jenniferlinca.wordpress.com/2011/08/01/1551/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e728fcceac535625565cbb3df3034e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jennyca</media:title>
		</media:content>
	</item>
		<item>
		<title>NRG (file format)</title>
		<link>http://jenniferlinca.wordpress.com/2011/08/01/nrg-file-format/</link>
		<comments>http://jenniferlinca.wordpress.com/2011/08/01/nrg-file-format/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 19:34:43 +0000</pubDate>
		<dc:creator>jennyca</dc:creator>
				<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://jenniferlinca.wordpress.com/?p=1549</guid>
		<description><![CDATA[http://en.wikipedia.org/wiki/NRG_%28file_format%29 A .nrg file is a proprietary CD image file format used by Nero Burning ROM, a utility suite made by Nero AG, to create and burn ISO 9660 CD images. Other than Nero Burning ROM, a variety of software titles can use these image files. For example, Power ISO, Alcohol 120%, or Daemon Tools [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1549&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>http://en.wikipedia.org/wiki/NRG_%28file_format%29</p>
<p>A <strong>.nrg</strong> file is a proprietary <a title="Compact Disc" href="http://en.wikipedia.org/wiki/Compact_Disc">CD</a> image file format used by <a title="Nero Burning ROM" href="http://en.wikipedia.org/wiki/Nero_Burning_ROM">Nero Burning ROM</a>, a utility suite made by <a title="Nero AG" href="http://en.wikipedia.org/wiki/Nero_AG">Nero AG</a>, to create and burn <a title="ISO 9660" href="http://en.wikipedia.org/wiki/ISO_9660">ISO 9660</a> CD images.</p>
<p>Other than Nero Burning ROM, a variety of software titles can use these image files. For example, <a title="Power ISO" href="http://en.wikipedia.org/wiki/Power_ISO">Power ISO</a>, <a title="Alcohol 120%" href="http://en.wikipedia.org/wiki/Alcohol_120%25">Alcohol 120%</a>, or <a title="Daemon Tools" href="http://en.wikipedia.org/wiki/Daemon_Tools">Daemon Tools</a> can <a title="Mount (computing)" href="http://en.wikipedia.org/wiki/Mount_%28computing%29">mount</a> NRG files onto <a title="Virtual drive" href="http://en.wikipedia.org/wiki/Virtual_drive">virtual drives</a> for reading.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jenniferlinca.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jenniferlinca.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jenniferlinca.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jenniferlinca.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jenniferlinca.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jenniferlinca.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jenniferlinca.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jenniferlinca.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jenniferlinca.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jenniferlinca.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jenniferlinca.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jenniferlinca.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jenniferlinca.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jenniferlinca.wordpress.com/1549/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1549&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jenniferlinca.wordpress.com/2011/08/01/nrg-file-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e728fcceac535625565cbb3df3034e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jennyca</media:title>
		</media:content>
	</item>
		<item>
		<title>关于电影格式的区分</title>
		<link>http://jenniferlinca.wordpress.com/2011/08/01/%e5%85%b3%e4%ba%8e%e7%94%b5%e5%bd%b1%e6%a0%bc%e5%bc%8f%e7%9a%84%e5%8c%ba%e5%88%86/</link>
		<comments>http://jenniferlinca.wordpress.com/2011/08/01/%e5%85%b3%e4%ba%8e%e7%94%b5%e5%bd%b1%e6%a0%bc%e5%bc%8f%e7%9a%84%e5%8c%ba%e5%88%86/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 19:26:17 +0000</pubDate>
		<dc:creator>jennyca</dc:creator>
		
		<guid isPermaLink="false">http://jenniferlinca.wordpress.com/?p=1545</guid>
		<description><![CDATA[http://bookooo.cn/thread-75211-1.html 1.CAM（枪版）——珍爱生命，远离枪版 CAM 通常是用数码摄像机从电影院盗录。有时会使用小三角架，但大多数时候不可能使用，所以摄像机会抖动。因此我们看到画面通常偏暗人物常常会失真，下方的字幕 时常会出现倾斜。 由于声音是从摄像机自带的话筒录制，所以经常会录到观众的笑声等声音。因为这些因素，图象和声音质量通常都很差。 举例说明：Journey.To.The.Center.Of.The.Earth.CAM.XViD-CAMERA（地心游记3D枪版） 2.TS——只比枪版好一点 TS 与CAM版的标准是相同的。但它使用的是外置音源（一般是影院座椅上为听力不好的人设的耳机孔）这个音源不能保证是好的音源，因为受到很多背景噪音的干 扰。TS是在空的影院或是用专业摄像机在投影室录制，所以图象质量可能比CAM好。但画面的起伏很大。常出现的有一般TS版和经过修复清晰TS版。 举例说明：Iron.Man.PROPER.TS.XviD-iLG（钢铁侠TS版） 3.TC——基本也可以忽略 TC使用电视电影机从胶片直接数字拷贝。画面质量还不错,但亮度不足，有些昏暗。很多时候制作TC使用的音源来自TS，因此音质很差，但画面质量远好过TS。如果不是太讲究的话TC版还是不错的选择。 举例说明：Madagascar.2005.TC.XviD.AC3.avi（马达加斯加TC版） 4.DVDSCR——最差也要看这个 预览版的或者是测试版的DVD，非正式出版的版本。从预览版 DVD 中获取，通过mpeg-4技术进行高质量压缩的视频格式。能比DVDRip早发布，但画质稍差。（经常有一些不在黑边里在屏幕下方滚动的消息，包含版权和 反盗版电话号码 ，会影响观看。）如果没有严格的划分它的画质应与TC版差不多。 举例说明：Quantum.of.Solace.REPACK.DVDSCR.XviD-COALiTiON.avi（007大破量子危机DVDSCR版） 5.DVDRIP——比较理想的版本 DVDRIP:是从最终版的DVD转制。质量应该是最好的。将DVD的视频、音频、字幕剥离出来，再经过压缩或者其他处理，然后重新合成成多媒体文件。一般来说，DVDrip由影音文件(后缀为avi)和字幕文件组成。 举例说明： Pineapple.Express.2008.DVDRip.XviD-ARROW.avi（菠萝快车DVDRip版） 6.HR-HDTV——不错的选择 HR-HDTV是用DivX/XviD/x264等MPEG4压缩技术对HDTV的视频图像进行高质量压缩,然后将视频、音频部分封装成一个.avi或.mkv文件，最后再加上外挂的字幕文件而形成的视频格式。 画面清晰度更高。 7.HDRIP——BD之下，万人之上 HDRIP=HD-DVD Rip，即HD-DVD高清转制，效果好于一般的高清转制。 举例说明：Stardust.2007.HDRip.x264.a720.AC3-C@SiLU.mkv（星尘HDrip版） 8.BDRIP——高清之下，普通清晰度的王者 BDrip = Blue-ray Disc Rip，即蓝光高清转制，效果比HDRIP还要好。 举例说明：Awake.2007.BDRip.X264-TLF.mkv（夺命手术BDrip版） 9.R5——心急的您可以看这个 R5一般大都是俄罗斯5区版，由于北美大片在俄罗斯发行的语种经常配音为俄罗斯语，因此网络上会出现采用R5的视频＋枪版TS的英语原声音频＝合成版本（所以音效差），当然，也经常有未配音过音效好的R5，遇到合成版本，在发布时会特别注明音效。 举例说明：Get.Smart.R5.LINE.XViD-mVs.avi（糊涂侦探R5版） 10.AVI——廉颇老矣 AVI 英文全称为Audio Video Interleaved，即音频视频交错格式。是将语音和影像同步组合在一起的文件格式。它对视频文件采用了一种有损压缩方式，但压缩比较高，因此尽管面 面质量不是太好，但其应用范围仍然非常广泛。（就目前来看，随着观众对电影品质要求的提升，AVI格式越来越力不从心了） 举例说明：Breaking.News.2004.DVDRip.XViD-TLF.avi（大事件avi格式版本） 11.MKV——后起之秀 一种后缀为MKV的视频文件频频出现在网络上，它可在一个文件中集成多条不同类型的音轨和字幕轨，而且其视频编码的自由度也非常大，可以是常见的 DivX、 XviD、3IVX，甚至可以是RealVideo、QuickTime、WMV这类流式视频。实际上，它是一种全称为Matroska的新型多媒体封装 格式，这种先进的、开放的封装格式已经给我们展示非常好的应用前景，甚至有人把它看成是AVI的替代者！ [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1545&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>http://bookooo.cn/thread-75211-1.html</p>
<p>1.CAM（枪版）——珍爱生命，远离枪版<br />
CAM 通常是用数码摄像机从电影院盗录。有时会使用小三角架，但大多数时候不可能使用，所以摄像机会抖动。因此我们看到画面通常偏暗人物常常会失真，下方的字幕 时常会出现倾斜。 由于声音是从摄像机自带的话筒录制，所以经常会录到观众的笑声等声音。因为这些因素，图象和声音质量通常都很差。<br />
举例说明：Journey.To.The.Center.Of.The.Earth.CAM.XViD-CAMERA（地心游记3D枪版）</p>
<p>2.TS——只比枪版好一点<br />
TS 与CAM版的标准是相同的。但它使用的是外置音源（一般是影院座椅上为听力不好的人设的耳机孔）这个音源不能保证是好的音源，因为受到很多背景噪音的干 扰。TS是在空的影院或是用专业摄像机在投影室录制，所以图象质量可能比CAM好。但画面的起伏很大。常出现的有一般TS版和经过修复清晰TS版。<br />
举例说明：Iron.Man.PROPER.TS.XviD-iLG（钢铁侠TS版）</p>
<p>3.TC——基本也可以忽略<br />
TC使用电视电影机从胶片直接数字拷贝。画面质量还不错,但亮度不足，有些昏暗。很多时候制作TC使用的音源来自TS，因此音质很差，但画面质量远好过TS。如果不是太讲究的话TC版还是不错的选择。<br />
举例说明：Madagascar.2005.TC.XviD.AC3.avi（马达加斯加TC版）</p>
<p>4.DVDSCR——最差也要看这个<br />
预览版的或者是测试版的DVD，非正式出版的版本。从预览版 DVD 中获取，通过mpeg-4技术进行高质量压缩的视频格式。能比DVDRip早发布，但画质稍差。（经常有一些不在黑边里在屏幕下方滚动的消息，包含版权和 反盗版电话号码 ，会影响观看。）如果没有严格的划分它的画质应与TC版差不多。<br />
举例说明：Quantum.of.Solace.REPACK.DVDSCR.XviD-COALiTiON.avi（007大破量子危机DVDSCR版）</p>
<p>5.DVDRIP——比较理想的版本<br />
DVDRIP:是从最终版的DVD转制。质量应该是最好的。将DVD的视频、音频、字幕剥离出来，再经过压缩或者其他处理，然后重新合成成多媒体文件。一般来说，DVDrip由影音文件(后缀为avi)和字幕文件组成。<br />
举例说明： Pineapple.Express.2008.DVDRip.XviD-ARROW.avi（菠萝快车DVDRip版）</p>
<p>6.HR-HDTV——不错的选择<br />
HR-HDTV是用DivX/XviD/x264等MPEG4压缩技术对HDTV的视频图像进行高质量压缩,然后将视频、音频部分封装成一个.avi或.mkv文件，最后再加上外挂的字幕文件而形成的视频格式。 画面清晰度更高。</p>
<p>7.HDRIP——BD之下，万人之上<br />
HDRIP=HD-DVD Rip，即HD-DVD高清转制，效果好于一般的高清转制。<br />
举例说明：<a href="mailto:Stardust.2007.HDRip.x264.a720.AC3-C@SiLU.mkv">Stardust.2007.HDRip.x264.a720.AC3-C@SiLU.mkv</a>（星尘HDrip版）</p>
<p>8.BDRIP——高清之下，普通清晰度的王者<br />
BDrip = Blue-ray Disc Rip，即蓝光高清转制，效果比HDRIP还要好。<br />
举例说明：Awake.2007.BDRip.X264-TLF.mkv（夺命手术BDrip版）</p>
<p>9.R5——心急的您可以看这个<br />
R5一般大都是俄罗斯5区版，由于北美大片在俄罗斯发行的语种经常配音为俄罗斯语，因此网络上会出现采用R5的视频＋枪版TS的英语原声音频＝合成版本（所以音效差），当然，也经常有未配音过音效好的R5，遇到合成版本，在发布时会特别注明音效。<br />
举例说明：Get.Smart.R5.LINE.XViD-mVs.avi（糊涂侦探R5版）</p>
<p>10.AVI——廉颇老矣<br />
AVI 英文全称为Audio Video Interleaved，即音频视频交错格式。是将语音和影像同步组合在一起的文件格式。它对视频文件采用了一种有损压缩方式，但压缩比较高，因此尽管面 面质量不是太好，但其应用范围仍然非常广泛。（就目前来看，随着观众对电影品质要求的提升，AVI格式越来越力不从心了）<br />
举例说明：Breaking.News.2004.DVDRip.XViD-TLF.avi（大事件avi格式版本）</p>
<p>11.MKV——后起之秀<br />
一种后缀为MKV的视频文件频频出现在网络上，它可在一个文件中集成多条不同类型的音轨和字幕轨，而且其视频编码的自由度也非常大，可以是常见的 DivX、 XviD、3IVX，甚至可以是RealVideo、QuickTime、WMV这类流式视频。实际上，它是一种全称为Matroska的新型多媒体封装 格式，这种先进的、开放的封装格式已经给我们展示非常好的应用前景，甚至有人把它看成是AVI的替代者！<br />
举例说明：Children.Of.Man.2006.BDRE.1080p.x264.AC3-SiLUHD.mkv（人类之子MKV封装版本）</p>
<p>12.MOV——高清预告片首选<br />
MOV即QuickTime影片格式，它是Apple公司开发的一种音频、视频文件格式，用于存储常用数字媒体类型，如音频和视频。当选择 QuickTime （*.mov）作为“保存类型”时，动画将保存为 .mov 文件。<br />
现在MOV格式常常被用来制作高清电影预告片，可以达到1080P的所谓全高清标准。<br />
举例说明：terminatorsalvation-tlr1_h1080p.mov（终结者4高清预告片）</p>
<p>13.XviD——常见标准<br />
最常用的MPEG-4视频压缩编码格式，我们下载的很多电影基于这种编码。<br />
举例说明：Connected.2008.DVDRip.XviD-BiEN.avi（保持通话，xvid编码）</p>
<p>14.X264——业界先锋<br />
x264 是一种免费的、具有更优秀算法的H.264/MPEG-4 AVC视频压缩编码格式。它同xvid一样都是开源项目，但x264是采用H.264标准的，而xvid是采用MPEG-4早期标准的。由于H.264是 2003年正式发布的最新的视频编码标准，因此，在通常情况下，x264压缩出的视频文件在相同质量下要比xvid压缩出的文件要小，或者也可以说，在相 同体积下比xvid压缩出的文件质量要好。<br />
举例说明：WALL.E.2008.BDRip.X264-TLF.mkv（机器人总动员，X264编码）</p>
<p>15.IMAX——所谓巨幕<br />
有的电影会标注“IMAX”版本。那什么是IMAX呢？<br />
IMAX（即 Image Maximum的缩写，意为“最大影像”，汉语发音可读作“艾麦克斯”)是一种能够放映比传统胶片更大和更高解像度的电影放映系统。整套系统包括以 IMAX规格摄制的影片拷贝、放映机、音响系统、银幕等。标准的IMAX银幕为22米宽、16米高，但完全可以在更大的银幕播放，而且迄今为止不断有更大 的IMAX银幕出现。 今年的《功夫熊猫》就同时具有普通和IMAX两种版本。<br />
举例说明：The.Dark.Knight.2008.IMAX.BDRip.X264-TLF.mkv（蝙蝠侠黑暗骑士IMAX版本）</p>
<p>16.MP4——比较尴尬<br />
有的电影是MP4格式的，这代表着它采用了MPEG-4视频压缩编码，但是具体是哪一种编码格式并不确定，一般来说是DIVX或者XVID。总之感觉是个很鸡肋的格式，一般是用在掌上便携设备上，电脑用户不推荐。<br />
举例说明：Friends.S01E01.The.One.Where.Monica.Gets.A.New.Roommate.iPod-mp4.chs-en.mp4（老友记第一季第一集，ipd专用版本，mp4格式）</p>
<p>17.TS——此TS非彼TS<br />
这个TS代表的是文件后缀名为.TS的高清格式。这种格式的优点在于对硬件的要求不高，即使是1080P的电影这两年的家用电脑都可以轻松播放，不过缺点同样明显——超大的文件体积，动辄三四十个G。<br />
举例说明：<a href="mailto:Silent.Hill.Blu-ray.REMUX.MPEG2.1080P.LPCM.DTS.Orbitlee@Silu.ts">Silent.Hill.Blu-ray.REMUX.MPEG2.1080P.LPCM.DTS.Orbitlee@Silu.ts</a>（寂静岭TS版，9碟，完全大小37.9G，单碟4.3G）</p>
<p>18.PROPER——竞争的结果<br />
根据发布规则，最先发布Telesync (TS)的组织赢得(TS发布的)比赛。但是，如果这个发布版本质量很差，同时另一组织有另一TS版本(或质量更好的同一片源)，那么标记PROPER被 加到目录上以避免重复。PROPER是一个最主观的标记，很多人会争论是否PROPER比原始发布版本好。很多发布组织只不过因为输掉了发布比赛而发布 PROPER。发布PROPER的原因应该总是包含在NFO文件里。<br />
举例说明：Pirates.Of.The.Caribbean.At.Worlds.End.PROPER.DVDRip.XviD-HooKah-CD1.avi（加勒比海盗3世界尽头proper版本）</p>
<p>19.Director&#8217;s Cut——导演剪辑版<br />
导演剪辑版，主要用于碟片发行中，因为出于商业的、票房的原因，在影院上映的影片未必是导演最终剪辑后的版本。故而碟商们推出了所谓导演剪辑版，与影院版 有所区别，也是为了满足一部分追求“原汁原味”的观众的要求，同时多了一条生财之道。导演剪辑版与影院版，有的差别较大（无论是放映时间还是镜头），有的 则差别不大，因人因片而异。至于艺术成就，更是很难笼统而言。因为有人看重导演的主动权，但导演剪辑版也可能不如影院版更精炼，见仁见智而已。<br />
举例说明：Saw.Director&#8217;s.Cut.HD.DVD.REMUX.VC1.1080p.DTS-HD.Silu.ts（电锯惊魂导演剪辑版）</p>
<p>20.Unrated——未分级版<br />
也就是没有根据不同观众对象剪辑，比较完整、原始的版本。（俗称未剪版）。<br />
指的是没有在MPAA（美国电影协会）审查的电影。现在指的是一般的电影的最初为剪辑版本。一般包括大量暴力色情粗口的。是导演最初剪出来的片子。经MPAA审了片子之后就会定级。诸如。R、NC-17、PG13、PG、G （越往后越合家欢）等。<br />
举例说明：American.Psycho.Unrated.Version.2000.DVDrip.XviD.AC3.iNT.avi（美国狂魔未分级版）</p>
<p>21.LIMITED<br />
LIMITED电影指该电影只在有限的电影院放映，通常少于250家。通常较小的电影（比如艺术电影）的发行是LIMETED。<br />
举例说明：Eternal.2004.LiMiTED.DVDrip.XviD-ShysteR.avi（邪恶的永生limited版）</p>
<p>22.TVRIP——TV转制<br />
所谓TVRip是从电视(最好是从数码有线电视/卫星电视捕捉)转制的电视剧及接收卫星接收到的节目，然后通过电视卡进行捕捉，压缩成文件，我们看的很多综艺及体育节目都是TVRip。有些电视剧也会使用TVRip的方式进行发布。</p>
<p>23.　720P<br />
720P 是美国电影电视工程师协会(SMPTE)制定的最高等级高清数字电视的格式标准，有效显示格式为：1280×720.SMPTE(美国电影电视工程协会) 将数字高清信号数字电视扫描线的不同分为1080P、1080I、720P(i是interlace,隔行的意思，p是Progressive,逐行的意 思)。720P是一种在逐行扫描下达到1280×720的分辨率的显示格式。是数字电影成像技术和计算机技术的融合。这是高清视频的最低标准。<br />
举例说明：[email=Le.Fabuleux.Destin.d]Le.Fabuleux.Destin.d&#8217;Amé<a href="mailto:lie.Poulain.2001.Blu-ray.720p.x264.DD51-HiS@SiLUHD.mkv">lie.Poulain.2001.Blu-ray.720p.x264.DD51-HiS@SiLUHD.mkv</a>[/email]（天使爱美丽720P）</p>
<p>24.　1080I<br />
即1080线隔行扫描，分辨率为1920×1080，仅次于1080P<br />
举例说明：close.encounters.of.the.third.kind.1080i.disk1.ts（第三类接触1080i版本）</p>
<p>25.　1080P<br />
1080P是美国电影电视工程师协会（SMPTE）制定的最高等级高清数字电视的格式标准，有效显示格式为：1920×1080，像素数达到207．36万。<br />
1080P带来的高画质给消费者带来的是真正的家庭影院的视听享受，由于它向下全面兼容其它高清格式，通用性非常强，保证了在未来十几年的时间里产品不会过时，具有很好的超前性。随着1080P片源的不断涌现，1080P产品的优势已经显现出来。<br />
举例说明：<a href="mailto:Resident.Evil.HD.DVD.REMUX.1080p.MPEG-2.DTS-HD.F@Silu.disk1.ts">Resident.Evil.HD.DVD.REMUX.1080p.MPEG-2.DTS-HD.F@Silu.disk1.ts</a>（生化危机1，1080P版本）</p>
<p>26.　REPACK——重新打包版<br />
如果发布组织发布了一个坏的版本，他们会发布REPACK来解决这些问题。<br />
举例说明：The.Eye.2008.REPACK.BDRip.X264-TLF-cd1.mkv（美版见鬼，repack版本）</p>
<p>27.　REMUX——无损版<br />
Remux的意思是无损的提取出HD-DVD 和 BluRay-DVD里面的视频数据和音频数据，封装到我们熟悉的TS或者AVI文件中。<br />
HD- DVD和 Blu-Ray Rip、Re都是把原始的高清数据进行压缩和重编码，从1080P压缩到720P, 20G左右的片子压缩到了4.3G. 可在19、20、22寸的宽屏上看，但是上到大尺寸高分辩率的显示设备就能明显的看出区别了。大屏幕的朋友还是建议购买原始编码的Remux。<br />
举例说明：<a href="mailto:The.Patriot.Extended.Cut.Blu-ray.REMUX.H264.1080P.DTS.LPCM.DD51.Fanxy@Silu.DISK1.ts">The.Patriot.Extended.Cut.Blu-ray.REMUX.H264.1080P.DTS.LPCM.DD51.Fanxy@Silu.DISK1.ts</a>（爱国者remux版本）</p>
<p>28. 　Extended——加长版<br />
情形和导演剪辑版类似，很多的加长版是用来圈钱的,有的干脆就是把花絮里的删除段落直接加进去,也就长了几分钟而已。也有很厚道的,比如指环王的加长版,一部就加长了近50分钟,肯定对剧情有影响的。<br />
举例说明：The.Lord.Of.The.Rings-Return.Of.The.King.EXTENDED.EDITION.DVDRip.XViD-ALLiANCE.avi（指环王3：王者归来加长版）</p>
<p>29.　AC3<br />
常见的电影音频格式。<br />
举例说明：Crank.2006.DVDRip.XviD.AC3-lsqh2002.avi（怒火攻心，音频格式AC3）</p>
<p>30.　DD5.1——杜比5.1声道<br />
5.1声道就是使用5个喇叭和1个超低音扬声器来达到一种身临其境感觉的音乐播放方式，由杜比公司开发。一般来讲，只有高清视频才采用这种音轨。<br />
举例说明：The.Messenger.The.Story.of.Joan.of.Arc.Blu-ray.RE.1080.x264.DD51.SiLUHD-001.mkv（圣女贞德，音频部分DD5.1）</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jenniferlinca.wordpress.com/1545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jenniferlinca.wordpress.com/1545/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jenniferlinca.wordpress.com/1545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jenniferlinca.wordpress.com/1545/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jenniferlinca.wordpress.com/1545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jenniferlinca.wordpress.com/1545/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jenniferlinca.wordpress.com/1545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jenniferlinca.wordpress.com/1545/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jenniferlinca.wordpress.com/1545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jenniferlinca.wordpress.com/1545/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jenniferlinca.wordpress.com/1545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jenniferlinca.wordpress.com/1545/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jenniferlinca.wordpress.com/1545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jenniferlinca.wordpress.com/1545/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1545&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jenniferlinca.wordpress.com/2011/08/01/%e5%85%b3%e4%ba%8e%e7%94%b5%e5%bd%b1%e6%a0%bc%e5%bc%8f%e7%9a%84%e5%8c%ba%e5%88%86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e728fcceac535625565cbb3df3034e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jennyca</media:title>
		</media:content>
	</item>
		<item>
		<title>Business Letter Format</title>
		<link>http://jenniferlinca.wordpress.com/2011/08/01/business-letter-format/</link>
		<comments>http://jenniferlinca.wordpress.com/2011/08/01/business-letter-format/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 17:02:17 +0000</pubDate>
		<dc:creator>jennyca</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://jenniferlinca.wordpress.com/?p=1537</guid>
		<description><![CDATA[Standard Letter L 140 &#8211; 245 mm W 90 &#8211; 156 mm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1537&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[
<a href='http://jenniferlinca.wordpress.com/2011/08/01/business-letter-format/letter-format/' title='letter-format'><img width="116" height="150" src="http://jenniferlinca.files.wordpress.com/2011/08/letter-format.jpg?w=116&#038;h=150" class="attachment-thumbnail" alt="letter-format" title="letter-format" /></a>
<a href='http://jenniferlinca.wordpress.com/2011/08/01/business-letter-format/business_letter_format_block_form-700/' title='business_letter_format_block_form-700'><img width="116" height="150" src="http://jenniferlinca.files.wordpress.com/2011/08/business_letter_format_block_form-700.jpg?w=116&#038;h=150" class="attachment-thumbnail" alt="business_letter_format_block_form-700" title="business_letter_format_block_form-700" /></a>

<p><strong>Standard Letter</strong></p>
<p>L 140 &#8211; 245 mm</p>
<p>W 90 &#8211; 156 mm</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jenniferlinca.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jenniferlinca.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jenniferlinca.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jenniferlinca.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jenniferlinca.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jenniferlinca.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jenniferlinca.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jenniferlinca.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jenniferlinca.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jenniferlinca.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jenniferlinca.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jenniferlinca.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jenniferlinca.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jenniferlinca.wordpress.com/1537/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1537&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jenniferlinca.wordpress.com/2011/08/01/business-letter-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e728fcceac535625565cbb3df3034e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jennyca</media:title>
		</media:content>

		<media:content url="http://jenniferlinca.files.wordpress.com/2011/08/letter-format.jpg?w=116" medium="image">
			<media:title type="html">letter-format</media:title>
		</media:content>

		<media:content url="http://jenniferlinca.files.wordpress.com/2011/08/business_letter_format_block_form-700.jpg?w=116" medium="image">
			<media:title type="html">business_letter_format_block_form-700</media:title>
		</media:content>
	</item>
		<item>
		<title>Firefox bookmarks</title>
		<link>http://jenniferlinca.wordpress.com/2011/07/28/firefox-bookmarks/</link>
		<comments>http://jenniferlinca.wordpress.com/2011/07/28/firefox-bookmarks/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 03:28:24 +0000</pubDate>
		<dc:creator>jennyca</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jenniferlinca.wordpress.com/?p=1534</guid>
		<description><![CDATA[C:\Documents and Settings\(name of the user)\Application Data\Mozilla\Firefox\Profiles\(name of the profile)\bookmarkbackups\bookmarks-2011-07-28.json Bookmarks =&#62; Show All Bookmarks =&#62; Import and Backup<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1534&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>C:\Documents and Settings\(name of the user)\Application Data\Mozilla\Firefox\Profiles\(name of the profile)\bookmarkbackups\bookmarks-2011-07-28.json<br />
Bookmarks =&gt; Show All Bookmarks =&gt; Import and Backup</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jenniferlinca.wordpress.com/1534/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jenniferlinca.wordpress.com/1534/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jenniferlinca.wordpress.com/1534/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jenniferlinca.wordpress.com/1534/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jenniferlinca.wordpress.com/1534/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jenniferlinca.wordpress.com/1534/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jenniferlinca.wordpress.com/1534/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jenniferlinca.wordpress.com/1534/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jenniferlinca.wordpress.com/1534/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jenniferlinca.wordpress.com/1534/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jenniferlinca.wordpress.com/1534/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jenniferlinca.wordpress.com/1534/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jenniferlinca.wordpress.com/1534/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jenniferlinca.wordpress.com/1534/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1534&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jenniferlinca.wordpress.com/2011/07/28/firefox-bookmarks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e728fcceac535625565cbb3df3034e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jennyca</media:title>
		</media:content>
	</item>
		<item>
		<title>Inspirational video</title>
		<link>http://jenniferlinca.wordpress.com/2011/03/30/inspirational-video/</link>
		<comments>http://jenniferlinca.wordpress.com/2011/03/30/inspirational-video/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 16:11:36 +0000</pubDate>
		<dc:creator>jennyca</dc:creator>
				<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://jenniferlinca.wordpress.com/?p=1521</guid>
		<description><![CDATA[If you never failed, you never lived.  (Life = Risk) Sometimes our work feels small and insignificant. But remember, a small ripple can gain momentum &#8230; and build a current that is insurmountable. Begin with one small step. Don&#8217;t let others stand in your way. Walk your own path. Some may laugh. So what. Many [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1521&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#ff0000;">If you never failed, you never lived.  (Life = Risk)</span></p>
<p>Sometimes our work feels small and insignificant. But remember, a small ripple can gain momentum &#8230;<br />
and build a current that is insurmountable.</p>
<p><span style="color:#ff0000;">Begin with one small step. Don&#8217;t let others stand in your way. Walk your own path.</span></p>
<p><span style="color:#000000;">Some may laugh. So what. Many will follow. </span><span style="color:#ff0000;">Don&#8217;t ever give up. </span></p>
<p><span style="color:#ff0000;">Success seems to be largely a matter of HANGING ON after others have let go. &#8211; William Feather</span></p>
<p>Fear keeps people small. <span style="color:#ff0000;">Run towards your fears. Embrace them.</span></p>
<p><span style="color:#ff0000;">On the other side of your greatest fears lives your greatest life. &#8211; Robin Sharma</span></p>
<p>Get out of the stands. Get on the court. <span style="color:#ff0000;">Play the game of life. </span><br />
<span style="color:#ff0000;">Take risks. Leap, and the net will appear.</span></p>
<p>Be positive.<br />
<span style="color:#ff0000;">What you think, is who you become.</span></p>
<p>Dream. Dream big.<br />
<span style="color:#ff0000;">Feel it. Believe it. Achieve it. </span><br />
<span style="color:#ff0000;">Whatever your dreams are &#8230;</span><br />
<span style="color:#ff0000;">go for it!</span><br />
You will inspire others.</p>
<p>Extend a hand.<br />
Care. Be kind.</p>
<p>When someone does something good, applaud! You will make two people happy. &#8211; Samuel Goldwyn</p>
<p><span style="color:#ff0000;">Be a positive role model.</span></p>
<p><span style="color:#ff0000;">Be the change you want to see in the world. &#8211; Gandhi</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jenniferlinca.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jenniferlinca.wordpress.com/1521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jenniferlinca.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jenniferlinca.wordpress.com/1521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jenniferlinca.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jenniferlinca.wordpress.com/1521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jenniferlinca.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jenniferlinca.wordpress.com/1521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jenniferlinca.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jenniferlinca.wordpress.com/1521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jenniferlinca.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jenniferlinca.wordpress.com/1521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jenniferlinca.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jenniferlinca.wordpress.com/1521/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1521&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jenniferlinca.wordpress.com/2011/03/30/inspirational-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e728fcceac535625565cbb3df3034e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jennyca</media:title>
		</media:content>
	</item>
		<item>
		<title>Helen Keller Quotations</title>
		<link>http://jenniferlinca.wordpress.com/2011/03/30/helen-keller-quotations/</link>
		<comments>http://jenniferlinca.wordpress.com/2011/03/30/helen-keller-quotations/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 15:41:25 +0000</pubDate>
		<dc:creator>jennyca</dc:creator>
				<category><![CDATA[Quotations]]></category>

		<guid isPermaLink="false">http://jenniferlinca.wordpress.com/?p=1516</guid>
		<description><![CDATA[Life is either a daring adventure or nothing. 人生如果不是一场勇敢的冒险便什么都不是。 Avoiding danger is no safer in the long run than outright exposure.The fearful are caught as often as the bold. 长远看来，逃避危险并不比直面危险更安全。懦弱者和勇敢者遭遇不幸的几率差不多。 When we do the best we can,we never know what miracle is wrought in our life,or in the life of another. 当我们尽力而为的时候，我们并不知道会给自己的人生，或给别人的人生带来什么样的奇迹。 Keep your face [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1516&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#ff0000;">Life is either a daring adventure or nothing.</span><br />
<span style="color:#ff0000;"> 人生如果不是一场勇敢的冒险便什么都不是。</span></p>
<p>Avoiding danger is no safer in the long run than outright exposure.The fearful are caught as often as the bold.<br />
长远看来，逃避危险并不比直面危险更安全。懦弱者和勇敢者遭遇不幸的几率差不多。</p>
<p>When we do the best we can,we never know what miracle is wrought in our life,or in the life of another.<br />
当我们尽力而为的时候，我们并不知道会给自己的人生，或给别人的人生带来什么样的奇迹。</p>
<p>Keep your face to the sunshine and you cannot see the shadow.<br />
面对着阳光，这样你就看不到阴影。</p>
<p>We can do anything we want to do if we stick to it long enough.<br />
只要我们有足够的恒心，就可以做成任何想做的事。</p>
<p>The best way out is always through.<br />
出离危险最好的方法是“穿行”。</p>
<p>When one door closes,another opens.But we often look so  regretfully upon  the closed door that we don&#8217;t see the one that has  opend for us.<br />
一扇门关闭了，另一扇门打开了。但我们常常懊恼万分地看着那扇关闭的门，以至于看不见那扇已经为我们敞开的门。</p>
<p>One can never consent to creep when one feels an impulse to soar.<br />
当一个人有高飞的冲动时，决不会同意爬着走。</p>
<p>It is terrible thing to see and have no vision.<br />
目能见物却没有见解，真是一件可怕的事情。</p>
<p>I  am only one,but still I am one.I  cannot do everything,but still I can do something;and because I cannot do everything, I will not refuse to do the something that I can do.<br />
我只是一个人，但我仍然是那一个。我不可能无所不为，但我仍然可以有所作为。而正因为我不能无所不为，我不会拒绝无为我能为之事。</p>
<p>We may have found a cure for most evils,but it has found no remedy for the worst of them all&#8212;the apathy of human beings.<br />
世间大部分不幸也许都有补救之方，但其中最不幸的却无药可救，那就是人类的冷漠。</p>
<p>Many people have the wrong idea of what constitutes true happiness.It is not attained through self-gratification,but through fidelity to a worthy purpose.<br />
很多人对是什么构成真正的幸福抱着错误的观念。幸福不是从自我满足中得到的，而是对一个有价值目标的执着追求。</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jenniferlinca.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jenniferlinca.wordpress.com/1516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jenniferlinca.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jenniferlinca.wordpress.com/1516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jenniferlinca.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jenniferlinca.wordpress.com/1516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jenniferlinca.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jenniferlinca.wordpress.com/1516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jenniferlinca.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jenniferlinca.wordpress.com/1516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jenniferlinca.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jenniferlinca.wordpress.com/1516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jenniferlinca.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jenniferlinca.wordpress.com/1516/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1516&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jenniferlinca.wordpress.com/2011/03/30/helen-keller-quotations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e728fcceac535625565cbb3df3034e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jennyca</media:title>
		</media:content>
	</item>
		<item>
		<title>You can&#8217;t open HTML Help files on Windows Server 2003</title>
		<link>http://jenniferlinca.wordpress.com/2011/01/08/you-cannot-open-html-help-files-on-windows-server-2003/</link>
		<comments>http://jenniferlinca.wordpress.com/2011/01/08/you-cannot-open-html-help-files-on-windows-server-2003/#comments</comments>
		<pubDate>Sat, 08 Jan 2011 18:44:32 +0000</pubDate>
		<dc:creator>jennyca</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://jenniferlinca.wordpress.com/?p=1504</guid>
		<description><![CDATA[Resolution for end users Warning If you are prompted to open or to save a .chm file from a Web site, you should do so only if you need the file and if you trust the Web site that is providing the file. In the File Download dialog box, click Save, and then choose where [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1504&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3 id="tocHeadRef">Resolution for end users</h3>
<p><strong>Warning</strong> If you are prompted to open or to  save a .chm file from a Web site, you should do so only if you need the  file and if you trust the Web site that is providing the file.</p>
<p>In the <strong>File Download</strong> dialog box, click <strong>Save</strong>, and then choose where you want to save the .chm file. Then, use one of the following methods:</p>
<h4 id="tocHeadRef">Method 1</h4>
<ol>
<li> Double-click the .chm file.</li>
<li>In the <strong>Open File-Security Warning</strong> dialog box, click to clear the <strong>Always ask before opening this file</strong> check box.</li>
<li>Click <strong>Open</strong>.</li>
</ol>
<h4 id="tocHeadRef">Method 2</h4>
<ol>
<li>Right-click the CHM file, and then click <strong>Properties</strong>.</li>
<li>Click <strong>Unblock</strong>.</li>
<li>Double-click the .chm file to open the file.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jenniferlinca.wordpress.com/1504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jenniferlinca.wordpress.com/1504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jenniferlinca.wordpress.com/1504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jenniferlinca.wordpress.com/1504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jenniferlinca.wordpress.com/1504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jenniferlinca.wordpress.com/1504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jenniferlinca.wordpress.com/1504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jenniferlinca.wordpress.com/1504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jenniferlinca.wordpress.com/1504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jenniferlinca.wordpress.com/1504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jenniferlinca.wordpress.com/1504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jenniferlinca.wordpress.com/1504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jenniferlinca.wordpress.com/1504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jenniferlinca.wordpress.com/1504/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jenniferlinca.wordpress.com&amp;blog=2520694&amp;post=1504&amp;subd=jenniferlinca&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jenniferlinca.wordpress.com/2011/01/08/you-cannot-open-html-help-files-on-windows-server-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e728fcceac535625565cbb3df3034e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jennyca</media:title>
		</media:content>
	</item>
	</channel>
</rss>
