<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" xml:lang="en">
  <title>Keyphrene's Blog</title>
  <link rel="alternate" type="text/html" href="http://blog.keyphrene.com/keyphrene/index.php/" />
  
  <subtitle type="text">keyphrene's news, Tutorial org.keyphrene, Naja</subtitle>
  <id>tag:blog.keyphrene.com,2009:/keyphrene/index.php/</id>

  <updated>2009-07-13T06:59:49+02:00</updated>
  <generator version="1.2.8" uri="http://www.dotclear.net/">DotClear</generator>

  <sy:updatePeriod>daily</sy:updatePeriod>
  <sy:updateFrequency>1</sy:updateFrequency>
  <sy:updateBase>2009-07-13T06:59:49+02:00</sy:updateBase>

<link rel="self" href="http://feeds.feedburner.com/KeyphreneBlog" type="application/atom+xml" /><entry xml:lang="en">
  <title>Introduction to the Unix Shell</title>
  <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KeyphreneBlog/~3/kosSc2eMqpk/23-introduction-to-the-unix-shell" />
  <updated>2009-07-13T06:59:49+02:00</updated>
  <id>tag:blog.keyphrene.com,2009-07-13:/keyphrene/23</id>
  <author><name>keyphrene</name></author>
  <category term="Shell-unix" label="Shell Unix" />
  <summary>Introduction to the Unix Shell</summary>
  <content type="html">&lt;p&gt;Introduction to the Unix Shell&lt;/p&gt; &lt;h2&gt;Shell Variables&lt;/h2&gt;

&lt;pre&gt;[bash]
a=1
# Display
echo $a

# global variable
export b='abcd'
echo $b

# get return command into variable with back-tics
c=`date +%Y-%m-%d`
echo $c
&lt;/pre&gt;


&lt;h2&gt;Shell Arithmetic&lt;/h2&gt;

&lt;pre&gt;[bash]
# bash
cpt=$[$cpt-1] 
# ksh
cpt=$(expr $cpt + 1)
# ash
cpt=$(($cpt-2))

echo $cpt

expr 1 + 3
expr 2 - 1
expr 10 / 2
expr 20 % 3
expr 10 \* 3
&lt;/pre&gt;


&lt;h2&gt;Substring and Split&lt;/h2&gt;

&lt;pre&gt;[bash]
TEST=/etc/machin:/etc/truc:/etc/bidule
FIRST=${TEST%%:*}
LAST=${TEST##*:}
echo $FIRST
echo $LAST
echo ${TEST:1:3}
&lt;/pre&gt;


&lt;h2&gt;Shell functions&lt;/h2&gt;

&lt;pre&gt;[bash]
# Simple bash function
function hello {
   echo Hello!
}

# function return
function hello {
   echo value:$1
}
a=`hello 1`
echo $a

# Simple ksh function
function foo
{
    echo &amp;quot;Argument 1: $1&amp;quot;
    echo &amp;quot;Argument 2: $2&amp;quot;
    echo &amp;quot;All agruments: $*&amp;quot;
}
# Function Call
foo arg1 arg2
&lt;/pre&gt;



&lt;h2&gt;Conditions&lt;/h2&gt;

&lt;h3&gt;Control flow - If&lt;/h3&gt;

&lt;pre&gt;[bash]
# Number example
a=1
if [ $a -eq 1 ]; then
	echo &amp;quot;[ OK - 1 ]&amp;quot; 
elif [ $a -eq 2 ]; then
	echo &amp;quot;[ OK - 2 ]&amp;quot; 
else
	echo &amp;quot;[ KO ]&amp;quot;
fi

# String example
a='abcd'
if [ $a = 'abcd' ]; then
	echo &amp;quot;[ OK - 1 ]&amp;quot; 
elif [ &amp;quot;$a&amp;quot; = '2' ]; then
	echo &amp;quot;[ OK - 2 ]&amp;quot; 
else
	echo &amp;quot;[ KO ]&amp;quot;
fi
&lt;/pre&gt;


&lt;h3&gt;Control flow - Case&lt;/h3&gt;

&lt;pre&gt;[bash]

days=1
case `expr $days % 7` in
	0)
		echo 'Monday';;
	1)
		echo 'Tuesday';;
	*)	
		echo 'All days';;
esac

# Another example
prog=freeplayer
case &amp;quot;$1&amp;quot; in
	start)
		# start
		;;
	stop)
		# stop
		;;
	*)
		echo $&amp;quot;usage: $prog&amp;quot;
		;;
esac

&lt;/pre&gt;


&lt;h2&gt;Loop&lt;/h2&gt;

&lt;h3&gt;Control flow - For&lt;/h3&gt;

&lt;pre&gt;[bash]
# Read word
for i in `cat file.txt`
do
    echo $i
done

# Loop (1 - 10)
for i in `seq 1 10`
do
	echo $i
done

&lt;/pre&gt;


&lt;h3&gt;Control flow - While&lt;/h3&gt;

&lt;pre&gt;[bash]
while command
do
   commands
done
&lt;/pre&gt;


&lt;h2&gt;Tests&lt;/h2&gt;

&lt;pre&gt;[bash]
#  Files :
if [ -f fichier ] # if file exists
if [ -d fichier ] # if directory exists


# String :
if [ -z $s ] # empty string
if [ $var ]
if [ $word = &amp;quot;coucou&amp;quot; ]
if [ $var != &amp;quot;string&amp;quot; ]

# Number :
if [ $# -eq 3 ] # Equal. If number of parameters is equal to 3
if [ $1 -ne 1 ] # NotEqual. If first parameter is different of 1
if [ $chiffre -gt 4 ] # GreaterThan &amp;gt;
if [ $chiffre -ge 5 ] # GreaterorEqual &amp;gt;=
if [ $chiffre -lt 5 ] # LessThan &amp;lt;
if [ $chiffre -le 5 ] # LessorEqual &amp;lt;=

&lt;/pre&gt;


&lt;h2&gt;Shell Arguments&lt;/h2&gt;

&lt;pre&gt;[bash]
# ex: test.sh arg1 arg2

# Script filename
echo $0
# First argument
echo $1
# Second argument
echo $2
# number of arguments
echo $#
# All arguments
echo $@
# Process ID
echo $$
# Process ID the last command
echo $!
# Return code (exit status)
echo $?

# Example to test return code
cat test.txt
if [ $? -eq 0 ]; then
	echo &amp;quot;[ OK ]&amp;quot;
else
	echo &amp;quot;[ KO ]&amp;quot;
fi

&lt;/pre&gt;


&lt;h2&gt;Input output redirection&lt;/h2&gt;

&lt;pre&gt;[bash]
# Output Standard redirection
ls -l &amp;gt; file.log

# Append Output Standard redirection
ls -l &amp;gt;&amp;gt; file.log

# Output Standard and Error redirection
ls -l &amp;gt; file.log 2&amp;gt;&amp;amp;1

# Append Output Standard and Error redirection
ls -l &amp;gt;&amp;gt; file.log 2&amp;gt;&amp;gt;&amp;amp;1

# Output Standard redirection with no file
ls -l &amp;gt; /dev/null

# Output Standard and Error redirection with no file
ls -l &amp;gt; /dev/null 2&amp;gt;&amp;amp;1

# Output Standard and Error redirection in file.log
ls -l 2&amp;gt;&amp;amp;1 | tee -a file.log

# Create empty file
&amp;gt; test.txt
&lt;/pre&gt;



&lt;h2&gt;Include file script&lt;/h2&gt;

&lt;pre&gt;[bash]
# include file script env.sh
. env.sh

echo true

&lt;/pre&gt;



&lt;h2&gt;Debug&lt;/h2&gt;

&lt;pre&gt;[bash]
set -x
# or
sh -x test.sh
&lt;/pre&gt;</content>
<feedburner:origLink>http://blog.keyphrene.com/keyphrene/index.php/2009/07/13/23-introduction-to-the-unix-shell</feedburner:origLink></entry>
<entry xml:lang="en">
  <title>How to install a webdav server in PHP</title>
  <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KeyphreneBlog/~3/Q0m5hDnXx_Y/9-how-to-install-a-webdav-server-in-php" />
  <updated>2009-06-30T06:36:31+02:00</updated>
  <id>tag:blog.keyphrene.com,2009-06-30:/keyphrene/9</id>
  <author><name>keyphrene</name></author>
  <category term="Webdav_php" label="Webdav server in PHP" />
  <summary>How to install a webdav server in PHP</summary>
  <content type="html">&lt;p&gt;How to install a webdav server in PHP&lt;/p&gt; &lt;p&gt;It's very simple.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Download this &lt;a href="http://www.keyphrene.com/download/webdav_srv_1.4.zip" hreflang="en"&gt;package&lt;/a&gt;, and decompress it.&lt;/li&gt;
&lt;li&gt;The &lt;q&gt;inc&lt;/q&gt; folder contains &lt;strong&gt;PEAR&lt;/strong&gt; and the &lt;strong&gt;HTTP_WebDAV_Server&lt;/strong&gt; &lt;em&gt;class&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;Copy the &lt;q&gt;inc&lt;/q&gt; folder and &lt;q&gt;authenticate.php&lt;/q&gt; file in the &lt;em&gt;include_path&lt;/em&gt; (see php.ini)&lt;/li&gt;
&lt;li&gt;Copy &lt;q&gt;webdav.php&lt;/q&gt; file in the root of your site.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The &lt;q&gt;authenticate.php&lt;/q&gt; file contains a digest authentification.&lt;/p&gt;



&lt;p&gt;The &lt;q&gt;webdav.php&lt;/q&gt; file create a webdav server&lt;/p&gt;

&lt;pre&gt;[php]
&amp;lt;?
include_once(&amp;quot;authenticate.php&amp;quot;);

ini_set(&amp;quot;error_reporting&amp;quot;, &amp;quot;&amp;quot;);
# umask(2);

# Activate if your PHP is CGI mode
$phpcgi = 0;
# With authentication
$AUTHWEBDAV = 1;
# Name of your restricted area
$realm = 'Restricted area Keyphrene';
$DBHOST= &amp;quot;your host database&amp;quot;;
$DB_WEBDAV = &amp;quot;your dbname to lock webdav&amp;quot;;
$DBUSER = &amp;quot;your login&amp;quot;;
$DBPWD = &amp;quot;your password&amp;quot;;
$users = array($DBUSER =&amp;gt; $DBPWD);

if ($AUTHWEBDAV == 1) {
  # With this authentication method, 
  # your password is not readable when you use this service
  AuthenticationDigestHTTP($realm, $users, $phpcgi); # With method your password is hashed
  # AuthenticationBasicHTTP($realm, $users, $phpcgi); # With method your password is clear
}

require_once &amp;quot;HTTP/WebDAV/Server/Filesystem.php&amp;quot;;
$server = new HTTP_WebDAV_Server_Filesystem();
# Database configuration for the lock method
$server-&amp;gt;db_host = $DBHOST;
$server-&amp;gt;db_name = $DB_WEBDAV;
$server-&amp;gt;db_user = $DBUSER;
$server-&amp;gt;db_passwd = $DBPWD;
# Real path of your site
$server-&amp;gt;ServeRequest($DOCUMENT_ROOT.&amp;quot;/www/&amp;quot;);

?&amp;gt;

&lt;/pre&gt;



&lt;p&gt;To use this service, you must connect you at this adress http://mysite.org/webdav.php.
You can configure a lot of access on your site.
Becareful, if you must copy files on your server, you must use the good permissions with the FTP client.&lt;/p&gt;



&lt;p&gt;Test your webdav connection with &lt;a href="http://www.keyphrene.com/products/naja" hreflang="en"&gt;Naja&lt;/a&gt;, so create a signet
&lt;img src="http://www.keyphrene.com/products/naja/screenshots/windows/win32_signet.png" alt="" /&gt;&lt;/p&gt;



&lt;p&gt;Now, you can browse on your server with a webdav client&lt;/p&gt;
&lt;img src="http://www.keyphrene.com/products/naja/screenshots/windows/win32_webdav.png" width="700"/&gt;




&lt;p&gt;&lt;strong&gt;Bookmarks&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://pear.php.net/package/HTTP_WebDAV_Server/" hreflang="en"&gt;http://pear.php.net/package/HTTP_WebDAV_Server/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.keyphrene.com/products/naja" hreflang="en"&gt;http://www.keyphrene.com/products/naja&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</content>
<feedburner:origLink>http://blog.keyphrene.com/keyphrene/index.php/2009/06/30/9-how-to-install-a-webdav-server-in-php</feedburner:origLink></entry>
<entry xml:lang="en">
  <title>VI Shortcuts</title>
  <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KeyphreneBlog/~3/WS-U4JUsE8U/20-vi-shortcuts" />
  <updated>2009-06-26T11:58:35+02:00</updated>
  <id>tag:blog.keyphrene.com,2009-06-26:/keyphrene/20</id>
  <author><name>keyphrene</name></author>
  <category term="Shell-unix" label="Shell Unix" />
  <summary>This reference guide to the vi editor presents the majority of vi commands and keys</summary>
  <content type="html">&lt;p&gt;This reference guide to the vi editor presents the majority of vi commands and keys&lt;/p&gt; &lt;h5&gt;Save - Exit - Reload&lt;/h5&gt;



&lt;pre&gt;ESC:w								Save
ESC:w /path/to/filename						Save in
ESC:wq, ESC:x, ZZ 						Save and Exit
ESC:q								Exit without save
ESC:q!								Force exit without save
ESC:e								Reload&lt;/pre&gt;


&lt;h5&gt;Cursor move&lt;/h5&gt;



&lt;pre&gt;gg								Begin of File			
Shift+g								End of file
ESC+b								Begin of word
ESC+e								End of word
ESC+0								Begin of the line
ESC+$								End of the line
ESC:&amp;lt;line&amp;gt;							Goto
Ctrl+f								Page down
Ctrl+b								Page up
ESC+&amp;gt;&amp;gt;								Add a tabulation
ESC+&amp;lt;&amp;lt;								Remove a tabulation&lt;/pre&gt;


&lt;h5&gt;Insert&lt;/h5&gt;



&lt;pre&gt;ESC+i								Insert before cursor
ESC+a								Insert after cursor
ESC+I								Insert at the beginning of line
ESC+A								Insert at the ending of line
ESC+O								Insert one line before
ESC+o								Insert one line after&lt;/pre&gt;


&lt;h5&gt;Remove&lt;/h5&gt;



&lt;pre&gt;ESC+x								Remove a char
ESC+dw								Remove a word (put in the clipboard)
ESC+dd								Remove a line under cursor (put in the clipboard)
ESC+D								Remove the line&lt;/pre&gt;


&lt;h5&gt;Copy - Move&lt;/h5&gt;



&lt;pre&gt;ESC+yw								Word copy (Ctrl-c)
ESC+yy								Line copy
ESC+dw								Word remove (put in the clipboard) (Ctrl-x)
ESC+dd								Line remove under cursor (put in the clipboard)
ESC+p								Copy after cursor (Ctrl-v)
ESC+P								Copy before cursor (Ctrl-v)&lt;/pre&gt;



&lt;h5&gt;Search&lt;/h5&gt;


&lt;pre&gt;ESC+/+occurence							Search word (descending)
ESC+?+occurence							Search word (ascing)
n								Next word
N								Previous word&lt;/pre&gt;



&lt;h5&gt;Replace&lt;/h5&gt;


&lt;pre&gt;
ESC:%s/INFO/DEBUG/g&lt;/pre&gt;



&lt;h5&gt;Options&lt;/h5&gt;



&lt;pre&gt;ESC:set all							Display all the list
ESC:set								Display active list
ESC:set nu							Display number of the line
ESC:set no nu							Remove number of the line&lt;/pre&gt;</content>
<feedburner:origLink>http://blog.keyphrene.com/keyphrene/index.php/2009/06/26/20-vi-shortcuts</feedburner:origLink></entry>
<entry xml:lang="en">
  <title>Merge your Postscript file with Sed and Awk</title>
  <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KeyphreneBlog/~3/C3qwh8LI58U/19-merge-your-postscript-file-with-sed-and-awk" />
  <updated>2009-06-26T09:42:15+02:00</updated>
  <id>tag:blog.keyphrene.com,2009-06-26:/keyphrene/19</id>
  <author><name>keyphrene</name></author>
  <category term="Shell-unix" label="Shell Unix" />
  <summary>When you wish merge your Postscript files via cat command, some printers break printing after the first page.
This shell script sanitize your postscript file after merge with cat command in three steps.


Get file header
Get all pages between %%Page: and %%PageTrailer
Add footer %%Trailer

[bash]...</summary>
  <content type="html"> &lt;p&gt;When you wish merge your Postscript files via cat command, some printers break printing after the first page.
This shell script sanitize your postscript file after merge with cat command in three steps.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Get file header&lt;/li&gt;
&lt;li&gt;Get all pages between %%Page: and %%PageTrailer&lt;/li&gt;
&lt;li&gt;Add footer %%Trailer&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;[bash]
FILEPS=file.ps
FILEMERGE=file_merge.ps
# Merge your postscript files
cat file1.ps file2.ps file3.ps &amp;gt; $FILEPS

# Sanitize your Poscript file
sed '/^%%Page:/,$d'  $FILEPS  &amp;gt; $FILEMERGE
awk '/%%Page:/,/%%PageTrailer/'  $FILEPS &amp;gt;&amp;gt; $FILEMERGE
echo -e '%%Trailer\n%%EOF' &amp;gt;&amp;gt; $FILEMERGE

&lt;/pre&gt;</content>
<feedburner:origLink>http://blog.keyphrene.com/keyphrene/index.php/2009/06/26/19-merge-your-postscript-file-with-sed-and-awk</feedburner:origLink></entry>
<entry xml:lang="en">
  <title>FreeHD Gadget</title>
  <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KeyphreneBlog/~3/LYvHjyH-mFQ/16-freehd-gadget" />
  <updated>2009-05-08T20:47:40+02:00</updated>
  <id>tag:blog.keyphrene.com,2009-05-08:/keyphrene/16</id>
  <author><name>keyphrene</name></author>
  <category term="Freehdgadget" label="FreeHD.gadget" />
  <summary>Watch WebTV and WebRadios on your Windows Sidebar. Switch Fullscreen, schedule your recordings. Use the Drag &amp; Drop to play your media. FreeHD use VLC activeX. You can use your own playlist.</summary>
  <content type="html">&lt;p&gt;Watch WebTV and WebRadios on your Windows Sidebar. Switch Fullscreen, schedule your recordings. Use the Drag &amp;amp; Drop to play your media. FreeHD use VLC activeX. You can use your own playlist.&lt;/p&gt; &lt;p&gt;&lt;a href="http://blog.keyphrene.com/keyphrene/index.php/2008/12/11/12-freehd-gadget-vista" hreflang="fr"&gt;Cette article en français&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHDLogo.jpg" alt="" style="float:left; margin: 0 1em 1em 0;" /&gt; Watch WebTV and WebRadios on your Windows Sidebar. Switch Fullscreen, schedule your recordings. Use the Drag &amp;amp; Drop to play your media. FreeHD use VLC activeX. You can use your own playlist.&lt;/p&gt;


&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Lastest version 4.5. You must install VLC 0.9.9 to support .flv extension. FreeHD supports YouTube. Thanks to you, FreeHD wouldn't exist without advertising support and you.&lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;


&lt;p&gt;&lt;strong&gt;Prerequisite Vista:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Sidebar 32 bits (most important for Vista 64bits, read FAQs)&lt;/li&gt;
&lt;li&gt;VLC 0.9.9 with ActiveX &lt;a href="http://www.videolan.org/mirror-geo.php?file=vlc/0.9.9/win32/vlc-0.9.9-win32.exe" hreflang="fr"&gt;VLC 0.9.9&lt;/a&gt; &lt;a href="http://www.videolan.org" hreflang="en"&gt;VideoLan&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;strong&gt;Prerequisite XP:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;SP3 pack&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Internet Explorer 7&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Install Sidebar &lt;a href="http://blog.keyphrene.com/keyphrene/index.php/2008/10/05/15-sidebar-on-windows-xp" hreflang="en"&gt;FreeHD on XP&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;VLC 0.9.9 with ActiveX &lt;a href="http://www.videolan.org/mirror-geo.php?file=vlc/0.9.9/win32/vlc-0.9.9-win32.exe" hreflang="fr"&gt;VLC 0.9.9&lt;/a&gt; &lt;a href="http://www.videolan.org" hreflang="en"&gt;VideoLan&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;strong&gt;Install&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Install &lt;strong&gt;VLC&lt;/strong&gt; 0.9.9 with "ActiveX Plugin" &lt;a href="http://www.videolan.org/mirror-geo.php?file=vlc/0.9.9/win32/vlc-0.9.9-win32.exe" hreflang="fr"&gt;VLC 0.9.9&lt;/a&gt; &lt;a href="http://www.videolan.org" hreflang="fr"&gt;VideoLan&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/vlc_installation.png" alt="" /&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Download the last gadget &lt;a href="http://gallery.live.com/liveItemDetail.aspx?li=e9be7770-7e9c-47f4-af97-8b634a17769f" hreflang="en"&gt;FreeHD.gadget&lt;/a&gt; (Freeware).&lt;/li&gt;
&lt;li&gt;Install &lt;strong&gt;FreeHD&lt;/strong&gt; gadget.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD2.jpg" alt="" /&gt;  &lt;img src="http://www.keyphrene.com/products/widgets/FreeHD.jpg" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;Settings&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Go to Settings&lt;/li&gt;
&lt;li&gt;Change parameters (example proxy configuration -&amp;gt; :http-proxy=http://user:pwd@myproxy:3128, see FAQs)&lt;/li&gt;
&lt;li&gt;Save your settings&lt;/li&gt;
&lt;li&gt;You can have a message for update under FreeHD version&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD4.jpg" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;Playlist Selection&lt;/strong&gt;&lt;/p&gt;


&lt;p&gt;Click on &lt;img src="http://www.keyphrene.com/products/widgets/menu_open_normal.png" alt="" /&gt; and choose your Playlist.&lt;/p&gt;


&lt;p&gt;Playlist Type:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Playlist URL (define in Settings)&lt;/li&gt;
&lt;li&gt;WebTV&lt;/li&gt;
&lt;li&gt;WebRadio&lt;/li&gt;
&lt;li&gt;Movies (define in Settings)&lt;/li&gt;
&lt;li&gt;Music (define in Settings)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Recording&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Click on Recording button&lt;/li&gt;
&lt;li&gt;Select your Playlist&lt;/li&gt;
&lt;li&gt;Select your Stream&lt;/li&gt;
&lt;li&gt;The filename must have no extension, no folder and no spaces&lt;/li&gt;
&lt;li&gt;Save (a User Account Control is open to add Scheduled Task)&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD3.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD5.jpg" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;Podcasts Service&lt;/strong&gt;&lt;/p&gt;


&lt;p&gt;Click on button &lt;img src="http://www.keyphrene.com/products/widgets/menu_info_normal.png" alt="" /&gt; and discover Podcasts Area.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Trailers&lt;/li&gt;
&lt;li&gt;News&lt;/li&gt;
&lt;li&gt;Games&lt;/li&gt;
&lt;li&gt;and others&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD23.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD28.jpg" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;In this interface, you can "watch online" (VLC ActiveX controls download), "watch &amp;amp; download" (FreeHD controls download) or "download". In the 2 latest cases, contents are saved in "Downloads Area".&lt;/p&gt;


&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD27.jpg" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;Logs&lt;/strong&gt;&lt;/p&gt;


&lt;p&gt;You can open Logs Interface, to understand different problems&lt;/p&gt;


&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD22.jpg" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;ISP Playlists&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;TPG: http://www.keyphrene.com/products/widgets/playlists/tpg_au.m3u (Australian: &lt;a href="http://www.tpg.com.au/iptv/" hreflang="en"&gt;website&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;FAQs&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Switch Fullscreen?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;You can double-click on your movie or click on right top button to have another display.&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD21.jpg" alt="" /&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;This does not work?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Check your firewall rules, you must have an exception on Sidebar executable and VLC executable&lt;/li&gt;
&lt;li&gt;Copy third-party DLLs from VLC install dir to a folder in C:\Windows\System32 (avcodec-51.dll, libfontconfig-1.dll, libfreetype-6.dll, libgcrypt.dll, libgpg-error-0.dll, libiconv-2.dll, libxml2-2.dll, libz-1-2.dll). Relaunch your Sidebar.&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;How to use FreeHD_Diagnostic&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Get FreeHD_Diagnostic &lt;a href="http://www.keyphrene.com/download/FreeHD_Diagnostic.zip" hreflang="en"&gt;FreeHD_Diagnostic&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Unzip archive on your desktop&lt;/li&gt;
&lt;li&gt;Launch Diagnostic.wsf&lt;/li&gt;
&lt;li&gt;Report is generated on your desktop freehd.diagnostic.txt&lt;/li&gt;
&lt;li&gt;Send this report to bugs@keyphrene.com&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;To startup, I have this message: ActiveX not found, Check your VLC installation&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;ActiveX DLL has not found in the VLC folder (axvlc.dll), Reinstall VLC with "ActiveX Plugin"&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;How to register VLC ActiveX control?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Open a DOS command prompt as administrator&lt;/li&gt;
&lt;li&gt;cd /d "C:\Program Files\VideoLAN\VLC" on Vista 32bits or cd /d "C:\Program Files (x86)\VideoLAN\VLC" or Vista 64bits&lt;/li&gt;
&lt;li&gt;regsvr32 axvlc.dll&lt;/li&gt;
&lt;li&gt;Relaunch your Sidebar&lt;/li&gt;
&lt;li&gt;Relaunch FreeHD&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;This does not work on Vista 64 bits?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;VLC ActiveX is not compatible with Sidebar 64 bits, you must launch Sidebar 32 bits. Follow this procedure&lt;/li&gt;
&lt;li&gt;Remove FreeHD.&lt;/li&gt;
&lt;li&gt;Stop Windows SideBar&lt;/li&gt;
&lt;li&gt;Check Windows Tasks, Sidebar.exe doesn't must exist&lt;/li&gt;
&lt;li&gt;Launch C:\Program Files (x86)\Windows Sidebar\sidebar.exe&lt;/li&gt;
&lt;li&gt;Reinstall FreeHD&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;How configure proxy in the settings&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;First, You must configure Internet Explorer proxy (VLC doesn't support IE proxy authentication)&lt;/li&gt;
&lt;li&gt;Second, You must configure FreeHD settings to copy this example ( http-proxy=http://&lt;a href="http://blog.keyphrene.com/ser[:password"&gt;user[:password&lt;/a&gt;@]proxy.example.com:port/ ), change proxy name, and proxy port, user and password are optionals.&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;How to install FreeHD on Windows XP?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Go to this address &lt;a href="http://blog.keyphrene.com/keyphrene/index.php/2008/10/05/15-sidebar-on-windows-xp" hreflang="en"&gt;FreeHD on XP&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;How to add a WebRadio or a WebTV in playlist?
&lt;ul&gt;
&lt;li&gt;Try your URL with VLC and send me this URL via this address &lt;a href="http://blog.keyphrene.com/ailto:%73%75%70%70%6f%72%74%40%6b%65%79%70%68%72%65%6e%65%2e%63%6f%6d%3f%73%75%62%6a%65%63%74%3d%46%72%65%65%48%44%5f%53%74%72%65%61%6d" hreflang="en"&gt;support&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;ChangeLog&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;2009/05/08 FreeHD.gadget 4.5&lt;/li&gt;
&lt;li&gt;2009/02/14 FreeHD.gadget 4.3 (93032 downloads)
&lt;ul&gt;
&lt;li&gt;Fixed task scheduler&lt;/li&gt;
&lt;li&gt;Added continue button&lt;/li&gt;
&lt;li&gt;Added VLC options during recording&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2009/01/31 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 4.1 (78247 downloads)
&lt;ul&gt;
&lt;li&gt;Added new Podcasts (more and more)&lt;/li&gt;
&lt;li&gt;Added new module to download YouTube contents&lt;/li&gt;
&lt;li&gt;Fixed Vista 64 bits registry for VLC&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/12/20 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 3.9 (42759 downloads, Thanks a lot)
&lt;ul&gt;
&lt;li&gt;Added Podcasts&lt;/li&gt;
&lt;li&gt;Added message for update and news&lt;/li&gt;
&lt;li&gt;Added VLC proxy and options in settings&lt;/li&gt;
&lt;li&gt;Added "Include sub-folders" in settings&lt;/li&gt;
&lt;li&gt;Added French Access in Podcast Area&lt;/li&gt;
&lt;li&gt;Added Vista 64 bits detection and display message&lt;/li&gt;
&lt;li&gt;Fixed ratio bug in settings&lt;/li&gt;
&lt;li&gt;Fixed opening settings&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/12/01 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 3.7
&lt;ul&gt;
&lt;li&gt;Changed podcasts&lt;/li&gt;
&lt;li&gt;Added &lt;em&gt;Open stream&lt;/em&gt; in the menu (ex: http://, mms://, rtsp:// ...)&lt;/li&gt;
&lt;li&gt;Added intermediate screen size and aspect ratio in settings (4:3, 16:9 ...) (asked by Styx)&lt;/li&gt;
&lt;li&gt;Added pre-buffering for HTTP, MMS stream&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/11/18 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 3.5
&lt;ul&gt;
&lt;li&gt;Fixed folder detection and crash during installation (Folders: My Movies and My Musics)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/11/16 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 3.3
&lt;ul&gt;
&lt;li&gt;Updated procedure to check VLC Installation&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/11/02 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 3.1
&lt;ul&gt;
&lt;li&gt;Added procedure to check VLC Installation&lt;/li&gt;
&lt;li&gt;Added shuffle button&lt;/li&gt;
&lt;li&gt;Fixed bugs (Fullscreen, intermediate screen)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/10/26 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 3.0
&lt;ul&gt;
&lt;li&gt;Added Interface Logs&lt;/li&gt;
&lt;li&gt;Added Display 256px by 192px&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/10/18 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 2.9
&lt;ul&gt;
&lt;li&gt;Added WebTV and WebRadio playlist&lt;/li&gt;
&lt;li&gt;Message Alert&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;</content>
<feedburner:origLink>http://blog.keyphrene.com/keyphrene/index.php/2009/05/08/16-freehd-gadget</feedburner:origLink></entry>
<entry xml:lang="fr">
  <title>FreeHD Gadget Vista</title>
  <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KeyphreneBlog/~3/OC7Jys6e1R4/12-freehd-gadget-vista" />
  <updated>2009-05-08T20:45:43+02:00</updated>
  <id>tag:blog.keyphrene.com,2009-05-08:/keyphrene/12</id>
  <author><name>keyphrene</name></author>
  <category term="Freehdgadget" label="FreeHD.gadget" />
  <summary>FreeHD vous permet de regarder les chaines et radios de votre FreeboxHD et d'Internet (WebTV, WebRadio, Podcasts) sur votre volet Windows. D'un click vous passez en mode Fullscreen et programmez vos enregistrements. Utilisez le Drag&amp;Drop pour lire vos médias.</summary>
  <content type="html">&lt;p&gt;FreeHD vous permet de regarder les chaines et radios de votre FreeboxHD et d'Internet (WebTV, WebRadio, Podcasts) sur votre volet Windows. D'un click vous passez en mode Fullscreen et programmez vos enregistrements. Utilisez le Drag&amp;amp;Drop pour lire vos médias.&lt;/p&gt; &lt;p&gt;&lt;a href="http://blog.keyphrene.com/keyphrene/index.php/2008/12/01/16-freehd-gadget" hreflang="en"&gt;This article In English&lt;/a&gt;&lt;/p&gt;



&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHDLogo.jpg" alt="" style="float:left; margin: 0 1em 1em 0;" /&gt; &lt;strong&gt;FreeHD&lt;/strong&gt; 2.x vous permet de regarder les chaines et les radios de votre &lt;strong&gt;Freebox HD&lt;/strong&gt; et d'Internet (&lt;strong&gt;WebTV&lt;/strong&gt;, &lt;strong&gt;WebRadio&lt;/strong&gt;) sur votre volet &lt;strong&gt;Windows&lt;/strong&gt;. D'un double-click vous passez en mode &lt;em&gt;Fullscreen&lt;/em&gt; et programmez vos enregistrements. Utilisez le Drag&amp;amp;Drop pour lire vos médias. Vous pouvez configurer &lt;strong&gt;FreeHD&lt;/strong&gt; en Français ou en Anglais (pas d'autres langues pour le moment)&lt;/p&gt;



&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Mise A Jour: Vous devez passer à FreeHD.gadget 4.5, Attention cette mise à jour nécessite la version 0.9.9 de VLC (sinon vous ne pourrez pas lire les extensions .flv). Merci à vous et aux sponsors, grâce à vos dons FreeHD peut continuer d'évoluer.&lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;



&lt;p&gt;&lt;strong&gt;Pré-requis pour Vista:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;La Sidebar (Volet Windows) doit être la version 32 bits (très important pour Vista 64bits, consulter la FAQ - )&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;FreeHD&lt;/strong&gt; utilise le composant &lt;em&gt;ActiveX&lt;/em&gt; de &lt;strong&gt;VLC&lt;/strong&gt; 0.9.9 &lt;a href="http://www.videolan.org/mirror-geo.php?file=vlc/0.9.9/win32/vlc-0.9.9-win32.exe" hreflang="fr"&gt;VLC 0.9.9&lt;/a&gt; &lt;a href="http://www.videolan.org" hreflang="fr"&gt;VideoLan&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pré-requis pour XP:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Pack SP3&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Internet Explorer 7&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Installer la Sidebar à partir de ce lien &lt;a href="http://blog.keyphrene.com/keyphrene/index.php/2008/10/04/14-sidebar-windows-xp" hreflang="fr"&gt;FreeHD sur XP&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;FreeHD&lt;/strong&gt; utilise le composant &lt;em&gt;ActiveX&lt;/em&gt; de &lt;strong&gt;VLC&lt;/strong&gt; 0.9.9 &lt;a href="http://www.videolan.org/mirror-geo.php?file=vlc/0.9.9/win32/vlc-0.9.9-win32.exe" hreflang="fr"&gt;VLC 0.9.9&lt;/a&gt; &lt;a href="http://www.videolan.org" hreflang="fr"&gt;VideoLan&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;strong&gt;Installation&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Installer &lt;strong&gt;VLC&lt;/strong&gt; 0.9.9 avec l'option "Plugin ActiveX" &lt;a href="http://www.videolan.org/mirror-geo.php?file=vlc/0.9.9/win32/vlc-0.9.9-win32.exe" hreflang="fr"&gt;VLC 0.9.9&lt;/a&gt; &lt;a href="http://www.videolan.org" hreflang="fr"&gt;VideoLan&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/vlc_installation.png" alt="" /&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Télécharger le dernier gadget &lt;a href="http://gallery.live.com/liveItemDetail.aspx?li=2d8e9ca3-1329-4c79-9147-3bee55a5cb82" hreflang="fr"&gt;FreeHD.gadget&lt;/a&gt; gratuitement (Freeware).&lt;/li&gt;
&lt;li&gt;Installer &lt;strong&gt;FreeHD&lt;/strong&gt; gadget en double-cliquant dessus et autorisez le contenu. Le &lt;em&gt;Gadget&lt;/em&gt; se retrouve sur votre Volet &lt;strong&gt;Windows&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD2.jpg" alt="" /&gt;  &lt;img src="http://www.keyphrene.com/products/widgets/FreeHD.jpg" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;Configuration&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Activer les options de FreeHD&lt;/li&gt;
&lt;li&gt;Modifier les paramètres (Localisation de VLC, Choix du répertoire de musique et de vidéo, taille de la fenêtre intermédiaire, format d'affichage etc...)&lt;/li&gt;
&lt;li&gt;La liste des chaines se construit automatiquement par le paramètre Playlist (fichier .m3u)&lt;/li&gt;
&lt;li&gt;Enregistrer vos paramètres&lt;/li&gt;
&lt;li&gt;Sous la version de FreeHD, vous pouvez avoir un message pour les mises à jour.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD4.jpg" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;Sélection des Playlists&lt;/strong&gt;&lt;/p&gt;


&lt;p&gt;Pour sélectionner une Playlist, utiliser ce bouton &lt;img src="http://www.keyphrene.com/products/widgets/menu_open_normal.png" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;Type de Playlists&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Playlist URL (Free, Neuf, Orange ...CF configuration)&lt;/li&gt;
&lt;li&gt;WebTV&lt;/li&gt;
&lt;li&gt;WebRadio&lt;/li&gt;
&lt;li&gt;Films (CF configuration)&lt;/li&gt;
&lt;li&gt;Musiques (CF configuration)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Enregistrement&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Cliquer sur le bouton d'enregistrement&lt;/li&gt;
&lt;li&gt;Sélectionner votre playlist&lt;/li&gt;
&lt;li&gt;Sélectionner votre flux&lt;/li&gt;
&lt;li&gt;Le nom du fichier ne doit pas contenir .avi (&lt;strong&gt;FreeHD&lt;/strong&gt; l'ajoute directement), ni le chemin complet (grâce aux répertoires de Films et de musiques), éviter aussi les espaces&lt;/li&gt;
&lt;li&gt;Enregistrer (Une boite de dialogue User Account Control s'ouvre pour autoriser la création d'une tâche planifiée)&lt;/li&gt;
&lt;li&gt;Vous pouvez vérifier la présence de votre tâche dans votre panneau de configuration/Outils d'administration/Tâches planifiées&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD3.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD5.jpg" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;Comme vous l'avez compris, l'enregistrement est lancé par une tâche planifiée permettant la fermeture de votre session &lt;strong&gt;Windows&lt;/strong&gt; (votre machine doit rester cependant allumée pour l'enregistrement ;-))&lt;/p&gt;



&lt;p&gt;&lt;strong&gt;Les Services Podcasts&lt;/strong&gt;&lt;/p&gt;


&lt;p&gt;Pour atteindre les services, vous devez cliquer sur le bouton &lt;img src="http://www.keyphrene.com/products/widgets/menu_info_normal.png" alt="" /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Les Journaux télévisés de TF1, France 2, France 3, M6&lt;/li&gt;
&lt;li&gt;YouTube&lt;/li&gt;
&lt;li&gt;Listes des Bandes Annonces Cinéma: Visionner directement les bandes annonces dans "FreeHD"&lt;/li&gt;
&lt;li&gt;Les bandes Annonces d'Apple en VO&lt;/li&gt;
&lt;li&gt;Canal Plus&lt;/li&gt;
&lt;li&gt;Les émissions de France 5&lt;/li&gt;
&lt;li&gt;Les podcasts de GameOne&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;D'autres Podcasts sont à venir, vous pouvez en proposer à support@keyphrene.com. Ces derniers seront testés et intégrés à FreeHD.
Cette interface permet aussi de vous communiquer les dernières informations et les mises à jour de FreeHD, alors n'hésitez pas à vous rendre dans cette interface.&lt;/p&gt;


&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD23.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD28.jpg" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;Avec cette interface, vous avez le choix de regarder en ligne "watch online",  de télécharger "download", ou de télécharger et de regarder "download &amp;amp; watch".
La méthode "watch online" est gérée par l'ActiveX de VLC. Les méthodes "download" et "download &amp;amp; watch" sont gérer directement par FreeHD, les contenus sont sauvegardés dans l'espace de "Téléchargements".&lt;/p&gt;


&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD27.jpg" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;Les Erreurs&lt;/strong&gt;&lt;/p&gt;


&lt;p&gt;Une chaine ne fonctionne pas vous pouvez ouvrir la console des Logs pour comprendre, vous pouvez aussi consulter l'observateur d'évènements. Pour voir les logs, vous devez cliquer sur le bouton &lt;img src="http://www.keyphrene.com/products/widgets/menu_info_normal.png" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD22.jpg" alt="" /&gt;&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;FAQs&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Pour passer en plein écran?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Lancez votre vidéo ou votre flux et double-cliquez sur le petit écran. Pour ressortir de ce mode double-cliquez aussi. Vous pouvez aussi vous mettre en écran intermédiaire en cliquant sur le bouton en haut à droite&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD21.jpg" alt="" /&gt;&lt;/p&gt;


&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Cela ne fonctionne pas?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Vérifiez que vous avez un service TV lié à votre FAI.&lt;/li&gt;
&lt;li&gt;Testez l'installation de l'ActiveX VLC avec cette adresse dans votre navigateur &lt;ins&gt;Internet Explorer&lt;/ins&gt; (&lt;a href="http://www.keyphrene.com/products/widgets/test_vlc.html" hreflang="fr"&gt;Test VLC&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Vérifier vos règles Firewall, les exceptions doivent se faire sur le volet Windows et sur l'utilitaire VLC&lt;/li&gt;
&lt;li&gt;Votre bande passante n'est peut être pas suffisante&lt;/li&gt;
&lt;li&gt;Vous pouvez regarder les logs dans l'observateur d'événements pour comprendre les erreurs (eventvwr.msc)&lt;/li&gt;
&lt;li&gt;Tester votre configuration avec &lt;a href="http://www.keyphrene.com/download/FreeHD_Diagnostic.zip" hreflang="fr"&gt;FreeHD_Diagnostic&lt;/a&gt; et envoyer le rapport à bugs@keyphrene.com&lt;/li&gt;
&lt;li&gt;Si vous avez encore des problèmes d'installation n'hésitez pas à solliciter bugs@keyphrene.com&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Comment utiliser FreeHD_Diagnostic&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Récupérer &lt;a href="http://www.keyphrene.com/download/FreeHD_Diagnostic.zip" hreflang="fr"&gt;FreeHD_Diagnostic&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Décompresser l'archive sur votre bureau&lt;/li&gt;
&lt;li&gt;Lancer Diagnostic.wsf (script en clair)&lt;/li&gt;
&lt;li&gt;Un rapport est créé sous le nom freehd.diagnostic.txt&lt;/li&gt;
&lt;li&gt;Envoyer ce rapport à bugs@keyphrene.com pour analyse&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;&lt;strong&gt;LiveBox&lt;/strong&gt;, &lt;strong&gt;NeufBox&lt;/strong&gt;, est-ce que cela marche&lt;/em&gt;?
&lt;ul&gt;
&lt;li&gt;Pour la "NeufBox" pas de problème en lecture, l'enregistrement n'est pas encore opérationnel.&lt;/li&gt;
&lt;li&gt;Pour la "LiveBox" un utilisateur a testé avec un switch, cela fonctionne avec certaines chaines (dépend du type de flux de la chaine)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Comment brancher ma LiveBox sur mon PC&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Vous devez posséder un switch ou bien 2 cartes réseaux et brancher l'ensemble des prises rj45 (rouge et jaune) sur le switch ou sur vos cartes réseaux.&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Quelle est la taille des enregistrements?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;La taille des fichiers peut être conséquentes selon les flux. Pour le moment les flux provenant de la &lt;strong&gt;Freebox&lt;/strong&gt; ne sont pas réencodés et sont donc volumineux.&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Comment transférer mes enregistrements du multi-postes sur la Freebox HD?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Vous pouvez transférer vos fichiers sur votre &lt;strong&gt;Freebox&lt;/strong&gt; via FTP. Cependant renommer vos fichiers .avi en .ts&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Comment configurer le Proxy sur FreeHD?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Dans les paramètres vous pouvez ajouter la configuration du proxy, voici un exemple -&amp;gt; :http-proxy=http://user:pwd@myproxy:3128&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Au démarrage de FreeHD, j'ai le message suivant: ActiveX non trouvé, vérifier votre installation de VLC&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;La DLL de l'ActiveX (axvlc.dll) n'est plus présent dans le répertoire d'installation de VLC. Réinstaller VLC en cochant "ActiveX Plugin".&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;L'activeX de VLC ne fonctionne pas correctement, que faire?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;CE PROBLEME N'EXISTE PLUS POUR VLC 0.9.8a, alors évitez-vous les configurations complexes et installez la nouvelle version. La version 0.9.2 et 0.9.4 a un problème d'installation qui provoque des dysfonctionnements au niveau de l'ActiveX. Vous avez donc 2 solutions soit récupérer VLC à cette adresse &lt;a href="http://www.keyphrene.com/download/vlc-0.9.2-win32.exe" hreflang="fr"&gt;VLC 0.9.2&lt;/a&gt; ou copier les DLLs suivantes du répertoire de VLC dans C:\Windows\System32 (avcodec-51.dll, libfontconfig-1.dll, libfreetype-6.dll, libgcrypt.dll, libgpg-error-0.dll, libiconv-2.dll, libxml2-2.dll, libz-1-2.dll). Rebooter ensuite la Sidebar.&lt;/li&gt;
&lt;li&gt;Avec les versions supérieures de FreeHD, ce problème ne se pose plus. En effet lors de l'installation, ces fichiers sont copiés directement dans le répertoire System32.&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Comment réinitialiser mon ActiveX VLC?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Lancer une commande en tant qu'administrateur&lt;/li&gt;
&lt;li&gt;cd /d "C:\Program Files\VideoLAN\VLC" sur Vista 32bits ou cd /d "C:\Program Files (x86)\VideoLAN\VLC" sur Vista 64bits&lt;/li&gt;
&lt;li&gt;regsvr32 axvlc.dll&lt;/li&gt;
&lt;li&gt;redémarrer votre Sidebar&lt;/li&gt;
&lt;li&gt;relancer FreeHD&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Comment arrêter la Sidebar windows?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Vous avez un icône &lt;img src="http://www.keyphrene.com/products/widgets/FreeHD26.jpg" alt="" /&gt; à côté de votre horloge &lt;img src="http://www.keyphrene.com/products/widgets/FreeHD25.jpg" alt="" /&gt;&lt;/li&gt;
&lt;li&gt;Placez-vous sur cette icône, et avec le bouton droit de la souris, ouvrir son menu, puis quitter.&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/FreeHD24.jpg" alt="" /&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Cela ne fonctionne pas sur Vista 64 bits?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;L'activeX de VLC n'est pas compatible sur les programmes 64 bits, il faut donc lancer la Sidebar 32 bits. Pour cela suivez la procédure ci-dessous approuvée par assarm ;-)&lt;/li&gt;
&lt;li&gt;Désinstaller FreeHD.&lt;/li&gt;
&lt;li&gt;Arrêter la SideBar Windows&lt;/li&gt;
&lt;li&gt;Vérifier que dans les tâches Windows le processus Sidebar.exe n'existe plus&lt;/li&gt;
&lt;li&gt;Lancer C:\Program Files (x86)\Windows Sidebar\sidebar.exe&lt;/li&gt;
&lt;li&gt;Réinstaller FreeHD&lt;/li&gt;
&lt;li&gt;Attention qu'au redémarrage la Sidebar64 bits ne revienne pas&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Comment installer FreeHD sur Windows XP?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Aller à cette adresse &lt;a href="http://blog.keyphrene.com/keyphrene/index.php/2008/10/04/14-sidebar-windows-xp" hreflang="fr"&gt;FreeHD sur XP&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Où je peux trouver la liste des WebTV et WebRadio?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Allez à cette adresse &lt;a href="http://blog.keyphrene.com/keyphrene/index.php/2008/10/24/17-listes-webtv-et-webradio-freehd" hreflang="fr"&gt;WebTV &amp;amp; WebRadio&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Comment je peux ajouter une radio ou une chaine dans la liste, j'ai son URL?&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;Essayer d'ouvrir le flux avec l'URL dans VLC, si celle-ci fonctionne, envoyer votre URL avec son libellé du Flux au &lt;a href="http://blog.keyphrene.com/ailto:%73%75%70%70%6f%72%74%40%6b%65%79%70%68%72%65%6e%65%2e%63%6f%6d%3f%73%75%62%6a%65%63%74%3d%46%72%65%65%48%44%5f%53%74%72%65%61%6d" hreflang="fr"&gt;support&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;strong&gt;Fichiers M3U et FAI Playlist&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;FreeBox&lt;/strong&gt;: http://mafreebox.freebox.fr/freeboxtv/playlist.m3u&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;FreeBox&lt;/strong&gt; non dégroupé: http://www.keyphrene.com/FreeHD/playlists/Freebox_nd.m3u&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;NeufBox&lt;/strong&gt;: http://televisionsurpc.neuf.fr/televisionsurpc.m3u&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;LiveBox Orange&lt;/strong&gt;: http://www.keyphrene.com/FreeHD/playlists/LiveBox_fr.m3u&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;BBox &lt;/strong&gt;: http://www.keyphrene.com/FreeHD/playlists/Bbox.m3u&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Vous pouvez créer vos propres fichiers M3U, si vous le désirez.&lt;/p&gt;



&lt;p&gt;&lt;strong&gt;Historique&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;2009/05/08 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 4.5&lt;/li&gt;
&lt;li&gt;2009/02/14 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 4.3 (93032 Téléchargements)
&lt;ul&gt;
&lt;li&gt;Correction sur le planificateur de tâches (enregistrements)&lt;/li&gt;
&lt;li&gt;Ajout des options VLC pour les enregistrements&lt;/li&gt;
&lt;li&gt;Ajout d'une option pour la lecture en continue&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2009/01/31 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 4.1 (78247 Téléchargements)
&lt;ul&gt;
&lt;li&gt;Modification du noyau pour télécharger des flux assurant une meilleure approche dans leur lecture&lt;/li&gt;
&lt;li&gt;Ajout d'un espace de téléchargements (cache)&lt;/li&gt;
&lt;li&gt;Ajout de podcasts (YouTube, Canal Plus ...)&lt;/li&gt;
&lt;li&gt;Correction registre pour Vista 64bits&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/12/20 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 3.9 (42759 Téléchargements)
&lt;ul&gt;
&lt;li&gt;Ajout de Podcasts&lt;/li&gt;
&lt;li&gt;Ajout d'un message au démarrage pour les mises à jours et les news&lt;/li&gt;
&lt;li&gt;Ajout des options VLC et définition du proxy pour VLC dans les settings&lt;/li&gt;
&lt;li&gt;Ajout "Include les sous répertoires" pour les listes de vos films et musiques&lt;/li&gt;
&lt;li&gt;Ajout d'un accès anglais dans l'interface de Podcasts&lt;/li&gt;
&lt;li&gt;Ajout d'un message pour l'utilisation de la Sidebar 64bits (il faut la Sidebar 32bits)&lt;/li&gt;
&lt;li&gt;Correction du bug sur les ratios&lt;/li&gt;
&lt;li&gt;Correction du problème sur l'ouverture des paramètres&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/12/01 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 3.7 (32951 Téléchargements sur le compteur MSN Gallery FR et US)
&lt;ul&gt;
&lt;li&gt;Modification des podcasts (encore plus ...)&lt;/li&gt;
&lt;li&gt;Ajout dans le menu &lt;em&gt;Ouvrir un flux&lt;/em&gt; (ex: http://, mms://, rtsp:// ...)&lt;/li&gt;
&lt;li&gt;Ajout dans les paramètres taille de la fenêtre intermédiaire et du format (4:3, 16:9 ...)&lt;/li&gt;
&lt;li&gt;Modification des paramètres de tampon pour la lecture des flux en HTTP et MMS&lt;/li&gt;
&lt;li&gt;Correction enregistrement heure d'hiver&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/11/18 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 3.5
&lt;ul&gt;
&lt;li&gt;Correction bug Vista sur la recherche automatique des répertoires Mes Vidéos et Ma Musique provoquant une erreur d'installation (Merci à P@rigo)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/11/16 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 3.3 (20441 Téléchargements sur le compteur MSN Gallery FR et US)
&lt;ul&gt;
&lt;li&gt;Détection des mises à jour de VLC et copie des fichiers librairies vers system32&lt;/li&gt;
&lt;li&gt;Ajout interface Trailers (bandes annonces Films)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/11/02 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 3.1
&lt;ul&gt;
&lt;li&gt;Ajout d'une procédure pour vérifier l'installation de VLC&lt;/li&gt;
&lt;li&gt;Ajout d'un bouton pour mélanger la Playlist&lt;/li&gt;
&lt;li&gt;Amélioration de l'interface générale&lt;/li&gt;
&lt;li&gt;Correction de l'ouverture des logs&lt;/li&gt;
&lt;li&gt;Correction du Bug Fullscreen en fin de lecture&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/10/26 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 3.0
&lt;ul&gt;
&lt;li&gt;Ajout d'une interface de Logs&lt;/li&gt;
&lt;li&gt;Affichage intermédiaire&lt;/li&gt;
&lt;li&gt;Correction des menus pendant l'affichage&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/10/18 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 2.9
&lt;ul&gt;
&lt;li&gt;Ajout de playlist pour WebTV, WebRadio, et JT des chaines principales&lt;/li&gt;
&lt;li&gt;Alerte des messages d'erreurs&lt;/li&gt;
&lt;li&gt;Suppression du répertoire d'enregistrement, remplacer par répertoire vidéo ou de musique selon le flux&lt;/li&gt;
&lt;li&gt;Création de FreeHD pour MSN Gallery US&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/10/04 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 2.7 (10595 Téléchargements sur le compteur MSN Gallery)
&lt;ul&gt;
&lt;li&gt;Correction Firmware 1.4 de Free pour le multi-poste&lt;/li&gt;
&lt;li&gt;Affichage du temps de lecture&lt;/li&gt;
&lt;li&gt;Sélection automatique de la langue&lt;/li&gt;
&lt;li&gt;Ajout d'un répertoire de vidéos et de musiques vous permettant de remplir automatiquement votre playlist.&lt;/li&gt;
&lt;li&gt;Ajout du bouton Fullscreen&lt;/li&gt;
&lt;li&gt;Correction encoding playlist&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/09/21 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 2.5 (déjà 5532 Téléchargements sur le compteur MSN Gallery, merci à tous)
&lt;ul&gt;
&lt;li&gt;Modification design&lt;/li&gt;
&lt;li&gt;Correction du bug radios&lt;/li&gt;
&lt;li&gt;Enregistrement direct ajout d'un nom de fichier temporaire, c'est plus rapide pour les déclencher ;-)&lt;/li&gt;
&lt;li&gt;Ajout d'un fichier de configuration utilisateur pour éviter de perdre les informations sur une mise à jour&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/09/07 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 2.3
&lt;ul&gt;
&lt;li&gt;Ajout gestion de la liste d'enregistrements&lt;/li&gt;
&lt;li&gt;Enregistrement et affichage en direct&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/09/03 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 2.1
&lt;ul&gt;
&lt;li&gt;Bug au chargement de la liste des chaînes&lt;/li&gt;
&lt;li&gt;Ajout à &lt;a href="http://gallery.live.com/liveItemDetail.aspx?li=2d8e9ca3-1329-4c79-9147-3bee55a5cb82&amp;amp;bt=1&amp;amp;pl=1" hreflang="fr"&gt;Gallery Live de Microsoft&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/08/31 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 2.0
&lt;ul&gt;
&lt;li&gt;Ajout enregistrement&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;2008/08/24 &lt;strong&gt;FreeHD&lt;/strong&gt;.gadget 1.0&lt;/li&gt;
&lt;/ul&gt;</content>
<feedburner:origLink>http://blog.keyphrene.com/keyphrene/index.php/2009/05/08/12-freehd-gadget-vista</feedburner:origLink></entry>
<entry xml:lang="en">
  <title>Sidebar on Windows XP</title>
  <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KeyphreneBlog/~3/mKAV2oq8aYA/15-sidebar-on-windows-xp" />
  <updated>2009-01-11T11:03:22+01:00</updated>
  <id>tag:blog.keyphrene.com,2009-01-11:/keyphrene/15</id>
  <author><name>keyphrene</name></author>
  <category term="Freehdgadget" label="FreeHD.gadget" />
  <summary>Howto install Windows Sidebar on XP?</summary>
  <content type="html">&lt;p&gt;Howto install Windows Sidebar on XP?&lt;/p&gt; &lt;p&gt;How to install Windows Sidebar on XP?&lt;/p&gt;


&lt;p&gt;A tutorial to install Windows Sidebar on your XP and install FreeHD.gadget&lt;/p&gt;


&lt;h5&gt;Prerequisite&lt;/h5&gt;
&lt;ul&gt;
&lt;li&gt;XP SP3&lt;/li&gt;
&lt;li&gt;DotNet 2.0&lt;/li&gt;
&lt;li&gt;Internet Explorer 7&lt;/li&gt;
&lt;li&gt;VLC 0.9.8a (For FreeHD Gadget) &lt;a href="http://download.videolan.org/pub/videolan/vlc/0.9.8a/win32/vlc-0.9.8a-win32.exe" hreflang="en"&gt;VideoLan&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h5&gt;Download the following files&lt;/h5&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=0856eacb-4362-4b0d-8edd-aab15c5e04f5&amp;amp;displaylang=en" hreflang="en"&gt;DotNet 2.0&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.keyphrene.com/download/alky_1.1_trunk_032308-000051_xp.msi" hreflang="en"&gt;alky_1.1_trunk_032308-000051_xp.msi&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.keyphrene.com/download/Ricks_WindowsSidebar_Intl_AlkyXP1.1.zip" hreflang="en"&gt;Ricks_WindowsSidebar_Intl_AlkyXP1.1.zip&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h5&gt;Install DotNet 2.0&lt;/h5&gt;


&lt;h5&gt;Install in first alky_1.1_trunk_032308-000051_xp.msi package&lt;/h5&gt;

&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_1.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_2.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_3.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_4.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_5.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_6.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_7.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_8.jpg" alt="" /&gt;&lt;/p&gt;


&lt;h5&gt;Install Ricks_WindowsSidebar_Intl_AlkyXP1.1 package&lt;/h5&gt;
&lt;ul&gt;
&lt;li&gt;Uncompress Ricks_WindowsSidebar_Intl_AlkyXP1.1.zip archive&lt;/li&gt;
&lt;li&gt;Select Sidebar.inf file with the "Right-button" mouse, and "Install"&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_9.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_10.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_11.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_12.jpg" alt="" /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Reboot your computer&lt;/li&gt;
&lt;/ul&gt;

&lt;h5&gt;How to install a gadget&lt;/h5&gt;
&lt;ul&gt;
&lt;li&gt;Go to this link with Internet Explorer &lt;a href="http://gallery.live.com/liveItemDetail.aspx?li=e9be7770-7e9c-47f4-af97-8b634a17769f" hreflang="fr"&gt;FreeHD.gadget&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Clik on "Install"&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_13.jpg" alt="" /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Add this gadget&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_14.jpg" alt="" /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The result ...&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_15.jpg" alt="" /&gt;&lt;/p&gt;</content>
<feedburner:origLink>http://blog.keyphrene.com/keyphrene/index.php/2009/01/11/15-sidebar-on-windows-xp</feedburner:origLink></entry>
<entry xml:lang="fr">
  <title>Sidebar sur Windows XP</title>
  <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KeyphreneBlog/~3/zsxfJEX47lU/14-sidebar-windows-xp" />
  <updated>2009-01-11T11:01:11+01:00</updated>
  <id>tag:blog.keyphrene.com,2009-01-11:/keyphrene/14</id>
  <author><name>keyphrene</name></author>
  <category term="Freehdgadget" label="FreeHD.gadget" />
  <summary>Comment installer la Sidebar (Volet Windows) sur Windows XP?</summary>
  <content type="html">&lt;p&gt;Comment installer la Sidebar (Volet Windows) sur Windows XP?&lt;/p&gt; &lt;p&gt;Voici un petit tutorial pour installer la Sidebar sur votre Windows XP et installer FreeHD.gadget&lt;/p&gt;



&lt;h5&gt;Pré-requis&lt;/h5&gt;
&lt;ul&gt;
&lt;li&gt;XP SP3&lt;/li&gt;
&lt;li&gt;DotNet 2.0 sinon les gadgets ne s'installent pas automatiquement.&lt;/li&gt;
&lt;li&gt;Internet Explorer 7&lt;/li&gt;
&lt;li&gt;VLC 0.9.8a (Pour FreeHD) &lt;a href="http://download.videolan.org/pub/videolan/vlc/0.9.8a/win32/vlc-0.9.8a-win32.exe" hreflang="fr"&gt;VideoLan&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h5&gt;Télécharger  les fichiers suivants&lt;/h5&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=0856eacb-4362-4b0d-8edd-aab15c5e04f5&amp;amp;displaylang=fr" hreflang="fr"&gt;DotNet 2.0&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.keyphrene.com/download/alky_1.1_trunk_032308-000051_xp.msi" hreflang="fr"&gt;alky_1.1_trunk_032308-000051_xp.msi&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.keyphrene.com/download/Ricks_WindowsSidebar_Intl_AlkyXP1.1.zip" hreflang="fr"&gt;Ricks_WindowsSidebar_Intl_AlkyXP1.1.zip&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h5&gt;Installer DotNet 2.0&lt;/h5&gt;


&lt;h5&gt;Installer le premier package alky_1.1_trunk_032308-000051_xp.msi&lt;/h5&gt;

&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_1.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_2.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_3.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_4.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_5.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_6.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_7.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_8.jpg" alt="" /&gt;&lt;/p&gt;


&lt;h5&gt;Installer le package Ricks_WindowsSidebar_Intl_AlkyXP1.1&lt;/h5&gt;
&lt;ul&gt;
&lt;li&gt;Décompresser l'archive Ricks_WindowsSidebar_Intl_AlkyXP1.1.zip&lt;/li&gt;
&lt;li&gt;Sélectionner le fichier Sidebar.inf avec le bouton droit de la souris, puis "Installer"&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_9.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_10.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_11.jpg" alt="" /&gt;
&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_12.jpg" alt="" /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Redémarrer votre ordinateur&lt;/li&gt;
&lt;/ul&gt;

&lt;h5&gt;Comment installer un gadget&lt;/h5&gt;
&lt;ul&gt;
&lt;li&gt;Aller sur ce lien avec Internet Explorer &lt;a href="http://gallery.live.com/liveItemDetail.aspx?li=2d8e9ca3-1329-4c79-9147-3bee55a5cb82&amp;amp;bt=1&amp;amp;pl=1" hreflang="fr"&gt;FreeHD.gadget&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Cliquer sur "Installer"&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_13.jpg" alt="" /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Ajouter le gadget&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_14.jpg" alt="" /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Voilà le résultat&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src="http://www.keyphrene.com/products/widgets/img/SidebarXP_15.jpg" alt="" /&gt;&lt;/p&gt;



&lt;p&gt;Pour plus d'info sur ce gadget &lt;a href="http://blog.keyphrene.com/keyphrene/index.php/2008/08/31/12-freehd-gadget-vista" hreflang="fr"&gt;FreeHD.gadget&lt;/a&gt;&lt;/p&gt;</content>
<feedburner:origLink>http://blog.keyphrene.com/keyphrene/index.php/2009/01/11/14-sidebar-windows-xp</feedburner:origLink></entry>
<entry xml:lang="en">
  <title>FreeHD WebRadio and WebTV list</title>
  <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KeyphreneBlog/~3/hcDFOgjaO0c/18-freehd-webradio-and-webtv-list" />
  <updated>2008-10-24T08:10:48+02:00</updated>
  <id>tag:blog.keyphrene.com,2008-10-24:/keyphrene/18</id>
  <author><name>keyphrene</name></author>
  <category term="Freehdgadget" label="FreeHD.gadget" />
  <summary>WebTV


ABC News English
BBC World English
Bloomberg English
CNN English
France24 English
LCN English
Sky News English
AFTV Adventure English
AFTV Cartoons English
AFTV Comedy English
AFTV Crime English
AFTV Drama English
AFTV Horror English
AFTV SF English
AFTV Westerns English
Thriller TV English...</summary>
  <content type="html"> &lt;p&gt;&lt;strong&gt;WebTV&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;ABC News English&lt;/li&gt;
&lt;li&gt;BBC World English&lt;/li&gt;
&lt;li&gt;Bloomberg English&lt;/li&gt;
&lt;li&gt;CNN English&lt;/li&gt;
&lt;li&gt;France24 English&lt;/li&gt;
&lt;li&gt;LCN English&lt;/li&gt;
&lt;li&gt;Sky News English&lt;/li&gt;
&lt;li&gt;AFTV Adventure English&lt;/li&gt;
&lt;li&gt;AFTV Cartoons English&lt;/li&gt;
&lt;li&gt;AFTV Comedy English&lt;/li&gt;
&lt;li&gt;AFTV Crime English&lt;/li&gt;
&lt;li&gt;AFTV Drama English&lt;/li&gt;
&lt;li&gt;AFTV Horror English&lt;/li&gt;
&lt;li&gt;AFTV SF English&lt;/li&gt;
&lt;li&gt;AFTV Westerns English&lt;/li&gt;
&lt;li&gt;Thriller TV English&lt;/li&gt;
&lt;li&gt;BigPond Sport English&lt;/li&gt;
&lt;li&gt;Boardriders TV English&lt;/li&gt;
&lt;li&gt;Euro Sport English&lt;/li&gt;
&lt;li&gt;MLB Baseball Channel English&lt;/li&gt;
&lt;li&gt;NHL Network English&lt;/li&gt;
&lt;li&gt;Discovery Science Channel English&lt;/li&gt;
&lt;li&gt;NASA Education English&lt;/li&gt;
&lt;li&gt;NASA TV English&lt;/li&gt;
&lt;li&gt;Research channel English&lt;/li&gt;
&lt;li&gt;Wild Life Channel English&lt;/li&gt;
&lt;li&gt;Cartoons English&lt;/li&gt;
&lt;li&gt;HighTV English&lt;/li&gt;
&lt;li&gt;BFM TV French&lt;/li&gt;
&lt;li&gt;Bloomberg French&lt;/li&gt;
&lt;li&gt;France24 French&lt;/li&gt;
&lt;li&gt;LCI French&lt;/li&gt;
&lt;li&gt;LCP French&lt;/li&gt;
&lt;li&gt;MCM French&lt;/li&gt;
&lt;li&gt;NRJ Dance French&lt;/li&gt;
&lt;li&gt;NRJ Groove French&lt;/li&gt;
&lt;li&gt;NRJ Paris French&lt;/li&gt;
&lt;li&gt;NRJ Pop Rock French&lt;/li&gt;
&lt;li&gt;NRJ hits French&lt;/li&gt;
&lt;li&gt;Soleil TV Antilles French&lt;/li&gt;
&lt;li&gt;TMF French&lt;/li&gt;
&lt;li&gt;AB Moteurs French&lt;/li&gt;
&lt;li&gt;Orange Sport French&lt;/li&gt;
&lt;li&gt;Canal Savoir French&lt;/li&gt;
&lt;li&gt;Liberty TV French&lt;/li&gt;
&lt;li&gt;Sciences TV French&lt;/li&gt;
&lt;li&gt;C9television French&lt;/li&gt;
&lt;li&gt;Calais TV French&lt;/li&gt;
&lt;li&gt;Cap 24 French&lt;/li&gt;
&lt;li&gt;Clap TV French&lt;/li&gt;
&lt;li&gt;Kto French&lt;/li&gt;
&lt;li&gt;La locale French&lt;/li&gt;
&lt;li&gt;Orleans TV French&lt;/li&gt;
&lt;li&gt;TSR French&lt;/li&gt;
&lt;li&gt;Tele 102 French&lt;/li&gt;
&lt;li&gt;Tele Grenoble French&lt;/li&gt;
&lt;li&gt;Tele Lyon Metropole French&lt;/li&gt;
&lt;li&gt;Tele Miroir French&lt;/li&gt;
&lt;li&gt;Tele essonne French&lt;/li&gt;
&lt;li&gt;Telenight French&lt;/li&gt;
&lt;li&gt;2DF Deutch Deutch&lt;/li&gt;
&lt;li&gt;Medizin TV Deutch&lt;/li&gt;
&lt;li&gt;Bahn TV Deutch&lt;/li&gt;
&lt;li&gt;Campus TV Deutch&lt;/li&gt;
&lt;li&gt;Holland Documentary Netherland&lt;/li&gt;
&lt;li&gt;KRO Netherland&lt;/li&gt;
&lt;li&gt;Museum TV Netherland&lt;/li&gt;
&lt;li&gt;TeleAc Netherland&lt;/li&gt;
&lt;li&gt;CNN Plus Spain&lt;/li&gt;
&lt;li&gt;Olelo Community Spain&lt;/li&gt;
&lt;li&gt;EuroSport Russian&lt;/li&gt;
&lt;li&gt;Kultura TV Russian&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;strong&gt;WebRadio&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;94.7 FM English&lt;/li&gt;
&lt;li&gt;Best Country 103 English&lt;/li&gt;
&lt;li&gt;CD 101 English&lt;/li&gt;
&lt;li&gt;Classic KBAQ English&lt;/li&gt;
&lt;li&gt;KBKS English&lt;/li&gt;
&lt;li&gt;BFM French&lt;/li&gt;
&lt;li&gt;Europe 1 French&lt;/li&gt;
&lt;li&gt;France Info French&lt;/li&gt;
&lt;li&gt;France Inter French&lt;/li&gt;
&lt;li&gt;France culture French&lt;/li&gt;
&lt;li&gt;RMC French&lt;/li&gt;
&lt;li&gt;RTL French&lt;/li&gt;
&lt;li&gt;Ado French&lt;/li&gt;
&lt;li&gt;Chérie FM French&lt;/li&gt;
&lt;li&gt;Contact French&lt;/li&gt;
&lt;li&gt;Europe 2 French&lt;/li&gt;
&lt;li&gt;FG French&lt;/li&gt;
&lt;li&gt;FIP French&lt;/li&gt;
&lt;li&gt;France Musique French&lt;/li&gt;
&lt;li&gt;Frequence 3 French&lt;/li&gt;
&lt;li&gt;Fun Radio French&lt;/li&gt;
&lt;li&gt;Generation FM French&lt;/li&gt;
&lt;li&gt;Le Mouv French&lt;/li&gt;
&lt;li&gt;MTI French&lt;/li&gt;
&lt;li&gt;NRJ French&lt;/li&gt;
&lt;li&gt;Nostalgie French&lt;/li&gt;
&lt;li&gt;Oui FM French&lt;/li&gt;
&lt;li&gt;RFM French&lt;/li&gt;
&lt;li&gt;RTL2 French&lt;/li&gt;
&lt;li&gt;Radio Neo French&lt;/li&gt;
&lt;li&gt;Radio Nova French&lt;/li&gt;
&lt;li&gt;Rire et chansons French&lt;/li&gt;
&lt;li&gt;Skyrock French&lt;/li&gt;
&lt;li&gt;TSF Jazz French&lt;/li&gt;
&lt;li&gt;Vibration French&lt;/li&gt;
&lt;li&gt;Virgin French&lt;/li&gt;
&lt;li&gt;Voltage French&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;FAQs&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How to add a WebRadio or a WebTV in playlist?
&lt;ul&gt;
&lt;li&gt;Try your URL with VLC and send me this URL via this address &lt;a href="http://blog.keyphrene.com/ailto:%73%75%70%70%6f%72%74%40%6b%65%79%70%68%72%65%6e%65%2e%63%6f%6d%3f%73%75%62%6a%65%63%74%3d%46%72%65%65%48%44%5f%53%74%72%65%61%6d" hreflang="en"&gt;support&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;</content>
<feedburner:origLink>http://blog.keyphrene.com/keyphrene/index.php/2008/10/24/18-freehd-webradio-and-webtv-list</feedburner:origLink></entry>
<entry xml:lang="fr">
  <title>Listes WebTV et WebRadio FreeHD</title>
  <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/KeyphreneBlog/~3/XcUp5739cDY/17-listes-webtv-et-webradio-freehd" />
  <updated>2008-10-24T08:03:17+02:00</updated>
  <id>tag:blog.keyphrene.com,2008-10-24:/keyphrene/17</id>
  <author><name>keyphrene</name></author>
  <category term="Freehdgadget" label="FreeHD.gadget" />
  <summary>Trouver la liste des WebTV et des WebRadio FreeHD</summary>
  <content type="html">&lt;p&gt;Trouver la liste des WebTV et des WebRadio FreeHD&lt;/p&gt; &lt;p&gt;&lt;strong&gt;WebTV&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;BFM TV French&lt;/li&gt;
&lt;li&gt;Bloomberg French&lt;/li&gt;
&lt;li&gt;France24 French&lt;/li&gt;
&lt;li&gt;LCI French&lt;/li&gt;
&lt;li&gt;LCP French&lt;/li&gt;
&lt;li&gt;MCM French&lt;/li&gt;
&lt;li&gt;NRJ Dance French&lt;/li&gt;
&lt;li&gt;NRJ Groove French&lt;/li&gt;
&lt;li&gt;NRJ Paris French&lt;/li&gt;
&lt;li&gt;NRJ Pop Rock French&lt;/li&gt;
&lt;li&gt;NRJ hits French&lt;/li&gt;
&lt;li&gt;Soleil TV Antilles French&lt;/li&gt;
&lt;li&gt;TMF French&lt;/li&gt;
&lt;li&gt;AB Moteurs French&lt;/li&gt;
&lt;li&gt;Orange Sport French&lt;/li&gt;
&lt;li&gt;Canal Savoir French&lt;/li&gt;
&lt;li&gt;Liberty TV French&lt;/li&gt;
&lt;li&gt;Sciences TV French&lt;/li&gt;
&lt;li&gt;C9television French&lt;/li&gt;
&lt;li&gt;Calais TV French&lt;/li&gt;
&lt;li&gt;Cap 24 French&lt;/li&gt;
&lt;li&gt;Clap TV French&lt;/li&gt;
&lt;li&gt;Kto French&lt;/li&gt;
&lt;li&gt;La locale French&lt;/li&gt;
&lt;li&gt;Orleans TV French&lt;/li&gt;
&lt;li&gt;TSR French&lt;/li&gt;
&lt;li&gt;Tele 102 French&lt;/li&gt;
&lt;li&gt;Tele Grenoble French&lt;/li&gt;
&lt;li&gt;Tele Lyon Metropole French&lt;/li&gt;
&lt;li&gt;Tele Miroir French&lt;/li&gt;
&lt;li&gt;Tele essonne French&lt;/li&gt;
&lt;li&gt;Telenight French&lt;/li&gt;
&lt;li&gt;ABC News English&lt;/li&gt;
&lt;li&gt;BBC World English&lt;/li&gt;
&lt;li&gt;Bloomberg English&lt;/li&gt;
&lt;li&gt;CNN English&lt;/li&gt;
&lt;li&gt;France24 English&lt;/li&gt;
&lt;li&gt;LCN English&lt;/li&gt;
&lt;li&gt;Sky News English&lt;/li&gt;
&lt;li&gt;AFTV Adventure English&lt;/li&gt;
&lt;li&gt;AFTV Cartoons English&lt;/li&gt;
&lt;li&gt;AFTV Comedy English&lt;/li&gt;
&lt;li&gt;AFTV Crime English&lt;/li&gt;
&lt;li&gt;AFTV Drama English&lt;/li&gt;
&lt;li&gt;AFTV Horror English&lt;/li&gt;
&lt;li&gt;AFTV SF English&lt;/li&gt;
&lt;li&gt;AFTV Westerns English&lt;/li&gt;
&lt;li&gt;Thriller TV English&lt;/li&gt;
&lt;li&gt;BigPond Sport English&lt;/li&gt;
&lt;li&gt;Boardriders TV English&lt;/li&gt;
&lt;li&gt;Euro Sport English&lt;/li&gt;
&lt;li&gt;MLB Baseball Channel English&lt;/li&gt;
&lt;li&gt;NHL Network English&lt;/li&gt;
&lt;li&gt;Discovery Science Channel English&lt;/li&gt;
&lt;li&gt;NASA Education English&lt;/li&gt;
&lt;li&gt;NASA TV English&lt;/li&gt;
&lt;li&gt;Research channel English&lt;/li&gt;
&lt;li&gt;Wild Life Channel English&lt;/li&gt;
&lt;li&gt;Cartoons English&lt;/li&gt;
&lt;li&gt;HighTV English&lt;/li&gt;
&lt;li&gt;2DF Deutch Deutch&lt;/li&gt;
&lt;li&gt;Medizin TV Deutch&lt;/li&gt;
&lt;li&gt;Bahn TV Deutch&lt;/li&gt;
&lt;li&gt;Campus TV Deutch&lt;/li&gt;
&lt;li&gt;Holland Documentary Netherland&lt;/li&gt;
&lt;li&gt;KRO Netherland&lt;/li&gt;
&lt;li&gt;Museum TV Netherland&lt;/li&gt;
&lt;li&gt;TeleAc Netherland&lt;/li&gt;
&lt;li&gt;CNN Plus Spain&lt;/li&gt;
&lt;li&gt;Olelo Community Spain&lt;/li&gt;
&lt;li&gt;EuroSport Russian&lt;/li&gt;
&lt;li&gt;Kultura TV Russian&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;strong&gt;WebRadio&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;BFM French&lt;/li&gt;
&lt;li&gt;Europe 1 French&lt;/li&gt;
&lt;li&gt;France Info French&lt;/li&gt;
&lt;li&gt;France Inter French&lt;/li&gt;
&lt;li&gt;France culture French&lt;/li&gt;
&lt;li&gt;RMC French&lt;/li&gt;
&lt;li&gt;RTL French&lt;/li&gt;
&lt;li&gt;Ado French&lt;/li&gt;
&lt;li&gt;Chérie FM French&lt;/li&gt;
&lt;li&gt;Contact French&lt;/li&gt;
&lt;li&gt;Europe 2 French&lt;/li&gt;
&lt;li&gt;FG French&lt;/li&gt;
&lt;li&gt;FIP French&lt;/li&gt;
&lt;li&gt;France Musique French&lt;/li&gt;
&lt;li&gt;Frequence 3 French&lt;/li&gt;
&lt;li&gt;Fun Radio French&lt;/li&gt;
&lt;li&gt;Generation FM French&lt;/li&gt;
&lt;li&gt;Le Mouv French&lt;/li&gt;
&lt;li&gt;MTI French&lt;/li&gt;
&lt;li&gt;NRJ French&lt;/li&gt;
&lt;li&gt;Nostalgie French&lt;/li&gt;
&lt;li&gt;Oui FM French&lt;/li&gt;
&lt;li&gt;RFM French&lt;/li&gt;
&lt;li&gt;RTL2 French&lt;/li&gt;
&lt;li&gt;Radio Neo French&lt;/li&gt;
&lt;li&gt;Radio Nova French&lt;/li&gt;
&lt;li&gt;Rire et chansons French&lt;/li&gt;
&lt;li&gt;Skyrock French&lt;/li&gt;
&lt;li&gt;TSF Jazz French&lt;/li&gt;
&lt;li&gt;Vibration French&lt;/li&gt;
&lt;li&gt;Virgin French&lt;/li&gt;
&lt;li&gt;Voltage French&lt;/li&gt;
&lt;li&gt;94.7 FM English&lt;/li&gt;
&lt;li&gt;Best Country 103 English&lt;/li&gt;
&lt;li&gt;CD 101 English&lt;/li&gt;
&lt;li&gt;Classic KBAQ English&lt;/li&gt;
&lt;li&gt;KBKS English&lt;/li&gt;
&lt;/ul&gt;</content>
<feedburner:origLink>http://blog.keyphrene.com/keyphrene/index.php/2008/10/24/17-listes-webtv-et-webradio-freehd</feedburner:origLink></entry>
</feed>
