<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.bakabt.me/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Koolabsol</id>
	<title>BakaBT Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.bakabt.me/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Koolabsol"/>
	<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Special:Contributions/Koolabsol"/>
	<updated>2026-05-20T00:02:35Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=4834</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=4834"/>
		<updated>2010-09-04T14:16:57Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: minor changes, removed compiling mplayer section as it is out of date&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Recommended Media Players==&lt;br /&gt;
;* [[Wikipedia:MPlayer|MPlayer]]&lt;br /&gt;
;* [[Wikipedia:SMPlayer|SMPlayer]]&lt;br /&gt;
&lt;br /&gt;
==MPlayer==&lt;br /&gt;
===Installation===&lt;br /&gt;
Perform one of the following commands as root, depending on your distribution. If you do not find information pertaining to the distribution you use, refer to your distributions documentation.&lt;br /&gt;
&lt;br /&gt;
====Debian Based Distributions (Including Ubuntu)====&lt;br /&gt;
 aptitude install mplayer&lt;br /&gt;
For additional codecs:&lt;br /&gt;
# Visit http://debian-multimedia.org/ and add it as a package repository using the instructions in the red boxes.&lt;br /&gt;
 sudo aptitude update &amp;amp;&amp;amp; sudo aptitude install mplayer w32codecs&lt;br /&gt;
&lt;br /&gt;
=====Ubuntu PPA=====&lt;br /&gt;
The MPlayer version in the default Ubuntu repositories is outdated, look for a [https://launchpad.net/ubuntu/+ppas PPA] with an updated version.&lt;br /&gt;
&lt;br /&gt;
====OpenSuse====&lt;br /&gt;
 zypper in mplayer&lt;br /&gt;
&lt;br /&gt;
====Red Hat Based Distributions (Including Fedora)====&lt;br /&gt;
MPlayer is not in the official Fedora repositories. You will have to add and enable the [http://rpmfusion.org/ RPM Fusion] third-party repositories before being able to install MPlayer.&lt;br /&gt;
 yum install mplayer&lt;br /&gt;
&lt;br /&gt;
====Arch Linux====&lt;br /&gt;
 pacman -S mplayer&lt;br /&gt;
&lt;br /&gt;
====Gentoo====&lt;br /&gt;
 emerge -ptva mplayer&lt;br /&gt;
&lt;br /&gt;
===MPlayer codecs===&lt;br /&gt;
Not all distributions include the full set of MPlayer codecs in their repositories. To install the full set follow these easy steps.&lt;br /&gt;
&lt;br /&gt;
# Download: http://www4.mplayerhq.hu/MPlayer/releases/codecs/all-20071007.tar.bz2&lt;br /&gt;
# Extract with: tar xvf all-20071007.tar.bz2&lt;br /&gt;
# Copy the codecs (but not the directory) to the MPlayer codec directory. Default is /usr/lib/win32&lt;br /&gt;
&lt;br /&gt;
====NVIDIA VDPAU====&lt;br /&gt;
If you use an NVIDIA GPU be sure to install their latest binary drivers as they offer a feature that enables offloading video decoding from the CPU to GPU which may provide smoother video playback, especially for h264 encoded videos while keeping CPU usage at low levels. Check your MPlayer configuration to use both the VDPAU video option (-vc) and video output (-vo). Type &amp;quot;mplayer -vo help&amp;quot; to list available outputs.&lt;br /&gt;
&lt;br /&gt;
====ATI====&lt;br /&gt;
The open source video driver provides hardware accelerated video decoding for R600+ based GPUs.&lt;br /&gt;
&lt;br /&gt;
===MPlayer tweaks===&lt;br /&gt;
This is a sample configuration file tailored for specific preferences. The MPlayer configuration file can be found at: ~/.mplayer/config. All of the options are documented in [http://www.mplayerhq.hu/DOCS/man/en/mplayer.1.html the manual].&lt;br /&gt;
&lt;br /&gt;
 # If no GPU-specific video output driver is available, xv is the best choice,&lt;br /&gt;
 # followed by x11 (which doesn&#039;t not do software zooming unless passed &amp;quot;-zoom&amp;quot; or &amp;quot;zoom=1&amp;quot;)&lt;br /&gt;
 vo=xv&lt;br /&gt;
 ao=alsa&lt;br /&gt;
 # 4 audio channels for surround sound files&lt;br /&gt;
 channels=4&lt;br /&gt;
 # Default audio and subtitle tracks. (Not all files use the correct tags,&lt;br /&gt;
 # so sometimes it will be necessary to switch streams manually with &#039;#&#039; and &#039;j&#039;&lt;br /&gt;
 # or from the command line with &amp;quot;-aid x&amp;quot; and &amp;quot;-sid x&amp;quot;)&lt;br /&gt;
 alang=jp,jpn,&lt;br /&gt;
 slang=en,eng,&lt;br /&gt;
 # Find ASS subs and use the fonts provided in the file if possible&lt;br /&gt;
 ass=1&lt;br /&gt;
 embeddedfonts=1&lt;br /&gt;
 fontconfig=1&lt;br /&gt;
 # The highest level of subtitle anti-aliasing&lt;br /&gt;
 spuaa=4&lt;br /&gt;
 # Less stdout text&lt;br /&gt;
 quiet=1&lt;br /&gt;
&lt;br /&gt;
====MPlayer Tricks====&lt;br /&gt;
MPlayer has a large collection of video filters included. You may use them to achieve different results.&lt;br /&gt;
&lt;br /&gt;
* Play interlaced video without combing:&lt;br /&gt;
 mplayer -vf pullup myvideo.ext&lt;br /&gt;
* Increase saturation and contrast:&lt;br /&gt;
 mplayer -vf eq2=0.8 myvideo.ext&lt;br /&gt;
* Remove &amp;quot;mosquito&amp;quot; noise:&lt;br /&gt;
 mplayer -vf hqdn3d myvideo.ext&lt;br /&gt;
* Make crappy video look good:&lt;br /&gt;
 mplayer -vf pp7 myvideo.ext&lt;br /&gt;
* Combine:&lt;br /&gt;
 mplayer -ass -embeddedfonts -vf pullup,eq2=0.8,unsharp=l3x3:0.2,hqdn3d myvideo.ext&lt;br /&gt;
&lt;br /&gt;
==SMPlayer==&lt;br /&gt;
SMPlayer provides a QT based front-end to MPlayer. It contains useful features such as saving the video position allowing you to continue watching the video from that point at a later date.&lt;br /&gt;
&lt;br /&gt;
===Installing SMPlayer===&lt;br /&gt;
====Debian Based Distributions (Including Ubuntu)====&lt;br /&gt;
 sudo apt-get install smplayer&lt;br /&gt;
You can also:&lt;br /&gt;
* Download the .deb file from [http://smplayer.sourceforge.net/downloads.php the SMPlayer website] or&lt;br /&gt;
* Add the SMPlayer repository to your /etc/apt/sources.list.&lt;br /&gt;
8.04 (hardy):&lt;br /&gt;
 deb http://ppa.launchpad.net/rvm/ubuntu hardy main&lt;br /&gt;
8.10 (intrepid):&lt;br /&gt;
 deb http://ppa.launchpad.net/rvm/ubuntu intrepid main&lt;br /&gt;
&lt;br /&gt;
====Arch Linux====&lt;br /&gt;
 pacman -S smplayer&lt;br /&gt;
&lt;br /&gt;
====Gentoo====&lt;br /&gt;
 emerge -ptva smplayer&lt;br /&gt;
&lt;br /&gt;
====Red Hat Based Distributions (Including Fedora)====&lt;br /&gt;
You will need to enable the [http://rpmfusion.org/ RPM Fusion] third-party repositories to be able install SMplayer.&lt;br /&gt;
 yum install smplayer&lt;br /&gt;
&lt;br /&gt;
====Building from Source (Compiling)====&lt;br /&gt;
Grab the tarball from [http://smplayer.sourceforge.net/downloads.php the SMPlayer download page].  Decompress it, cd into the directory, and run&lt;br /&gt;
 ./configure&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
If you don&#039;t have sudo installed/configured, then the last step will be instead&lt;br /&gt;
 su&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
===SMPlayer tweaks===&lt;br /&gt;
After installation you may want to configure SMPlayer. Start SMPlayer, open the options (Ctrl + P), go to the subtitles section, within the section go to the SSA/ASS library tab and check the check box for using SSA/ASS library.&lt;br /&gt;
&lt;br /&gt;
If you see a black screen at playing, the colors don&#039;t seem to be right, or playback is too slow, you may need to change the video rendering mode. To do this go to the Options &amp;gt; general section &amp;gt; general tab &amp;gt; output drivers &amp;gt; Video, and set it to &amp;lt;tt&amp;gt;x11&amp;lt;/tt&amp;gt; -  this will use software rendering. Alternatively you can use &amp;lt;tt&amp;gt;xv&amp;lt;/tt&amp;gt; for XVideo rendering or either &amp;lt;tt&amp;gt;gl&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;gl2&amp;lt;/tt&amp;gt; for OpenGL rendering. In general you should try these options in the following order for best quality and performance: &amp;lt;tt&amp;gt;xv&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;gl2&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;gl&amp;lt;/tt&amp;gt; and finally &amp;lt;tt&amp;gt;x11&amp;lt;/tt&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Talk:Linux_Video_Playback&amp;diff=4825</id>
		<title>Talk:Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Talk:Linux_Video_Playback&amp;diff=4825"/>
		<updated>2010-08-21T19:22:54Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Level of detail==&lt;br /&gt;
Is it necessary to add installation instructions for every combination of player and distribution, or&lt;br /&gt;
should we just add a generic section referring users to their package manager to install software?&lt;br /&gt;
Also don&#039;t most distributions already come with a load of players preinstalled, so perhaps we can just list the configuration options&lt;br /&gt;
required to get the most out of them. /[[User:Daf0x|Daf0x]]&lt;br /&gt;
&lt;br /&gt;
* I think it&#039;s important to list the different methods for package managers, it helps Linux n00bs figure out the system they use, it&#039;s very encouraging. Those preinstalled players are usually just useless frontends to broken MPlayer and Xine installations. Never mind encouraging mediocrity, it&#039;s easier to get people in the mindset of starting from scratch.  All we need is instructions for a fully codec&#039;d up MPlayer and Xine, as those are the most popular players. /[[User:iddqd|iddqd]]&lt;br /&gt;
** Those pre-installed players are actually frontends for gstreamer and xine, but I agree. -[[User:Raylu|Raylu]] 17:57, 17 July 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
* I agree with iddqd, that&#039;s the way I will keep the wiki too. I won&#039;t like it if people go erasing the work unless you have a good reason. --[[User:Koolabsol|Calvin]] 02:56, 2 September 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
* I made some changes, but there is still some work to be done, mostly by people familiar with distros that I am not. [[User:Xiong Chiamiov|Xiong Chiamiov]] 08:10, 27 November 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Nov &#039;09, March &#039;10==&lt;br /&gt;
I don&#039;t understand the logic for those two edits by Koolabsol. Why was the option to compile MPlayer from source removed? The other changes break formatting consistency. I&#039;m reverting to my last edit in October &#039;09 and reapplying some of the typos he fixed. -[[User:Raylu|Raylu]] 17:56, 17 July 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Well whoops. Sorry about that. Hope you don&#039;t mind me adding back in some of the changes I made. Hopefully I don&#039;t delete entire sections this time. --[[User:Koolabsol|Koolabsol]] 19:22, 21 August 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=2176</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=2176"/>
		<updated>2010-03-19T17:29:12Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Recommended Media Players==&lt;br /&gt;
;* [[Wikipedia:MPlayer|MPlayer]]&lt;br /&gt;
;* [[Wikipedia:SMPlayer|SMPlayer]]&lt;br /&gt;
==MPlayer==&lt;br /&gt;
===Installation===&lt;br /&gt;
Perform the one of the following commands as root, depending on your distribution.&lt;br /&gt;
&lt;br /&gt;
====Debian Based Distributions (Includes Ubuntu)====&lt;br /&gt;
 aptitude install mplayer&lt;br /&gt;
For additional codecs:&lt;br /&gt;
1. Visit http://debian-multimedia.org/ and add it as a package repository using the instructions in the red boxes.&amp;lt;br/&amp;gt;&lt;br /&gt;
2. sudo aptitude update &amp;amp;&amp;amp; sudo aptitude install mplayer w32codecs&lt;br /&gt;
&lt;br /&gt;
=====Ubuntu PPA=====&lt;br /&gt;
Usually the version in Ubuntu default repos is pretty old, you might want to check [https://launchpad.net/ubuntu/+ppas PPA] for updated versions.&lt;br /&gt;
&lt;br /&gt;
====OpenSuse====&lt;br /&gt;
 zypper in mplayer&lt;br /&gt;
&lt;br /&gt;
====Fedora/Red Hat Based Distributions====&lt;br /&gt;
 yum install mplayer&lt;br /&gt;
&lt;br /&gt;
====Arch Linux====&lt;br /&gt;
 pacman -S mplayer&lt;br /&gt;
&lt;br /&gt;
====Gentoo====&lt;br /&gt;
 emerge -ptva mplayer&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Obscure Codecs===&lt;br /&gt;
Not all distributions include the full set of mplayer codecs in their repositories. To install the full set follow these easy steps.&amp;lt;br/&amp;gt;&lt;br /&gt;
1. Download: http://www4.mplayerhq.hu/MPlayer/releases/codecs/all-20071007.tar.bz2&amp;lt;br/&amp;gt;&lt;br /&gt;
2. Extract with: tar xvf all-20071007.tar.bz2&amp;lt;br/&amp;gt;&lt;br /&gt;
3. Copy the codecs (but not the directory) to the MPlayer codec directory. Default is /usr/lib/win32&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Nvidia GPU Acceleration====&lt;br /&gt;
If you use Nvidia GPU, be sure to install their latest binary drivers, as they offer offloading video decoding from CPU to GPU which provides far smoother playback, especially for h264 video, while keeping CPU usage at vero low level. Check your mplayer configuration to use both vdpau video codec (-vc) and video output (-vo). Type &amp;quot;mplayer -vo help&amp;quot; to list available outputs.&lt;br /&gt;
&lt;br /&gt;
====ATI GPU Acceleration====&lt;br /&gt;
The upcoming (as of 2009.10.04) open source driver should provide hardware accelerated video decoding for R600+ based GPUs. This will most likely happen around Linux Kernel 2.6.32 release.&lt;br /&gt;
&lt;br /&gt;
===Tweaks===&lt;br /&gt;
This is a sample configuration file tailored for specific preferences. The MPlayer configuration file can be found at: &amp;lt;tt&amp;gt;~/.mplayer/config&amp;lt;/tt&amp;gt;. All of the options are documented in the manpage and also [online http://www.mplayerhq.hu/DOCS/man/en/mplayer.1.html].&lt;br /&gt;
&lt;br /&gt;
 # If no GPU-specific video output driver is available, xv is the best choice,&lt;br /&gt;
 # followed by x11 (which doesn&#039;t not do software zooming unless passed &amp;quot;-zoom&amp;quot; or &amp;quot;zoom=1&amp;quot;)&lt;br /&gt;
 vo=xv&lt;br /&gt;
 ao=alsa&lt;br /&gt;
 # 4 audio channels for surround sound files&lt;br /&gt;
 channels=4&lt;br /&gt;
 # Default audio and subtitle tracks. (Not all files use the correct tags,&lt;br /&gt;
 # so sometimes it will be necessary to switch streams manually with &#039;#&#039; and &#039;j&#039;&lt;br /&gt;
 # or from the command line with &amp;quot;-aid x&amp;quot; and &amp;quot;-sid x&amp;quot;)&lt;br /&gt;
 alang=jp,jpn,&lt;br /&gt;
 slang=en,eng,&lt;br /&gt;
 # Find ASS subs and use the fonts provided in the file if possible&lt;br /&gt;
 ass=1&lt;br /&gt;
 embeddedfonts=1&lt;br /&gt;
 fontconfig=1&lt;br /&gt;
 # The highest level of subtitle anti-aliasing&lt;br /&gt;
 spuaa=4&lt;br /&gt;
 # Less stdout text&lt;br /&gt;
 quiet=1&lt;br /&gt;
&lt;br /&gt;
====Tricks====&lt;br /&gt;
MPlayer has a huge collection of filters included. Some of them are magical.&lt;br /&gt;
&lt;br /&gt;
* View styled subs, even if you only have plain subs:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -ass -embeddedfonts myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
* View external subs:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -ass -sub mysubs.srt myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
* Play interlaced video without combing:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -vf pullup myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
* Increase saturation and contrast:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -vf eq2=0.8 myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
* Remove &amp;quot;mosquito&amp;quot; noise:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -vf hqdn3d myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
* Make crappy video look good:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -vf pp7 myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
* Combine:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -ass -embeddedfonts -vf pullup,eq2=0.8,unsharp=l3x3:0.2,hqdn3d myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==SMPlayer==&lt;br /&gt;
SMPlayer provides an easy-to-use QT interface to MPlayer. It contains a couple of nice features including saving the playback position so you can continue watching your video the next time you start it (this feature can be disabled of course).&lt;br /&gt;
&lt;br /&gt;
=== Installation ===&lt;br /&gt;
====Debian Based Distributions (Includes Ubuntu)====&lt;br /&gt;
 sudo apt-get install smplayer&lt;br /&gt;
You can also:&lt;br /&gt;
* Download the .deb file from [http://smplayer.sourceforge.net/downloads.php the SMPlayer website] or&lt;br /&gt;
* Add the SMPlayer repository to your /etc/apt/sources.list.&lt;br /&gt;
8.04 (hardy):&lt;br /&gt;
 deb http://ppa.launchpad.net/rvm/ubuntu hardy main&lt;br /&gt;
8.10 (intrepid):&lt;br /&gt;
 deb http://ppa.launchpad.net/rvm/ubuntu intrepid main&lt;br /&gt;
&lt;br /&gt;
====Arch Linux====&lt;br /&gt;
 pacman -S smplayer&lt;br /&gt;
&lt;br /&gt;
====Gentoo====&lt;br /&gt;
 emerge -ptva smplayer&lt;br /&gt;
&lt;br /&gt;
===Tweaks===&lt;br /&gt;
After installation you&#039;ll need to configure it a little:&lt;br /&gt;
Start SMPlayer, open the options (Ctrl + P), go to the subtitles section, within the section go to the SSA/ASS library tab and check the check box for using SSA/ASS library.&lt;br /&gt;
&lt;br /&gt;
If you see a black screen at playing, the colors don&#039;t seem to be right, or playback is too slow, you may need to change the video rendering mode. To do this go to Options &amp;gt; Preferences &amp;gt; General (This is open by default) &amp;gt; Video &amp;gt; Output driver &amp;gt; &amp;lt;tt&amp;gt;x11&amp;lt;/tt&amp;gt;. This will set it to use software rendering. Alternatively you can use &amp;lt;tt&amp;gt;xv&amp;lt;/tt&amp;gt; for XVideo rendering (Best Performance) or &amp;lt;tt&amp;gt;gl&amp;lt;/tt&amp;gt;/&amp;lt;tt&amp;gt;gl2&amp;lt;/tt&amp;gt; for OpenGL rendering (Slow).&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=User:Koolabsol&amp;diff=2146</id>
		<title>User:Koolabsol</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=User:Koolabsol&amp;diff=2146"/>
		<updated>2010-02-12T16:48:59Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=2003</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=2003"/>
		<updated>2009-11-30T08:45:18Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Recommended Players==&lt;br /&gt;
;* [http://www.mplayerhq.hu/ MPlayer]&lt;br /&gt;
;* [http://smplayer.sourceforge.net/ SMPlayer]&lt;br /&gt;
==MPlayer==&lt;br /&gt;
===Installation===&lt;br /&gt;
Perform the one of the following commands as root, depending on your distribution.&lt;br /&gt;
&lt;br /&gt;
====Debian Based Distributions (Includes Ubuntu)====&lt;br /&gt;
 aptitude install mplayer&lt;br /&gt;
For additional codecs:&lt;br /&gt;
1. Visit http://debian-multimedia.org/ and add it as a package repository using the instructions in the red boxes.&amp;lt;br/&amp;gt;&lt;br /&gt;
2. sudo aptitude update &amp;amp;&amp;amp; sudo aptitude install mplayer w32codecs&lt;br /&gt;
&lt;br /&gt;
=====Ubuntu PPA=====&lt;br /&gt;
Usually the version in Ubuntu default repos is pretty old, you might want to check [https://launchpad.net/ubuntu/+ppas PPA] for updated versions.&lt;br /&gt;
&lt;br /&gt;
====OpenSuse====&lt;br /&gt;
 zypper in mplayer&lt;br /&gt;
&lt;br /&gt;
====Fedora/Red Hat Based Distributions====&lt;br /&gt;
 yum install mplayer&lt;br /&gt;
&lt;br /&gt;
====Arch Linux====&lt;br /&gt;
 pacman -S mplayer&lt;br /&gt;
&lt;br /&gt;
====Gentoo====&lt;br /&gt;
 emerge -ptva mplayer&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Obscure Codecs===&lt;br /&gt;
Not all distributions include the full set of mplayer codecs in their repositories. To install the full set follow these easy steps.&amp;lt;br/&amp;gt;&lt;br /&gt;
1. Download: http://www4.mplayerhq.hu/MPlayer/releases/codecs/all-20071007.tar.bz2&amp;lt;br/&amp;gt;&lt;br /&gt;
2. Extract with: tar xvf all-20071007.tar.bz2&amp;lt;br/&amp;gt;&lt;br /&gt;
3. Copy the codecs (but not the directory) to the MPlayer codec directory. Default is /usr/lib/win32&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Nvidia GPU Acceleration====&lt;br /&gt;
If you use Nvidia GPU, be sure to install their latest binary drivers, as they offer offloading video decoding from CPU to GPU which provides far smoother playback, especially for h264 video, while keeping CPU usage at vero low level. Check your mplayer configuration to use both vdpau video codec (-vc) and video output (-vo). Type &amp;quot;mplayer -vo help&amp;quot; to list available outputs.&lt;br /&gt;
&lt;br /&gt;
====ATI GPU Acceleration====&lt;br /&gt;
The upcoming (as of 2009.10.04) open source driver should provide hardware accelerated video decoding for R600+ based GPUs. This will most likely happen around Linux Kernel 2.6.32 release.&lt;br /&gt;
&lt;br /&gt;
===Tweaks===&lt;br /&gt;
This is a sample configuration file tailored for specific preferences. The MPlayer configuration file can be found at: &amp;lt;tt&amp;gt;~/.mplayer/config&amp;lt;/tt&amp;gt;. All of the options are documented in the manpage and also [online http://www.mplayerhq.hu/DOCS/man/en/mplayer.1.html].&lt;br /&gt;
&lt;br /&gt;
 # If no GPU-specific video output driver is available, xv is the best choice,&lt;br /&gt;
 # followed by x11 (which doesn&#039;t not do software zooming unless passed &amp;quot;-zoom&amp;quot; or &amp;quot;zoom=1&amp;quot;)&lt;br /&gt;
 vo=xv&lt;br /&gt;
 ao=alsa&lt;br /&gt;
 # 4 audio channels for surround sound files&lt;br /&gt;
 channels=4&lt;br /&gt;
 # Default audio and subtitle tracks. (Not all files use the correct tags,&lt;br /&gt;
 # so sometimes it will be necessary to switch streams manually with &#039;#&#039; and &#039;j&#039;&lt;br /&gt;
 # or from the command line with &amp;quot;-aid x&amp;quot; and &amp;quot;-sid x&amp;quot;)&lt;br /&gt;
 alang=jp,jpn,&lt;br /&gt;
 slang=en,eng,&lt;br /&gt;
 # Find ASS subs and use the fonts provided in the file if possible&lt;br /&gt;
 ass=1&lt;br /&gt;
 embeddedfonts=1&lt;br /&gt;
 fontconfig=1&lt;br /&gt;
 # The highest level of subtitle anti-aliasing&lt;br /&gt;
 spuaa=4&lt;br /&gt;
 # Less stdout text&lt;br /&gt;
 quiet=1&lt;br /&gt;
&lt;br /&gt;
====Tricks====&lt;br /&gt;
MPlayer has a huge collection of filters included. Some of them are magical.&lt;br /&gt;
&lt;br /&gt;
* View styled subs, even if you only have plain subs:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -ass -embeddedfonts myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
* View external subs:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -ass -sub mysubs.srt myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
* Play interlaced video without combing:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -vf pullup myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
* Increase saturation and contrast:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -vf eq2=0.8 myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
* Remove &amp;quot;mosquito&amp;quot; noise:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -vf hqdn3d myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
* Make crappy video look good:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -vf pp7 myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
* Combine:&lt;br /&gt;
** &amp;lt;tt&amp;gt;mplayer -ass -embeddedfonts -vf pullup,eq2=0.8,unsharp=l3x3:0.2,hqdn3d myvideo.ext&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==SMPlayer==&lt;br /&gt;
SMPlayer provides an easy-to-use QT interface to MPlayer. It contains a couple of nice features including saving the playback position so you can continue watching your video the next time you start it (this feature can be disabled of course).&lt;br /&gt;
&lt;br /&gt;
=== Installation ===&lt;br /&gt;
====Debian Based Distributions (Includes Ubuntu)====&lt;br /&gt;
 sudo apt-get install smplayer&lt;br /&gt;
You can also:&lt;br /&gt;
* Download the .deb file from [http://smplayer.sourceforge.net/downloads.php the SMPlayer website] or&lt;br /&gt;
* Add the SMPlayer repository to your /etc/apt/sources.list.&lt;br /&gt;
8.04 (hardy):&lt;br /&gt;
 deb http://ppa.launchpad.net/rvm/ubuntu hardy main&lt;br /&gt;
8.10 (intrepid):&lt;br /&gt;
 deb http://ppa.launchpad.net/rvm/ubuntu intrepid main&lt;br /&gt;
&lt;br /&gt;
====Arch Linux====&lt;br /&gt;
 pacman -S smplayer&lt;br /&gt;
&lt;br /&gt;
====Gentoo====&lt;br /&gt;
 emerge -ptva smplayer&lt;br /&gt;
&lt;br /&gt;
===Tweaks===&lt;br /&gt;
After installation you&#039;ll need to configure it a little:&lt;br /&gt;
Start SMPlayer, open the options (Ctrl + P), go to the subtitles section, within the section go to the SSA/ASS library tab and check the check box for using SSA/ASS library.&lt;br /&gt;
&lt;br /&gt;
If you see a black screen at playing, the colors don&#039;t seem to be right, or playback is too slow, you may need to change the video rendering mode. To do this go to Options &amp;gt; Preferences &amp;gt; General (This is open by default) &amp;gt; Video &amp;gt; Output driver &amp;gt; &amp;lt;tt&amp;gt;x11&amp;lt;/tt&amp;gt;. This will set it to use software rendering. Alternatively you can use &amp;lt;tt&amp;gt;xv&amp;lt;/tt&amp;gt; for XVideo rendering (Best Performance) or &amp;lt;tt&amp;gt;gl&amp;lt;/tt&amp;gt;/&amp;lt;tt&amp;gt;gl2&amp;lt;/tt&amp;gt; for OpenGL rendering (Slow).&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=712</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=712"/>
		<updated>2008-11-27T14:20:00Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: You and your spelling mistakes. =P&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains the best video playback options for Linux and provides installation instructions.&lt;br /&gt;
&lt;br /&gt;
==List of recommended players==&lt;br /&gt;
;* [http://www.mplayerhq.hu/ MPlayer]&lt;br /&gt;
;* [http://smplayer.sourceforge.net/ SMPlayer]&lt;br /&gt;
==MPlayer==&lt;br /&gt;
===Installing MPlayer===&lt;br /&gt;
Perform the one of the following commands as root, depending on your distribution.&lt;br /&gt;
====Debian based distributions (Includes Ubuntu)====&lt;br /&gt;
 aptitude install mplayer&lt;br /&gt;
====OpenSuse====&lt;br /&gt;
 zypper in mplayer&lt;br /&gt;
&lt;br /&gt;
====Fedora/Red Hat based distributions====&lt;br /&gt;
 yum install mplayer&lt;br /&gt;
====Arch Linux====&lt;br /&gt;
 pacman -S mplayer&lt;br /&gt;
====Gentoo====&lt;br /&gt;
 emerge -ptva mplayer&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===MPlayer codecs===&lt;br /&gt;
Not all distributions include the full set of mplayer codecs in their repositories. To install the full set follow these easy steps.&amp;lt;br/&amp;gt;&lt;br /&gt;
1. Download: http://www4.mplayerhq.hu/MPlayer/releases/codecs/all-20071007.tar.bz2&amp;lt;br/&amp;gt;&lt;br /&gt;
2. Extract with: tar xvf all-20071007.tar.bz2&amp;lt;br/&amp;gt;&lt;br /&gt;
3. Copy the codecs (but not the directory) to the MPlayer codec directory. Default is /usr/lib/win32&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Debian/Ubuntu users:&amp;lt;br/&amp;gt;&lt;br /&gt;
1. Visit http://debian-multimedia.org/ and add it as a package repository using the instructions in the red boxes.&amp;lt;br/&amp;gt;&lt;br /&gt;
2. sudo aptitude update &amp;amp;&amp;amp; sudo aptitude install mplayer w32codecs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===MPlayer tweaks===&lt;br /&gt;
These are some sample configuration files tailored for specific preferences. The MPlayer configuration file can be found at: (&amp;lt;tt&amp;gt;~/.mplayer/config&amp;lt;/tt&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For English audio preference, then Spanish&amp;lt;!--(?? Correct if wrong, delete this part otherwise.)--&amp;gt;, with 4 audio channels for surround sound files. &lt;br /&gt;
 vo=xv&lt;br /&gt;
 ao=alsa&lt;br /&gt;
 channels=4&lt;br /&gt;
 alang=en,es&lt;br /&gt;
&lt;br /&gt;
For Japanese audio preference, subtitles on. SDL A/V output for performence.&lt;br /&gt;
 ao=sdl&lt;br /&gt;
 vo=sdl &lt;br /&gt;
 #Note: SDL video output does not work well with xinerama. Those wishing to watch video on a TV or other display should use &amp;quot;vo=xv&amp;quot;&lt;br /&gt;
 alang=jpn,Japanese &lt;br /&gt;
 #Not all files use the correct tags, so sometimes it will be necessary to switch audio streams manually or from the command line with &amp;quot;-aid x&amp;quot;, where &amp;quot;x&amp;quot;   is the number of the audio stream.&lt;br /&gt;
 sid=0&lt;br /&gt;
 subfont-autoscale=1&lt;br /&gt;
 ass=1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==SMPlayer==&lt;br /&gt;
MPlayer by itself is fine but SMPlayer provides an easy to use interface to MPlayer so it is a better choice for most. It contains a couple of nice features, including autosaving the playback position so you can continue watching your anime the next time you start it (this feature can be disabled of course). &lt;br /&gt;
&lt;br /&gt;
===Installing SMPlayer===&lt;br /&gt;
====Debian/Ubuntu====&lt;br /&gt;
If you are using Debian Lenny/Sid or Ubuntu Intrepid Ibex (8.10), then you can simply&lt;br /&gt;
 sudo apt-get install smplayer&lt;br /&gt;
Otherwise, you have 2 options:&lt;br /&gt;
* Download the .deb file from [http://smplayer.sourceforge.net/downloads.php the SMPlayer website] or&lt;br /&gt;
* Add the SMPlayer repository to your /etc/apt/sources.list.&lt;br /&gt;
8.04 (hardy):&lt;br /&gt;
 deb http://ppa.launchpad.net/rvm/ubuntu hardy main&lt;br /&gt;
8.10 (intrepid):&lt;br /&gt;
 deb http://ppa.launchpad.net/rvm/ubuntu intrepid main&lt;br /&gt;
&lt;br /&gt;
====OpenSUSE====&lt;br /&gt;
&amp;lt;!-- I know absolutely nothing about SuSE, so it would be cool if someone who did could fill this in --&amp;gt;&lt;br /&gt;
You can find .rpm&#039;s via [http://software.opensuse.org/search the search page].&lt;br /&gt;
&lt;br /&gt;
====Fedora/RedHat====&lt;br /&gt;
&amp;lt;!-- I didn&#039;t see it in the package search: https://admin.fedoraproject.org/pkgdb/ --&amp;gt;&lt;br /&gt;
Build from source.  See below.&lt;br /&gt;
&lt;br /&gt;
====Arch Linux====&lt;br /&gt;
 pacman -S smplayer&lt;br /&gt;
&lt;br /&gt;
====Gentoo====&lt;br /&gt;
 emerge -ptva smplayer&lt;br /&gt;
&lt;br /&gt;
====Building from Source (Compiling)====&lt;br /&gt;
&amp;lt;!-- can someone check this?  Also, perhaps we should go through the steps a little more, for beginners?  --&amp;gt;&lt;br /&gt;
Grab the tarball from [http://smplayer.sourceforge.net/downloads.php the SMPlayer download page].  Decompress it, cd into the directory, and run&lt;br /&gt;
 ./configure&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
If you don&#039;t have sudo installed/configured, then the last step will be instead&lt;br /&gt;
 su&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
===SMPlayer tweaks===&lt;br /&gt;
After installation you&#039;ll need to configure it a little:&lt;br /&gt;
Start SMPlayer, open the options (Ctrl + P), go to the subtitles section, within the section go to the SSA/ASS library tab and check the check box for using SSA/ASS library. With this you can see the subtitle&#039;s colors and fonts (Note: the used fonts must be installed on the system for this).&lt;br /&gt;
&lt;br /&gt;
If you see a black screen at playing, or the colors doesn&#039;t seems to be right, or the playing is too slow or wrong you may need to change the video rendering mode. To do this go to the options, general section, general tab, output drivers, Video, and set it to &amp;lt;tt&amp;gt;x11&amp;lt;/tt&amp;gt; -  this will use software rendering. Alternatively you can use &amp;lt;tt&amp;gt;xv&amp;lt;/tt&amp;gt; for XVideo rendering or either &amp;lt;tt&amp;gt;gl&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;gl2&amp;lt;/tt&amp;gt; for OpenGL rendering. In general you should try these options in the following order for best quality and performance: &amp;lt;tt&amp;gt;xv&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;gl2&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;gl&amp;lt;/tt&amp;gt; and finally &amp;lt;tt&amp;gt;x11&amp;lt;/tt&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=BT_clients&amp;diff=646</id>
		<title>BT clients</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=BT_clients&amp;diff=646"/>
		<updated>2008-11-01T03:36:17Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: /* Acceptable */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A &#039;&#039;&#039;&#039;&#039;BitTorrent Client&#039;&#039;&#039;&#039;&#039; is computer software that utilizes the BitTorrent P2P protocol to download and upload data. The original BitTorrent client was released in 2002 by Bram Cohen. Since then, many different clients have developed, all of which are at least partially based on the original BitTorrent client. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==BitTorrent Clients==&lt;br /&gt;
&#039;&#039;&#039;Please be sure to avoid all clients listed under &#039;&#039;[[BT Clients#Not Recommended|Not Recommended]]&#039;&#039; since they are not suggested to use with BoxTorrents because of various reasons.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===&amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt;===&lt;br /&gt;
;[http://www.utorrent.com/ µTorrent] or [http://www.utorrent.com/ uTorrent]  (Windows, WINE)&lt;br /&gt;
*One of the most preferred clients on BoxTorrents. This client is known for having a small distribution size, despite being feature rich, and using little system resources. Available for Windows and WINE emulation only.&lt;br /&gt;
&lt;br /&gt;
;[http://www.vuze.com/app?service=home Vuze (&#039;&#039;Azureus&#039;&#039;)] (Windows, Linux, Mac)&lt;br /&gt;
* One of the most preferred clients on BoxTorrents. This client has recently changed name to Vuze from it&#039;s old name Azureus.&lt;br /&gt;
* What Vuze is unique for is it&#039;s community part, which allows you to share torrents easily with your friends.&lt;br /&gt;
* While this client is very rich in features, it   is written in Java, which makes it slow by nature, and is quite a memory hog. Dispite these enourmous flaws, it is still one of the best.&lt;br /&gt;
;[http://libtorrent.rakshasa.no/ rTorrent] (Linux, cygwin?)&lt;br /&gt;
* A mature BitTorrent client built around the libTorrent C++ library. Terminal based.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===&amp;lt;span style=&amp;quot;color:orange&amp;quot;&amp;gt;Acceptable&amp;lt;/span&amp;gt;===&lt;br /&gt;
;[http://pingpong-abc.sourceforge.net/ ABC] (Windows, Linux)&lt;br /&gt;
&lt;br /&gt;
;[http://www.bittornado.com/ BitTornado] (Windows, Linux, Mac)&lt;br /&gt;
* Client developed by John Hoffman. This client was the first to include [[super seeding]]. This client automatically bans connections with [[BitComet]] clients. &lt;br /&gt;
&lt;br /&gt;
;[http://download.bittorrent.com/dl/ BitTorrent 5 (&#039;&#039;Mainline&#039;&#039;)] (Windows, Linux, Mac)&lt;br /&gt;
* The official BitTorrent client, nicknamed &#039;&#039;Mainline&#039;&#039; by developers. The last version before BitTorrent Inc. switched to the [[uTorrent]] build.&lt;br /&gt;
* The newest version for Mac is 4.27.2 and Linux 5.2.0.&lt;br /&gt;
&lt;br /&gt;
;[http://www.bittorrent.com/ BitTorrent 6] (Windows)&lt;br /&gt;
* The official BitTorrent client. It is based on the [[uTorrent]] client. Only big difference from [[uTorrent]] is that it comes with support for BitTorrent DNA™.&lt;br /&gt;
 &lt;br /&gt;
;[http://www.167bt.com/intl/ BitSpirit] (Windows)&lt;br /&gt;
&lt;br /&gt;
;[http://deluge-torrent.org/ Deluge] (Windows, Linux, Mac OS X)&lt;br /&gt;
* Deluge is a lightweight, Free Software, cross-platform BitTorrent client.&lt;br /&gt;
&lt;br /&gt;
;[http://ktorrent.org/ KTorrent] (Windows, Linux, Mac OS X)&lt;br /&gt;
&lt;br /&gt;
;[http://thegraveyard.org/qtorrent.php QTorrent] (Windows, Linux, Mac)&lt;br /&gt;
* QTorrent bundles it&#039;s own version of BitTornado but depend on [http://wiki.python.org/moin/PyQt PyQt] (which you much install seperatly).&lt;br /&gt;
&lt;br /&gt;
;[http://www.transmissionbt.com/ Transmission] (Linux, Mac OS X, BeOS)&lt;br /&gt;
* A client that runs on Unix based systems, Mac OS X, and BeOS. Default client for Ubuntu Linux, Zenwalk Linux and some other distributions. This client is known for having a small distribution size.&lt;br /&gt;
&lt;br /&gt;
===&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not Recommended&amp;lt;/span&amp;gt;===&lt;br /&gt;
;[http://www.bitcomet.com/ BitComet] (Windows)&lt;br /&gt;
* This client is not suggested for use in the BoxTorrents community. It is currently only available for the Windows platform. &lt;br /&gt;
&lt;br /&gt;
;[http://www.bitlord.com/ BitLord] (Windows)&lt;br /&gt;
* This client is based on the [[BitComet]] client and includes adware and malware. It is not suggested for use in the BoxTorrents community. It is currently only available for the Windows platform.&lt;br /&gt;
&lt;br /&gt;
;[http://shareaza.sourceforge.net/ Shareaza] (Windows)&lt;br /&gt;
* There exists two Shareza, one false and the true client. &#039;&#039;&#039;Shareza V4&#039;&#039;&#039; is the false one, and it comes bundled with &#039;&#039;&#039;adware&#039;&#039;&#039;. &#039;&#039;&#039;Shareza V2&#039;&#039;&#039; is the true client.&lt;br /&gt;
&lt;br /&gt;
==External Websites==&lt;br /&gt;
* [http://en.wikipedia.org/wiki/BitTorrent_client BitTorrent clients on Wikipedia]&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Talk:IRC&amp;diff=613</id>
		<title>Talk:IRC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Talk:IRC&amp;diff=613"/>
		<updated>2008-10-15T01:49:19Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: /* XChat */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===XChat===&lt;br /&gt;
XChat? Open-source? Sorta. The Windows version is just like mIRC, and the linked &#039;homepage&#039; is not the official one (now changed to real homepage). &lt;br /&gt;
One can compile XChat yourself (there&#039;s a tute on the silverex page), but it&#039;ll be using the *nix source, rather than the Windows source that the official Windows release is compiled from - and thus will be a little buggy.&lt;br /&gt;
&lt;br /&gt;
I see where you&#039;re coming from. Thanks for the update, I made the section. --[[User:Koolabsol|Calvin]] 01:49, 15 October 2008 (UTC)&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Talk:BT_clients&amp;diff=596</id>
		<title>Talk:BT clients</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Talk:BT_clients&amp;diff=596"/>
		<updated>2008-10-08T02:37:23Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: /* Deluge as a recommended client instead of acceptable? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===What more?===&lt;br /&gt;
What more does the page need? Let&#039;s help out and do a list. --[[User:Deimon|Deimon]] 17:46, 13 September 2008 (UTC)&lt;br /&gt;
* Descriptions on all clients&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Page Arrangement===&lt;br /&gt;
&lt;br /&gt;
Could use more descriptive editing and formatting. --[[User:Tsikura|Tsikura]] 08:28, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Still needs a lot of information. I like how its organized now. i wish i could say the same about the Windows playback page, but thats under hot debate right now.  --[[User:MarchHare|MarchHare]] 08:53, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Wouldn&#039;t it be better to order it from Good -&amp;gt; Bad instead of Bad/Good/Acceptable as it&#039;s now? And maybe undercategories within each section by OS...? --[[User:Deimon|Deimon]] 11:02, 24 August 2008 (UTC)&amp;lt;br /&amp;gt;&lt;br /&gt;
- I&#039;ve changed it, looks better now. --[[User:Deimon|Deimon]] 12:27, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Moved Vuze (Azureus) from Acceptable to Good, since it&#039;s one of the two only recommended clients. Also corrected it&#039;s title and added a short desc. about it&#039;s community part. --[[User:Deimon|Deimon]] 14:34, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
I was under the impression that Bitspirit was very similar to Bitcomet. There doesn&#039;t seem to be much discussion about it, so I won&#039;t be moving it to &amp;quot;Bad&amp;quot;. &lt;br /&gt;
[[User:Kanzar|Kanzar]] 10:30, 26 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Someone moved BitSpirit back... Anyway, it&#039;s not well documentation on it so there&#039;s no real reason to move it to &amp;quot;Bad&amp;quot; unless we hear complains from the users. --[[User:Deimon|Deimon]] 05:54, 28 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Well, I wasn&#039;t the one to move it there in the first place... &amp;lt;_&amp;lt; Ah well. [[User:Kanzar|Kanzar]] 01:30, 29 August 2008 (UTC):&lt;br /&gt;
&lt;br /&gt;
Just wondering... why isn&#039;t Transmission listed under &amp;quot;good&amp;quot;? It&#039;s based on on libTorrent, just like rTorrent (which is currently under &amp;quot;Good&amp;quot;) --[[User:Iindigo|Iindigo]] 22:00, 27 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Clients features more than just what the lib it&#039;s based on features. I don&#039;t know who moved rTorrent to recommended but only Vuze and uTorrent is recommended by the staff of BoxTorrents, if my memory serves me. This may be a wiki but I don&#039;t like people making decisions based on only their own experiences, which involves a bigger part of the community. Can someone who actually have used these applications (Transmission and rTorrent) write the pro&#039;s and con&#039;s about them, so we can decide which to put under recommended. I don&#039;t like the fact with rTorrent that it&#039;s terminal based as I think all recommended must at least have a GUI for easier control of the applications, since not everyone on Linux use terminal often. --[[User:Deimon|Deimon]] 05:55, 28 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Shareza===&lt;br /&gt;
&lt;br /&gt;
Why is &#039;&#039;&#039;Shareza&#039;&#039;&#039; not suggested? I know that there is a false Shareza V4 which is bundled with adware but the real V2 doesn&#039;t have that. --[[User:Deimon|Deimon]] 12:27, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
I would like to notify all people concerned with Shareaza that they&#039;re making a new client, It&#039;s very much and alpha and crashes alot, but the team is taking shareazaV2&#039;s code and re-formulating it from the ground up. It doesn&#039;t need to be included yet, but watched at the very least. http://www.pantheraproject.com/  &lt;br /&gt;
Reference -&amp;gt; http://torrentfreak.com/shareaza-team-fight-back-with-panthera-project-080818/&lt;br /&gt;
--[[User:Aranjedeath|Aranjedeath]]&lt;br /&gt;
&lt;br /&gt;
Shareaza is a bad client because the upload is very low ;)&lt;br /&gt;
(i am not 100% sure if this is for V2 too, but i thought so)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===New Client Suggestions===&lt;br /&gt;
&lt;br /&gt;
There&#039;s a new client called [http://www.binarynotions.com/halite-bittorrent-client Halite] that looks to be &#039;the next uTorrent&#039;. Also worth keeping an eye on. &lt;br /&gt;
[[User:Kanzar|Kanzar]] 10:29, 26 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Read about it in TorrentFreak a while back... Tested it but it&#039;s not as small as they said (RAM usage, it&#039;s not less than uTorrent, which they state), and the scan for how much percent completed you have of one torrent takes a long time. Sorry, forgot to add my byline :P. --[[User:Deimon|Deimon]] 23:44, 29 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Web Frontend Section?===&lt;br /&gt;
I was thinking about chanting up a section centered around web interfaces for command-line torrent clients, and general advice for dedicated torrent servers.  Buuut, I&#039;m thinking maybe that&#039;s way outside the scope of this document.  Would anybody be interested in such a thing? Perhaps as a seperate page altogether? -[[User:iddqd|iddqd]]&lt;br /&gt;
&lt;br /&gt;
Sounds interesting, I&#039;m sure some more advanced people than the regular user would be interesting in that. If you want all you need to do is add it within a new page and then link from here to there. --[[User:Deimon|Deimon]] 02:38, 3 September 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
=== Deluge as a recommended client instead of acceptable? ===&lt;br /&gt;
&lt;br /&gt;
What do you guys think about this? I find it to work amazingly, pretty much like uTorrent (I use it with Ubuntu so I don&#039;t know how good it is on Windows). It&#039;s lighter than craploaded Azureus, and pretty much as powerful and light as uTorrent. Why not put it there? --[[User:Koolabsol|Calvin]] 02:35, 8 October 2008 (UTC)&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Talk:BT_clients&amp;diff=595</id>
		<title>Talk:BT clients</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Talk:BT_clients&amp;diff=595"/>
		<updated>2008-10-08T02:37:00Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: /* Deluge as a recommended client instead of acceptable? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===What more?===&lt;br /&gt;
What more does the page need? Let&#039;s help out and do a list. --[[User:Deimon|Deimon]] 17:46, 13 September 2008 (UTC)&lt;br /&gt;
* Descriptions on all clients&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Page Arrangement===&lt;br /&gt;
&lt;br /&gt;
Could use more descriptive editing and formatting. --[[User:Tsikura|Tsikura]] 08:28, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Still needs a lot of information. I like how its organized now. i wish i could say the same about the Windows playback page, but thats under hot debate right now.  --[[User:MarchHare|MarchHare]] 08:53, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Wouldn&#039;t it be better to order it from Good -&amp;gt; Bad instead of Bad/Good/Acceptable as it&#039;s now? And maybe undercategories within each section by OS...? --[[User:Deimon|Deimon]] 11:02, 24 August 2008 (UTC)&amp;lt;br /&amp;gt;&lt;br /&gt;
- I&#039;ve changed it, looks better now. --[[User:Deimon|Deimon]] 12:27, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Moved Vuze (Azureus) from Acceptable to Good, since it&#039;s one of the two only recommended clients. Also corrected it&#039;s title and added a short desc. about it&#039;s community part. --[[User:Deimon|Deimon]] 14:34, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
I was under the impression that Bitspirit was very similar to Bitcomet. There doesn&#039;t seem to be much discussion about it, so I won&#039;t be moving it to &amp;quot;Bad&amp;quot;. &lt;br /&gt;
[[User:Kanzar|Kanzar]] 10:30, 26 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Someone moved BitSpirit back... Anyway, it&#039;s not well documentation on it so there&#039;s no real reason to move it to &amp;quot;Bad&amp;quot; unless we hear complains from the users. --[[User:Deimon|Deimon]] 05:54, 28 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Well, I wasn&#039;t the one to move it there in the first place... &amp;lt;_&amp;lt; Ah well. [[User:Kanzar|Kanzar]] 01:30, 29 August 2008 (UTC):&lt;br /&gt;
&lt;br /&gt;
Just wondering... why isn&#039;t Transmission listed under &amp;quot;good&amp;quot;? It&#039;s based on on libTorrent, just like rTorrent (which is currently under &amp;quot;Good&amp;quot;) --[[User:Iindigo|Iindigo]] 22:00, 27 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Clients features more than just what the lib it&#039;s based on features. I don&#039;t know who moved rTorrent to recommended but only Vuze and uTorrent is recommended by the staff of BoxTorrents, if my memory serves me. This may be a wiki but I don&#039;t like people making decisions based on only their own experiences, which involves a bigger part of the community. Can someone who actually have used these applications (Transmission and rTorrent) write the pro&#039;s and con&#039;s about them, so we can decide which to put under recommended. I don&#039;t like the fact with rTorrent that it&#039;s terminal based as I think all recommended must at least have a GUI for easier control of the applications, since not everyone on Linux use terminal often. --[[User:Deimon|Deimon]] 05:55, 28 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Shareza===&lt;br /&gt;
&lt;br /&gt;
Why is &#039;&#039;&#039;Shareza&#039;&#039;&#039; not suggested? I know that there is a false Shareza V4 which is bundled with adware but the real V2 doesn&#039;t have that. --[[User:Deimon|Deimon]] 12:27, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
I would like to notify all people concerned with Shareaza that they&#039;re making a new client, It&#039;s very much and alpha and crashes alot, but the team is taking shareazaV2&#039;s code and re-formulating it from the ground up. It doesn&#039;t need to be included yet, but watched at the very least. http://www.pantheraproject.com/  &lt;br /&gt;
Reference -&amp;gt; http://torrentfreak.com/shareaza-team-fight-back-with-panthera-project-080818/&lt;br /&gt;
--[[User:Aranjedeath|Aranjedeath]]&lt;br /&gt;
&lt;br /&gt;
Shareaza is a bad client because the upload is very low ;)&lt;br /&gt;
(i am not 100% sure if this is for V2 too, but i thought so)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===New Client Suggestions===&lt;br /&gt;
&lt;br /&gt;
There&#039;s a new client called [http://www.binarynotions.com/halite-bittorrent-client Halite] that looks to be &#039;the next uTorrent&#039;. Also worth keeping an eye on. &lt;br /&gt;
[[User:Kanzar|Kanzar]] 10:29, 26 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Read about it in TorrentFreak a while back... Tested it but it&#039;s not as small as they said (RAM usage, it&#039;s not less than uTorrent, which they state), and the scan for how much percent completed you have of one torrent takes a long time. Sorry, forgot to add my byline :P. --[[User:Deimon|Deimon]] 23:44, 29 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Web Frontend Section?===&lt;br /&gt;
I was thinking about chanting up a section centered around web interfaces for command-line torrent clients, and general advice for dedicated torrent servers.  Buuut, I&#039;m thinking maybe that&#039;s way outside the scope of this document.  Would anybody be interested in such a thing? Perhaps as a seperate page altogether? -[[User:iddqd|iddqd]]&lt;br /&gt;
&lt;br /&gt;
Sounds interesting, I&#039;m sure some more advanced people than the regular user would be interesting in that. If you want all you need to do is add it within a new page and then link from here to there. --[[User:Deimon|Deimon]] 02:38, 3 September 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Deluge as a recommended client instead of acceptable? ==&lt;br /&gt;
&lt;br /&gt;
What do you guys think about this? I find it to work amazingly, pretty much like uTorrent (I use it with Ubuntu so I don&#039;t know how good it is on Windows). It&#039;s lighter than craploaded Azureus, and pretty much as powerful and light as uTorrent. Why not put it there? --[[User:Koolabsol|Calvin]] 02:35, 8 October 2008 (UTC)&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Talk:BT_clients&amp;diff=594</id>
		<title>Talk:BT clients</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Talk:BT_clients&amp;diff=594"/>
		<updated>2008-10-08T02:36:40Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: /* Deluge as a reccomended client instead of acceptable? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===What more?===&lt;br /&gt;
What more does the page need? Let&#039;s help out and do a list. --[[User:Deimon|Deimon]] 17:46, 13 September 2008 (UTC)&lt;br /&gt;
* Descriptions on all clients&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Page Arrangement===&lt;br /&gt;
&lt;br /&gt;
Could use more descriptive editing and formatting. --[[User:Tsikura|Tsikura]] 08:28, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Still needs a lot of information. I like how its organized now. i wish i could say the same about the Windows playback page, but thats under hot debate right now.  --[[User:MarchHare|MarchHare]] 08:53, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Wouldn&#039;t it be better to order it from Good -&amp;gt; Bad instead of Bad/Good/Acceptable as it&#039;s now? And maybe undercategories within each section by OS...? --[[User:Deimon|Deimon]] 11:02, 24 August 2008 (UTC)&amp;lt;br /&amp;gt;&lt;br /&gt;
- I&#039;ve changed it, looks better now. --[[User:Deimon|Deimon]] 12:27, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Moved Vuze (Azureus) from Acceptable to Good, since it&#039;s one of the two only recommended clients. Also corrected it&#039;s title and added a short desc. about it&#039;s community part. --[[User:Deimon|Deimon]] 14:34, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
I was under the impression that Bitspirit was very similar to Bitcomet. There doesn&#039;t seem to be much discussion about it, so I won&#039;t be moving it to &amp;quot;Bad&amp;quot;. &lt;br /&gt;
[[User:Kanzar|Kanzar]] 10:30, 26 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Someone moved BitSpirit back... Anyway, it&#039;s not well documentation on it so there&#039;s no real reason to move it to &amp;quot;Bad&amp;quot; unless we hear complains from the users. --[[User:Deimon|Deimon]] 05:54, 28 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Well, I wasn&#039;t the one to move it there in the first place... &amp;lt;_&amp;lt; Ah well. [[User:Kanzar|Kanzar]] 01:30, 29 August 2008 (UTC):&lt;br /&gt;
&lt;br /&gt;
Just wondering... why isn&#039;t Transmission listed under &amp;quot;good&amp;quot;? It&#039;s based on on libTorrent, just like rTorrent (which is currently under &amp;quot;Good&amp;quot;) --[[User:Iindigo|Iindigo]] 22:00, 27 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Clients features more than just what the lib it&#039;s based on features. I don&#039;t know who moved rTorrent to recommended but only Vuze and uTorrent is recommended by the staff of BoxTorrents, if my memory serves me. This may be a wiki but I don&#039;t like people making decisions based on only their own experiences, which involves a bigger part of the community. Can someone who actually have used these applications (Transmission and rTorrent) write the pro&#039;s and con&#039;s about them, so we can decide which to put under recommended. I don&#039;t like the fact with rTorrent that it&#039;s terminal based as I think all recommended must at least have a GUI for easier control of the applications, since not everyone on Linux use terminal often. --[[User:Deimon|Deimon]] 05:55, 28 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Shareza===&lt;br /&gt;
&lt;br /&gt;
Why is &#039;&#039;&#039;Shareza&#039;&#039;&#039; not suggested? I know that there is a false Shareza V4 which is bundled with adware but the real V2 doesn&#039;t have that. --[[User:Deimon|Deimon]] 12:27, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
I would like to notify all people concerned with Shareaza that they&#039;re making a new client, It&#039;s very much and alpha and crashes alot, but the team is taking shareazaV2&#039;s code and re-formulating it from the ground up. It doesn&#039;t need to be included yet, but watched at the very least. http://www.pantheraproject.com/  &lt;br /&gt;
Reference -&amp;gt; http://torrentfreak.com/shareaza-team-fight-back-with-panthera-project-080818/&lt;br /&gt;
--[[User:Aranjedeath|Aranjedeath]]&lt;br /&gt;
&lt;br /&gt;
Shareaza is a bad client because the upload is very low ;)&lt;br /&gt;
(i am not 100% sure if this is for V2 too, but i thought so)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===New Client Suggestions===&lt;br /&gt;
&lt;br /&gt;
There&#039;s a new client called [http://www.binarynotions.com/halite-bittorrent-client Halite] that looks to be &#039;the next uTorrent&#039;. Also worth keeping an eye on. &lt;br /&gt;
[[User:Kanzar|Kanzar]] 10:29, 26 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Read about it in TorrentFreak a while back... Tested it but it&#039;s not as small as they said (RAM usage, it&#039;s not less than uTorrent, which they state), and the scan for how much percent completed you have of one torrent takes a long time. Sorry, forgot to add my byline :P. --[[User:Deimon|Deimon]] 23:44, 29 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Web Frontend Section?===&lt;br /&gt;
I was thinking about chanting up a section centered around web interfaces for command-line torrent clients, and general advice for dedicated torrent servers.  Buuut, I&#039;m thinking maybe that&#039;s way outside the scope of this document.  Would anybody be interested in such a thing? Perhaps as a seperate page altogether? -[[User:iddqd|iddqd]]&lt;br /&gt;
&lt;br /&gt;
Sounds interesting, I&#039;m sure some more advanced people than the regular user would be interesting in that. If you want all you need to do is add it within a new page and then link from here to there. --[[User:Deimon|Deimon]] 02:38, 3 September 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
= Deluge as a recommended client instead of acceptable? =&lt;br /&gt;
&lt;br /&gt;
What do you guys think about this? I find it to work amazingly, pretty much like uTorrent (I use it with Ubuntu so I don&#039;t know how good it is on Windows). It&#039;s lighter than craploaded Azureus, and pretty much as powerful and light as uTorrent. Why not put it there? --[[User:Koolabsol|Calvin]] 02:35, 8 October 2008 (UTC)&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Talk:BT_clients&amp;diff=593</id>
		<title>Talk:BT clients</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Talk:BT_clients&amp;diff=593"/>
		<updated>2008-10-08T02:35:40Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: /* Deluge as a reccomended client instead of acceptable? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===What more?===&lt;br /&gt;
What more does the page need? Let&#039;s help out and do a list. --[[User:Deimon|Deimon]] 17:46, 13 September 2008 (UTC)&lt;br /&gt;
* Descriptions on all clients&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Page Arrangement===&lt;br /&gt;
&lt;br /&gt;
Could use more descriptive editing and formatting. --[[User:Tsikura|Tsikura]] 08:28, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Still needs a lot of information. I like how its organized now. i wish i could say the same about the Windows playback page, but thats under hot debate right now.  --[[User:MarchHare|MarchHare]] 08:53, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Wouldn&#039;t it be better to order it from Good -&amp;gt; Bad instead of Bad/Good/Acceptable as it&#039;s now? And maybe undercategories within each section by OS...? --[[User:Deimon|Deimon]] 11:02, 24 August 2008 (UTC)&amp;lt;br /&amp;gt;&lt;br /&gt;
- I&#039;ve changed it, looks better now. --[[User:Deimon|Deimon]] 12:27, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Moved Vuze (Azureus) from Acceptable to Good, since it&#039;s one of the two only recommended clients. Also corrected it&#039;s title and added a short desc. about it&#039;s community part. --[[User:Deimon|Deimon]] 14:34, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
I was under the impression that Bitspirit was very similar to Bitcomet. There doesn&#039;t seem to be much discussion about it, so I won&#039;t be moving it to &amp;quot;Bad&amp;quot;. &lt;br /&gt;
[[User:Kanzar|Kanzar]] 10:30, 26 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Someone moved BitSpirit back... Anyway, it&#039;s not well documentation on it so there&#039;s no real reason to move it to &amp;quot;Bad&amp;quot; unless we hear complains from the users. --[[User:Deimon|Deimon]] 05:54, 28 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Well, I wasn&#039;t the one to move it there in the first place... &amp;lt;_&amp;lt; Ah well. [[User:Kanzar|Kanzar]] 01:30, 29 August 2008 (UTC):&lt;br /&gt;
&lt;br /&gt;
Just wondering... why isn&#039;t Transmission listed under &amp;quot;good&amp;quot;? It&#039;s based on on libTorrent, just like rTorrent (which is currently under &amp;quot;Good&amp;quot;) --[[User:Iindigo|Iindigo]] 22:00, 27 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Clients features more than just what the lib it&#039;s based on features. I don&#039;t know who moved rTorrent to recommended but only Vuze and uTorrent is recommended by the staff of BoxTorrents, if my memory serves me. This may be a wiki but I don&#039;t like people making decisions based on only their own experiences, which involves a bigger part of the community. Can someone who actually have used these applications (Transmission and rTorrent) write the pro&#039;s and con&#039;s about them, so we can decide which to put under recommended. I don&#039;t like the fact with rTorrent that it&#039;s terminal based as I think all recommended must at least have a GUI for easier control of the applications, since not everyone on Linux use terminal often. --[[User:Deimon|Deimon]] 05:55, 28 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Shareza===&lt;br /&gt;
&lt;br /&gt;
Why is &#039;&#039;&#039;Shareza&#039;&#039;&#039; not suggested? I know that there is a false Shareza V4 which is bundled with adware but the real V2 doesn&#039;t have that. --[[User:Deimon|Deimon]] 12:27, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
I would like to notify all people concerned with Shareaza that they&#039;re making a new client, It&#039;s very much and alpha and crashes alot, but the team is taking shareazaV2&#039;s code and re-formulating it from the ground up. It doesn&#039;t need to be included yet, but watched at the very least. http://www.pantheraproject.com/  &lt;br /&gt;
Reference -&amp;gt; http://torrentfreak.com/shareaza-team-fight-back-with-panthera-project-080818/&lt;br /&gt;
--[[User:Aranjedeath|Aranjedeath]]&lt;br /&gt;
&lt;br /&gt;
Shareaza is a bad client because the upload is very low ;)&lt;br /&gt;
(i am not 100% sure if this is for V2 too, but i thought so)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===New Client Suggestions===&lt;br /&gt;
&lt;br /&gt;
There&#039;s a new client called [http://www.binarynotions.com/halite-bittorrent-client Halite] that looks to be &#039;the next uTorrent&#039;. Also worth keeping an eye on. &lt;br /&gt;
[[User:Kanzar|Kanzar]] 10:29, 26 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Read about it in TorrentFreak a while back... Tested it but it&#039;s not as small as they said (RAM usage, it&#039;s not less than uTorrent, which they state), and the scan for how much percent completed you have of one torrent takes a long time. Sorry, forgot to add my byline :P. --[[User:Deimon|Deimon]] 23:44, 29 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Web Frontend Section?===&lt;br /&gt;
I was thinking about chanting up a section centered around web interfaces for command-line torrent clients, and general advice for dedicated torrent servers.  Buuut, I&#039;m thinking maybe that&#039;s way outside the scope of this document.  Would anybody be interested in such a thing? Perhaps as a seperate page altogether? -[[User:iddqd|iddqd]]&lt;br /&gt;
&lt;br /&gt;
Sounds interesting, I&#039;m sure some more advanced people than the regular user would be interesting in that. If you want all you need to do is add it within a new page and then link from here to there. --[[User:Deimon|Deimon]] 02:38, 3 September 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Deluge as a reccomended client instead of acceptable? ==&lt;br /&gt;
&lt;br /&gt;
What do you guys think about this? I find it to work amazingly, pretty much like uTorrent (I use it with Ubuntu so I don&#039;t know how good it is on Windows). It&#039;s lighter than craploaded Azureus, and pretty much as powerful and light as uTorrent. Why not put it there? --[[User:Koolabsol|Calvin]] 02:35, 8 October 2008 (UTC)&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Talk:BT_clients&amp;diff=592</id>
		<title>Talk:BT clients</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Talk:BT_clients&amp;diff=592"/>
		<updated>2008-10-08T02:35:06Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: /* Deluge as a reccomended client instead of acceptable? */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===What more?===&lt;br /&gt;
What more does the page need? Let&#039;s help out and do a list. --[[User:Deimon|Deimon]] 17:46, 13 September 2008 (UTC)&lt;br /&gt;
* Descriptions on all clients&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Page Arrangement===&lt;br /&gt;
&lt;br /&gt;
Could use more descriptive editing and formatting. --[[User:Tsikura|Tsikura]] 08:28, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Still needs a lot of information. I like how its organized now. i wish i could say the same about the Windows playback page, but thats under hot debate right now.  --[[User:MarchHare|MarchHare]] 08:53, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Wouldn&#039;t it be better to order it from Good -&amp;gt; Bad instead of Bad/Good/Acceptable as it&#039;s now? And maybe undercategories within each section by OS...? --[[User:Deimon|Deimon]] 11:02, 24 August 2008 (UTC)&amp;lt;br /&amp;gt;&lt;br /&gt;
- I&#039;ve changed it, looks better now. --[[User:Deimon|Deimon]] 12:27, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Moved Vuze (Azureus) from Acceptable to Good, since it&#039;s one of the two only recommended clients. Also corrected it&#039;s title and added a short desc. about it&#039;s community part. --[[User:Deimon|Deimon]] 14:34, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
I was under the impression that Bitspirit was very similar to Bitcomet. There doesn&#039;t seem to be much discussion about it, so I won&#039;t be moving it to &amp;quot;Bad&amp;quot;. &lt;br /&gt;
[[User:Kanzar|Kanzar]] 10:30, 26 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Someone moved BitSpirit back... Anyway, it&#039;s not well documentation on it so there&#039;s no real reason to move it to &amp;quot;Bad&amp;quot; unless we hear complains from the users. --[[User:Deimon|Deimon]] 05:54, 28 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Well, I wasn&#039;t the one to move it there in the first place... &amp;lt;_&amp;lt; Ah well. [[User:Kanzar|Kanzar]] 01:30, 29 August 2008 (UTC):&lt;br /&gt;
&lt;br /&gt;
Just wondering... why isn&#039;t Transmission listed under &amp;quot;good&amp;quot;? It&#039;s based on on libTorrent, just like rTorrent (which is currently under &amp;quot;Good&amp;quot;) --[[User:Iindigo|Iindigo]] 22:00, 27 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Clients features more than just what the lib it&#039;s based on features. I don&#039;t know who moved rTorrent to recommended but only Vuze and uTorrent is recommended by the staff of BoxTorrents, if my memory serves me. This may be a wiki but I don&#039;t like people making decisions based on only their own experiences, which involves a bigger part of the community. Can someone who actually have used these applications (Transmission and rTorrent) write the pro&#039;s and con&#039;s about them, so we can decide which to put under recommended. I don&#039;t like the fact with rTorrent that it&#039;s terminal based as I think all recommended must at least have a GUI for easier control of the applications, since not everyone on Linux use terminal often. --[[User:Deimon|Deimon]] 05:55, 28 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Shareza===&lt;br /&gt;
&lt;br /&gt;
Why is &#039;&#039;&#039;Shareza&#039;&#039;&#039; not suggested? I know that there is a false Shareza V4 which is bundled with adware but the real V2 doesn&#039;t have that. --[[User:Deimon|Deimon]] 12:27, 24 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
I would like to notify all people concerned with Shareaza that they&#039;re making a new client, It&#039;s very much and alpha and crashes alot, but the team is taking shareazaV2&#039;s code and re-formulating it from the ground up. It doesn&#039;t need to be included yet, but watched at the very least. http://www.pantheraproject.com/  &lt;br /&gt;
Reference -&amp;gt; http://torrentfreak.com/shareaza-team-fight-back-with-panthera-project-080818/&lt;br /&gt;
--[[User:Aranjedeath|Aranjedeath]]&lt;br /&gt;
&lt;br /&gt;
Shareaza is a bad client because the upload is very low ;)&lt;br /&gt;
(i am not 100% sure if this is for V2 too, but i thought so)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===New Client Suggestions===&lt;br /&gt;
&lt;br /&gt;
There&#039;s a new client called [http://www.binarynotions.com/halite-bittorrent-client Halite] that looks to be &#039;the next uTorrent&#039;. Also worth keeping an eye on. &lt;br /&gt;
[[User:Kanzar|Kanzar]] 10:29, 26 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Read about it in TorrentFreak a while back... Tested it but it&#039;s not as small as they said (RAM usage, it&#039;s not less than uTorrent, which they state), and the scan for how much percent completed you have of one torrent takes a long time. Sorry, forgot to add my byline :P. --[[User:Deimon|Deimon]] 23:44, 29 August 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Web Frontend Section?===&lt;br /&gt;
I was thinking about chanting up a section centered around web interfaces for command-line torrent clients, and general advice for dedicated torrent servers.  Buuut, I&#039;m thinking maybe that&#039;s way outside the scope of this document.  Would anybody be interested in such a thing? Perhaps as a seperate page altogether? -[[User:iddqd|iddqd]]&lt;br /&gt;
&lt;br /&gt;
Sounds interesting, I&#039;m sure some more advanced people than the regular user would be interesting in that. If you want all you need to do is add it within a new page and then link from here to there. --[[User:Deimon|Deimon]] 02:38, 3 September 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Deluge as a reccomended client instead of acceptable? ==&lt;br /&gt;
&lt;br /&gt;
What do you guys think about this? I find it to work amazingly, pretty much like uTorrent (I use it with Ubuntu so I don&#039;t know how good it is on Windows). It&#039;s lighter than craploaded Azureus, and pretty much as powerful and light as uTorrent. Why not put it there?&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=IRC&amp;diff=582</id>
		<title>IRC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=IRC&amp;diff=582"/>
		<updated>2008-10-03T21:17:03Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: /* IRC Clients */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://en.wikipedia.org/wiki/IRC &#039;&#039;&#039;IRC&#039;&#039;&#039;] (&#039;&#039;&#039;Internet Relay Chat&#039;&#039;&#039;) is something that, if you stay online long enough, you will have to fool around with. It&#039;s a real-time internet chat where users chat with each other in &#039;&#039;channels&#039;&#039; which are located on a server (which house hundreds if not thousands of different channels). It&#039;s often the fastest way to get in touch with another person on BoxTorrents since many idles the IRC, which is not the case with the forum.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==IRC Clients==&lt;br /&gt;
This is a list of the best IRC clients available.&lt;br /&gt;
&lt;br /&gt;
===ChatZilla===&lt;br /&gt;
One of the easiest clients to use, if you use Firefox. Since its a Firefox plug-in, it should work on any operating system. If you want a simple, clean IRC client to get in and out, ChatZilla will work fine.&amp;lt;br /&amp;gt;&lt;br /&gt;
====Installation====&lt;br /&gt;
Follow this [https://addons.mozilla.org/en-US/firefox/addon/16 link]. Then just hit the big green button that says &amp;quot;Add to Firefox&amp;quot;. Give it permission to install, let Firefox restart, and it&#039;s installed. To use, just go to the &amp;quot;Tools&amp;quot; drop down menu in Firefox and select &amp;quot;ChatZilla&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===mIRC===&lt;br /&gt;
Another popular IRC client for Windows. While free to use, a donation nag window pops up at startup after the 30th day.&lt;br /&gt;
* [http://www.mirc.com/ mIRC Homepage]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/MIRC mIRC on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Colloquy===&lt;br /&gt;
Colloquy is a full-featured open source IRC client for the Macintosh, iPhone, and iPod Touch.&lt;br /&gt;
* [http://colloquy.info/ Colloquy Homepage]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Colloquy_(IRC_client)/ Colloquy on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Pidgin===&lt;br /&gt;
Pidgin is a multi-protocol instant messaging program. It supports many common IM protocols out of the box (such as Messenger, AIM, Yahoo, ICQ, etc.), and it also supports the IRC protocol.&lt;br /&gt;
* [http://pidgin.im/ Pidgin Homepage]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Pidgin_(software) Pidgin on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Trillian===&lt;br /&gt;
Trillian is another multi-protocol instant messaging program, coming with IRC support as well. There are currently two available versions of Trillian: Basic and Pro. Both have IRC support, so there&#039;s no need to buy the Pro version.&lt;br /&gt;
* [http://www.ceruleanstudios.com/learn/ Trillian Homepage]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Trillian_(instant_messenger) Trillian on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===XChat===&lt;br /&gt;
XChat is an IRC client that rivals mIRC not only in power but also in popularity. It is free and open source so there&#039;s no nag screen after 30 days and there is no compromise in speed or functionality when compared to mIRC.&lt;br /&gt;
* [http://www.silverex.org/news/ X-Chat Homepage]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Xchat XChat on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
==Connecting to BoxTorrents==&lt;br /&gt;
&#039;&#039;&#039;Most guides here were made with ChatZilla in mind!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
BoxTorrents uses the IRC server:&lt;br /&gt;
 irc.deltaanime.net&lt;br /&gt;
The main chatroom is: &lt;br /&gt;
 #boxtorrents&lt;br /&gt;
And the support room is:&lt;br /&gt;
 #box-support&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How to connect to #boxtorrents===&lt;br /&gt;
*Start your IRC client&lt;br /&gt;
*Enter the Nickname you want into the bottom left button, beside the input bar.&lt;br /&gt;
*Now, to join the server. Type (or copy/paste) into the input bar:&lt;br /&gt;
 /server irc.deltaanime.net&lt;br /&gt;
*If your nickname hasn&#039;t been used yet (by you or another person) it will tell you the nickname needs to be registered.&amp;lt;br /&amp;gt;To do this type (or copy/paste) into the input bar:&lt;br /&gt;
 /msg nickserv register your_password your_email&lt;br /&gt;
Where &amp;quot;your_password&amp;quot; is the password you want, and &amp;quot;your_email&amp;quot; is your e-mail address.&lt;br /&gt;
*The battle is done at this point! To connect to a channel, so you can talk to people, type (or copy/paste) into the input bar:&lt;br /&gt;
 /join #boxtorrents&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== How to reconnect to #boxtorrents===&lt;br /&gt;
*Start your IRC client&lt;br /&gt;
*Your Nickname should still be in your client, so leave that part alone.&lt;br /&gt;
*To join the server again, type (or copy/paste)into the input bar:&lt;br /&gt;
 /server irc.deltaanime.net&lt;br /&gt;
*Instead of asking you to register this time though, it will ask for your password. To do that, just type (or copy/paste) into the input bar:&lt;br /&gt;
 /msg NickServ IDENTIFY password&lt;br /&gt;
Just replace &amp;quot;password&amp;quot; with the password you gave when registering.&lt;br /&gt;
*Now, you can reconnect to the chat room by typing (or copy/paste) into the input bar:&lt;br /&gt;
 /join #boxtorrents&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How to auto-connect, auto-join and auto-identify===&lt;br /&gt;
To auto-connect a server, select the tab of the server you wish to auto-connect to in the future (you must have a window open assigned to that server in the first place!). Right click within the window, and select &#039;Open this network on startup&#039;. &lt;br /&gt;
&lt;br /&gt;
To auto-join a channel, select the tab of the channel you wish to auto-join in the future. Right click within the window and select &#039;Open this channel on startup&#039;.&lt;br /&gt;
&lt;br /&gt;
To auto-identify, go to the toolbar at the top, click Chatzilla -&amp;gt; Preferences -&amp;gt; Select the server in the panel on the left (in this case irc.deltaanime.net) -&amp;gt; click the &#039;Lists&#039; tab -&amp;gt; Press &#039;Add...&#039; in the Auto-perform section -&amp;gt; Fill in the following (remember to replace &amp;quot;password&amp;quot; with whatever your password is!): &amp;lt;br/&amp;gt;&lt;br /&gt;
 /msg nickserv identify &amp;quot;password&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Connecting to different channels===&lt;br /&gt;
To connect to another channel when first starting up, just replace #boxtorrents with the channel you want (like #box-support). If your already connected, type (or copy/paste) into the input bar:&amp;lt;br /&amp;gt;&lt;br /&gt;
 /join #channelname&lt;br /&gt;
Where &amp;quot;#channelname&amp;quot; is the channel-which-you-want-to-connect-to&#039;s name.&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=User:Koolabsol&amp;diff=581</id>
		<title>User:Koolabsol</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=User:Koolabsol&amp;diff=581"/>
		<updated>2008-10-03T20:38:33Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Class: Wannabe Adventurer&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Common_Playback_Problems&amp;diff=580</id>
		<title>Common Playback Problems</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Common_Playback_Problems&amp;diff=580"/>
		<updated>2008-10-03T20:36:41Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: /* Linux */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this page is a compiled list of commonly encountered problems when playing videos on different platforms.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Platform Agnostic==&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
;Required:&lt;br /&gt;
# A functional computer made in the last 10 years&lt;br /&gt;
# A mouse&lt;br /&gt;
# A brain&lt;br /&gt;
# The ability to read&lt;br /&gt;
# Hands or other equipment capable of tactile movements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Recommended:&lt;br /&gt;
# A functional computer made in the last 3 years&lt;br /&gt;
# A mouse and keyboard&lt;br /&gt;
# A working brain&lt;br /&gt;
# Intelligence and some modicum of education&lt;br /&gt;
# Hands&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Windows==&lt;br /&gt;
&lt;br /&gt;
Please keep in mind that all solutions for the following problems assume that you have [[CCCP]] installed on your computer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;I tried playing a video and the sound is awful! However, nobody else has complained...:&lt;br /&gt;
Run CCCP configuration again, and select an audio setting that best fits your speakers. You&#039;ll most likely have a 2.0 set-up.  Select your speaker configuration from the drop down box on the first page of the CCCP Settings window. [http://i37.tinypic.com/11w3r7c.jpg Screenshot]&lt;br /&gt;
* True multi-channel sound can only be obtained with proper physical speaker configuration.  Even if you have a 5.1 system, running a normal 3.5mm stereo output from your computer to it will only deliver 2.0 output.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Why is the sound and video not synced in my h264 file?:&lt;br /&gt;
&#039;&#039;Stolen from [http://forums.boxtorrents.com/index.php?topic=8513.0 Psyren&#039;s H.264 Guide]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This guide is intended for use by those who are currently using the latest [http://www.cccp-project.net CCCP] (version 2008-1-24 as of this guide). For those who are not using it, find a way to disable your codec pack&#039;s h264 decoder.&lt;br /&gt;
&lt;br /&gt;
;Some preliminary steps:&lt;br /&gt;
# Using Windows Media Player or VLC makes this guide pointless. I recommend Media Player Classic (included in the CCCP), or the newer Media Player Classic Home Cinema (google &#039;MPC HC&#039;).&lt;br /&gt;
# Free up your RAM. A lack of free RAM has been known to cause streaming problems between your HDD and CPU when playing video on older PCs, made all the worse by the CPU barely being able to keep up. Download [http://www.download.com/FreeRAM-XP-Pro/3000-2086-10070530.html?part=dl-FreeRAMXP&amp;amp;subj=dl&amp;amp;tag=button FreeRAM XP Pro] and run it to clear some free space in your memory before attempting to play the video.&lt;br /&gt;
# This is sort of a &#039;last resort&#039; step, since it removes some of the eye candy that soft subs can provide. Pre-buffer the subtitles. This will cause special effects such as fading or dynamic resizing to not display, but it will remove a fair amount of laggy spots on h264 video. To do so, go to your CCCP start menu folder -&amp;gt; Filters -&amp;gt; VSFilter configuration. Go to the Misc. tab and check &#039;Pre-buffer subpictures&#039;. Alternatively, if (for what ever reason) you use MPC&#039;s subtitle renderer, then go to MPC&#039;s options menu, click on the Subtitles option on the left side and make sure &#039;Number of subpictures to buffer ahead&#039; is not set to 0. I have no idea what a good figure might be, as I&#039;ve never had to use that option, but the default value is 3.&lt;br /&gt;
&lt;br /&gt;
Now, onto the main part:&lt;br /&gt;
&lt;br /&gt;
;Step 1:&lt;br /&gt;
* Go to your CCCP start menu folder, and click on the settings icon. Uncheck the &#039;h264&#039; button, then click Next -&amp;gt; Apply. You MUST do this step first in order for the next to work.&lt;br /&gt;
&lt;br /&gt;
;Step 2:&lt;br /&gt;
* Find and install CoreAVC Professional. Google (amongst other resources) is your friend here.&lt;br /&gt;
&lt;br /&gt;
* Verify that playback will use the h264 codec you just installed instead of using ffdshow by playing a h264 video in MPC. If successful, the ffdshow video icon will not show up in your taskbar. Done.&lt;br /&gt;
&lt;br /&gt;
* Test out this fix with the [http://varis.se/tom/box/1080ptest-1080p(h264.aac).mkv Kanon 2006 OP upscaled to 1080p]. More HD videos available from [http://thoranime.5gbfree.com/misc%20page.htm THORA&#039;s website].&lt;br /&gt;
&lt;br /&gt;
If, after applying these &#039;fixes&#039;, your PC is still unable to play SD h264 encodes, then it&#039;s definitely time for a new PC or an upgrade. Remember, it&#039;s not the codec at fault, it&#039;s your PC. Don&#039;t complain to us that the PC you bought when the Beatles were around can&#039;t handle it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;I hear dual audio playing in both languages!:&lt;br /&gt;
# Before anything, close the video.&lt;br /&gt;
# Get into the audio codec&#039;s settings.  Programs -&amp;gt; Combined Community Codec Pack -&amp;gt; Filters -&amp;gt; FFDShow Audio Decoder Configuration.&lt;br /&gt;
# Select the &amp;quot;DirectShow Control&amp;quot; menu option on the left.&lt;br /&gt;
# Make sure the &amp;quot;Multiple ffdshow instances:&amp;quot; is set to one of the options that contain &amp;quot;only one&amp;quot;.  If it already is, select either &amp;quot;only one - check all previous filters&amp;quot; or &amp;quot;only one - check all filters in graph&amp;quot; if the other two still don&#039;t work.  If by some weird chance this still doesn&#039;t fix your problem, use a different player.  However, I have yet to find this solution not to work.&lt;br /&gt;
# Play the movie again, and only one audio track should be playing now.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;When I switch subtitle and/or audio tracks, the playback freezes!:&lt;br /&gt;
# This has happened for me only with ogm/ogg, only once on mkv videos.  Unfortunately the only workaround to try is switching players.  Please check the [http://forums.boxtorrents.com/index.php?board=27.0 Playback Forum] for help if changing players doesn&#039;t resolve this issue.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Obviously, please check the [http://forums.boxtorrents.com/index.php?board=27.0 Playback Forums] for issues not mentioned in here.&lt;br /&gt;
&lt;br /&gt;
Second obviously, get the [http://www.cccp-project.net CCCP], this is emphasized enough that everyone should have it if they can use it. (If you haven&#039;t already, you must be truly stubborn!)&lt;br /&gt;
&lt;br /&gt;
==Mac==&lt;br /&gt;
&lt;br /&gt;
;I tried playing an AVI file in Quicktime Player (or some other QT-based player) but the video doesn&#039;t show up. What&#039;s wrong?:&lt;br /&gt;
Two possibilities exist:&lt;br /&gt;
*The AVI file uses DivX or XviD for its video track and you do not have a DivX codec installed. To resolve this, install [[Perian Quicktime Components]].&lt;br /&gt;
*Your AVI file is one of the rare videos that Quicktime/Perian will not play for some reason. The solution to this problem is to play the video with one the standalone video players listed at [[Mac Video Playback]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;I have Perian installed, but MKV video files are either associated with a non-QT player or are not associated with any player at all. How can I fix this?:&lt;br /&gt;
By default, Quicktime Player cannot open MKV files. Because of this, even when Perian is installed, it will not show up as an application that is capable of opening MKV files. To fix this, first install [http://www.macupdate.com/info.php/id/25243/perian%27s-type-installer Perian&#039;s Type Installer]. If MKV files are still not associated with QT Player after that, use File &amp;gt; Get Info on any MKV file in the Finder, change its association in that window, and click &amp;quot;Change All...&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Linux==&lt;br /&gt;
Common Linux playback problems usually have nothing to do with codecs like with Windows and can get pretty intricate so it is best to seek information and help from the [[Linux Video Playback]] page or the forums.&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=449</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=449"/>
		<updated>2008-09-02T03:01:54Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: Minor cleaning and minor changes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains the best video playback options for Linux and provides installation instructions.&lt;br /&gt;
&lt;br /&gt;
==List of recommended players==&lt;br /&gt;
;* [http://www.mplayerhq.hu/design7/news.html MPlayer]&lt;br /&gt;
;* [http://smplayer.sourceforge.net/ SMPlayer]&lt;br /&gt;
==MPlayer==&lt;br /&gt;
===Installing MPlayer===&lt;br /&gt;
Perform the one of the following commands as root, depending on your distribution.&lt;br /&gt;
====Gentoo====&lt;br /&gt;
 emerge -ptva mplayer&lt;br /&gt;
====OpenSuse====&lt;br /&gt;
 opensuse-package-manager-name --install-command mplayer&lt;br /&gt;
====Debian based distributions (Includes Ubuntu)====&lt;br /&gt;
 apt-get install mplayer&lt;br /&gt;
====Fedora/Red Hat based distributions====&lt;br /&gt;
 yum install mplayer&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===MPlayer codecs===&lt;br /&gt;
Not all distributions include the full set of mplayer codecs in their repositories. To install the full set follow these easy steps.&amp;lt;br/&amp;gt;&lt;br /&gt;
1. Download: http://www4.mplayerhq.hu/MPlayer/releases/codecs/all-20071007.tar.bz2&amp;lt;br/&amp;gt;&lt;br /&gt;
2. Extract with: tar xvf all-20071007.tar.bz2&amp;lt;br/&amp;gt;&lt;br /&gt;
3. Copy the codecs (but not the directory) to the MPlayer codec directory. Default is /usr/lib/win32&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===MPlayer tweaks===&lt;br /&gt;
These are some sample configuration files tailored for specific preferences. The MPlayer configuration file can be found at: (&amp;lt;tt&amp;gt;~/.mplayer/config&amp;lt;/tt&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For English audio preference, then Spanish&amp;lt;!--(?? Correct if wrong, delete this part otherwise.)--&amp;gt;, with 4 audio channels for surround sound files. &lt;br /&gt;
 vo=xv&lt;br /&gt;
 ao=alsa&lt;br /&gt;
 channels=4&lt;br /&gt;
 alang=en,es&lt;br /&gt;
&lt;br /&gt;
For Japanese audio preference, subtitles on. SDL A/V output for performence.&lt;br /&gt;
 ao=sdl&lt;br /&gt;
 vo=sdl &lt;br /&gt;
 #Note: SDL video output does not work well with xinerama. Those wishing to watch video on a TV or other display should use &amp;quot;vo=xv&amp;quot;&lt;br /&gt;
 alang=jpn,Japanese &lt;br /&gt;
 #Not all files use the correct tags, so sometimes it will be necessary to switch audio streams manually or from the command line with &amp;quot;-aid x&amp;quot;, where &amp;quot;x&amp;quot;   is the number of the audio stream.&lt;br /&gt;
 sid=0&lt;br /&gt;
 subfont-autoscale=1&lt;br /&gt;
 ass=1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==SMPlayer==&lt;br /&gt;
MPlayer by itself is fine but SMPlayer provides an easy to use interface to MPlayer so it is a better choice for most. It contains a couple of nice features, including autosaving the playback position so you can continue watching your anime the next time you start it (this feature can be disabled of course). &lt;br /&gt;
&lt;br /&gt;
===Installing SMPlayer===&lt;br /&gt;
*For OpenSUSE users you can grab the .rpm from SMPlayer&#039;s website, for Ubuntu users you can use the .deb from SMPlayer&#039;s website or you can install it by running the following command as root:&amp;lt;br&amp;gt;&lt;br /&gt;
 apt-get install smplayer&lt;br /&gt;
*If you don&#039;t use OpenSUSE or Ubuntu then you can compile from source, the source code along with installation instructions are available on SMPlayer&#039;s website.&lt;br /&gt;
*After installation you&#039;ll need to configure it a little:&lt;br /&gt;
Start SMPlayer, open the options (Ctrl + P), go to the subtitles section, within the section go to the SSA/ASS library tab and check the check box for using SSA/ASS library. With this you can see the subtitle&#039;s colors and fonts (Note: the used fonts must be installed on the system for this).&lt;br /&gt;
&lt;br /&gt;
===SMPlayer tweaks===&lt;br /&gt;
If you see a black screen at playing, or the colors doesn&#039;t seems to be right, or the playing is too slow or wrong you may need to change the video rendering mode. To do this go to the options, general section, general tab, output drivers, Video, and set it to &amp;lt;tt&amp;gt;x11&amp;lt;/tt&amp;gt; -  this will use software rendering. Alternatively you can use &amp;lt;tt&amp;gt;xv&amp;lt;/tt&amp;gt; for XVideo rendering or either &amp;lt;tt&amp;gt;gl&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;gl2&amp;lt;/tt&amp;gt; for OpenGL rendering. In general you should try these options in the following order for best quality and performance: &amp;lt;tt&amp;gt;xv&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;gl2&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;gl&amp;lt;/tt&amp;gt; and finally &amp;lt;tt&amp;gt;x11&amp;lt;/tt&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Talk:Linux_Video_Playback&amp;diff=448</id>
		<title>Talk:Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Talk:Linux_Video_Playback&amp;diff=448"/>
		<updated>2008-09-02T02:56:10Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== No &#039;codec pack&#039; things here, huh? ==&lt;br /&gt;
&lt;br /&gt;
I believe,covering Totem and Kaffeine. And mplayer, of course.&lt;br /&gt;
Btw, AFAIK only mplayer features libass now, so it&#039;s a natural choice for a perfectionist. :)&lt;br /&gt;
/ajaxas&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Is it necessary to add installation instructions for every combination of player and distribution, or&lt;br /&gt;
should we just add a generic section referring users to their package manager to install software?&lt;br /&gt;
Also don&#039;t most distributions already come with a load of players preinstalled, so perhaps we can just list the configuration options&lt;br /&gt;
required to get the most out of them. /[[User:Daf0x|Daf0x]]&lt;br /&gt;
&lt;br /&gt;
I think it&#039;s important to list the different methods for package managers, it helps Linux n00bs figure out the system they use, it&#039;s very encouraging.&lt;br /&gt;
Those preinstalled players are usually just useless frontends to broken MPlayer and Xine installations. Never mind encouraging mediocrity, it&#039;s easier to get people in the mindset of starting from scratch.  All we need is instructions for a fully codec&#039;d up MPlayer and Xine, as those are the most popular players. /[[User:iddqd|iddqd]]&lt;br /&gt;
&lt;br /&gt;
I agree with iddqd, that&#039;s the way I will keep the wiki too. I won&#039;t like it if people go erasing the work unless you have a good reason. --[[User:Koolabsol|Calvin]] 02:56, 2 September 2008 (UTC)&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=260</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=260"/>
		<updated>2008-08-24T14:28:28Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: Grammar Fixes and some more Info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains the best video playback options for Linux and provides installation instructions.&lt;br /&gt;
&lt;br /&gt;
==Recommended Players==&lt;br /&gt;
;* [http://smplayer.sourceforge.net/ SMPlayer]&lt;br /&gt;
;* [http://www.mplayerhq.hu/design7/news.html MPlayer]&lt;br /&gt;
MPlayer by itself is fine but SMPlayer auto loads subtitle files, autosaves your position (can be configured), and has an easier to use interface than MPlayer so it is a better choice for most.&lt;br /&gt;
&lt;br /&gt;
===Installing SMPlayer===&lt;br /&gt;
*For OpenSUSE users you can grab the .rpm from SMPlayer&#039;s website, for Ubuntu users you can use the .deb from SMPlayer&#039;s website or you can install it with the following command:&amp;lt;br&amp;gt;&lt;br /&gt;
sudo apt-get install smplayer&lt;br /&gt;
*If you don&#039;t use OpenSUSE or Ubuntu then you can compile from source, the source code along with installation instructions are available on SMPlayer&#039;s website.&lt;br /&gt;
*After installation you&#039;ll need to configure it a little:&lt;br /&gt;
Start SMPlayer, open the options (Ctrl + P), go to the subtitles section, within the section go to the SSA/ASS library tab and check the check box for using SSA/ASS library. With this you can see the subtitle&#039;s colors and fonts (Note: the used fonts must be installed on the system for this).&lt;br /&gt;
&lt;br /&gt;
====Tweaks====&lt;br /&gt;
If you see a black screen at playing, or the colors doesn&#039;t seems to be right, or the playing is too slow or wrong you may need to change the video rendering mode. To do this go to the options, general section, general tab, output drivers, Video, and set it to X11 -  this will use software rendering. Alternatively you can use xv for Xvideo rendering or gl/gl2 for OpenGL rendering mode (gl2 a bit better, but slower).&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=146</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=146"/>
		<updated>2008-08-24T03:42:19Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: Added links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains to you the best playback options for Linux and how provides installation instructions.&lt;br /&gt;
&lt;br /&gt;
==Recommended Players==&lt;br /&gt;
&lt;br /&gt;
;[http://smplayer.sourceforge.net/ SMPlayer]/[http://www.mplayerhq.hu/design7/news.html MPlayer] :MPlayer by itself is fine but SMPlayer auto loads subtitle files, autosaves your position (can be configured), and has an easier to use interface than MPlayer so it is a better choice for most.&lt;br /&gt;
If you are using Ubuntu you can install it with the following command:&lt;br /&gt;
sudo apt-get install smplayer&lt;br /&gt;
&lt;br /&gt;
After installing you&#039;ll need to configure it a little:&lt;br /&gt;
&lt;br /&gt;
Start SMPlayer, open the options (Ctrl + P), go to the subtitles section, within the section go to the SSA/ASS library tab and check the check box for using SSA/ASS library. With this you can see the subtitle&#039;s colors and fonts (Note: the used fonts must be installed on the system for this).&lt;br /&gt;
&lt;br /&gt;
If you see a black screen at playing, or the colors doesn&#039;t seems to be right, or the playing is too slow or wrong you may need to change the video rendering mode. To do this go to the options, general section, general tab, output drivers, Video, and set it to X11 -  this will use software rendering. Alternatively you can use xv for Xvideo rendering or gl/gl2 for OpenGL rendering mode (gl2 a bit better, but slower).&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=User:Koolabsol&amp;diff=145</id>
		<title>User:Koolabsol</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=User:Koolabsol&amp;diff=145"/>
		<updated>2008-08-24T03:39:41Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: New page: I am the omnipotent and cool god named Calvin, do not worship me or fear me, just being cool with me is enough.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am the omnipotent and cool god named Calvin, do not worship me or fear me, just being cool with me is enough.&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=144</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=144"/>
		<updated>2008-08-24T03:38:31Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: The almighty creation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains to you the best playback options for Linux and how provides installation instructions.&lt;br /&gt;
&lt;br /&gt;
==Recommended Players==&lt;br /&gt;
&lt;br /&gt;
;SMPlayer/MPlayer :MPlayer by itself is fine but SMPlayer auto loads subtitle files, autosaves your position (can be configured), and has an easier to use interface than MPlayer so it is a better choice for most.&lt;br /&gt;
If you are using Ubuntu you can install it with the following command:&lt;br /&gt;
sudo apt-get install smplayer&lt;br /&gt;
&lt;br /&gt;
After installing you&#039;ll need to configure it a little:&lt;br /&gt;
&lt;br /&gt;
Start SMPlayer, open the options (Ctrl + P), go to the subtitles section, within the section go to the SSA/ASS library tab and check the check box for using SSA/ASS library. With this you can see the subtitle&#039;s colors and fonts (Note: the used fonts must be installed on the system for this).&lt;br /&gt;
&lt;br /&gt;
If you see a black screen at playing, or the colors doesn&#039;t seems to be right, or the playing is too slow or wrong you may need to change the video rendering mode. To do this go to the options, general section, general tab, output drivers, Video, and set it to X11 -  this will use software rendering. Alternatively you can use xv for Xvideo rendering or gl/gl2 for OpenGL rendering mode (gl2 a bit better, but slower).&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
	<entry>
		<id>https://wiki.bakabt.me/index.php?title=Main_Page&amp;diff=143</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.bakabt.me/index.php?title=Main_Page&amp;diff=143"/>
		<updated>2008-08-24T03:29:06Z</updated>

		<summary type="html">&lt;p&gt;Koolabsol: Linux playback page is created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;&#039;&#039;&#039;Boxtorrents Wiki&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Welcome to the new Boxtorrents Wiki. It&#039;s still under heavy construction.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;General Information About BitTorrent&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*[[BT Terminology]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Video Playback&#039;&#039;&#039;&lt;br /&gt;
*[[Windows Video Playback]] &#039;&#039;Still needs some work&#039;&#039;&lt;br /&gt;
*[[Mac Video Playback]]&lt;br /&gt;
*[[Linux Video Playback]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;To Do List&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*[[IRC]] (still needs some work)&lt;br /&gt;
*[[CCCP]] (Raw Version)&lt;br /&gt;
*CCCP Install Walk Through with screen Caps ([[Special:Upload| Upload]] needs to be enabled first)&lt;br /&gt;
*Codecs&lt;br /&gt;
*Containers&lt;br /&gt;
*[[BT Clients]] (still needs work)&lt;br /&gt;
&lt;br /&gt;
==Important Information==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.boxtorrents.com/index.php/Rules Site Rules] (A must read).&lt;br /&gt;
* [http://wiki.boxtorrents.com/index.php/DO_NOT_UPLOAD Blacklist] (Content not allowed to be uploaded/requested on BoxTorrents).&lt;/div&gt;</summary>
		<author><name>Koolabsol</name></author>
	</entry>
</feed>