<?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>Guancio's Blog</title>
	<atom:link href="http://guancio.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://guancio.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sat, 13 Feb 2010 19:06:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='guancio.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Guancio's Blog</title>
		<link>http://guancio.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://guancio.wordpress.com/osd.xml" title="Guancio&#039;s Blog" />
	<atom:link rel='hub' href='http://guancio.wordpress.com/?pushpress=hub'/>
		<item>
		<title>My emacs configuration: edit and search keybinding</title>
		<link>http://guancio.wordpress.com/2010/02/03/my-emacs-configuration-edit-and-search-keybinding/</link>
		<comments>http://guancio.wordpress.com/2010/02/03/my-emacs-configuration-edit-and-search-keybinding/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 15:40:08 +0000</pubDate>
		<dc:creator>guancio</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[emacs]]></category>

		<guid isPermaLink="false">http://guancio.wordpress.com/?p=73</guid>
		<description><![CDATA[I continue my posts on my emacs configuration. This is my keybinding to edit and search within a buffer Search functionalities of Emacs are really impressive. I extensively use isearch to navigate inside a buffer (not only files but also any buffer that represents the output of an Emacs mode). This key binding is quite [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=guancio.wordpress.com&amp;blog=6887532&amp;post=73&amp;subd=guancio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I continue my posts on my emacs configuration. This is my keybinding to edit and search within a buffer</p>
<p><pre class="brush: plain;">
(global-set-key &quot;C-a&quot; 'mark-whole-buffer) ;; Select All
(global-set-key &quot;C-h&quot; 'replace-string)    ;; String replace in the current buffer
(global-set-key [(control shift h)] 'replace-regexp) ;; Regexp  replace in the current buffer
(global-set-key &quot;C-g&quot; 'goto-line) ;; Go to line
(global-set-key &quot;M-c&quot; 'comment-or-uncomment-region) ;; Toggle region comment
</pre></p>
<p>Search functionalities of Emacs are really impressive. I extensively use isearch to navigate inside a buffer (not only files but also any buffer that represents the output of an Emacs mode).</p>
<p><pre class="brush: plain;">
(global-set-key &quot;C-f&quot; 'isearch-forward) ;; Search
(global-set-key [(control shift f)] 'isearch-backward) ;; Search backward
(global-set-key &quot;M-f&quot; 'isearch-forward-regexp) ;; Search regexp
(global-set-key [(meta shift f)] 'isearch-backward-regexp) ;; Search regexp beckward
</pre></p>
<p>This key binding is quite standard. Upon an isearch is invoked (e.g. using C-f) the isearch mode is enabled. For this reason I need to customize also need to customize the key binding specific for the isearch mode:<br />
<pre class="brush: plain;">
(define-key isearch-mode-map (kbd &quot;C-f&quot;) 'isearch-repeat-forward) ;; Next occurrence
(define-key isearch-mode-map [(control shift f)] 'isearch-repeat-backward) ;; Previus occurrence
(define-key isearch-mode-map (kbd &quot;C-s&quot;) nil) ;; Prevent isearch to handle C-s, that is globally binded to save buffer
(define-key isearch-mode-map (kbd &quot;C-v&quot;) 'isearch-yank-kill) ;; Allow using C-v to paste from the clipbuard into the isearch propmpt
(define-key isearch-mode-map (kbd &quot;C-a&quot;) 'guancio-isearch-occur) ;; Find all occurrence in the current buffer
(define-key isearch-mode-map [(control shift a)] 'guancio-isearch-grep) ;; Find all occurrence in th ecurrent directory
</pre></p>
<p>I defined two function to allows executing two Emacs commands from the iseach prompt: occur (which finds all occurrences of a regexp into the current buffer and displays the result in a new window) and grep (which finds all occurrences of a string into the buffer path and displays the result into a new window)</p>
<p><pre class="brush: plain;">
(defun guancio-isearch-occur ()
  &quot;Find all occurrences of the word (searched within isearch) into the current buffer and displays the result in a new window&quot;
  (interactive)
  (let ((case-fold-search isearch-case-fold-search))
    (occur (if isearch-regexp isearch-string (regexp-quote isearch-string)))))

(defun guancio-isearch-grep ()
  &quot;Find all occurrences of the word (searched within isearch) into the buffer path and displays the result in a new window&quot;
  (interactive)
  (let ((shk-search-string isearch-string))
    (grep-compute-defaults)
    (lgrep (if isearch-regexp shk-search-string (regexp-quote shk-search-string))
	   (format &quot;*.%s&quot; (file-name-extension (buffer-file-name)))
	   default-directory)
    (isearch-abort)))
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/guancio.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/guancio.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/guancio.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/guancio.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/guancio.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/guancio.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/guancio.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/guancio.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/guancio.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/guancio.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/guancio.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/guancio.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/guancio.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/guancio.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=guancio.wordpress.com&amp;blog=6887532&amp;post=73&amp;subd=guancio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://guancio.wordpress.com/2010/02/03/my-emacs-configuration-edit-and-search-keybinding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45bede540d0b513c8e7e0fd520b7a19f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guancio</media:title>
		</media:content>
	</item>
		<item>
		<title>My emacs configuration: File keybinding</title>
		<link>http://guancio.wordpress.com/2010/02/03/my-emacs-configuration-file-keybinding/</link>
		<comments>http://guancio.wordpress.com/2010/02/03/my-emacs-configuration-file-keybinding/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 15:35:49 +0000</pubDate>
		<dc:creator>guancio</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[emacs]]></category>

		<guid isPermaLink="false">http://guancio.wordpress.com/?p=69</guid>
		<description><![CDATA[Is Emacs an impressive editor? No. Emacs is an impressive framework to write text based applications. I&#8217;m starting to write some posts regarding my Emacs configuration with two goals: remember what i learn from other sites. provide a small tutorial to configure the main Emacs extension that I use. This first post is about standard [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=guancio.wordpress.com&amp;blog=6887532&amp;post=69&amp;subd=guancio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Is Emacs an impressive editor? No.<br />
Emacs is an impressive framework to write text based applications.<br />
I&#8217;m starting to write some posts regarding my Emacs configuration with two goals:</p>
<ul>
<li>remember what i learn from other sites.</li>
<li>provide a small tutorial to configure the main Emacs extension that I use.</li>
</ul>
<p>This first post is about standard Emacs key binding. I&#8217;ve started to use Emacs only one years ago. Before this date I used SciTe, MS Visual Studio, Netbeans, Eclipse and some times Vim.  For this reason I found standard Emacs key biding rationale but too different from my standard usage.</p>
<p>The first task to accomplish is to enable the the CUA mode. This mode provides some tricks to emulate standard Control-C/Control-V copy/past. Since Control-C is extensively used by Emacs to prefix command bindings, the mode handle Control-C only if a region is selected.</p>
<p>To enable CUA mode you can use the standard Emacs customization menu or use the following code:<br />
<pre class="brush: plain;">
(cua-mode t nil (cua-base))
</pre></p>
<p>Now I can start to configure the other global key bindings (like open file, save file). Namely key binding that are not specific for an Emacs mode. I present my key binding in the order of Emacs menus.</p>
<p><strong>File Bindings</strong><br />
<pre class="brush: plain;">
(global-set-key &quot;\C-o&quot; 'ido-find-file) ;; Open a file
(global-set-key &quot;\C-s&quot; 'save-buffer) ;; Save the current file (buffer)
(global-set-key &quot;\C-r&quot; 'guancio-revert-buffer) ;; Revert (reload from disk) the current buffer
(global-set-key [(control shift s)] 'ido-write-file) ;; Save As
(global-set-key [(control shift w)] 'guancio-close-current-buffer) ;; Close the current buffer
(global-set-key [(control shift n)] 'guancio-new-empty-buffer) ;; New empty buffer
(global-set-key &quot;\M-q&quot; 'save-buffers-kill-terminal) ;; Quit Emacs
</pre></p>
<p>Notice that I use ido-mode to search files on the file system. To load this mode by default you can use<br />
<pre class="brush: plain;">
(ido-mode t)
</pre></p>
<p>I found very annoying that the Emacs menu &#8220;open file&#8221; (like other functionalities) exploits the GTK open dialog insted of the ido-mode. However you can prevent this behavior using<br />
<pre class="brush: plain;">
(setq use-dialog-box nil)
</pre></p>
<p>Also, I defined three function to customize the Emacs behavior. Reading the function documentations, remember emacs terminology. Opened files are called buffers. Standard (Wind Manager) window are called frames. Standard (Gui toolkit) frames are called windows.</p>
<p><pre class="brush: plain;">
(defun guancio-new-empty-buffer ()
  &quot;Emulate new file function of standard text editors.
Generate a new buffer called Untiled and switch the current window to that buffer&quot;
  (interactive)
  (switch-to-buffer (generate-new-buffer &quot;Untiled&quot;))
)
(defun guancio-close-current-buffer ()
  &quot;Close (kill) the current buffer.
If the frame is splitted into several windows, close the freme that is displaying the buffer.
&quot;
  (interactive)
  (kill-buffer (current-buffer))
  (delete-window)
)

(defun guancio-revert-buffer ()
  &quot;Reload (revert) a buffer (file) from the disk.
Requires user confirmation only if the buffer has been changed.
&quot;
  (interactive)
  (if (buffer-modified-p)
      (revert-buffer t nil t)
      (revert-buffer t t t)
      )
)
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/guancio.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/guancio.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/guancio.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/guancio.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/guancio.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/guancio.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/guancio.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/guancio.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/guancio.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/guancio.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/guancio.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/guancio.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/guancio.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/guancio.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=guancio.wordpress.com&amp;blog=6887532&amp;post=69&amp;subd=guancio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://guancio.wordpress.com/2010/02/03/my-emacs-configuration-file-keybinding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45bede540d0b513c8e7e0fd520b7a19f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guancio</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux tools for aiptek mynote</title>
		<link>http://guancio.wordpress.com/2009/03/12/linux-tools-for-aiptek-mynote/</link>
		<comments>http://guancio.wordpress.com/2009/03/12/linux-tools-for-aiptek-mynote/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 16:10:44 +0000</pubDate>
		<dc:creator>guancio</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[aiptek]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://guancio.wordpress.com/?p=30</guid>
		<description><![CDATA[I bought an Apitek MyNote tablet to write notes on the paper and then retrive the corresponding digital copy. I found many useful info regarding the tablet and its usage on Linux on the blog http://eddie.niese.net/20071129/new-digital-notepad-gadget/ I used the code found on the blog to start a project of tools for the tablet. You will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=guancio.wordpress.com&amp;blog=6887532&amp;post=30&amp;subd=guancio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I bought an Apitek MyNote tablet to write notes on the paper and then retrive the corresponding digital copy.</p>
<p>I found many useful info regarding the tablet and its usage on Linux on the blog<br />
<a href="http://eddie.niese.net/20071129/new-digital-notepad-gadget/">http://eddie.niese.net/20071129/new-digital-notepad-gadget/</a></p>
<p>I used the code found on the blog to start a project of tools for the tablet.<br />
You will find the project at <a href="http://code.google.com/p/aipteknotetools/">http://code.google.com/p/aipteknotetools/</a></p>
<p>The current features:</p>
<ol>
<li><span>Simply use the Jorik code to batch processing a set of TOP files or a set of paths</span></li>
</ol>
<p>Planned features:</p>
<ol>
<li><span>Add the option to remove the TOP files after the import</span></li>
<li><span>Merge PDF document with the notes. This allows to print a document, write on the document with the tablet, import the TOP files and then obtain a new PDF with the notes on an overlay</span></li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/guancio.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/guancio.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/guancio.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/guancio.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/guancio.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/guancio.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/guancio.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/guancio.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/guancio.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/guancio.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/guancio.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/guancio.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/guancio.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/guancio.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=guancio.wordpress.com&amp;blog=6887532&amp;post=30&amp;subd=guancio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://guancio.wordpress.com/2009/03/12/linux-tools-for-aiptek-mynote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45bede540d0b513c8e7e0fd520b7a19f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guancio</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux Tunnel SSH</title>
		<link>http://guancio.wordpress.com/2008/07/20/linux-tunnel-ssh/</link>
		<comments>http://guancio.wordpress.com/2008/07/20/linux-tunnel-ssh/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 16:13:49 +0000</pubDate>
		<dc:creator>guancio</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://guancio.wordpress.com/?p=33</guid>
		<description><![CDATA[If you have trouble to reach remote services you can use SSH tunnels. To build a tunnel from your host and the port X to the host A and port Y via the host B (where you have a remote login account) you can simply use:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=guancio.wordpress.com&amp;blog=6887532&amp;post=33&amp;subd=guancio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you have trouble to reach remote services you can use SSH tunnels.<br />
To build a tunnel from your host and the port X to the host A and port Y via the host B (where you have a remote login account) you can simply use:</p>
<p><pre class="brush: bash;">
ssh -L X:A:Y user@B
</pre></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/guancio.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/guancio.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/guancio.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/guancio.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/guancio.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/guancio.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/guancio.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/guancio.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/guancio.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/guancio.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/guancio.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/guancio.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/guancio.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/guancio.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/guancio.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/guancio.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=guancio.wordpress.com&amp;blog=6887532&amp;post=33&amp;subd=guancio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://guancio.wordpress.com/2008/07/20/linux-tunnel-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45bede540d0b513c8e7e0fd520b7a19f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guancio</media:title>
		</media:content>
	</item>
		<item>
		<title>How to save streaming videos with MPlayer</title>
		<link>http://guancio.wordpress.com/2008/07/19/how-to-save-streaming-videos-with-mplayer/</link>
		<comments>http://guancio.wordpress.com/2008/07/19/how-to-save-streaming-videos-with-mplayer/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 16:15:17 +0000</pubDate>
		<dc:creator>guancio</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mplayer]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://guancio.wordpress.com/?p=35</guid>
		<description><![CDATA[To dump a stream video using MPlayer you can follow these simply steps. Copy the url of the streaming video mms://etc&#8230; or http://&#8230;. then execute on the shell the following xommand: Wait that the video is dumped<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=guancio.wordpress.com&amp;blog=6887532&amp;post=35&amp;subd=guancio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To dump a stream video using MPlayer you can follow these simply steps.<br />
Copy the url of the streaming video mms://etc&#8230; or http://&#8230;.<br />
then execute on the shell the following xommand:<br />
<pre class="brush: bash;">
mplayer -dumpstream -dumpfile stream_video_name.wmv mms://etc...
</pre></p>
<p>Wait that the video is dumped <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/guancio.wordpress.com/35/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/guancio.wordpress.com/35/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/guancio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/guancio.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/guancio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/guancio.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/guancio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/guancio.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/guancio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/guancio.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/guancio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/guancio.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/guancio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/guancio.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/guancio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/guancio.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=guancio.wordpress.com&amp;blog=6887532&amp;post=35&amp;subd=guancio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://guancio.wordpress.com/2008/07/19/how-to-save-streaming-videos-with-mplayer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45bede540d0b513c8e7e0fd520b7a19f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guancio</media:title>
		</media:content>
	</item>
	</channel>
</rss>
