<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.bakabt.me/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Raylu</id>
	<title>BakaBT Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.bakabt.me/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Raylu"/>
	<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Special:Contributions/Raylu"/>
	<updated>2026-04-21T16:00:08Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=4787</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=4787"/>
		<updated>2010-07-17T18:08:03Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* MPlayer Tricks */ Reapply the L typo, fix formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains 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;
&lt;br /&gt;
===Installing Mplayer from distro repos ===&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;
=====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;
===Compiling MPlayer from source===&lt;br /&gt;
Most Linux distros ship with very outdated versions of MPlayer. The version of the source maintained at [http://repo.or.cz/w/mplayer-build.git uau&#039;s git repository] contains many features and bugfixes not found in the SVN trunk, including:&lt;br /&gt;
* [http://en.wikipedia.org/wiki/VDPAU vdpau] support ([http://en.wikipedia.org/wiki/Graphics_processing_unit GPU] decoding)&lt;br /&gt;
* better ff[http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC h264] asm (faster decoding)&lt;br /&gt;
* newer lib[http://en.wikipedia.org/wiki/SubStation_Alpha ass] (better subtitle rendering; many bugfixes here alone)&lt;br /&gt;
* no need for external Windows codecs for some files anymore&lt;br /&gt;
* ordered chapters support (which a lot of modern DVD/bluray rips use)&lt;br /&gt;
* ffmpeg-mt (multithreaded decoding for multicore processors)&lt;br /&gt;
* various fixes for bad MPlayer behavior&lt;br /&gt;
&lt;br /&gt;
 git clone http://repo.or.cz/w/mplayer-build.git&lt;br /&gt;
 cd mplayer-build&lt;br /&gt;
Read the README. Unfortunately, you will have to install the many development headers to enable basic features.&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;
====NVIDIA vdpau====&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;
====ATI====&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 happen probably sometime around linux 2.6.32 release.&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: &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;
====MPlayer Tricks====&lt;br /&gt;
MPlayer has a huge collection of filters included. Some of them are magical.&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 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;
===Installing SMPlayer===&lt;br /&gt;
====Debian/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;
====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&#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 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>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=4786</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=4786"/>
		<updated>2010-07-17T18:05:07Z</updated>

		<summary type="html">&lt;p&gt;Raylu: Reapply some of Koolabsol&amp;#039;s edits and move compiling from source&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains 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;
&lt;br /&gt;
===Installing Mplayer from distro repos ===&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;
=====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;
===Compiling MPlayer from source===&lt;br /&gt;
Most Linux distros ship with very outdated versions of MPlayer. The version of the source maintained at [http://repo.or.cz/w/mplayer-build.git uau&#039;s git repository] contains many features and bugfixes not found in the SVN trunk, including:&lt;br /&gt;
* [http://en.wikipedia.org/wiki/VDPAU vdpau] support ([http://en.wikipedia.org/wiki/Graphics_processing_unit GPU] decoding)&lt;br /&gt;
* better ff[http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC h264] asm (faster decoding)&lt;br /&gt;
* newer lib[http://en.wikipedia.org/wiki/SubStation_Alpha ass] (better subtitle rendering; many bugfixes here alone)&lt;br /&gt;
* no need for external Windows codecs for some files anymore&lt;br /&gt;
* ordered chapters support (which a lot of modern DVD/bluray rips use)&lt;br /&gt;
* ffmpeg-mt (multithreaded decoding for multicore processors)&lt;br /&gt;
* various fixes for bad MPlayer behavior&lt;br /&gt;
&lt;br /&gt;
 git clone http://repo.or.cz/w/mplayer-build.git&lt;br /&gt;
 cd mplayer-build&lt;br /&gt;
Read the README. Unfortunately, you will have to install the many development headers to enable basic features.&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;
====NVIDIA vdpau====&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;
====ATI====&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 happen probably sometime around linux 2.6.32 release.&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: &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;
====MPlayer 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;
===Installing SMPlayer===&lt;br /&gt;
====Debian/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;
====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&#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 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>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=4785</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=4785"/>
		<updated>2010-07-17T17:58:12Z</updated>

		<summary type="html">&lt;p&gt;Raylu: Reverting to my latest in Oct &amp;#039;09 as per discussion page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains 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;
===Compiling MPlayer from source===&lt;br /&gt;
The preferred way of installing mplayer is compiling from source due to the fact that most Linux distros ship various levels of horribly outdated versions of it. The reasons for compiling from a new mplayer source are many:&lt;br /&gt;
* [http://en.wikipedia.org/wiki/VDPAU vdpau] support ([http://en.wikipedia.org/wiki/Graphics_processing_unit GPU] decoding)&lt;br /&gt;
* better ff[http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC h264] asm (faster decoding)&lt;br /&gt;
* newer lib[http://en.wikipedia.org/wiki/SubStation_Alpha ass] (better subtitle rendering)&lt;br /&gt;
* no need for external Windows codecs for some files anymore&lt;br /&gt;
* various bug-fixes&lt;br /&gt;
&lt;br /&gt;
The preferred source repository among actual users is uau&#039;s git for the following reasons&lt;br /&gt;
* It has ordered chapters support (which a lot of modern DVD/bluray rips use)&lt;br /&gt;
* It can be compiled with ffmpeg-mt (multithreaded decoding for multicore processors)&lt;br /&gt;
* It uses svn libass (even better subtitle rendering)&lt;br /&gt;
* It&#039;s easier to compile (Python scripts that set up your build environment)&lt;br /&gt;
* It includes various fixes for bad mplayer behavior&lt;br /&gt;
&lt;br /&gt;
How to compile for various distros is coming soon, but cloning [http://repo.or.cz/w/mplayer-build.git this git repository] will get you started.&lt;br /&gt;
&lt;br /&gt;
===Installing Mplayer from distro repos ===&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;
=====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;
===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;
====NVidia vdpau====&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;
====ATI====&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 happen probably sometime around linux 2.6.32 release.&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: &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;
====MPlayer 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;
===Installing SMPlayer===&lt;br /&gt;
====Debian/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;
====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.&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>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Talk:Linux_Video_Playback&amp;diff=4784</id>
		<title>Talk:Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Talk:Linux_Video_Playback&amp;diff=4784"/>
		<updated>2010-07-17T17:57:20Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* Level of detail */ Forgot to sign my name on Level of detail&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;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Talk:Linux_Video_Playback&amp;diff=4783</id>
		<title>Talk:Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Talk:Linux_Video_Playback&amp;diff=4783"/>
		<updated>2010-07-17T17:56:58Z</updated>

		<summary type="html">&lt;p&gt;Raylu: &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.&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;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Windows_Video_Playback&amp;diff=4782</id>
		<title>Windows Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Windows_Video_Playback&amp;diff=4782"/>
		<updated>2010-07-17T17:49:30Z</updated>

		<summary type="html">&lt;p&gt;Raylu: Just call it &amp;quot;Windows,&amp;quot; damnit.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article is aimed at providing useful information regarding playback on Windows.&lt;br /&gt;
&lt;br /&gt;
==A List of Commonly Used Players==&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://sourceforge.net/projects/guliverkli/ Media Player Classic (MPC)]:This player is included in [[CCCP]]. It is recommended that you use this player, however it must be configured correctly. Refer to [http://forums.bakabt.com/index.php?topic=13746.0 this] guide. For 64-bit Windows users it even has a x64 version, but that version will only work with 64-bit codecs, so for now it is recommended that you use the 32-bit version until 64-bit codecs mature more.&lt;br /&gt;
Please note that this player has been superseded by Media Player Classic Home Cinema (MPCHC). Please use this newer version of MPC bundled with the newest CCCP (which contains a custom build of the player).&lt;br /&gt;
&lt;br /&gt;
;[http://www.inmatrix.com/ Zoom Player]:This player is &#039;&#039;&#039;no longer&#039;&#039;&#039; included in [[CCCP]] because the free version of it is no longer being developed and it may have playback issues in Vista. Very nice, relatively easy to use interface. Do not download the Professional versions, download the standard edition. The professional versions are trials, they stop working after a while. Has an installation center that installs all CCCP codecs for you.&lt;br /&gt;
&lt;br /&gt;
;[http://www.kmplayer.com/forums/showthread.php?t=4094 The KMPlayer]:Good player with internal and external filter support, handles a wide range of subtitles and allows you to capture audio, video, and screenshots in many ways but for better user experience it needs to be [[KMPlayer| tweaked]] to display styled subs and ordered chapters properly.&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://www.allplayer.org/ ALLPlayer]:This player will use CCCP, but has a confusing interface and useless features. It is also rather homely.&lt;br /&gt;
&lt;br /&gt;
;[http://www.cowonamerica.com/products/jetaudio/ JetAudio Player]:Supports 57 file formats and it includes tools for ripping, burning, external recording, file conversion, and broadcasting. Features are highly customizable, but it has no built-in MP3 decoding.&lt;br /&gt;
&lt;br /&gt;
;[http://www.mplayerhq.hu/ MPlayer]:This player uses internal codecs and filters. It will play videos as well as [[CCCP]] can, but the keyboard-orientated interface can be confusing to people used to menu-driven interfaces.&lt;br /&gt;
&lt;br /&gt;
;[http://www.corecoded.com/ The Core Media Player (TCMP)]:Not to be confused with the Coreplayer. It will work fine if you don&#039;t use the included filters. &lt;br /&gt;
&lt;br /&gt;
;[http://www.winamp.com/ WinAmp 5]:Will work fine if configured correctly, but that&#039;s a lot of configuration for most videos on the tracker.&lt;br /&gt;
&lt;br /&gt;
;[http://www.microsoft.com/windows/windowsmedia/ Windows Media Player]:Not to be confused with Media Player Classic (see above). Will play fine, but will sometimes crash. Various other issues.&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;
&lt;br /&gt;
;[http://coreplayer.com/ Coreplayer]:Developed by the same team that developed the CoreAVC codec. Only uses internal filters. Also, it will not render subtitles.&lt;br /&gt;
&lt;br /&gt;
;[http://www.bsplayer.org/ BSPlayer]:We don&#039;t suggest anyone uses this player. It is filled with bugs.&lt;br /&gt;
&lt;br /&gt;
;[http://www.divx.com/ DivX Player]:This player is semi-compatible with [[CCCP]]. It will play MKV, OGM, and MP4 files, but it cannot play audio files. Not recommended for use. Tends to pixelate the image in certain instances.&lt;br /&gt;
&lt;br /&gt;
;[http://ffmpeg.mplayerhq.hu/ FFPlayer]:Doesn&#039;t use vsfilter. &lt;br /&gt;
&lt;br /&gt;
;[http://www.apple.com/quicktime/ QuickTime]:Will play AVI and MP4 files (depends on installed QT codecs), but cannot handle MKV or OGM files. Ignores [[CCCP]]. To play QuickTime files, it is recommended that you use the [http://www.free-codecs.com/download/QuickTime_Alternative.htm QT Alternative] which works in conjuction with Media Player Classic. &lt;br /&gt;
&lt;br /&gt;
;[http://www.real.com/ RealPlayer 10]:Loads [[CCCP]] with AVI files, but won&#039;t load MKV or OGM files. To play Real files, it is recommended that you use [http://www.free-codecs.com/download/Real_Alternative.htm Real Alternative] which works in conjunction with Media Player Classic.&lt;br /&gt;
&lt;br /&gt;
;[http://www.videolan.org/vlc/ VLC Media Player]:This player supports nearly every media filetype one may encounter, but is not recommended for use. It does not use external codecs, and might not support some new features of the MKV container. It is currently still under development, but BakaBT does not recommend its use for the purpose of watching most fansubs (especially more recent ones). Only recommended to keep around as a last-ditch effort for playing stubborn video files.&lt;br /&gt;
&lt;br /&gt;
==Codecs and Codec Packs==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Codec Packs===&lt;br /&gt;
&lt;br /&gt;
;[[CCCP]] (&amp;lt;span style=&amp;quot;color:limegreen&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt;):&lt;br /&gt;
* [[CCCP]] stands for Combined Community Codec Pack and was created to consolidate the filter packs of many different fansub groups into a single reliable filter pack that is shared by all of the fansub groups.&lt;br /&gt;
* Stability is high, [[CCCP]] claim to be bug free.&lt;br /&gt;
* Lightweighted (it only includes what you really need).&lt;br /&gt;
* Bundled with Media Player Classic Home Cinema, the newest build of MPC since the original developer retired the project. Much more efficient than MPC.&lt;br /&gt;
[http://www.cccp-project.net/ CCCP Homepage]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;[http://www.free-codecs.com/download/K_Lite_Mega_Codec_Pack.htm K-Lite Mega Codec Pack]:&lt;br /&gt;
* Plays almost every video available, even rare (for playback of anime you don&#039;t need most of them).&lt;br /&gt;
* Comes bundled with Media Player Classic.&lt;br /&gt;
[http://www.free-codecs.com/download/K_Lite_Mega_Codec_Pack.htm K-Lite Mega Codec Pack on Free-Codecs.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;[http://www.xpcodecpack.com/ XP Codec Pack]:&lt;br /&gt;
* Plays many different formats, it&#039;s like a little heavier pack than [[CCCP]].&lt;br /&gt;
* Gets regular updates (this means it may not be stable all times).&lt;br /&gt;
[http://www.xpcodecpack.com/ XP Codec Pack Homepage]&lt;br /&gt;
&lt;br /&gt;
===Codecs===&lt;br /&gt;
;[[CoreAVC]] Professional (&amp;lt;span style=&amp;quot;color:limegreen&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt; if you have trouble with h264 encodes):&lt;br /&gt;
Refer to [http://forums.bakabt.com/index.php?topic=8513.0 Psyren&#039;s guide]&lt;br /&gt;
&lt;br /&gt;
;[http://www.free-codecs.com/download/Real_Alternative.htm Real Alternative]&lt;br /&gt;
Allows you to play Real Media (.rm) files in a media player without the need to install Real Player.&lt;br /&gt;
;[http://www.free-codecs.com/download/QuickTime_Alternative.htm QuickTime Alternative]&lt;br /&gt;
Allows you to play QuickTime (.mov) files in a media player without the need to install QuickTime. It also allows you to stream video and sound from the Internet using QuickTime.&lt;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Windows_Video_Playback&amp;diff=4781</id>
		<title>Windows Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Windows_Video_Playback&amp;diff=4781"/>
		<updated>2010-07-17T17:48:01Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* Not Recommended */ Utilize is a dumb word, especially when you spell it wrong&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article is aimed at providing useful information regarding playback on Windows based computers. &lt;br /&gt;
&lt;br /&gt;
==A List of Commonly Used Players==&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://sourceforge.net/projects/guliverkli/ Media Player Classic (MPC)]:This player is included in [[CCCP]]. It is recommended that you use this player, however it must be configured correctly. Refer to [http://forums.bakabt.com/index.php?topic=13746.0 this] guide. For 64-bit Windows users it even has a x64 version, but that version will only work with 64-bit codecs, so for now it is recommended that you use the 32-bit version until 64-bit codecs mature more.&lt;br /&gt;
Please note that this player has been superseded by Media Player Classic Home Cinema (MPCHC). Please use this newer version of MPC bundled with the newest CCCP (which contains a custom build of the player).&lt;br /&gt;
&lt;br /&gt;
;[http://www.inmatrix.com/ Zoom Player]:This player is &#039;&#039;&#039;no longer&#039;&#039;&#039; included in [[CCCP]] because the free version of it is no longer being developed and it may have playback issues in Vista. Very nice, relatively easy to use interface. Do not download the Professional versions, download the standard edition. The professional versions are trials, they stop working after a while. Has an installation center that installs all CCCP codecs for you.&lt;br /&gt;
&lt;br /&gt;
;[http://www.kmplayer.com/forums/showthread.php?t=4094 The KMPlayer]:Good player with internal and external filter support, handles a wide range of subtitles and allows you to capture audio, video, and screenshots in many ways but for better user experience it needs to be [[KMPlayer| tweaked]] to display styled subs and ordered chapters properly.&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://www.allplayer.org/ ALLPlayer]:This player will use CCCP, but has a confusing interface and useless features. It is also rather homely.&lt;br /&gt;
&lt;br /&gt;
;[http://www.cowonamerica.com/products/jetaudio/ JetAudio Player]:Supports 57 file formats and it includes tools for ripping, burning, external recording, file conversion, and broadcasting. Features are highly customizable, but it has no built-in MP3 decoding.&lt;br /&gt;
&lt;br /&gt;
;[http://www.mplayerhq.hu/ MPlayer]:This player uses internal codecs and filters. It will play videos as well as [[CCCP]] can, but the keyboard-orientated interface can be confusing to people used to menu-driven interfaces.&lt;br /&gt;
&lt;br /&gt;
;[http://www.corecoded.com/ The Core Media Player (TCMP)]:Not to be confused with the Coreplayer. It will work fine if you don&#039;t use the included filters. &lt;br /&gt;
&lt;br /&gt;
;[http://www.winamp.com/ WinAmp 5]:Will work fine if configured correctly, but that&#039;s a lot of configuration for most videos on the tracker.&lt;br /&gt;
&lt;br /&gt;
;[http://www.microsoft.com/windows/windowsmedia/ Windows Media Player]:Not to be confused with Media Player Classic (see above). Will play fine, but will sometimes crash. Various other issues.&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;
&lt;br /&gt;
;[http://coreplayer.com/ Coreplayer]:Developed by the same team that developed the CoreAVC codec. Only uses internal filters. Also, it will not render subtitles.&lt;br /&gt;
&lt;br /&gt;
;[http://www.bsplayer.org/ BSPlayer]:We don&#039;t suggest anyone uses this player. It is filled with bugs.&lt;br /&gt;
&lt;br /&gt;
;[http://www.divx.com/ DivX Player]:This player is semi-compatible with [[CCCP]]. It will play MKV, OGM, and MP4 files, but it cannot play audio files. Not recommended for use. Tends to pixelate the image in certain instances.&lt;br /&gt;
&lt;br /&gt;
;[http://ffmpeg.mplayerhq.hu/ FFPlayer]:Doesn&#039;t use vsfilter. &lt;br /&gt;
&lt;br /&gt;
;[http://www.apple.com/quicktime/ QuickTime]:Will play AVI and MP4 files (depends on installed QT codecs), but cannot handle MKV or OGM files. Ignores [[CCCP]]. To play QuickTime files, it is recommended that you use the [http://www.free-codecs.com/download/QuickTime_Alternative.htm QT Alternative] which works in conjuction with Media Player Classic. &lt;br /&gt;
&lt;br /&gt;
;[http://www.real.com/ RealPlayer 10]:Loads [[CCCP]] with AVI files, but won&#039;t load MKV or OGM files. To play Real files, it is recommended that you use [http://www.free-codecs.com/download/Real_Alternative.htm Real Alternative] which works in conjunction with Media Player Classic.&lt;br /&gt;
&lt;br /&gt;
;[http://www.videolan.org/vlc/ VLC Media Player]:This player supports nearly every media filetype one may encounter, but is not recommended for use. It does not use external codecs, and might not support some new features of the MKV container. It is currently still under development, but BakaBT does not recommend its use for the purpose of watching most fansubs (especially more recent ones). Only recommended to keep around as a last-ditch effort for playing stubborn video files.&lt;br /&gt;
&lt;br /&gt;
==Codecs and Codec Packs==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Codec Packs===&lt;br /&gt;
&lt;br /&gt;
;[[CCCP]] (&amp;lt;span style=&amp;quot;color:limegreen&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt;):&lt;br /&gt;
* [[CCCP]] stands for Combined Community Codec Pack and was created to consolidate the filter packs of many different fansub groups into a single reliable filter pack that is shared by all of the fansub groups.&lt;br /&gt;
* Stability is high, [[CCCP]] claim to be bug free.&lt;br /&gt;
* Lightweighted (it only includes what you really need).&lt;br /&gt;
* Bundled with Media Player Classic Home Cinema, the newest build of MPC since the original developer retired the project. Much more efficient than MPC.&lt;br /&gt;
[http://www.cccp-project.net/ CCCP Homepage]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;[http://www.free-codecs.com/download/K_Lite_Mega_Codec_Pack.htm K-Lite Mega Codec Pack]:&lt;br /&gt;
* Plays almost every video available, even rare (for playback of anime you don&#039;t need most of them).&lt;br /&gt;
* Comes bundled with Media Player Classic.&lt;br /&gt;
[http://www.free-codecs.com/download/K_Lite_Mega_Codec_Pack.htm K-Lite Mega Codec Pack on Free-Codecs.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;[http://www.xpcodecpack.com/ XP Codec Pack]:&lt;br /&gt;
* Plays many different formats, it&#039;s like a little heavier pack than [[CCCP]].&lt;br /&gt;
* Gets regular updates (this means it may not be stable all times).&lt;br /&gt;
[http://www.xpcodecpack.com/ XP Codec Pack Homepage]&lt;br /&gt;
&lt;br /&gt;
===Codecs===&lt;br /&gt;
;[[CoreAVC]] Professional (&amp;lt;span style=&amp;quot;color:limegreen&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt; if you have trouble with h264 encodes):&lt;br /&gt;
Refer to [http://forums.bakabt.com/index.php?topic=8513.0 Psyren&#039;s guide]&lt;br /&gt;
&lt;br /&gt;
;[http://www.free-codecs.com/download/Real_Alternative.htm Real Alternative]&lt;br /&gt;
Allows you to play Real Media (.rm) files in a media player without the need to install Real Player.&lt;br /&gt;
;[http://www.free-codecs.com/download/QuickTime_Alternative.htm QuickTime Alternative]&lt;br /&gt;
Allows you to play QuickTime (.mov) files in a media player without the need to install QuickTime. It also allows you to stream video and sound from the Internet using QuickTime.&lt;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Windows_Video_Playback&amp;diff=4780</id>
		<title>Windows Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Windows_Video_Playback&amp;diff=4780"/>
		<updated>2010-07-17T17:45:49Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* Acceptable */ Pretty sure that was supposed to be decoding.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article is aimed at providing useful information regarding playback on Windows based computers. &lt;br /&gt;
&lt;br /&gt;
==A List of Commonly Used Players==&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://sourceforge.net/projects/guliverkli/ Media Player Classic (MPC)]:This player is included in [[CCCP]]. It is recommended that you use this player, however it must be configured correctly. Refer to [http://forums.bakabt.com/index.php?topic=13746.0 this] guide. For 64-bit Windows users it even has a x64 version, but that version will only work with 64-bit codecs, so for now it is recommended that you use the 32-bit version until 64-bit codecs mature more.&lt;br /&gt;
Please note that this player has been superseded by Media Player Classic Home Cinema (MPCHC). Please use this newer version of MPC bundled with the newest CCCP (which contains a custom build of the player).&lt;br /&gt;
&lt;br /&gt;
;[http://www.inmatrix.com/ Zoom Player]:This player is &#039;&#039;&#039;no longer&#039;&#039;&#039; included in [[CCCP]] because the free version of it is no longer being developed and it may have playback issues in Vista. Very nice, relatively easy to use interface. Do not download the Professional versions, download the standard edition. The professional versions are trials, they stop working after a while. Has an installation center that installs all CCCP codecs for you.&lt;br /&gt;
&lt;br /&gt;
;[http://www.kmplayer.com/forums/showthread.php?t=4094 The KMPlayer]:Good player with internal and external filter support, handles a wide range of subtitles and allows you to capture audio, video, and screenshots in many ways but for better user experience it needs to be [[KMPlayer| tweaked]] to display styled subs and ordered chapters properly.&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://www.allplayer.org/ ALLPlayer]:This player will use CCCP, but has a confusing interface and useless features. It is also rather homely.&lt;br /&gt;
&lt;br /&gt;
;[http://www.cowonamerica.com/products/jetaudio/ JetAudio Player]:Supports 57 file formats and it includes tools for ripping, burning, external recording, file conversion, and broadcasting. Features are highly customizable, but it has no built-in MP3 decoding.&lt;br /&gt;
&lt;br /&gt;
;[http://www.mplayerhq.hu/ MPlayer]:This player uses internal codecs and filters. It will play videos as well as [[CCCP]] can, but the keyboard-orientated interface can be confusing to people used to menu-driven interfaces.&lt;br /&gt;
&lt;br /&gt;
;[http://www.corecoded.com/ The Core Media Player (TCMP)]:Not to be confused with the Coreplayer. It will work fine if you don&#039;t use the included filters. &lt;br /&gt;
&lt;br /&gt;
;[http://www.winamp.com/ WinAmp 5]:Will work fine if configured correctly, but that&#039;s a lot of configuration for most videos on the tracker.&lt;br /&gt;
&lt;br /&gt;
;[http://www.microsoft.com/windows/windowsmedia/ Windows Media Player]:Not to be confused with Media Player Classic (see above). Will play fine, but will sometimes crash. Various other issues.&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;
&lt;br /&gt;
;[http://coreplayer.com/ Coreplayer]:Developed by the same team that developed the CoreAVC codec. It does not uililize [[CCCP]], meaning it only uses internal filters. Also it will not render subtitles.&lt;br /&gt;
&lt;br /&gt;
;[http://www.bsplayer.org/ BSPlayer]:We don&#039;t suggest anyone uses this player. It is filled with bugs.&lt;br /&gt;
&lt;br /&gt;
;[http://www.divx.com/ DivX Player]:This player is semi-compatible with [[CCCP]]. It will play MKV, OGM, and MP4 files, but it cannot play audio files. Not recommended for use. Tends to pixelate the image in certain instances.&lt;br /&gt;
&lt;br /&gt;
;[http://ffmpeg.mplayerhq.hu/ FFPlayer]:Doesn&#039;t utilize vsfilter. &lt;br /&gt;
&lt;br /&gt;
;[http://www.apple.com/quicktime/ QuickTime]:Will play AVI and MP4 files (depends on installed QT codecs), but cannot handle MKV or OGM files. Ignores [[CCCP]]. To play QuickTime files, it is recommended that you use the [http://www.free-codecs.com/download/QuickTime_Alternative.htm QT Alternative] which works in conjuction with Media Player Classic. &lt;br /&gt;
&lt;br /&gt;
;[http://www.real.com/ RealPlayer 10]:Loads [[CCCP]] with AVI files, but won&#039;t load MKV or OGM files. To play Real files, it is recommended that you use the [http://www.free-codecs.com/download/Real_Alternative.htm Real Alternative] which works in conjunction with Media Player Classic. &lt;br /&gt;
&lt;br /&gt;
;[http://www.videolan.org/vlc/ VLC Media Player]:This player supports nearly every media filetype one may encounter, but is not recommended for use. It does not utilize external codecs, and might not support some new features of the MKV container. It is currently still under development, but BakaBT does not recommend its use for the purpose of watching most fansubs (especially more recent ones). Only recommended to keep around as a last-ditch effort for playing stubborn video files.&lt;br /&gt;
&lt;br /&gt;
==Codecs and Codec Packs==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Codec Packs===&lt;br /&gt;
&lt;br /&gt;
;[[CCCP]] (&amp;lt;span style=&amp;quot;color:limegreen&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt;):&lt;br /&gt;
* [[CCCP]] stands for Combined Community Codec Pack and was created to consolidate the filter packs of many different fansub groups into a single reliable filter pack that is shared by all of the fansub groups.&lt;br /&gt;
* Stability is high, [[CCCP]] claim to be bug free.&lt;br /&gt;
* Lightweighted (it only includes what you really need).&lt;br /&gt;
* Bundled with Media Player Classic Home Cinema, the newest build of MPC since the original developer retired the project. Much more efficient than MPC.&lt;br /&gt;
[http://www.cccp-project.net/ CCCP Homepage]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;[http://www.free-codecs.com/download/K_Lite_Mega_Codec_Pack.htm K-Lite Mega Codec Pack]:&lt;br /&gt;
* Plays almost every video available, even rare (for playback of anime you don&#039;t need most of them).&lt;br /&gt;
* Comes bundled with Media Player Classic.&lt;br /&gt;
[http://www.free-codecs.com/download/K_Lite_Mega_Codec_Pack.htm K-Lite Mega Codec Pack on Free-Codecs.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;[http://www.xpcodecpack.com/ XP Codec Pack]:&lt;br /&gt;
* Plays many different formats, it&#039;s like a little heavier pack than [[CCCP]].&lt;br /&gt;
* Gets regular updates (this means it may not be stable all times).&lt;br /&gt;
[http://www.xpcodecpack.com/ XP Codec Pack Homepage]&lt;br /&gt;
&lt;br /&gt;
===Codecs===&lt;br /&gt;
;[[CoreAVC]] Professional (&amp;lt;span style=&amp;quot;color:limegreen&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt; if you have trouble with h264 encodes):&lt;br /&gt;
Refer to [http://forums.bakabt.com/index.php?topic=8513.0 Psyren&#039;s guide]&lt;br /&gt;
&lt;br /&gt;
;[http://www.free-codecs.com/download/Real_Alternative.htm Real Alternative]&lt;br /&gt;
Allows you to play Real Media (.rm) files in a media player without the need to install Real Player.&lt;br /&gt;
;[http://www.free-codecs.com/download/QuickTime_Alternative.htm QuickTime Alternative]&lt;br /&gt;
Allows you to play QuickTime (.mov) files in a media player without the need to install QuickTime. It also allows you to stream video and sound from the Internet using QuickTime.&lt;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Windows_Video_Playback&amp;diff=4779</id>
		<title>Windows Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Windows_Video_Playback&amp;diff=4779"/>
		<updated>2010-07-17T17:45:16Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* Acceptable */ Utilizes is a dumb word. MPlayer can use CoreAVC.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article is aimed at providing useful information regarding playback on Windows based computers. &lt;br /&gt;
&lt;br /&gt;
==A List of Commonly Used Players==&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://sourceforge.net/projects/guliverkli/ Media Player Classic (MPC)]:This player is included in [[CCCP]]. It is recommended that you use this player, however it must be configured correctly. Refer to [http://forums.bakabt.com/index.php?topic=13746.0 this] guide. For 64-bit Windows users it even has a x64 version, but that version will only work with 64-bit codecs, so for now it is recommended that you use the 32-bit version until 64-bit codecs mature more.&lt;br /&gt;
Please note that this player has been superseded by Media Player Classic Home Cinema (MPCHC). Please use this newer version of MPC bundled with the newest CCCP (which contains a custom build of the player).&lt;br /&gt;
&lt;br /&gt;
;[http://www.inmatrix.com/ Zoom Player]:This player is &#039;&#039;&#039;no longer&#039;&#039;&#039; included in [[CCCP]] because the free version of it is no longer being developed and it may have playback issues in Vista. Very nice, relatively easy to use interface. Do not download the Professional versions, download the standard edition. The professional versions are trials, they stop working after a while. Has an installation center that installs all CCCP codecs for you.&lt;br /&gt;
&lt;br /&gt;
;[http://www.kmplayer.com/forums/showthread.php?t=4094 The KMPlayer]:Good player with internal and external filter support, handles a wide range of subtitles and allows you to capture audio, video, and screenshots in many ways but for better user experience it needs to be [[KMPlayer| tweaked]] to display styled subs and ordered chapters properly.&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://www.allplayer.org/ ALLPlayer]:This player will utilize CCCP, but has a confusing interface and useless features. It is also rather homely.&lt;br /&gt;
&lt;br /&gt;
;[http://www.cowonamerica.com/products/jetaudio/ JetAudio Player]:Supports 57 file formats and it includes tools for ripping, burning, external recording, file conversion, and broadcasting. Features are highly customizable, but it has no built-in MP3 encoding.&lt;br /&gt;
&lt;br /&gt;
;[http://www.mplayerhq.hu/ MPlayer]:This player uses internal codecs and filters. It will play videos as well as [[CCCP]] can, but the keyboard-orientated interface can be confusing to people used to menu-driven interfaces.&lt;br /&gt;
&lt;br /&gt;
;[http://www.corecoded.com/ The Core Media Player (TCMP)]:Not to be confused with the Coreplayer. It will work fine if you don&#039;t use the included filters. &lt;br /&gt;
&lt;br /&gt;
;[http://www.winamp.com/ WinAmp 5]:Will work fine if configured correctly, but that&#039;s a lot of configuration for most videos on the tracker.&lt;br /&gt;
&lt;br /&gt;
;[http://www.microsoft.com/windows/windowsmedia/ Windows Media Player]:Not to be confused with Media Player Classic (see above). Will play fine, but will sometimes crash. Various other issues.&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;
&lt;br /&gt;
;[http://coreplayer.com/ Coreplayer]:Developed by the same team that developed the CoreAVC codec. It does not uililize [[CCCP]], meaning it only uses internal filters. Also it will not render subtitles.&lt;br /&gt;
&lt;br /&gt;
;[http://www.bsplayer.org/ BSPlayer]:We don&#039;t suggest anyone uses this player. It is filled with bugs.&lt;br /&gt;
&lt;br /&gt;
;[http://www.divx.com/ DivX Player]:This player is semi-compatible with [[CCCP]]. It will play MKV, OGM, and MP4 files, but it cannot play audio files. Not recommended for use. Tends to pixelate the image in certain instances.&lt;br /&gt;
&lt;br /&gt;
;[http://ffmpeg.mplayerhq.hu/ FFPlayer]:Doesn&#039;t utilize vsfilter. &lt;br /&gt;
&lt;br /&gt;
;[http://www.apple.com/quicktime/ QuickTime]:Will play AVI and MP4 files (depends on installed QT codecs), but cannot handle MKV or OGM files. Ignores [[CCCP]]. To play QuickTime files, it is recommended that you use the [http://www.free-codecs.com/download/QuickTime_Alternative.htm QT Alternative] which works in conjuction with Media Player Classic. &lt;br /&gt;
&lt;br /&gt;
;[http://www.real.com/ RealPlayer 10]:Loads [[CCCP]] with AVI files, but won&#039;t load MKV or OGM files. To play Real files, it is recommended that you use the [http://www.free-codecs.com/download/Real_Alternative.htm Real Alternative] which works in conjunction with Media Player Classic. &lt;br /&gt;
&lt;br /&gt;
;[http://www.videolan.org/vlc/ VLC Media Player]:This player supports nearly every media filetype one may encounter, but is not recommended for use. It does not utilize external codecs, and might not support some new features of the MKV container. It is currently still under development, but BakaBT does not recommend its use for the purpose of watching most fansubs (especially more recent ones). Only recommended to keep around as a last-ditch effort for playing stubborn video files.&lt;br /&gt;
&lt;br /&gt;
==Codecs and Codec Packs==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Codec Packs===&lt;br /&gt;
&lt;br /&gt;
;[[CCCP]] (&amp;lt;span style=&amp;quot;color:limegreen&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt;):&lt;br /&gt;
* [[CCCP]] stands for Combined Community Codec Pack and was created to consolidate the filter packs of many different fansub groups into a single reliable filter pack that is shared by all of the fansub groups.&lt;br /&gt;
* Stability is high, [[CCCP]] claim to be bug free.&lt;br /&gt;
* Lightweighted (it only includes what you really need).&lt;br /&gt;
* Bundled with Media Player Classic Home Cinema, the newest build of MPC since the original developer retired the project. Much more efficient than MPC.&lt;br /&gt;
[http://www.cccp-project.net/ CCCP Homepage]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;[http://www.free-codecs.com/download/K_Lite_Mega_Codec_Pack.htm K-Lite Mega Codec Pack]:&lt;br /&gt;
* Plays almost every video available, even rare (for playback of anime you don&#039;t need most of them).&lt;br /&gt;
* Comes bundled with Media Player Classic.&lt;br /&gt;
[http://www.free-codecs.com/download/K_Lite_Mega_Codec_Pack.htm K-Lite Mega Codec Pack on Free-Codecs.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;[http://www.xpcodecpack.com/ XP Codec Pack]:&lt;br /&gt;
* Plays many different formats, it&#039;s like a little heavier pack than [[CCCP]].&lt;br /&gt;
* Gets regular updates (this means it may not be stable all times).&lt;br /&gt;
[http://www.xpcodecpack.com/ XP Codec Pack Homepage]&lt;br /&gt;
&lt;br /&gt;
===Codecs===&lt;br /&gt;
;[[CoreAVC]] Professional (&amp;lt;span style=&amp;quot;color:limegreen&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt; if you have trouble with h264 encodes):&lt;br /&gt;
Refer to [http://forums.bakabt.com/index.php?topic=8513.0 Psyren&#039;s guide]&lt;br /&gt;
&lt;br /&gt;
;[http://www.free-codecs.com/download/Real_Alternative.htm Real Alternative]&lt;br /&gt;
Allows you to play Real Media (.rm) files in a media player without the need to install Real Player.&lt;br /&gt;
;[http://www.free-codecs.com/download/QuickTime_Alternative.htm QuickTime Alternative]&lt;br /&gt;
Allows you to play QuickTime (.mov) files in a media player without the need to install QuickTime. It also allows you to stream video and sound from the Internet using QuickTime.&lt;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Windows_Video_Playback&amp;diff=4778</id>
		<title>Windows Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Windows_Video_Playback&amp;diff=4778"/>
		<updated>2010-07-17T17:44:01Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* Acceptable */ Removed &amp;quot;see above&amp;quot; on TCMP&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article is aimed at providing useful information regarding playback on Windows based computers. &lt;br /&gt;
&lt;br /&gt;
==A List of Commonly Used Players==&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://sourceforge.net/projects/guliverkli/ Media Player Classic (MPC)]:This player is included in [[CCCP]]. It is recommended that you use this player, however it must be configured correctly. Refer to [http://forums.bakabt.com/index.php?topic=13746.0 this] guide. For 64-bit Windows users it even has a x64 version, but that version will only work with 64-bit codecs, so for now it is recommended that you use the 32-bit version until 64-bit codecs mature more.&lt;br /&gt;
Please note that this player has been superseded by Media Player Classic Home Cinema (MPCHC). Please use this newer version of MPC bundled with the newest CCCP (which contains a custom build of the player).&lt;br /&gt;
&lt;br /&gt;
;[http://www.inmatrix.com/ Zoom Player]:This player is &#039;&#039;&#039;no longer&#039;&#039;&#039; included in [[CCCP]] because the free version of it is no longer being developed and it may have playback issues in Vista. Very nice, relatively easy to use interface. Do not download the Professional versions, download the standard edition. The professional versions are trials, they stop working after a while. Has an installation center that installs all CCCP codecs for you.&lt;br /&gt;
&lt;br /&gt;
;[http://www.kmplayer.com/forums/showthread.php?t=4094 The KMPlayer]:Good player with internal and external filter support, handles a wide range of subtitles and allows you to capture audio, video, and screenshots in many ways but for better user experience it needs to be [[KMPlayer| tweaked]] to display styled subs and ordered chapters properly.&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://www.allplayer.org/ ALLPlayer]:This player will utilize CCCP, but has a confusing interface and useless features. It is also rather homely.&lt;br /&gt;
&lt;br /&gt;
;[http://www.cowonamerica.com/products/jetaudio/ JetAudio Player]:Supports 57 file formats and it includes tools for ripping, burning, external recording, file conversion, and broadcasting. Features are highly customizable, but it has no built-in MP3 encoding.&lt;br /&gt;
&lt;br /&gt;
;[http://www.mplayerhq.hu/ MPlayer]:This player only utilizes internal codecs &amp;amp; filters. It will play videos as well as [[CCCP]] can, but the keyboard orientated interface can be confusing to people used to menu driven players.&lt;br /&gt;
&lt;br /&gt;
;[http://www.corecoded.com/ The Core Media Player (TCMP)]:Not to be confused with the Coreplayer. It will work fine if you don&#039;t use the included filters. &lt;br /&gt;
&lt;br /&gt;
;[http://www.winamp.com/ WinAmp 5]:Will work fine if configured correctly, but that&#039;s a lot of configuration for most videos on the tracker.&lt;br /&gt;
&lt;br /&gt;
;[http://www.microsoft.com/windows/windowsmedia/ Windows Media Player]:Not to be confused with Media Player Classic (see above). Will play fine, but will sometimes crash. Various other issues.&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;
&lt;br /&gt;
;[http://coreplayer.com/ Coreplayer]:Developed by the same team that developed the CoreAVC codec. It does not uililize [[CCCP]], meaning it only uses internal filters. Also it will not render subtitles.&lt;br /&gt;
&lt;br /&gt;
;[http://www.bsplayer.org/ BSPlayer]:We don&#039;t suggest anyone uses this player. It is filled with bugs.&lt;br /&gt;
&lt;br /&gt;
;[http://www.divx.com/ DivX Player]:This player is semi-compatible with [[CCCP]]. It will play MKV, OGM, and MP4 files, but it cannot play audio files. Not recommended for use. Tends to pixelate the image in certain instances.&lt;br /&gt;
&lt;br /&gt;
;[http://ffmpeg.mplayerhq.hu/ FFPlayer]:Doesn&#039;t utilize vsfilter. &lt;br /&gt;
&lt;br /&gt;
;[http://www.apple.com/quicktime/ QuickTime]:Will play AVI and MP4 files (depends on installed QT codecs), but cannot handle MKV or OGM files. Ignores [[CCCP]]. To play QuickTime files, it is recommended that you use the [http://www.free-codecs.com/download/QuickTime_Alternative.htm QT Alternative] which works in conjuction with Media Player Classic. &lt;br /&gt;
&lt;br /&gt;
;[http://www.real.com/ RealPlayer 10]:Loads [[CCCP]] with AVI files, but won&#039;t load MKV or OGM files. To play Real files, it is recommended that you use the [http://www.free-codecs.com/download/Real_Alternative.htm Real Alternative] which works in conjunction with Media Player Classic. &lt;br /&gt;
&lt;br /&gt;
;[http://www.videolan.org/vlc/ VLC Media Player]:This player supports nearly every media filetype one may encounter, but is not recommended for use. It does not utilize external codecs, and might not support some new features of the MKV container. It is currently still under development, but BakaBT does not recommend its use for the purpose of watching most fansubs (especially more recent ones). Only recommended to keep around as a last-ditch effort for playing stubborn video files.&lt;br /&gt;
&lt;br /&gt;
==Codecs and Codec Packs==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Codec Packs===&lt;br /&gt;
&lt;br /&gt;
;[[CCCP]] (&amp;lt;span style=&amp;quot;color:limegreen&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt;):&lt;br /&gt;
* [[CCCP]] stands for Combined Community Codec Pack and was created to consolidate the filter packs of many different fansub groups into a single reliable filter pack that is shared by all of the fansub groups.&lt;br /&gt;
* Stability is high, [[CCCP]] claim to be bug free.&lt;br /&gt;
* Lightweighted (it only includes what you really need).&lt;br /&gt;
* Bundled with Media Player Classic Home Cinema, the newest build of MPC since the original developer retired the project. Much more efficient than MPC.&lt;br /&gt;
[http://www.cccp-project.net/ CCCP Homepage]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;[http://www.free-codecs.com/download/K_Lite_Mega_Codec_Pack.htm K-Lite Mega Codec Pack]:&lt;br /&gt;
* Plays almost every video available, even rare (for playback of anime you don&#039;t need most of them).&lt;br /&gt;
* Comes bundled with Media Player Classic.&lt;br /&gt;
[http://www.free-codecs.com/download/K_Lite_Mega_Codec_Pack.htm K-Lite Mega Codec Pack on Free-Codecs.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;[http://www.xpcodecpack.com/ XP Codec Pack]:&lt;br /&gt;
* Plays many different formats, it&#039;s like a little heavier pack than [[CCCP]].&lt;br /&gt;
* Gets regular updates (this means it may not be stable all times).&lt;br /&gt;
[http://www.xpcodecpack.com/ XP Codec Pack Homepage]&lt;br /&gt;
&lt;br /&gt;
===Codecs===&lt;br /&gt;
;[[CoreAVC]] Professional (&amp;lt;span style=&amp;quot;color:limegreen&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt; if you have trouble with h264 encodes):&lt;br /&gt;
Refer to [http://forums.bakabt.com/index.php?topic=8513.0 Psyren&#039;s guide]&lt;br /&gt;
&lt;br /&gt;
;[http://www.free-codecs.com/download/Real_Alternative.htm Real Alternative]&lt;br /&gt;
Allows you to play Real Media (.rm) files in a media player without the need to install Real Player.&lt;br /&gt;
;[http://www.free-codecs.com/download/QuickTime_Alternative.htm QuickTime Alternative]&lt;br /&gt;
Allows you to play QuickTime (.mov) files in a media player without the need to install QuickTime. It also allows you to stream video and sound from the Internet using QuickTime.&lt;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Windows_Video_Playback&amp;diff=4777</id>
		<title>Windows Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Windows_Video_Playback&amp;diff=4777"/>
		<updated>2010-07-17T17:43:30Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* A List of Commonly Used Players */ Move coreplayer to Not Recommended (no subtitles?!), change WinAmp description, resisted the urge to recommend Mplayer.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article is aimed at providing useful information regarding playback on Windows based computers. &lt;br /&gt;
&lt;br /&gt;
==A List of Commonly Used Players==&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://sourceforge.net/projects/guliverkli/ Media Player Classic (MPC)]:This player is included in [[CCCP]]. It is recommended that you use this player, however it must be configured correctly. Refer to [http://forums.bakabt.com/index.php?topic=13746.0 this] guide. For 64-bit Windows users it even has a x64 version, but that version will only work with 64-bit codecs, so for now it is recommended that you use the 32-bit version until 64-bit codecs mature more.&lt;br /&gt;
Please note that this player has been superseded by Media Player Classic Home Cinema (MPCHC). Please use this newer version of MPC bundled with the newest CCCP (which contains a custom build of the player).&lt;br /&gt;
&lt;br /&gt;
;[http://www.inmatrix.com/ Zoom Player]:This player is &#039;&#039;&#039;no longer&#039;&#039;&#039; included in [[CCCP]] because the free version of it is no longer being developed and it may have playback issues in Vista. Very nice, relatively easy to use interface. Do not download the Professional versions, download the standard edition. The professional versions are trials, they stop working after a while. Has an installation center that installs all CCCP codecs for you.&lt;br /&gt;
&lt;br /&gt;
;[http://www.kmplayer.com/forums/showthread.php?t=4094 The KMPlayer]:Good player with internal and external filter support, handles a wide range of subtitles and allows you to capture audio, video, and screenshots in many ways but for better user experience it needs to be [[KMPlayer| tweaked]] to display styled subs and ordered chapters properly.&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://www.allplayer.org/ ALLPlayer]:This player will utilize CCCP, but has a confusing interface and useless features. It is also rather homely.&lt;br /&gt;
&lt;br /&gt;
;[http://www.cowonamerica.com/products/jetaudio/ JetAudio Player]:Supports 57 file formats and it includes tools for ripping, burning, external recording, file conversion, and broadcasting. Features are highly customizable, but it has no built-in MP3 encoding.&lt;br /&gt;
&lt;br /&gt;
;[http://www.mplayerhq.hu/ MPlayer]:This player only utilizes internal codecs &amp;amp; filters. It will play videos as well as [[CCCP]] can, but the keyboard orientated interface can be confusing to people used to menu driven players.&lt;br /&gt;
&lt;br /&gt;
;[http://www.corecoded.com/ The Core Media Player (TCMP)]:Not to be confused with the Coreplayer (see above). It will work fine if you don&#039;t use the included filters. &lt;br /&gt;
&lt;br /&gt;
;[http://www.winamp.com/ WinAmp 5]:Will work fine if configured correctly, but that&#039;s a lot of configuration for most videos on the tracker.&lt;br /&gt;
&lt;br /&gt;
;[http://www.microsoft.com/windows/windowsmedia/ Windows Media Player]:Not to be confused with Media Player Classic (see above). Will play fine, but will sometimes crash. Various other issues.&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;
&lt;br /&gt;
;[http://coreplayer.com/ Coreplayer]:Developed by the same team that developed the CoreAVC codec. It does not uililize [[CCCP]], meaning it only uses internal filters. Also it will not render subtitles.&lt;br /&gt;
&lt;br /&gt;
;[http://www.bsplayer.org/ BSPlayer]:We don&#039;t suggest anyone uses this player. It is filled with bugs.&lt;br /&gt;
&lt;br /&gt;
;[http://www.divx.com/ DivX Player]:This player is semi-compatible with [[CCCP]]. It will play MKV, OGM, and MP4 files, but it cannot play audio files. Not recommended for use. Tends to pixelate the image in certain instances.&lt;br /&gt;
&lt;br /&gt;
;[http://ffmpeg.mplayerhq.hu/ FFPlayer]:Doesn&#039;t utilize vsfilter. &lt;br /&gt;
&lt;br /&gt;
;[http://www.apple.com/quicktime/ QuickTime]:Will play AVI and MP4 files (depends on installed QT codecs), but cannot handle MKV or OGM files. Ignores [[CCCP]]. To play QuickTime files, it is recommended that you use the [http://www.free-codecs.com/download/QuickTime_Alternative.htm QT Alternative] which works in conjuction with Media Player Classic. &lt;br /&gt;
&lt;br /&gt;
;[http://www.real.com/ RealPlayer 10]:Loads [[CCCP]] with AVI files, but won&#039;t load MKV or OGM files. To play Real files, it is recommended that you use the [http://www.free-codecs.com/download/Real_Alternative.htm Real Alternative] which works in conjunction with Media Player Classic. &lt;br /&gt;
&lt;br /&gt;
;[http://www.videolan.org/vlc/ VLC Media Player]:This player supports nearly every media filetype one may encounter, but is not recommended for use. It does not utilize external codecs, and might not support some new features of the MKV container. It is currently still under development, but BakaBT does not recommend its use for the purpose of watching most fansubs (especially more recent ones). Only recommended to keep around as a last-ditch effort for playing stubborn video files.&lt;br /&gt;
&lt;br /&gt;
==Codecs and Codec Packs==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Codec Packs===&lt;br /&gt;
&lt;br /&gt;
;[[CCCP]] (&amp;lt;span style=&amp;quot;color:limegreen&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt;):&lt;br /&gt;
* [[CCCP]] stands for Combined Community Codec Pack and was created to consolidate the filter packs of many different fansub groups into a single reliable filter pack that is shared by all of the fansub groups.&lt;br /&gt;
* Stability is high, [[CCCP]] claim to be bug free.&lt;br /&gt;
* Lightweighted (it only includes what you really need).&lt;br /&gt;
* Bundled with Media Player Classic Home Cinema, the newest build of MPC since the original developer retired the project. Much more efficient than MPC.&lt;br /&gt;
[http://www.cccp-project.net/ CCCP Homepage]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;[http://www.free-codecs.com/download/K_Lite_Mega_Codec_Pack.htm K-Lite Mega Codec Pack]:&lt;br /&gt;
* Plays almost every video available, even rare (for playback of anime you don&#039;t need most of them).&lt;br /&gt;
* Comes bundled with Media Player Classic.&lt;br /&gt;
[http://www.free-codecs.com/download/K_Lite_Mega_Codec_Pack.htm K-Lite Mega Codec Pack on Free-Codecs.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;[http://www.xpcodecpack.com/ XP Codec Pack]:&lt;br /&gt;
* Plays many different formats, it&#039;s like a little heavier pack than [[CCCP]].&lt;br /&gt;
* Gets regular updates (this means it may not be stable all times).&lt;br /&gt;
[http://www.xpcodecpack.com/ XP Codec Pack Homepage]&lt;br /&gt;
&lt;br /&gt;
===Codecs===&lt;br /&gt;
;[[CoreAVC]] Professional (&amp;lt;span style=&amp;quot;color:limegreen&amp;quot;&amp;gt;Recommended&amp;lt;/span&amp;gt; if you have trouble with h264 encodes):&lt;br /&gt;
Refer to [http://forums.bakabt.com/index.php?topic=8513.0 Psyren&#039;s guide]&lt;br /&gt;
&lt;br /&gt;
;[http://www.free-codecs.com/download/Real_Alternative.htm Real Alternative]&lt;br /&gt;
Allows you to play Real Media (.rm) files in a media player without the need to install Real Player.&lt;br /&gt;
;[http://www.free-codecs.com/download/QuickTime_Alternative.htm QuickTime Alternative]&lt;br /&gt;
Allows you to play QuickTime (.mov) files in a media player without the need to install QuickTime. It also allows you to stream video and sound from the Internet using QuickTime.&lt;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=1954</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=1954"/>
		<updated>2009-10-26T03:50:52Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* Compiling MPlayer from source */ Add some links, remove a comma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains 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;
===Compiling MPlayer from source===&lt;br /&gt;
The preferred way of installing mplayer is compiling from source due to the fact that most Linux distros ship various levels of horribly outdated versions of it. The reasons for compiling from a new mplayer source are many:&lt;br /&gt;
* [http://en.wikipedia.org/wiki/VDPAU vdpau] support ([http://en.wikipedia.org/wiki/Graphics_processing_unit GPU] decoding)&lt;br /&gt;
* better ff[http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC h264] asm (faster decoding)&lt;br /&gt;
* newer lib[http://en.wikipedia.org/wiki/SubStation_Alpha ass] (better subtitle rendering)&lt;br /&gt;
* no need for external Windows codecs for some files anymore&lt;br /&gt;
* various bug-fixes&lt;br /&gt;
&lt;br /&gt;
The preferred source repository among actual users is uau&#039;s git for the following reasons&lt;br /&gt;
* It has ordered chapters support (which a lot of modern DVD/bluray rips use)&lt;br /&gt;
* It can be compiled with ffmpeg-mt (multithreaded decoding for multicore processors)&lt;br /&gt;
* It uses svn libass (even better subtitle rendering)&lt;br /&gt;
* It&#039;s easier to compile (Python scripts that set up your build environment)&lt;br /&gt;
* It includes various fixes for bad mplayer behavior&lt;br /&gt;
&lt;br /&gt;
How to compile for various distros is coming soon, but cloning [http://repo.or.cz/w/mplayer-build.git this git repository] will get you started.&lt;br /&gt;
&lt;br /&gt;
===Installing Mplayer from distro repos ===&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;
=====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;
===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;
====NVidia vdpau====&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;
====ATI====&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 happen probably sometime around linux 2.6.32 release.&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: &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;
====MPlayer 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;
===Installing SMPlayer===&lt;br /&gt;
====Debian/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;
====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.&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>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=FAQ&amp;diff=1938</id>
		<title>FAQ</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=FAQ&amp;diff=1938"/>
		<updated>2009-10-22T03:33:45Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* What makes BakaBT different? */ Fixed some syntax.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- &lt;br /&gt;
&lt;br /&gt;
------------------------------Banner------------------------------&amp;gt;&lt;br /&gt;
{| style=&amp;quot;width:100%; background:#402365; margin-top:1.2em; border:1px solid #ccc;&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:56%; color:#000&amp;quot;| &amp;lt;!-- &lt;br /&gt;
&lt;br /&gt;
-----------&amp;quot;Welcome to BakaBT&amp;quot;----------&amp;gt;&lt;br /&gt;
{| style=&amp;quot;width:99%; border:solid 0px; background:none;&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:600px; text-align:center; white-space:nowrap; color:#fff;&amp;quot;|&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:162%; border:none; margin:0; padding:.1em; color:#fff;&amp;quot;&amp;gt;Frequently Asked Questions&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:90%; border:none; margin:0; padding:.1em; color:#c06c8d;&amp;quot;&amp;gt;&#039;&#039;&#039;In here, you might just find the answers you&#039;re looking for!&#039;&#039;&#039; &amp;lt;/div&amp;gt;&lt;br /&gt;
|}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
---------------------------Text---------------------------&amp;gt;&lt;br /&gt;
|style=&amp;quot;width:1%; font-size:95%;&amp;quot;|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
If you are new to Bittorrent and/or the anime fansub scene, you should take a look at the [[For First Timers|Beginner&#039;s FAQ]] as well.&lt;br /&gt;
&lt;br /&gt;
= Site information and Basic Help =&lt;br /&gt;
&lt;br /&gt;
==What makes BakaBT different?==&lt;br /&gt;
There are many anime torrent sites but BakaBT is unique in the quality of our content. Our goal is to provide torrents [[Site Rules#Torrent Content Upload Guidelines|only for completed anime or anime-related material]] and [[How to make an offer#http://wiki.BakaBT.com/index.php/How_to_make_an_offer#Is_your_offer_the_highest-quality_offer_around.3F|we pick only the best versions]]. We do not accept public submissions; only [[FAQ#User Classes|Power Users and Power Uploaders]] may do so.&lt;br /&gt;
&lt;br /&gt;
All [[FAQ#Torrent Offer System|submissions are thoroughly checked]] before they are added to our [http://www.BakaBT.com/browse.php ever-growing list of series]; by &#039;&#039;ever-growing&#039;&#039;, we really mean ever-growing in the sense that even old torrents are still seeded. Our mantra in short: &#039;&#039;&#039;quality over quantity&#039;&#039;&#039;, and &#039;&#039;&#039;ease-of-use&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Do keep in mind that BakaBT exists because of its users; old content is still available because of the many dedicated seeders who provide you with good download speeds, so [[Rules#Tracker Guidelines|returning the favour]] is a must.&lt;br /&gt;
&lt;br /&gt;
This is a public tracker, but we do prefer users to register before using the site. Before you do anything here at BakaBT, we suggest you read the [[Rules]]! There are only a few rules to abide by and most are common sense.&lt;br /&gt;
&lt;br /&gt;
==How do I...==&lt;br /&gt;
===Bookmark a torrent or remove a bookmarked torrent?===&lt;br /&gt;
Click on the star icon labelled &#039;Bookmark&#039; next to the torrent title at the top of every torrent page. If the star icon appears grey, the torrent is not bookmarked; If it is yellow, the torrent is bookmarked.&lt;br /&gt;
&lt;br /&gt;
On your userpage, the torrents you have bookmarked will show up under the &#039;Bookmarked&#039; tab (below your &#039;Uploaded&#039; tab).&lt;br /&gt;
&lt;br /&gt;
===Add a torrent to my wishlist?===&lt;br /&gt;
Click on the scroll icon labelled &#039;Wishlist&#039; next to the torrent title. If the scroll icon appears grey, the torrent is not in your wishlist; If the scroll appears blue, the torrent is in your wishlist.&lt;br /&gt;
&lt;br /&gt;
On your userpage, the torrents you have put in your wishlist will show up under the &#039;Wishlist&#039; tab (below your &#039;Bookmarked&#039; tab).&lt;br /&gt;
&lt;br /&gt;
===Get notified on torrent swaps and new comments for a torrent?===&lt;br /&gt;
Click on the bell icon labelled &#039;Notify me&#039; next to the torrent title. If the bell icon appears grey, the torrent is not in your notify list; If the bell appears golden, the torrent is in your notify list.&lt;br /&gt;
&lt;br /&gt;
On your userpage, the torrents you have put in your notify list will show up under the &#039;Notify&#039; tab (below your &#039;Wishlist&#039; tab).&lt;br /&gt;
&lt;br /&gt;
===Report problems that I noticed?===&lt;br /&gt;
A report is a system message that informs staff members of issues that need attention. Staff members will deal with these issues as they see fit. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size:116%;font-weight:bold;&amp;quot;&amp;gt;Reporting Torrents&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The report function brings a torrent or a comment to moderators&#039; attention. Use this function if:&lt;br /&gt;
# A torrent does not comply with [[Site Rules|site rules]] (e.g., if it is [[Blacklist|blacklisted material]])&lt;br /&gt;
# It has corrupted files&lt;br /&gt;
# The link is broken (i.e., you are unable to download the .torrent file)&lt;br /&gt;
# Image links are broken (PM the uploader first; if you get no reply after a week then report it)&lt;br /&gt;
# A better version of the torrent exists (Note that we do allow XViD releases. TV fansubs are allowed alongside DVD rips with only R1 subtitles). Please link us to the newer torrent in that case.&lt;br /&gt;
# Reporting a torrent for any other reason than those just listed &#039;&#039;&#039;will&#039;&#039;&#039; incur warnings, and bans will be issued if abuse continues. In other words, dont&#039; report a torrent just because you don&#039;t like the user, or because you are having trouble getting a good download speed on it.&lt;br /&gt;
&lt;br /&gt;
To report a torrent, click on the exclamation mark icon labelled &#039;Report&#039; next to the torrent title. If the exclamation mark icon appears grey, the torrent has not been reported; If the exclamation mark appears red, the torrent has been reported (by you or someone else).&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size:116%;font-weight:bold;&amp;quot;&amp;gt;Reporting Comments&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Report comments if:&lt;br /&gt;
# They are abusive or contribute to flaming.&lt;br /&gt;
# They constitute useless spam (such as &#039;seed this&#039; or &#039;approve this&#039;).&lt;br /&gt;
# They contain unhidden spoilers for the anime.&lt;br /&gt;
# They flout any of the [[Rules#Tracker Guidelines|tracker guidelines]].&lt;br /&gt;
&lt;br /&gt;
To report a comment, click on the exclamation mark icon labelled &#039;Report&#039; next to the &#039;Quote&#039; button in the upper-right corner of the comment box. If the icon is labelled &#039;REPORTED&#039; in capital letters, the comment has been reported to site staff and will be dealt with soon.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size:116%;font-weight:bold;&amp;quot;&amp;gt;Reporting Forum Posts&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Report forum posts if:&lt;br /&gt;
# They are abusive or contribute to flaming.&lt;br /&gt;
# They contain unhidden spoilers for the anime.&lt;br /&gt;
# They flout any of the [[Rules#Forum Guidelines|forum guidelines]].&lt;br /&gt;
&lt;br /&gt;
The report link for forum posts is at the bottom-right corner of each forum post.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size:116%;font-weight:bold;&amp;quot;&amp;gt;Reporting Stat-Hackers&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;If you find people with downright impossible torrent statistics, post a link to their userpage in [http://forums.BakaBT.com/index.php?topic=10172.0 this forum thread] and include a reason for suspicion.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size:116%;font-weight:bold;&amp;quot;&amp;gt;Reporting Site Errors&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Errors you get with site behaviour (especially if you get error messages) can be reported in the [http://forums.bakabt.com/index.php?topic=14438.0 Site Errors forum thread]. Read the first post and do a quick search before reporting; someone might have reported the problem already.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size:116%;font-weight:bold;&amp;quot;&amp;gt;Other Reports&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Reports regarding other things (that do not have a proper reporting channel) may be reported using the [http://www.BakaBT.com/help.php help form]. &#039;&#039;&#039;Do not abuse this feature&#039;&#039;&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==What information about me does BakaBT store? Is it secure?==&lt;br /&gt;
We store your account information used for registration. your email is hidden from other users, and only shown to site staff.&lt;br /&gt;
&lt;br /&gt;
The amount of upload and download you get on each torrent, as well as your total upload and download, is stored permanently by the server until your account is deleted. These upload and download statistics will always be shown wherever relevant. Torrent stats will be shown in peerlists (if you appear in them), and in your userpage under the relevant columns (if you chose not to hide them).&lt;br /&gt;
&lt;br /&gt;
Information about torrents that you are leeching and/or seeding, as well as torrents you have leeched and/or seeded, are stored on the server. If you have enabled privacy settings, only information for the past 30 days will be kept. If privacy settings are disabled, all prior information is stored on the server.&lt;br /&gt;
&lt;br /&gt;
= Account information =&lt;br /&gt;
=== How many accounts am I allowed to have? ===&lt;br /&gt;
One. Ever. You are only allowed a single account in your lifetime. What would you do with more than one account anyway?&lt;br /&gt;
Users who are found with more than one account will have the newest ones removed and warnings issued. Repeated attempts to create new accounts will result in permanent bans of all accounts from our site.&lt;br /&gt;
&lt;br /&gt;
=== Can my friend/family member use his/her own account on the same computer as me?===&lt;br /&gt;
This is highly discouraged, as the system will identify both of you as [[Account Restrictions#Why was my account disabled?|multi-account]] users.&lt;br /&gt;
&lt;br /&gt;
==Registration and Login==&lt;br /&gt;
====I registered an account but did not receive the confirmation e-mail!====&lt;br /&gt;
Mail can sometimes take up to half a day to be sent out by our server. Please be patient.&lt;br /&gt;
&lt;br /&gt;
Note though that if you didn&#039;t receive the email the first time it will probably not succeed the second time either so you should really try another email address.&lt;br /&gt;
&lt;br /&gt;
Accounts registered using &#039;disposable&#039; email accounts will be rejected by the server, so do not use them. Get a proper email account (GMail accounts tend to see the most success so far).&lt;br /&gt;
&lt;br /&gt;
If you registered for an account and got the confirmation email, but decided you don&#039;t like the username you picked, leave the email alone (do not click the confirmation link). Unconfirmed accounts are removed after about 3 days so you can try again with a different username.&lt;br /&gt;
&lt;br /&gt;
====Help! I cannot login!? (a.k.a. Login of Death)====&lt;br /&gt;
&#039;&#039;&#039;See:&#039;&#039;&#039; [[Troubleshooting#I Can&#039;t log in|Troubleshooting: Login Issues]]&lt;br /&gt;
&lt;br /&gt;
Another solution is to visit your [http://www.BakaBT.com/settings.php settings page].&lt;br /&gt;
&lt;br /&gt;
====I&#039;ve lost my user name or password! Can you send it to me?====&lt;br /&gt;
Use [http://www.BakaBT.com/recover.php this form] to have the login details mailed back to you (Or click &amp;quot;Lost Password?&amp;quot; beside the login field).&lt;br /&gt;
&lt;br /&gt;
====Can you change my username or rename my account?====&lt;br /&gt;
Users can rename their account on the tracker by using [http://www.BakaBT.com/changename.php this form]. Please note that the user is required to be a power user with report privileges. You cannot use existing account names, so check before renaming.&lt;br /&gt;
&lt;br /&gt;
====Forum registration is closed, what do I do?====&lt;br /&gt;
* Your main site account and forum account are linked. However, your forum account needs to be activated via your main site account. To do this, go to your settings editing page and scroll down to the checkbox that says &amp;quot;&#039;&#039;&#039;Enable Forum Account&#039;&#039;&#039;&amp;quot;. Check the box and click &amp;quot;&#039;&#039;&#039;Submit Changes&#039;&#039;&#039;&amp;quot;. Your forum account will then be active.&lt;br /&gt;
&lt;br /&gt;
==Account Pruning and Deletion==&lt;br /&gt;
====Will my account still exist if I don&#039;t use it for a while?====&lt;br /&gt;
Accounts are pruned after 11 months of disuse. Accounts with 0 download and 0 upload are pruned earlier.&lt;br /&gt;
&lt;br /&gt;
====My account is gone! Can you recover it?====&lt;br /&gt;
Unfortunately, we can&#039;t do anything about pruned accounts. If you were able to create a new account under the same name and/or e-mail address, it is proof that your old account is permanently gone.&lt;br /&gt;
&lt;br /&gt;
====I don&#039;t want my account anymore. Can you delete it?====&lt;br /&gt;
Leave your account alone and it will be pruned after 11 months (See: &amp;quot;[[FAQ#Will my account still exist if I don&#039;t use it for a while?|Will my account still exist if I don&#039;t use it for a while?]]&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
==User Classes==&lt;br /&gt;
====What are the different user classes?====&lt;br /&gt;
{| cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;Class&#039;&#039;&#039;&lt;br /&gt;
!&#039;&#039;&#039;Description&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;User&#039;&#039;&#039;&lt;br /&gt;
| Normal user, can choose to view hentai.&lt;br /&gt;
|- &lt;br /&gt;
| &#039;&#039;&#039;Power User&#039;&#039;&#039;&lt;br /&gt;
| Higher user, can view peer lists and report bad torrents or comments. Can make torrent offers. Has access to RSS feed.&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Uploader&#039;&#039;&#039;&lt;br /&gt;
| Deprecated and merged with the Power User class.&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Power Uploader&#039;&#039;&#039;&lt;br /&gt;
| These people can upload directly to the torrent pool without requiring moderator approval. These people are appointed by staff if deemed a trustworthy member of the BakaBT community.&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Moderator/Admins&#039;&#039;&#039;&lt;br /&gt;
| Appointed by Admins. Don&#039;t ask about becoming one.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====How do I become a Power User?====&lt;br /&gt;
Seed at least 25GB and have a ratio equal to or greater than 1.&lt;br /&gt;
&lt;br /&gt;
====I just qualified as a Power User, but my status hasn&#039;t updated?====&lt;br /&gt;
User status updates every day. Give it 24-48 hours and [http://www.bakabt.com/help.php use the help form] if it still does not update.&lt;br /&gt;
&lt;br /&gt;
==Warnings and Bans==&lt;br /&gt;
===I got a warning/was suspended/might be banned, what do I do?===&lt;br /&gt;
See: &amp;quot;[[Account Restrictions|Warnings, Suspensions and Bans]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;I got warned but my hard drive crashed/I got a virus/computer got thrown out of window/Dog ate my homework/etc and I lost all my files so I can&#039;t seed. Please unwarn me so I can download&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;p&amp;gt;If you racked up hundreds of thousands of dollars in debt on a credit card and then suddenly lost your main source of income, do you think the credit card company is going to let you off with a debt writeoff (or even reactivate your card for more spending)?&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You got yourself into that situation, you&#039;ll have to [[For First Timers#Fixing Your Ratio|pull yourself out of it]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;But I&#039;ve turned over a new leaf, and I am now a dedicated seeder who will keep his/her torrents running 24/7. Please unwarn me.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;p&amp;gt;If you have indeed turned over a new leaf, prove it by fixing your ratio. We&#039;ve [[For First Timers#Fixing Your Ratio|outlined a few ways for you to do so]].&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Privacy==&lt;br /&gt;
====Why is my IP displayed on my details page?====&lt;br /&gt;
Only you and the site moderators can view your IP address and email. Other users do not see that information.&lt;br /&gt;
&lt;br /&gt;
====How do I hide torrents on my userpage?====&lt;br /&gt;
You can edit statistics display level through the [http://www.BakaBT.com/settings.php settings page], in the &#039;&#039;&#039;User page&#039;&#039;&#039; tab.&lt;br /&gt;
&lt;br /&gt;
====Does BakaBT store information on the things I download?====&lt;br /&gt;
Yes. This is a statistics-tracking site after all, so we store as much information as is needed to implement the features you find on this site.&lt;br /&gt;
&lt;br /&gt;
=====Is there anything I can do about it?=====&lt;br /&gt;
No. You can [[FAQ#How do I hide torrents on my userpage?|hide your torrent statistics]], but no requests for deletion of data from our database will be entertained.&lt;br /&gt;
&lt;br /&gt;
= Torrent and Tracker Issues =&lt;br /&gt;
==Common Torrent Error Messages==&lt;br /&gt;
==== Failure: access denied, leeching forbidden, you are only allowed to seed ====&lt;br /&gt;
&#039;&#039;&#039;Cause:&#039;&#039;&#039; Your ratio is too low and your account has been [[FAQ#I am warned, what do I do?|warned]].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; Seed more and improve your ratio.&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Failure: unregistered torrent pass&amp;quot; ====&lt;br /&gt;
&#039;&#039;&#039;Cause #1:&#039;&#039;&#039; The tracker can not find a user associated with the [[FAQ#How is my traffic tracked?|torrent pass]] you&#039;re sending it in your announce URL.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; Log in to your BakaBT account and re-download the torrent from the site.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Cause #2:&#039;&#039;&#039; The torrent is using an expired public key.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; Re-download the torrent file from the site.&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Failure: unregistered torrent&amp;quot; ====&lt;br /&gt;
&#039;&#039;&#039;Cause:&#039;&#039;&#039; The torrent you downloaded is not/no longer tracked by our tracker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; Check if the torrent has been swapped, replaced or removed. We occasionally prune old obsolete torrents or material that have become [[Blacklist|blacklisted]].&lt;br /&gt;
&lt;br /&gt;
If you have checked and verified that it is neither of these causes, then it may be a database error. [[FAQ#What does the Report function do?|Report]] the torrent (click on the exclamation mark beside the torrent title) and let us know. Note that you need to be logged in to your BakaBT account in order to make reports.&lt;br /&gt;
&lt;br /&gt;
====  &amp;quot;No connection could be made because the target machine actively refused it&amp;quot; ====&lt;br /&gt;
&#039;&#039;&#039;Cause:&#039;&#039;&#039; The tracker is down&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; Check if the tracker is momentarily offline, you can see the tracker status in the topic title on [http://www.bakabt.com/webirc.php #BakaBT] channel. If it is down, there is nothing you can do except to wait for it to come back up. Leave your client running and stats will update correctly after the tracker is back online. If you stop torrents while it&#039;s down, they won&#039;t update.&lt;br /&gt;
&lt;br /&gt;
If the tracker seems to be online and you&#039;re still having the problem, drop by the support channel at [http://www.bakabt.com/webirc.php #bakabt-support] and we&#039;ll try to see what the problem actually is.&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Failure: access denied, torrents limit reached&amp;quot; ====&lt;br /&gt;
&#039;&#039;&#039;Cause:&#039;&#039;&#039; You are downloading too many torrents.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; Users are allowed to download 3 torrents at a time. Power Users are allowed to download 10 torrents at a time. You are allowed to seed an unlimited number of torrents, regardless of your class.  Check your userpage to see which torrents you are already downloading.&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Failure: use of this client is not allowed on our tracker, please see http://www.bakabt.com/whitelist.php&amp;quot; ====&lt;br /&gt;
&#039;&#039;&#039;Cause:&#039;&#039;&#039; Your torrent client is not in the [[BT_Clients#Whitelist|whitelist]].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; Use a torrent client that is in the [[BT_Clients#Whitelist|whitelist]]. See [http://forums.bakabt.com/index.php?topic=19305.0 this forum thread] for more information.&lt;br /&gt;
&lt;br /&gt;
==Common Torrent-related Problems==&lt;br /&gt;
====Known Issues====&lt;br /&gt;
# Seeded torrents sometimes show under Leeched tab.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====I&#039;ve finished or cancelled a torrent. Why is it still listed in my userpage?====&lt;br /&gt;
Some older clients do not report properly to the tracker when cancelling or finishing a torrent. In that case the tracker will keep waiting for the message - and thus listing the torrent as seeding or leeching - until the peer information timeout occurs. Just ignore it, it should go away after a few hours.&lt;br /&gt;
&lt;br /&gt;
====I am seeing torrents on my userpage that I never downloaded / Someone has hijacked my account====&lt;br /&gt;
&amp;lt;b&amp;gt;Cause #1&amp;lt;/b&amp;gt;: People are using your torrent key (you accidentally posted your [[FAQ#How is my traffic tracked?|torrent key]] publicly)&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Cause #2&amp;lt;/b&amp;gt;: You hot-linked to a .torrent file that is tagged with your passkey&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Cause #3&amp;lt;/b&amp;gt;: You posted a screenshot of your torrent program with your passkey visible&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Cause #4&amp;lt;/b&amp;gt;: You revealed your torrent passkey to one or more people&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Cause #5&amp;lt;/b&amp;gt;: You uploaded a .torrent file that has your passkey to another tracker.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Solution&amp;lt;/b&amp;gt;: Go to your [http://www.BakaBT.com/settings.php settings page] and generate a new key, all your old torrents will become invalid immediately so &amp;lt;u&amp;gt;you will have to re-download your torrents&amp;lt;/u&amp;gt;. Wait about 10-20 minutes to be sure the tracker has recorded your key change before resuming your torrenting.&lt;br /&gt;
&lt;br /&gt;
To prevent similar issues occurring in future, do not hot-link to our torrent files (only hot-link to the description page), and do not post your personal .torrent file (the one you download when logged in) to other trackers.&lt;br /&gt;
&lt;br /&gt;
====I&#039;m uploading or downloading some torrents but I don&#039;t see them on my userpage====&lt;br /&gt;
&amp;lt;b&amp;gt;Cause&amp;lt;/b&amp;gt;: You downloaded a public torrent.&lt;br /&gt;
&amp;lt;b&amp;gt;Solution&amp;lt;/b&amp;gt;: Log in and re-download the torrent.&lt;br /&gt;
&lt;br /&gt;
====My stats are not updating. What can I do?====&lt;br /&gt;
Check that the torrent pass in your client&#039;s tracker announce URL matches the one shown on your [http://www.BakaBT.com/settings.php settings page]. If it doesn&#039;t (or if it does, but you&#039;re still having problems), then:Remove the torrent entries from your torrent client. Re-download the .torrent files and open them in your client. Force a hash recheck and resume activity.&lt;br /&gt;
&lt;br /&gt;
If that doesn&#039;t help, go to your [http://www.BakaBT.com/settings.php settings page] and regenerate your torrent pass. Wait about 10-20 minutes to be sure the tracker has recorded your key change, then repeat the above step.Use only official non-beta clients.&lt;br /&gt;
&lt;br /&gt;
=== How is my traffic tracked? ===&lt;br /&gt;
BakaBT uses a passkey system to identify each user. Your passkey can be found on your [http://www.BakaBT.com/settings.php settings page]. When you announce, your passkey is used to identify you and to (very accurately) track your upload and download traffic, regardless of any IP changes. The passkey is automatically added to the announce URL of every torrent you download whilst logged in. &amp;lt;b&amp;gt;&#039;&#039;&#039;YOU MUST NEVER, EVER GIVE OUT YOUR PASSKEY TO ANY OTHER PERSON.&#039;&#039;&#039;&amp;lt;/b&amp;gt; Doing so will result in [[FAQ#I am seeing torrents on my userpage that I never downloaded / Someone has hijacked my account|undesirable outcomes]]. We will not help to fix any bad ratios caused by user&#039;s negligence of the security of their torrent passkey.&lt;br /&gt;
&lt;br /&gt;
=== What are bonus torrents? ===&lt;br /&gt;
Bonus torrents are torrents with few seeders or few leechers, the idea of the bonus system is to keep older torrents alive. Bonus torrents are marked with an icon that looks like a yellow ball with a red &amp;quot;&#039;&#039;&#039;B&#039;&#039;&#039;&amp;quot; inside.  When you seed a bonus torrent (and have 100%) you will earn 1 bonus point per hour per bonus torrent. Bonus points can be exchanged for upload credit on the [http://www.BakaBT.com/bonus.php bonus page] (this means you can add an amount onto your &#039;uploaded&#039; stat on your user page).&lt;br /&gt;
&lt;br /&gt;
=== Best practices ===&lt;br /&gt;
If a torrent you are currently leeching or seeding is not listed on your userpage, stop the torrent and resume it again. (also see: [[FAQ#I am seeing torrents on my userpage that I never downloaded / Someone has hijacked my account|I&#039;m uploading or downloading some torrents but I don&#039;t see them on my userpage]]) Make sure you exit your client properly, so that the tracker receives the required information.If the tracker is down, do not stop seeding. Your traffic may not be tracked during downtime but as soon as the tracker is working again then your traffic will be tracked again.&lt;br /&gt;
&lt;br /&gt;
=== What BitTorrent clients can I use? ===&lt;br /&gt;
See: &amp;quot;[[BT_Clients|Bittorrent Clients]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Can I upload your torrents to other trackers? ===&lt;br /&gt;
Yes. However, only post the public torrent files to other trackers, do not post the .torrent file you downloaded when logged in (otherwise [[FAQ#I am seeing torrents on my userpage that I never downloaded / Someone has hijacked my account|these things]] might happen). In other words, log out before downloading the torrent file if you intend to upload it to other trackers.&lt;br /&gt;
&lt;br /&gt;
(Of course, the torrent files you download through your torrent client are yours to do as you please.)&lt;br /&gt;
&lt;br /&gt;
==Using BakaBT from multiple machines==&lt;br /&gt;
=== Can I login from different computers/IPs? ===&lt;br /&gt;
Yes. But you are advised not to log in at the computer of another BakaBT user; the system may identify you as a multi-account user.&lt;br /&gt;
See also: &amp;quot;[[Account Restrictions#Why was my account disabled?|Why was my account disabled?]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Can I seed from different computers/IPs? ===&lt;br /&gt;
Yes, &#039;&#039;&#039;but you may not seed the &#039;&#039;same&#039;&#039; torrent from two different computers/IPs&#039;&#039;&#039; as the tracker will not understand how you can be in two places at once :P. In the worst case, you may be auto-banned by the tracker.&lt;br /&gt;
&lt;br /&gt;
= Downloading/Seeding and Connection Issues=&lt;br /&gt;
==Common Questions==&lt;br /&gt;
=== What&#039;s the difference between seeding and uploading? ===&lt;br /&gt;
&#039;&#039;&#039;Uploading&#039;&#039;&#039; is posting a new torrent to our tracker.&lt;br /&gt;
&#039;&#039;&#039;Seeding&#039;&#039;&#039; is uploading data to other users on a torrent after you have completed the download.&lt;br /&gt;
&lt;br /&gt;
=== I have some files on my computer, how do I seed them or upload them to BakaBT? ===&lt;br /&gt;
See: &amp;quot;[[FAQ#I&#039;ve finished downloading the files, so how do I seed back?|I&#039;ve finished downloading the files, so how do I seed back?]]&amp;quot; and &amp;quot;[[FAQ#Why can&#039;t I offer new torrents?|Why can&#039;t I offer new torrents?]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Why do I have to wait before I can download a new torrent? ===&lt;br /&gt;
When new torrents are uploaded, those with Power User (or higher) status are given &#039;first dibs&#039;. By virtue of their good share ratio we trust that these users will stick around to help seed the torrent after they benefit from having exclusive access to the initial seeders. Other users must wait for the timer to expire before they can download the .torrent file.&lt;br /&gt;
&lt;br /&gt;
The amount of time you have to wait is proportional to the size of the torrent (the larger the torrent, the longer you have to wait). This is to encourage more people to become Power Users, and to build up a larger seed base before other users are permitted to join the swarm.&lt;br /&gt;
&lt;br /&gt;
=== Why did an active torrent suddenly disappear? ===&lt;br /&gt;
# The torrent may have been replaced by a superior offer.&lt;br /&gt;
# The uploader may have requested for its deletion, with an acceptable reason(s).&lt;br /&gt;
# The torrent was requested to be removed by a 3rd party (usually in the form of a cease-and-desist letter).&lt;br /&gt;
&lt;br /&gt;
It happens from time to time and we regret that no alerts will be given prior to deletion. If this is unacceptable, we suggest that you get your files from other public trackers (such as [http://www.anirena.com/viewtracker.php?action=browse Anirena] and [http://nyaatorrents.org/ NyaaTorrents]) instead, where torrents are less likely to be removed.&lt;br /&gt;
&lt;br /&gt;
=== What is a torrent passkey? ===&lt;br /&gt;
See: [[FAQ#How is my traffic tracked?|How is my traffic tracked?]]&lt;br /&gt;
&lt;br /&gt;
=== I lost all my files, and I can&#039;t download or seed, help! ===&lt;br /&gt;
See: [[For First Timers#Fixing Your Ratio|Fixing Your Ratio]]&lt;br /&gt;
&lt;br /&gt;
==Connectivity and Speed Issues==&lt;br /&gt;
If your question falls under any of these categories:&lt;br /&gt;
# Cannot access BakaBT&lt;br /&gt;
# Port number is &#039;---&#039;/other port-related issues&lt;br /&gt;
# Proxying and proxies&lt;br /&gt;
# Dynamic/static IPs and NAT&lt;br /&gt;
# Slow downloading/uploading&lt;br /&gt;
&lt;br /&gt;
Kindly refer to the [[Troubleshooting]] section for more information.&lt;br /&gt;
&lt;br /&gt;
==Torrenting Issues==&lt;br /&gt;
=== I&#039;m having trouble with this Bittorrent program, something&#039;s wrong with it ===&lt;br /&gt;
Do a search in the [http://forums.BakaBT.com/index.php?board=7.0 Help section of the forums], and see if someone else has faced the same issue.&lt;br /&gt;
&lt;br /&gt;
If yours is a unique case, make a new post in the same section. Give clear and detailed information, and include links to the torrents you are having trouble with.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: We only provide help for [[BT Clients#Whitelist|whitelisted torrent clients]]. Support for other clients will not be provided.&lt;br /&gt;
&lt;br /&gt;
=== What do I do if a torrent has no seeds? ===&lt;br /&gt;
Hop on the forums and post in the [http://forums.BakaBT.com/index.php?board=5.0 Reseed Request] section. Be sure to read the rules before posting.&lt;br /&gt;
&lt;br /&gt;
=== I&#039;ve finished downloading the files, so how do I seed back? ===&lt;br /&gt;
See: &amp;quot;[[For First Timers#Seeding|Seeding]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== What are these &amp;quot;a piece has failed a hash check&amp;quot; messages? ===&lt;br /&gt;
BitTorrent clients check the data they receive for integrity. When a piece fails this check it is automatically re-downloaded. Occasional hash fails are a common occurrence, and you shouldn&#039;t worry.&lt;br /&gt;
&lt;br /&gt;
Some clients have an (advanced) option/preference to &#039;kick/ban clients that send you bad data&#039; or similar. It should be turned on, since it makes sure that if a peer repeatedly sends you pieces that fail the hash check it will be ignored in the future.&lt;br /&gt;
&lt;br /&gt;
=== The torrent is supposed to be 100MB. How come I downloaded 120MB? ===&lt;br /&gt;
See: [[FAQ#What are these &amp;quot;a piece has failed a hash check&amp;quot; messages?|What are these &amp;quot;a piece has failed a hash check&amp;quot; messages?]]&lt;br /&gt;
If your client receives bad data it will have to redownload it, therefore the total downloaded may be larger than the torrent size. Make sure the &amp;quot;kick/ban&amp;quot; option is turned on to minimize the extra downloads.&lt;br /&gt;
&lt;br /&gt;
=== What&#039;s this &amp;quot;IOError - [Errno13] Permission denied&amp;quot; error? ===&lt;br /&gt;
If you just want to fix it reboot your computer, it should solve the problem. Otherwise, see &amp;quot;[[Troubleshooting#What.27s_this_IOError_-_Error13_Permission_denied_error.3F|What&#039;s this &amp;quot;IOError - [Errno13] Permission denied&amp;quot; error?]]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Downloading or seeding is slow! How do I speed it up? ===&lt;br /&gt;
See: &amp;quot;[[Troubleshooting#Speed Issues|Troubleshooting: Speed Issues]]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
= Torrent Offers and Adoptions =&lt;br /&gt;
== Torrent Offer System ==&lt;br /&gt;
=== What does &#039;Semi-granted&#039; mean? ===&lt;br /&gt;
Offers require the approval of three staff members before they are added to the tracker. &#039;Semi-granted&#039; is the state an offer acquires when at least one staff member has granted it, but it is pending further approval.&lt;br /&gt;
&lt;br /&gt;
=== Why can&#039;t I offer new torrents? ===&lt;br /&gt;
Only Power Users can make new torrent offers, which will be granted or rejected by staff. Torrents offered by staff members and Power Uploaders are added to the torrent pool directly without going through the approval procedure.&lt;br /&gt;
Non-Power Users can not make offers.&lt;br /&gt;
&lt;br /&gt;
=== I have another question related to torrents and offers ===&lt;br /&gt;
If it is any of the following questions:&lt;br /&gt;
# What can I offer/not offer to BakaBT?&lt;br /&gt;
# I have files that I would like to upload, how do I upload them here?&lt;br /&gt;
# What should I put in the description?&lt;br /&gt;
# How should I name my files?&lt;br /&gt;
# What are good keywords for my torrent?&lt;br /&gt;
# Why does it say &amp;quot;This torrent contains improper files, please swap the torrent file&amp;quot; on the torrent page?&lt;br /&gt;
# What are &amp;quot;extra files&amp;quot; and what should I add?&lt;br /&gt;
# How do I attach extra files?&lt;br /&gt;
# What should I put in my torrents?&lt;br /&gt;
# What is this torrent swapping feature?&lt;br /&gt;
&lt;br /&gt;
Kindly see: &amp;quot;[[How to make an offer]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Torrent Adoption System ==&lt;br /&gt;
=== Why should I adopt a torrent? ===&lt;br /&gt;
At the time of writing, no outright benefits are given for torrent adoption. You adopt because the description of a torrent does not sit right with you, and you have the irresistible urge to fix it, put it right and provide accurate information for future users of BakaBT who will chance upon said torrent.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;*Note: The adopter effectively becomes the new owner of the torrent. As such, he/she is expected to carry out the usual duties of the torrent owner. They&#039;ll be responsible for re-seeding the torrent if it dies (so adopters &amp;lt;u&amp;gt;must&amp;lt;/u&amp;gt; have the torrent files), keep descriptions up to date, and make torrent swaps where necessary. Torrent adopting is not stamp-collecting.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== What should I do to ensure that my adoption request will be granted? ===&lt;br /&gt;
* Submit a proper reason for adoption. Tell us what you are going to fix, what you will add, what you will do with the torrent. If the reason for adoption is &amp;quot;I will fix the torrent&amp;quot;, we&#039;re not likely to be convinced.&lt;br /&gt;
* It helps if you have a portfolio.&lt;br /&gt;
** Users who consistently submit good torrent descriptions (by adopting, or making torrent offers) will obviously be trusted more than users without said portfolio. So if you already have torrents in your &#039;&#039;Uploaded&#039;&#039; tab, do take a look at them and work on those first before adopting new torrents.&lt;br /&gt;
** If you are a new user with no prior experience do not worry, we will sit you through the description-editing process and help you bring it up to speed, all you need is a willingness to learn and dedication to the adoption process.&lt;br /&gt;
* Seed the torrent. While owners are not expected to seed the torrent files 24/7, being a seed on the peerlist gives us the assurance that you have the files are will be able to re-seed the torrent as and when the need arises.&lt;br /&gt;
&lt;br /&gt;
=== What do I need to do after I adopt a torrent? ===&lt;br /&gt;
Bring it up to date, in accordance with the [[FAQ#What should I put in the description?|torrent description content guidelines]]. Keep tabs on it, and re-seed the torrent if it dies (has 0 seeders).&lt;br /&gt;
&lt;br /&gt;
=== What if I want to replace the torrent files with a better, superior version? ===&lt;br /&gt;
[http://www.BakaBT.com/upload.php Make a new torrent offer], and add a comment, giving the URL of the torrent you wish to replace. The adoption system is meant for fixing torrents, not replacing them.&lt;br /&gt;
&lt;br /&gt;
= Is there an RSS feed available for BakaBT? =&lt;br /&gt;
RSS Feeds are only available for Power Users. You will see the RSS Feed link appear when you become one.&lt;br /&gt;
&lt;br /&gt;
An mIRC script is available that will check the RSS feed every x minutes, if there are any new torrents uploaded then it lists the new torrents, you can also manually check for new torrents. [http://force.power-net.org/?page=mscripts&amp;amp;amp;gsinfo=1 Information about the script], [http://force.power-net.org/?page=download&amp;amp;amp;section=mscripts&amp;amp;amp;id=1 Download Link].&lt;br /&gt;
&lt;br /&gt;
= How can I get an avatar on the Blog? =&lt;br /&gt;
Wordpress has its own Avatar-System with which you can have the same avatar on all Wordpress-Blogs you have an account on.&lt;br /&gt;
&lt;br /&gt;
For this you have to go to [http://www.gravatar.com/ Gravatar] and sign up with your e-mail address with which you created your account on the blog&lt;br /&gt;
Wait for the e-mail with the activation-key, click on the link and enter the needed information.&lt;br /&gt;
&lt;br /&gt;
After logging in click on &amp;lt;u&amp;gt;&amp;quot;Add one by clicking here&amp;quot;&amp;lt;/u&amp;gt;, choose the location of the avatar and resize the box to fit your avatar.&lt;br /&gt;
Now you only have to choose a rating for it and you are finished.&lt;br /&gt;
&lt;br /&gt;
= What if I can&#039;t find the answer to my problem here? =&lt;br /&gt;
So, after reading all that, you still can&#039;t find a solution? Read on. Post in the [http://forums.BakaBT.com/ forums], by all means. You&#039;ll find it&#039;s a friendly and helpful place, &#039;&#039;&#039;provided you follow a few basic guidelines&#039;&#039;&#039;:&lt;br /&gt;
* You might have missed a few wiki pages. Did you know we also have the following wiki pages?&lt;br /&gt;
# [[Site Rules]]&lt;br /&gt;
# [[For First Timers|Beginner&#039;s FAQ]]&lt;br /&gt;
# [[Troubleshooting]]&lt;br /&gt;
# [[Account Restrictions]]&lt;br /&gt;
# [[How to make an offer]]&lt;br /&gt;
# [[Format Preferences|What we allow on BakaBT]]&lt;br /&gt;
* Make sure your problem has not been answered in this FAQ. There&#039;s no point in posting just to be sent back here amidst a torrent of angry remarks telling you not to waste other people&#039;s time.&lt;br /&gt;
* Before posting, &amp;lt;span style=&amp;quot;text-decoration: underline;&amp;quot;&amp;gt;&#039;&#039;&#039;read the stickied topics&#039;&#039;&#039;&amp;lt;/span&amp;gt; (the ones at the top of each subforum page). Many times, new information that still hasn&#039;t been incorporated in the FAQ can be found there.&lt;br /&gt;
* Help us in helping you. Do &#039;&#039;&#039;not&#039;&#039;&#039; just say &amp;quot;it doesn&#039;t work!&amp;quot;. Provide details so that we don&#039;t have to guess or waste time asking. What client do you use? What&#039;s your OS? What&#039;s your network setup? What&#039;s the exact error message you get, if any? What are the torrents you are having problems with? The more details you give the easier it will be for us, and the more likely your post will get a useful reply, as opposed to a reply that just asks for more information.&lt;br /&gt;
* PLEASE make an effort to make your posts readable. There is nothing worse than trying to decipher a post that looks like it was written by someone mashing their face on the keyboard. Perfect spelling isn&#039;t necessary, but basic grammar and punctuation definitely helps.&lt;br /&gt;
* ... and needless to say: be polite. Demanding help rarely works. Asking nicely for it usually does the trick.&lt;br /&gt;
* &#039;&#039;&#039;DO NOT&#039;&#039;&#039; send a private message to a staff member. If you don&#039;t wish to post in the forums, use [http://www.BakaBT.com/help.php the help form] instead, or ask on the [[IRC|IRC channel]].&lt;br /&gt;
* To prove that you have read this FAQ before seeking help, please quote the words &#039;Amorphous Plate Wiggle&#039; in your post. We are quite serious. Failure to do so will result in your thread being locked immediately or your help request being ignored. This phrase is subject to change.&lt;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=1933</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=1933"/>
		<updated>2009-10-12T19:47:37Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* MPlayer tweaks */ Fixes in the config file&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains 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;
===Compiling MPlayer from source===&lt;br /&gt;
The preferred way of installing mplayer is compiling from source due to the fact that most Linux distros ship various levels of horribly outdated versions of it. The reasons for compiling from a new mplayer source are many:&lt;br /&gt;
* vdpau support, (gpu decoding)&lt;br /&gt;
* better ffh264 asm (faster decoding)&lt;br /&gt;
* newer libass (better subtitle rendering)&lt;br /&gt;
* no need for external windows codecs for some files anymore&lt;br /&gt;
* various bug-fixes&lt;br /&gt;
&lt;br /&gt;
The preferred source repository among actual users is uau&#039;s git for the following reasons&lt;br /&gt;
* It has ordered chapters support (which a lot of modern DVD/bluray rips use)&lt;br /&gt;
* It can be compiled with ffmpeg-mt (multithreaded decoding for multicore processors)&lt;br /&gt;
* It uses svn libass (even better subtitle rendering)&lt;br /&gt;
* It&#039;s easier to compile (Python scripts that set up your build environment)&lt;br /&gt;
* It includes various fixes for bad mplayer behavior&lt;br /&gt;
&lt;br /&gt;
How to compile for various distros is coming soon, but cloning [http://repo.or.cz/w/mplayer-build.git this git repository] will get you started.&lt;br /&gt;
&lt;br /&gt;
===Installing Mplayer from distro repos ===&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;
=====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;
===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;
====NVidia vdpau====&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;
====ATI====&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 happen probably sometime around linux 2.6.32 release.&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: &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;
====MPlayer 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;
===Installing SMPlayer===&lt;br /&gt;
====Debian/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;
====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.&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>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=1932</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=1932"/>
		<updated>2009-10-12T19:43:43Z</updated>

		<summary type="html">&lt;p&gt;Raylu: Reworded KMPlayer section.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains 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;
===Compiling MPlayer from source===&lt;br /&gt;
The preferred way of installing mplayer is compiling from source due to the fact that most Linux distros ship various levels of horribly outdated versions of it. The reasons for compiling from a new mplayer source are many:&lt;br /&gt;
* vdpau support, (gpu decoding)&lt;br /&gt;
* better ffh264 asm (faster decoding)&lt;br /&gt;
* newer libass (better subtitle rendering)&lt;br /&gt;
* no need for external windows codecs for some files anymore&lt;br /&gt;
* various bug-fixes&lt;br /&gt;
&lt;br /&gt;
The preferred source repository among actual users is uau&#039;s git for the following reasons&lt;br /&gt;
* It has ordered chapters support (which a lot of modern DVD/bluray rips use)&lt;br /&gt;
* It can be compiled with ffmpeg-mt (multithreaded decoding for multicore processors)&lt;br /&gt;
* It uses svn libass (even better subtitle rendering)&lt;br /&gt;
* It&#039;s easier to compile (Python scripts that set up your build environment)&lt;br /&gt;
* It includes various fixes for bad mplayer behavior&lt;br /&gt;
&lt;br /&gt;
How to compile for various distros is coming soon, but cloning [http://repo.or.cz/w/mplayer-build.git this git repository] will get you started.&lt;br /&gt;
&lt;br /&gt;
===Installing Mplayer from distro repos ===&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;
=====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;
===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;
====NVidia vdpau====&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;
====ATI====&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 happen probably sometime around linux 2.6.32 release.&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: &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;, where &amp;quot;x&amp;quot; is the number of the stream.&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 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;
===Installing SMPlayer===&lt;br /&gt;
====Debian/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;
====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.&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>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=1931</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=1931"/>
		<updated>2009-10-12T19:36:15Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* MPlayer tweaks */ Removed line at the top of the config file and reordered a comment in the config file.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains 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;
===Compiling MPlayer from source===&lt;br /&gt;
The preferred way of installing mplayer is compiling from source due to the fact that most Linux distros ship various levels of horribly outdated versions of it. The reasons for compiling from a new mplayer source are many:&lt;br /&gt;
* vdpau support, (gpu decoding)&lt;br /&gt;
* better ffh264 asm (faster decoding)&lt;br /&gt;
* newer libass (better subtitle rendering)&lt;br /&gt;
* no need for external windows codecs for some files anymore&lt;br /&gt;
* various bug-fixes&lt;br /&gt;
&lt;br /&gt;
The preferred source repository among actual users is uau&#039;s git for the following reasons&lt;br /&gt;
* It has ordered chapters support (which a lot of modern DVD/bluray rips use)&lt;br /&gt;
* It can be compiled with ffmpeg-mt (multithreaded decoding for multicore processors)&lt;br /&gt;
* It uses svn libass (even better subtitle rendering)&lt;br /&gt;
* It&#039;s easier to compile (Python scripts that set up your build environment)&lt;br /&gt;
* It includes various fixes for bad mplayer behavior&lt;br /&gt;
&lt;br /&gt;
How to compile for various distros is coming soon, but cloning [http://repo.or.cz/w/mplayer-build.git this git repository] will get you started.&lt;br /&gt;
&lt;br /&gt;
===Installing Mplayer from distro repos ===&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;
=====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;
===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;
====NVidia vdpau====&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;
====ATI====&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 happen probably sometime around linux 2.6.32 release.&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;
 # 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;, where &amp;quot;x&amp;quot; is the number of the stream.&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 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;
** mplayer -ass -embeddedfonts myvideo.ext&lt;br /&gt;
* View external subs:&lt;br /&gt;
** mplayer -ass -sub mysubs.srt myvideo.ext&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;
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). SMPlayer is not a player per se, it is just a GUI (QT) frontend for MPlayer, hence you still need MPlayer to actually play the video.&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>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=1930</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=1930"/>
		<updated>2009-10-12T19:34:18Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* MPlayer tweaks */ Removed blank lines in config file&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains 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;
===Compiling MPlayer from source===&lt;br /&gt;
The preferred way of installing mplayer is compiling from source due to the fact that most Linux distros ship various levels of horribly outdated versions of it. The reasons for compiling from a new mplayer source are many:&lt;br /&gt;
* vdpau support, (gpu decoding)&lt;br /&gt;
* better ffh264 asm (faster decoding)&lt;br /&gt;
* newer libass (better subtitle rendering)&lt;br /&gt;
* no need for external windows codecs for some files anymore&lt;br /&gt;
* various bug-fixes&lt;br /&gt;
&lt;br /&gt;
The preferred source repository among actual users is uau&#039;s git for the following reasons&lt;br /&gt;
* It has ordered chapters support (which a lot of modern DVD/bluray rips use)&lt;br /&gt;
* It can be compiled with ffmpeg-mt (multithreaded decoding for multicore processors)&lt;br /&gt;
* It uses svn libass (even better subtitle rendering)&lt;br /&gt;
* It&#039;s easier to compile (Python scripts that set up your build environment)&lt;br /&gt;
* It includes various fixes for bad mplayer behavior&lt;br /&gt;
&lt;br /&gt;
How to compile for various distros is coming soon, but cloning [http://repo.or.cz/w/mplayer-build.git this git repository] will get you started.&lt;br /&gt;
&lt;br /&gt;
===Installing Mplayer from distro repos ===&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;
=====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;
===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;
====NVidia vdpau====&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;
====ATI====&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 happen probably sometime around linux 2.6.32 release.&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;
For Japanese audio preference, subtitles on, with 4 audio channels for surround sound files.&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.&lt;br /&gt;
 alang=jp,jpn&lt;br /&gt;
 slang=en,eng&lt;br /&gt;
 # Not all files use the correct tags, 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;, where &amp;quot;x&amp;quot; is the number of the stream.&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 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;
** mplayer -ass -embeddedfonts myvideo.ext&lt;br /&gt;
* View external subs:&lt;br /&gt;
** mplayer -ass -sub mysubs.srt myvideo.ext&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;
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). SMPlayer is not a player per se, it is just a GUI (QT) frontend for MPlayer, hence you still need MPlayer to actually play the video.&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>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=1929</id>
		<title>Linux Video Playback</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=Linux_Video_Playback&amp;diff=1929"/>
		<updated>2009-10-12T19:33:26Z</updated>

		<summary type="html">&lt;p&gt;Raylu: Unbolded reasons for compiling, redid the config file, various minor fixes.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains 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;
===Compiling MPlayer from source===&lt;br /&gt;
The preferred way of installing mplayer is compiling from source due to the fact that most Linux distros ship various levels of horribly outdated versions of it. The reasons for compiling from a new mplayer source are many:&lt;br /&gt;
* vdpau support, (gpu decoding)&lt;br /&gt;
* better ffh264 asm (faster decoding)&lt;br /&gt;
* newer libass (better subtitle rendering)&lt;br /&gt;
* no need for external windows codecs for some files anymore&lt;br /&gt;
* various bug-fixes&lt;br /&gt;
&lt;br /&gt;
The preferred source repository among actual users is uau&#039;s git for the following reasons&lt;br /&gt;
* It has ordered chapters support (which a lot of modern DVD/bluray rips use)&lt;br /&gt;
* It can be compiled with ffmpeg-mt (multithreaded decoding for multicore processors)&lt;br /&gt;
* It uses svn libass (even better subtitle rendering)&lt;br /&gt;
* It&#039;s easier to compile (Python scripts that set up your build environment)&lt;br /&gt;
* It includes various fixes for bad mplayer behavior&lt;br /&gt;
&lt;br /&gt;
How to compile for various distros is coming soon, but cloning [http://repo.or.cz/w/mplayer-build.git this git repository] will get you started.&lt;br /&gt;
&lt;br /&gt;
===Installing Mplayer from distro repos ===&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;
=====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;
===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;
====NVidia vdpau====&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;
====ATI====&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 happen probably sometime around linux 2.6.32 release.&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;
For Japanese audio preference, subtitles on, with 4 audio channels for surround sound files.&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;
&lt;br /&gt;
 # 4 audio channels for surround sound files&lt;br /&gt;
 channels=4&lt;br /&gt;
&lt;br /&gt;
 # Default audio and subtitle tracks.&lt;br /&gt;
 alang=jp,jpn&lt;br /&gt;
 slang=en,eng&lt;br /&gt;
 # Not all files use the correct tags, 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;, where &amp;quot;x&amp;quot; is the number of the stream.&lt;br /&gt;
&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;
 subfont-autoscale=1&lt;br /&gt;
&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 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;
** mplayer -ass -embeddedfonts myvideo.ext&lt;br /&gt;
* View external subs:&lt;br /&gt;
** mplayer -ass -sub mysubs.srt myvideo.ext&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;
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). SMPlayer is not a player per se, it is just a GUI (QT) frontend for MPlayer, hence you still need MPlayer to actually play the video.&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>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=IRC&amp;diff=1890</id>
		<title>IRC</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=IRC&amp;diff=1890"/>
		<updated>2009-09-25T14:10:21Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* Channel statistics */&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 BakaBT since many idles the IRC, which is not the case with the forum.&lt;br /&gt;
&lt;br /&gt;
There are two official BakaBT IRC channels on the rizon IRC network: [irc://irc.rizon.net/BakaBT #BakaBT] and [irc://irc.rizon.net/bakabt-support #bakabt-support].&lt;br /&gt;
&lt;br /&gt;
==If you&#039;re new to IRC==&lt;br /&gt;
If you&#039;ve read the [[FAQ]] and your question isn&#039;t in there, or you have an account issue you need help with (i.e. something you can&#039;t solve by yourself even if you know how to), the support channel is a relatively quick way to get the help you need.&lt;br /&gt;
&lt;br /&gt;
Make sure you read the [[Rules#IRC Guidelines|IRC Rules]] before joining the channels.&lt;br /&gt;
&lt;br /&gt;
===4-Step Guide to getting on #bakabt-support===&lt;br /&gt;
# Go to [http://www.bakabt.com/webirc.php our webchat] page.&lt;br /&gt;
# Type your BakaBT username in the first field (makes things easier for us; the easier it is for us to help you, the more likely we are to do so).&lt;br /&gt;
# Click &#039;Chat&#039;. You will automatically be connected to our main channel (#bakabt).&lt;br /&gt;
# To get to the support channel (#bakabt-support), type &#039;&#039;&#039;/join bakabt-support&#039;&#039;&#039; and press &#039;Enter&#039;. You will now be in the support channel (check to make sure).&lt;br /&gt;
&lt;br /&gt;
===What you need to know about #bakabt-support===&lt;br /&gt;
In Rizon webchat interface:&lt;br /&gt;
&lt;br /&gt;
# The typing area is at the bottom of the page.&lt;br /&gt;
# Users with &#039;&#039;&#039;%&#039;&#039;&#039; beside their name are channel half-operators (a.k.a. half-ops, hops, etc). Usually bots with special privileges (BBT, Chaos|Hina).&lt;br /&gt;
# Users with &#039;&#039;&#039;&amp;amp;&#039;&#039;&#039;, &#039;&#039;&#039;@&#039;&#039;&#039; or &#039;&#039;&#039;~&#039;&#039;&#039; beside their name are channel admin, operators and owner respectively. They are usually also members of the site staff, unless they&#039;re bots (Rizon bot).&lt;br /&gt;
# Users with &#039;&#039;&#039;+&#039;&#039;&#039; beside their name are &amp;quot;voiced&amp;quot; users. Voice is a status given to users by half-operators or admins. Users voiced on #bakabt-support are users recognised by BakaBT staff to be helpful in the support channel. They may also be other VIPs, e.g. Rizon staff, so be nice :)&lt;br /&gt;
# Users with no symbol beside their names are (most likely) normal users.&lt;br /&gt;
# Normal users may offer help and advice with regards to fixing your ratio or finding good torrents to seed. However, only staff will be able to do anything about your account.&lt;br /&gt;
# Use &#039;&#039;&#039;!help&#039;&#039;&#039; to view a list of available commands. Commonly used ones include &#039;&#039;&#039;!help commands&#039;&#039;&#039; (available commands), &#039;&#039;&#039;!help rules&#039;&#039;&#039; (channel rules),  &#039;&#039;&#039;!help FAQ&#039;&#039;&#039; (link to FAQ) and &#039;&#039;&#039;!help Wiki&#039;&#039;&#039; (link to Wiki), as well as any other commands that may have been added.&lt;br /&gt;
&lt;br /&gt;
===What to do once you&#039;re in #bakabt-support===&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Describe your problem in detail. The more you tell us about the problem, the more we are able to help.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Staff may not reply immediately (we&#039;re not always at immediate disposal so have some patience), but someone will talk to you in a while.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;If no staff replies within 15 minutes, you probably caught us at a bad time (wait around, or come back again in 1-2 hours).&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===What not to do in #bakabt-support===&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Do not PM (private message) any staff members, unless they ask you to (usually to ask for more sensitive information, e.g. email address, that we need to help resolve your issue). If you do not know how to send a private message you can ignore this.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Do not try to help other users (unless you know what you&#039;re talking about) or try to impersonate staff. Annoying users will be banned from the support channel.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Do not yell at us like we&#039;re some customer service rep. We do not get paid for providing support, and will not tolerate verbal abuse.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Idling and lurking is not allowed. Users left idling or lurking will be kicked or banned from the support channel.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;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;
===Irssi===&lt;br /&gt;
Irssi is a terminal based IRC client for UNIX systems, with multi-server and plugin support. The learning curve is slightly steep, but it is highly flexible.&lt;br /&gt;
* [http://www.irssi.org/about Irssi About page]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Irssi Irssi 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;
===Opera===&lt;br /&gt;
The Opera browser comes with an inbuilt IRC chat client. It&#039;s fairly similar to ChatZilla.&lt;br /&gt;
* [http://www.opera.com/ Opera Homepage]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Opera_browser Opera 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. &lt;br /&gt;
&lt;br /&gt;
It was originally completely free and open-source, but now it only remains free for Linux. &lt;br /&gt;
&lt;br /&gt;
The Windows version is available to try at the homepage, while there is a version compiled by someone else (for free) available at [http://www.silverex.org/ silverex].&lt;br /&gt;
Keep in mind that the latest free compiled version is still many steps behind the latest official release, and that it is compiled from the Linux source (freely available), rather than the source used in official Windows releases, meaning that free compiled versions may not function as well as the official releases. &lt;br /&gt;
* [http://xchat.org/ X-Chat Homepage]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Xchat XChat on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Mibbit Webchat===&lt;br /&gt;
For those who don&#039;t want to install more software on their computer, Mibbit is the solution. You can register an account to store all your servers and channels so you don&#039;t have to do it each time you go to the site, but you can always use it without an account. &lt;br /&gt;
*[http://mibbit.com/ Mibbit Homepage]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Mibbit Mibbit on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Rizon Webchat===&lt;br /&gt;
For even greater convenience, you can use Rizon&#039;s Webchat client. It only allows access to channels on irc.rizon.net, but if you&#039;re just looking for a quick way to get onto #BakaBT or #bakabt-support through a browser this is your best bet.&lt;br /&gt;
&lt;br /&gt;
Since the server is automatically set to irc.rizon.net, you can bypass the &amp;quot;/server&amp;quot; step in the instructions below.&lt;br /&gt;
&lt;br /&gt;
[http://chat.Rizon.net/ Rizon Chat]&lt;br /&gt;
&lt;br /&gt;
==Connecting to BakaBT==&lt;br /&gt;
&#039;&#039;&#039;Most guides here were made with ChatZilla in mind!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
BakaBT uses the IRC server:&lt;br /&gt;
: &#039;&#039;&#039;irc.rizon.net&#039;&#039;&#039;&lt;br /&gt;
The main chatroom is: &lt;br /&gt;
: &#039;&#039;&#039;#BakaBT&#039;&#039;&#039; (not case sensitive)&lt;br /&gt;
And the support room is:&lt;br /&gt;
: &#039;&#039;&#039;#bakabt-support&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===How to connect to #BakaBT===&lt;br /&gt;
* Start your IRC client&lt;br /&gt;
* Enter the Nickname you want into the bottom left button, beside the input bar.&amp;lt;&lt;br /&gt;
* Now, to join the server. Type (or copy/paste) into the input bar:&lt;br /&gt;
:: &#039;&#039;&#039;/server irc.rizon.net&#039;&#039;&#039;&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.&lt;br /&gt;
:To do this type (or copy/paste) into the input bar:&lt;br /&gt;
:: &#039;&#039;&#039;/msg nickserv register your_password your_email&#039;&#039;&#039;&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;
* An activation code will be sent to your email address (used for registration). Read the email, type the command into IRC and your nickname will be registered (one nickname/group of nicknames per email address).&lt;br /&gt;
** Registration is not usually required to join a channel, but some channels explicitly require one (such as #BakaBT).&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;
:: &#039;&#039;&#039;/join #BakaBT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== How to reconnect to #BakaBT===&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;
:: &#039;&#039;&#039;/server irc.rizon.net&#039;&#039;&#039;&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;
:: &#039;&#039;&#039;/msg NickServ IDENTIFY password&#039;&#039;&#039;&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;
:: &#039;&#039;&#039;/join #BakaBT&#039;&#039;&#039;&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.rizon.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;
:: &#039;&#039;&#039;/msg nickserv identify &amp;quot;password&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Connecting to different channels===&lt;br /&gt;
To connect to another channel when first starting up, just replace #BakaBT with the channel you want (like #bakabt-support). If your already connected, type (or copy/paste) into the input bar:&amp;lt;br /&amp;gt;&lt;br /&gt;
:: &#039;&#039;&#039;/join #channelname&#039;&#039;&#039;&lt;br /&gt;
Where &amp;quot;#channelname&amp;quot; is the channel-which-you-want-to-connect-to&#039;s name.&lt;br /&gt;
&lt;br /&gt;
===Channel statistics===&lt;br /&gt;
The channel stats can be found at:&lt;br /&gt;
[http://stats.rizon.net/chan/bakabt.html http://stats.rizon.net/chan/bakabt.html]&amp;lt;br&amp;gt;&lt;br /&gt;
The stats are live and update instantly as long as the Rizon staff has them on. Statistics are generated every 24 hrs at midnight PMT.&lt;br /&gt;
&lt;br /&gt;
====Avatar &amp;amp; Details====&lt;br /&gt;
You can set your avatar and details by following these steps:&lt;br /&gt;
# Go to [http://stats.rizon.net/pics/register.php http://stats.rizon.net/pics/register.php] and follow onscreen instructions&amp;lt;br&amp;gt; *note* Use &#039;&#039;&#039;/msg Stats avatar&#039;&#039;&#039; command in #bakabt to receive the code needed.&lt;br /&gt;
# Fill in the username, password, code and e-mail fields.&lt;br /&gt;
# Log in and submit your avatar (150x150px and must be under 20KB in size).&lt;br /&gt;
# Check out the stats afterward on [http://stats.rizon.net/chan/bakabt.html http://stats.rizon.net/chan/bakabt.html]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Alternative stats are available at http://chalamius.se/ircstats/bakabt.html&lt;br /&gt;
&lt;br /&gt;
Old stats are also available at http://kovensky.project357.com/stats/bakabt.html&lt;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=IRC&amp;diff=1889</id>
		<title>IRC</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=IRC&amp;diff=1889"/>
		<updated>2009-09-25T14:10:02Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* Channel stats */ Added Chalamius&amp;#039; stats.&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 BakaBT since many idles the IRC, which is not the case with the forum.&lt;br /&gt;
&lt;br /&gt;
There are two official BakaBT IRC channels on the rizon IRC network: [irc://irc.rizon.net/BakaBT #BakaBT] and [irc://irc.rizon.net/bakabt-support #bakabt-support].&lt;br /&gt;
&lt;br /&gt;
==If you&#039;re new to IRC==&lt;br /&gt;
If you&#039;ve read the [[FAQ]] and your question isn&#039;t in there, or you have an account issue you need help with (i.e. something you can&#039;t solve by yourself even if you know how to), the support channel is a relatively quick way to get the help you need.&lt;br /&gt;
&lt;br /&gt;
Make sure you read the [[Rules#IRC Guidelines|IRC Rules]] before joining the channels.&lt;br /&gt;
&lt;br /&gt;
===4-Step Guide to getting on #bakabt-support===&lt;br /&gt;
# Go to [http://www.bakabt.com/webirc.php our webchat] page.&lt;br /&gt;
# Type your BakaBT username in the first field (makes things easier for us; the easier it is for us to help you, the more likely we are to do so).&lt;br /&gt;
# Click &#039;Chat&#039;. You will automatically be connected to our main channel (#bakabt).&lt;br /&gt;
# To get to the support channel (#bakabt-support), type &#039;&#039;&#039;/join bakabt-support&#039;&#039;&#039; and press &#039;Enter&#039;. You will now be in the support channel (check to make sure).&lt;br /&gt;
&lt;br /&gt;
===What you need to know about #bakabt-support===&lt;br /&gt;
In Rizon webchat interface:&lt;br /&gt;
&lt;br /&gt;
# The typing area is at the bottom of the page.&lt;br /&gt;
# Users with &#039;&#039;&#039;%&#039;&#039;&#039; beside their name are channel half-operators (a.k.a. half-ops, hops, etc). Usually bots with special privileges (BBT, Chaos|Hina).&lt;br /&gt;
# Users with &#039;&#039;&#039;&amp;amp;&#039;&#039;&#039;, &#039;&#039;&#039;@&#039;&#039;&#039; or &#039;&#039;&#039;~&#039;&#039;&#039; beside their name are channel admin, operators and owner respectively. They are usually also members of the site staff, unless they&#039;re bots (Rizon bot).&lt;br /&gt;
# Users with &#039;&#039;&#039;+&#039;&#039;&#039; beside their name are &amp;quot;voiced&amp;quot; users. Voice is a status given to users by half-operators or admins. Users voiced on #bakabt-support are users recognised by BakaBT staff to be helpful in the support channel. They may also be other VIPs, e.g. Rizon staff, so be nice :)&lt;br /&gt;
# Users with no symbol beside their names are (most likely) normal users.&lt;br /&gt;
# Normal users may offer help and advice with regards to fixing your ratio or finding good torrents to seed. However, only staff will be able to do anything about your account.&lt;br /&gt;
# Use &#039;&#039;&#039;!help&#039;&#039;&#039; to view a list of available commands. Commonly used ones include &#039;&#039;&#039;!help commands&#039;&#039;&#039; (available commands), &#039;&#039;&#039;!help rules&#039;&#039;&#039; (channel rules),  &#039;&#039;&#039;!help FAQ&#039;&#039;&#039; (link to FAQ) and &#039;&#039;&#039;!help Wiki&#039;&#039;&#039; (link to Wiki), as well as any other commands that may have been added.&lt;br /&gt;
&lt;br /&gt;
===What to do once you&#039;re in #bakabt-support===&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Describe your problem in detail. The more you tell us about the problem, the more we are able to help.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Staff may not reply immediately (we&#039;re not always at immediate disposal so have some patience), but someone will talk to you in a while.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;If no staff replies within 15 minutes, you probably caught us at a bad time (wait around, or come back again in 1-2 hours).&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===What not to do in #bakabt-support===&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Do not PM (private message) any staff members, unless they ask you to (usually to ask for more sensitive information, e.g. email address, that we need to help resolve your issue). If you do not know how to send a private message you can ignore this.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Do not try to help other users (unless you know what you&#039;re talking about) or try to impersonate staff. Annoying users will be banned from the support channel.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Do not yell at us like we&#039;re some customer service rep. We do not get paid for providing support, and will not tolerate verbal abuse.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Idling and lurking is not allowed. Users left idling or lurking will be kicked or banned from the support channel.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;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;
===Irssi===&lt;br /&gt;
Irssi is a terminal based IRC client for UNIX systems, with multi-server and plugin support. The learning curve is slightly steep, but it is highly flexible.&lt;br /&gt;
* [http://www.irssi.org/about Irssi About page]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Irssi Irssi 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;
===Opera===&lt;br /&gt;
The Opera browser comes with an inbuilt IRC chat client. It&#039;s fairly similar to ChatZilla.&lt;br /&gt;
* [http://www.opera.com/ Opera Homepage]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Opera_browser Opera 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. &lt;br /&gt;
&lt;br /&gt;
It was originally completely free and open-source, but now it only remains free for Linux. &lt;br /&gt;
&lt;br /&gt;
The Windows version is available to try at the homepage, while there is a version compiled by someone else (for free) available at [http://www.silverex.org/ silverex].&lt;br /&gt;
Keep in mind that the latest free compiled version is still many steps behind the latest official release, and that it is compiled from the Linux source (freely available), rather than the source used in official Windows releases, meaning that free compiled versions may not function as well as the official releases. &lt;br /&gt;
* [http://xchat.org/ X-Chat Homepage]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Xchat XChat on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Mibbit Webchat===&lt;br /&gt;
For those who don&#039;t want to install more software on their computer, Mibbit is the solution. You can register an account to store all your servers and channels so you don&#039;t have to do it each time you go to the site, but you can always use it without an account. &lt;br /&gt;
*[http://mibbit.com/ Mibbit Homepage]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Mibbit Mibbit on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Rizon Webchat===&lt;br /&gt;
For even greater convenience, you can use Rizon&#039;s Webchat client. It only allows access to channels on irc.rizon.net, but if you&#039;re just looking for a quick way to get onto #BakaBT or #bakabt-support through a browser this is your best bet.&lt;br /&gt;
&lt;br /&gt;
Since the server is automatically set to irc.rizon.net, you can bypass the &amp;quot;/server&amp;quot; step in the instructions below.&lt;br /&gt;
&lt;br /&gt;
[http://chat.Rizon.net/ Rizon Chat]&lt;br /&gt;
&lt;br /&gt;
==Connecting to BakaBT==&lt;br /&gt;
&#039;&#039;&#039;Most guides here were made with ChatZilla in mind!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
BakaBT uses the IRC server:&lt;br /&gt;
: &#039;&#039;&#039;irc.rizon.net&#039;&#039;&#039;&lt;br /&gt;
The main chatroom is: &lt;br /&gt;
: &#039;&#039;&#039;#BakaBT&#039;&#039;&#039; (not case sensitive)&lt;br /&gt;
And the support room is:&lt;br /&gt;
: &#039;&#039;&#039;#bakabt-support&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===How to connect to #BakaBT===&lt;br /&gt;
* Start your IRC client&lt;br /&gt;
* Enter the Nickname you want into the bottom left button, beside the input bar.&amp;lt;&lt;br /&gt;
* Now, to join the server. Type (or copy/paste) into the input bar:&lt;br /&gt;
:: &#039;&#039;&#039;/server irc.rizon.net&#039;&#039;&#039;&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.&lt;br /&gt;
:To do this type (or copy/paste) into the input bar:&lt;br /&gt;
:: &#039;&#039;&#039;/msg nickserv register your_password your_email&#039;&#039;&#039;&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;
* An activation code will be sent to your email address (used for registration). Read the email, type the command into IRC and your nickname will be registered (one nickname/group of nicknames per email address).&lt;br /&gt;
** Registration is not usually required to join a channel, but some channels explicitly require one (such as #BakaBT).&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;
:: &#039;&#039;&#039;/join #BakaBT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== How to reconnect to #BakaBT===&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;
:: &#039;&#039;&#039;/server irc.rizon.net&#039;&#039;&#039;&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;
:: &#039;&#039;&#039;/msg NickServ IDENTIFY password&#039;&#039;&#039;&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;
:: &#039;&#039;&#039;/join #BakaBT&#039;&#039;&#039;&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.rizon.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;
:: &#039;&#039;&#039;/msg nickserv identify &amp;quot;password&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Connecting to different channels===&lt;br /&gt;
To connect to another channel when first starting up, just replace #BakaBT with the channel you want (like #bakabt-support). If your already connected, type (or copy/paste) into the input bar:&amp;lt;br /&amp;gt;&lt;br /&gt;
:: &#039;&#039;&#039;/join #channelname&#039;&#039;&#039;&lt;br /&gt;
Where &amp;quot;#channelname&amp;quot; is the channel-which-you-want-to-connect-to&#039;s name.&lt;br /&gt;
&lt;br /&gt;
===Channel statistics===&lt;br /&gt;
The channel stats can be found at:&lt;br /&gt;
[http://stats.rizon.net/chan/bakabt.html http://stats.rizon.net/chan/bakabt.html]&amp;lt;br&amp;gt;&lt;br /&gt;
The stats are live and update instantly as long as the Rizon staff has them on. Statistics are generated every 24 hrs at midnight PMT.&lt;br /&gt;
&lt;br /&gt;
====Avatar &amp;amp; Details====&lt;br /&gt;
You can set your avatar and details by following these steps:&lt;br /&gt;
# Go to [http://stats.rizon.net/pics/register.php http://stats.rizon.net/pics/register.php] and follow onscreen instructions&amp;lt;br&amp;gt; *note* Use &#039;&#039;&#039;/msg Stats avatar&#039;&#039;&#039; command in #bakabt to receive the code needed.&lt;br /&gt;
# Fill in the username, password, code and e-mail fields.&lt;br /&gt;
# Log in and submit your avatar (150x150px and must be under 20KB in size).&lt;br /&gt;
# Check out the stats afterward on [http://stats.rizon.net/chan/bakabt.html http://stats.rizon.net/chan/bakabt.html]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Alternative stats are available at http://chalamius.se/ircstats/bakabt.html.&lt;br /&gt;
&lt;br /&gt;
Old stats are also available at http://kovensky.project357.com/stats/bakabt.html&lt;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=IRC&amp;diff=1888</id>
		<title>IRC</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=IRC&amp;diff=1888"/>
		<updated>2009-09-24T21:53:22Z</updated>

		<summary type="html">&lt;p&gt;Raylu: /* Channel stats */&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 BakaBT since many idles the IRC, which is not the case with the forum.&lt;br /&gt;
&lt;br /&gt;
There are two official BakaBT IRC channels on the rizon IRC network: [irc://irc.rizon.net/BakaBT #BakaBT] and [irc://irc.rizon.net/bakabt-support #bakabt-support].&lt;br /&gt;
&lt;br /&gt;
==If you&#039;re new to IRC==&lt;br /&gt;
If you&#039;ve read the [[FAQ]] and your question isn&#039;t in there, or you have an account issue you need help with (i.e. something you can&#039;t solve by yourself even if you know how to), the support channel is a relatively quick way to get the help you need.&lt;br /&gt;
&lt;br /&gt;
Make sure you read the [[Rules#IRC Guidelines|IRC Rules]] before joining the channels.&lt;br /&gt;
&lt;br /&gt;
===4-Step Guide to getting on #bakabt-support===&lt;br /&gt;
# Go to [http://www.bakabt.com/webirc.php our webchat] page.&lt;br /&gt;
# Type your BakaBT username in the first field (makes things easier for us; the easier it is for us to help you, the more likely we are to do so).&lt;br /&gt;
# Click &#039;Chat&#039;. You will automatically be connected to our main channel (#bakabt).&lt;br /&gt;
# To get to the support channel (#bakabt-support), type &#039;&#039;&#039;/join bakabt-support&#039;&#039;&#039; and press &#039;Enter&#039;. You will now be in the support channel (check to make sure).&lt;br /&gt;
&lt;br /&gt;
===What you need to know about #bakabt-support===&lt;br /&gt;
In Rizon webchat interface:&lt;br /&gt;
&lt;br /&gt;
# The typing area is at the bottom of the page.&lt;br /&gt;
# Users with &#039;&#039;&#039;%&#039;&#039;&#039; beside their name are channel half-operators (a.k.a. half-ops, hops, etc). Usually bots with special privileges (BBT, Chaos|Hina).&lt;br /&gt;
# Users with &#039;&#039;&#039;&amp;amp;&#039;&#039;&#039;, &#039;&#039;&#039;@&#039;&#039;&#039; or &#039;&#039;&#039;~&#039;&#039;&#039; beside their name are channel admin, operators and owner respectively. They are usually also members of the site staff, unless they&#039;re bots (Rizon bot).&lt;br /&gt;
# Users with &#039;&#039;&#039;+&#039;&#039;&#039; beside their name are &amp;quot;voiced&amp;quot; users. Voice is a status given to users by half-operators or admins. Users voiced on #bakabt-support are users recognised by BakaBT staff to be helpful in the support channel. They may also be other VIPs, e.g. Rizon staff, so be nice :)&lt;br /&gt;
# Users with no symbol beside their names are (most likely) normal users.&lt;br /&gt;
# Normal users may offer help and advice with regards to fixing your ratio or finding good torrents to seed. However, only staff will be able to do anything about your account.&lt;br /&gt;
# Use &#039;&#039;&#039;!help&#039;&#039;&#039; to view a list of available commands. Commonly used ones include &#039;&#039;&#039;!help commands&#039;&#039;&#039; (available commands), &#039;&#039;&#039;!help rules&#039;&#039;&#039; (channel rules),  &#039;&#039;&#039;!help FAQ&#039;&#039;&#039; (link to FAQ) and &#039;&#039;&#039;!help Wiki&#039;&#039;&#039; (link to Wiki), as well as any other commands that may have been added.&lt;br /&gt;
&lt;br /&gt;
===What to do once you&#039;re in #bakabt-support===&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Describe your problem in detail. The more you tell us about the problem, the more we are able to help.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Staff may not reply immediately (we&#039;re not always at immediate disposal so have some patience), but someone will talk to you in a while.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;If no staff replies within 15 minutes, you probably caught us at a bad time (wait around, or come back again in 1-2 hours).&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===What not to do in #bakabt-support===&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Do not PM (private message) any staff members, unless they ask you to (usually to ask for more sensitive information, e.g. email address, that we need to help resolve your issue). If you do not know how to send a private message you can ignore this.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Do not try to help other users (unless you know what you&#039;re talking about) or try to impersonate staff. Annoying users will be banned from the support channel.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Do not yell at us like we&#039;re some customer service rep. We do not get paid for providing support, and will not tolerate verbal abuse.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Idling and lurking is not allowed. Users left idling or lurking will be kicked or banned from the support channel.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;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;
===Irssi===&lt;br /&gt;
Irssi is a terminal based IRC client for UNIX systems, with multi-server and plugin support. The learning curve is slightly steep, but it is highly flexible.&lt;br /&gt;
* [http://www.irssi.org/about Irssi About page]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Irssi Irssi 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;
===Opera===&lt;br /&gt;
The Opera browser comes with an inbuilt IRC chat client. It&#039;s fairly similar to ChatZilla.&lt;br /&gt;
* [http://www.opera.com/ Opera Homepage]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Opera_browser Opera 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. &lt;br /&gt;
&lt;br /&gt;
It was originally completely free and open-source, but now it only remains free for Linux. &lt;br /&gt;
&lt;br /&gt;
The Windows version is available to try at the homepage, while there is a version compiled by someone else (for free) available at [http://www.silverex.org/ silverex].&lt;br /&gt;
Keep in mind that the latest free compiled version is still many steps behind the latest official release, and that it is compiled from the Linux source (freely available), rather than the source used in official Windows releases, meaning that free compiled versions may not function as well as the official releases. &lt;br /&gt;
* [http://xchat.org/ X-Chat Homepage]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Xchat XChat on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Mibbit Webchat===&lt;br /&gt;
For those who don&#039;t want to install more software on their computer, Mibbit is the solution. You can register an account to store all your servers and channels so you don&#039;t have to do it each time you go to the site, but you can always use it without an account. &lt;br /&gt;
*[http://mibbit.com/ Mibbit Homepage]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Mibbit Mibbit on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Rizon Webchat===&lt;br /&gt;
For even greater convenience, you can use Rizon&#039;s Webchat client. It only allows access to channels on irc.rizon.net, but if you&#039;re just looking for a quick way to get onto #BakaBT or #bakabt-support through a browser this is your best bet.&lt;br /&gt;
&lt;br /&gt;
Since the server is automatically set to irc.rizon.net, you can bypass the &amp;quot;/server&amp;quot; step in the instructions below.&lt;br /&gt;
&lt;br /&gt;
[http://chat.Rizon.net/ Rizon Chat]&lt;br /&gt;
&lt;br /&gt;
==Connecting to BakaBT==&lt;br /&gt;
&#039;&#039;&#039;Most guides here were made with ChatZilla in mind!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
BakaBT uses the IRC server:&lt;br /&gt;
: &#039;&#039;&#039;irc.rizon.net&#039;&#039;&#039;&lt;br /&gt;
The main chatroom is: &lt;br /&gt;
: &#039;&#039;&#039;#BakaBT&#039;&#039;&#039; (not case sensitive)&lt;br /&gt;
And the support room is:&lt;br /&gt;
: &#039;&#039;&#039;#bakabt-support&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===How to connect to #BakaBT===&lt;br /&gt;
* Start your IRC client&lt;br /&gt;
* Enter the Nickname you want into the bottom left button, beside the input bar.&amp;lt;&lt;br /&gt;
* Now, to join the server. Type (or copy/paste) into the input bar:&lt;br /&gt;
:: &#039;&#039;&#039;/server irc.rizon.net&#039;&#039;&#039;&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.&lt;br /&gt;
:To do this type (or copy/paste) into the input bar:&lt;br /&gt;
:: &#039;&#039;&#039;/msg nickserv register your_password your_email&#039;&#039;&#039;&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;
* An activation code will be sent to your email address (used for registration). Read the email, type the command into IRC and your nickname will be registered (one nickname/group of nicknames per email address).&lt;br /&gt;
** Registration is not usually required to join a channel, but some channels explicitly require one (such as #BakaBT).&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;
:: &#039;&#039;&#039;/join #BakaBT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== How to reconnect to #BakaBT===&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;
:: &#039;&#039;&#039;/server irc.rizon.net&#039;&#039;&#039;&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;
:: &#039;&#039;&#039;/msg NickServ IDENTIFY password&#039;&#039;&#039;&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;
:: &#039;&#039;&#039;/join #BakaBT&#039;&#039;&#039;&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.rizon.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;
:: &#039;&#039;&#039;/msg nickserv identify &amp;quot;password&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Connecting to different channels===&lt;br /&gt;
To connect to another channel when first starting up, just replace #BakaBT with the channel you want (like #bakabt-support). If your already connected, type (or copy/paste) into the input bar:&amp;lt;br /&amp;gt;&lt;br /&gt;
:: &#039;&#039;&#039;/join #channelname&#039;&#039;&#039;&lt;br /&gt;
Where &amp;quot;#channelname&amp;quot; is the channel-which-you-want-to-connect-to&#039;s name.&lt;br /&gt;
&lt;br /&gt;
===Channel stats===&lt;br /&gt;
The channel stats can be found at:&lt;br /&gt;
[http://stats.rizon.net/chan/bakabt.html http://stats.rizon.net/chan/bakabt.html]&amp;lt;br&amp;gt;&lt;br /&gt;
The stats are live and update instantly as long as the Rizon staff has them on. Statistics are generated every 24 hrs at midnight PMT.&lt;br /&gt;
&lt;br /&gt;
====Avatar &amp;amp; Details====&lt;br /&gt;
You can set your avatar and details by following these steps:&lt;br /&gt;
# Go to [http://stats.rizon.net/pics/register.php http://stats.rizon.net/pics/register.php] and follow onscreen instructions&amp;lt;br&amp;gt; *note* Use &#039;&#039;&#039;/msg Stats avatar&#039;&#039;&#039; command in #bakabt to receive the code needed.&lt;br /&gt;
# Fill in the username, password, code and e-mail fields.&lt;br /&gt;
# Log in and submit your avatar (150x150px and must be under 20KB in size).&lt;br /&gt;
# Check out the stats afterward on [http://stats.rizon.net/chan/bakabt.html http://stats.rizon.net/chan/bakabt.html]&lt;br /&gt;
&lt;br /&gt;
Old stats are also available at http://kovensky.project357.com/stats/bakabt.html&lt;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
	<entry>
		<id>http://wiki.bakabt.me/index.php?title=FAQ&amp;diff=1170</id>
		<title>FAQ</title>
		<link rel="alternate" type="text/html" href="http://wiki.bakabt.me/index.php?title=FAQ&amp;diff=1170"/>
		<updated>2009-04-21T07:03:54Z</updated>

		<summary type="html">&lt;p&gt;Raylu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- &lt;br /&gt;
&lt;br /&gt;
------------------------------Banner------------------------------&amp;gt;&lt;br /&gt;
{| style=&amp;quot;width:100%; background:#402365; margin-top:1.2em; border:1px solid #ccc;&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:56%; color:#000&amp;quot;| &amp;lt;!-- &lt;br /&gt;
&lt;br /&gt;
-----------&amp;quot;Welcome to BoxTorrents&amp;quot;----------&amp;gt;&lt;br /&gt;
{| style=&amp;quot;width:99%; border:solid 0px; background:none;&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:600px; text-align:center; white-space:nowrap; color:#fff;&amp;quot;|&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:162%; border:none; margin:0; padding:.1em; color:#fff;&amp;quot;&amp;gt;Frequently Asked Questions&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:90%; border:none; margin:0; padding:.1em; color:#c06c8d;&amp;quot;&amp;gt;&#039;&#039;&#039;In here, you might just find the answers you&#039;re looking for!&#039;&#039;&#039; &amp;lt;/div&amp;gt;&lt;br /&gt;
|}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
---------------------------Text---------------------------&amp;gt;&lt;br /&gt;
|style=&amp;quot;width:1%; font-size:95%;&amp;quot;|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
If you are new to Bittorrent and/or the anime fansub scene, you should take a look at the [[For First Timers|Beginner&#039;s FAQ]] as well.&lt;br /&gt;
&lt;br /&gt;
= Site information =&lt;br /&gt;
&lt;br /&gt;
===What makes BoxTorrents different?===&lt;br /&gt;
There are many anime torrent sites but BoxTorrents is unique in the quality of our content. Our goal is to provide only torrents for completed anime or anime-related material and we pick only the best versions. Not everyone may submit new torrents; only Power Users, users who seem to have at least some experience with our site, and other appointed users. All submissions are thoroughly checked before they are added to our ever growing list of series; by &#039;&#039;ever growing&#039;&#039;, we really mean ever growing in the sense that even old torrents are still seeded. In short: &#039;quality over quantity&#039; and &#039;ease of use&#039;. Do keep in mind that BoxTorrents exists because of its users; old content is still available because of many dedicated seeders, so sharing is a must.&lt;br /&gt;
&lt;br /&gt;
This is a public tracker, but we do prefer users to register before using the site. Before you do anything here at BoxTorrents, we suggest you read the [[rules]]! There are only a few rules to abide by and most are common sense.&lt;br /&gt;
&lt;br /&gt;
=== How do I favourite/bookmark a torrent? ===&lt;br /&gt;
Click on the yellow star next to the torrent title at the top of every torrent page. On your userpage, you will see the torrents you have bookmarked show up under the appropriate tab (next to your &#039;Currently Seeding&#039; and &#039;Currently Leeching&#039; tabs.&lt;br /&gt;
&lt;br /&gt;
=== What does the Report function do? ===&lt;br /&gt;
====Reporting Torrents====&lt;br /&gt;
The report function brings a torrent or a comment to moderators&#039; attention. Use this function if:&lt;br /&gt;
# A torrent does not comply with [[Site Rules|site rules]] (e.g., if it is [[Blacklist|blacklisted material]])&lt;br /&gt;
# It has corrupted files&lt;br /&gt;
# The link is broken (i.e., you are unable to download the .torrent file)&lt;br /&gt;
# A better version of the torrent exists (Note that we do allow XViD releases. TV fansubs are allowed alongside DVD rips with only R1 subtitles). Please link us to the newer torrent in that case.&lt;br /&gt;
# Reporting a torrent for any other reason than those just listed &#039;&#039;&#039;will&#039;&#039;&#039; incur warnings, and bans will be issued if abuse continues. In other words, dont&#039; report a torrent just because you dont&#039; like the user, or because you are having trouble getting a good download speed on it.&lt;br /&gt;
&lt;br /&gt;
The button to report a torrent is an exclamation mark icon, and can be found next to the torrent title.&lt;br /&gt;
&lt;br /&gt;
====Reporting Comments====&lt;br /&gt;
Report comments if:&lt;br /&gt;
# They are abusive or contribute to flaming.&lt;br /&gt;
# It constitutes useless spam (such as &#039;seed this&#039; or &#039;approve this&#039;).&lt;br /&gt;
# It contains spoilers for the anime.&lt;br /&gt;
# It flouts any of the [[Rules#Tracker Guidelines|tracker guidelines]].&lt;br /&gt;
&lt;br /&gt;
The report button for comments is on the right side of comment headers, next to the &#039;Quote&#039; button.&lt;br /&gt;
&lt;br /&gt;
= Account information =&lt;br /&gt;
=== How many accounts am I allowed to have? ===&lt;br /&gt;
One. Ever. You are only allowed a single account in your lifetime. What would you do with more than one account anyway?&lt;br /&gt;
Users who are found with more than one account will have the newest ones removed and warnings issued. Repeated attempts to create new accounts will result in permanent bans of all accounts from our site.&lt;br /&gt;
&lt;br /&gt;
=== Can my friend/family member use an account on the same computer as me?===&lt;br /&gt;
This is highly discouraged, as the system will identify both of you as [[Account Restrictions#Why was my account disabled?|multi-account]] users.&lt;br /&gt;
&lt;br /&gt;
==Registration and Login==&lt;br /&gt;
====I registered an account but did not receive the confirmation e-mail!====&lt;br /&gt;
Mail can sometimes take up to half a day to be sent out by our server. Please be patient.&lt;br /&gt;
Note though that if you didn&#039;t receive the email the first time it will probably not succeed the second time either so you should really try another email address.&lt;br /&gt;
&lt;br /&gt;
====Help! I cannot login!? (a.k.a. Login of Death)====&lt;br /&gt;
This problem sometimes occurs with MSIE. Close all Internet Explorer windows and open Internet Options in the control panel. Click the Delete Cookies button. You should now be able to login.&lt;br /&gt;
Another solution is to visit your [http://www.boxtorrents.com/settings.php settings page].&lt;br /&gt;
&lt;br /&gt;
====I&#039;ve lost my user name or password! Can you send it to me?====&lt;br /&gt;
Use [http://www.boxtorrents.com/recover.php this form] to have the login details mailed back to you (Or click &amp;quot;Lost Password?&amp;quot; beside the login field).&lt;br /&gt;
&lt;br /&gt;
====Can you change my username or rename my account?====&lt;br /&gt;
Users can rename their account on the tracker by using [http://www.boxtorrents.com/changename.php this form]. Please note that the user is required to be a power user with report privileges. You cannot use existing account names, so check before renaming.&lt;br /&gt;
&lt;br /&gt;
====Forum registration is closed, what do I do?====&lt;br /&gt;
* Your main site account and forum account are linked. However, your forum account needs to be activated via your main site account. To do this, go to your settings editing page and scroll down to the checkbox that says &amp;quot;&#039;&#039;&#039;Enable Forum Account&#039;&#039;&#039;&amp;quot;. Check the box and click &amp;quot;&#039;&#039;&#039;Submit Changes&#039;&#039;&#039;&amp;quot;. Your forum account will then be active.&lt;br /&gt;
&lt;br /&gt;
==Account Pruning and Deletion==&lt;br /&gt;
====Will my account still exist if I don&#039;t use it for a while?====&lt;br /&gt;
Used accounts are pruned after 6 months. Unused accounts are pruned sooner (0 download, 0 upload).&lt;br /&gt;
&lt;br /&gt;
====My account is gone! Can you recover it?====&lt;br /&gt;
Unfortunately, we can&#039;t do anything about pruned accounts. If you were able to create a new account under the same name and/or e-mail address, it is proof that your old account is permanently gone.&lt;br /&gt;
&lt;br /&gt;
====I don&#039;t want my account anymore. Can you delete it?====&lt;br /&gt;
Leave your account alone and it will be pruned after 6 months (See: &amp;quot;[[FAQ#Will my account still exist if I don&#039;t use it for a while?|Will my account still exist if I don&#039;t use it for a while?]]&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
==User Classes==&lt;br /&gt;
====What are the different user classes?====&lt;br /&gt;
{| cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;Class&#039;&#039;&#039;&lt;br /&gt;
!&#039;&#039;&#039;Description&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;User&#039;&#039;&#039;&lt;br /&gt;
| Normal user, can choose to view hentai.&lt;br /&gt;
|- &lt;br /&gt;
| &#039;&#039;&#039;Power User&#039;&#039;&#039;&lt;br /&gt;
| Higher user, can view peer lists and report bad torrents or comments. Can make torrent offers. Has access to RSS feed.&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Uploader&#039;&#039;&#039;&lt;br /&gt;
| Deprecated and merged with the Power User class.&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Power Uploader&#039;&#039;&#039;&lt;br /&gt;
| These people can upload directly to the torrent pool without requiring moderator approval. These people are appointed by staff if deemed a trustworthy member of the Box community.&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Moderator/Admins&#039;&#039;&#039;&lt;br /&gt;
| Appointed by Admins. Don&#039;t ask about becoming one.&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;System Operator&#039;&#039;&#039;&lt;br /&gt;
| Box&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====How do I become a Power User?====&lt;br /&gt;
Seed at least 25GB and have a ratio equal to or greater than 1.&lt;br /&gt;
&lt;br /&gt;
====I just qualified as a Power User, but my status hasn&#039;t updated?====&lt;br /&gt;
User status updates every day. Give it 24-48 hours and drop any of the staff a PM if it still does not update.&lt;br /&gt;
&lt;br /&gt;
==Warnings and Bans==&lt;br /&gt;
===I got a warning, what do I do?===&lt;br /&gt;
See: &amp;quot;[[Account Restrictions#Warnings|Warnings]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
====I got warned but my hard drive crashed/I got a virus/computer got thrown out of window/Dog ate my homework/etc and I lost all my files so I can&#039;t seed. Please unwarn me so I can download====&lt;br /&gt;
If you racked up hundreds of thousands of dollars in debt on a credit card and then suddenly lost your main source of income, do you think the credit card company is going to let you off with a debt writeoff (or even reactivate your card for more spending)?&lt;br /&gt;
&lt;br /&gt;
You got yourself into that situation, you&#039;ll have to [[For First Timers|pull yourself out of it]].&lt;br /&gt;
&lt;br /&gt;
=====But I&#039;ve turned over a new leaf, and I am now a dedicated seeder who will keep his/her torrents running 24/7. Please unwarn me.=====&lt;br /&gt;
If you have indeed turned over a new leaf, prove it by fixing your ratio. We&#039;ve [[For First Timers|outlined a few ways for you to do so]].&lt;br /&gt;
&lt;br /&gt;
===I try to log in and it says my account has been suspended===&lt;br /&gt;
See: &amp;quot;[[Account Restrictions#Suspensions|Suspensions]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===I got banned, what do I do?===&lt;br /&gt;
See: &amp;quot;[[Account Restrictions#Bans|Bans]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Privacy==&lt;br /&gt;
====Why is my IP displayed on my details page?====&lt;br /&gt;
Only you and the site moderators can view your IP address and email. Other users do not see that information.&lt;br /&gt;
&lt;br /&gt;
====How do I hide torrents on my userpage?====&lt;br /&gt;
You can edit statistics display level through the [http://www.boxtorrents.com/settings.php settings page], in the &#039;&#039;&#039;User page&#039;&#039;&#039; tab.&lt;br /&gt;
&lt;br /&gt;
====Does Boxtorrents store information on the things I download?====&lt;br /&gt;
Yes. This is a statistics-tracking site after all, so we store as much information as is needed to implement the features you find on this site.&lt;br /&gt;
&lt;br /&gt;
=====Is there anything I can do about it?=====&lt;br /&gt;
No.&lt;br /&gt;
&lt;br /&gt;
= Statistics and Tracker Issues =&lt;br /&gt;
==Common Torrent Error Messages==&lt;br /&gt;
==== Failure: access denied, leeching forbidden, you are only allowed to seed ====&lt;br /&gt;
&amp;lt;b&amp;gt;Cause&amp;lt;/b&amp;gt;: Your ratio is too low and your account has been [[FAQ#I am warned, what do I do?|warned]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Solution&amp;lt;/b&amp;gt;: Seed more and improve your ratio.&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Failure: unregistered torrent pass&amp;quot; ====&lt;br /&gt;
&amp;lt;b&amp;gt;Cause&amp;lt;/b&amp;gt;: The tracker can not find a user associated with the [[FAQ#How is my traffic tracked?|torrent pass]] you&#039;re sending it in your announce URL.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Solution&amp;lt;/b&amp;gt;: Log in to your Boxtorrents account and re-download the torrent from the site.&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Failure: unregistered torrent&amp;quot; ====&lt;br /&gt;
&amp;lt;b&amp;gt;Cause #1&amp;lt;/b&amp;gt;: The torrent you downloaded is not/no longer tracked by our tracker.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Solution&amp;lt;/b&amp;gt;: Check if the torrent has been swapped or replaced. We occasionally prune old obsolete torrents or material that has become [[Blacklist|blacklisted]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Cause #2&amp;lt;/b&amp;gt;: The torrent was downloaded from another source and is using an invalid [[FAQ#How is my traffic tracked?|torrent key]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Solution&amp;lt;/b&amp;gt;: Download the torrent from Boxtorrents when logged in.&lt;br /&gt;
&lt;br /&gt;
If you have checked and verified that it is neither of these causes, then it may be a database error. [[FAQ#What does the Report function do?|Report]] the torrent (click on the exclamation mark beside the torrent title) and let us know. Note that you need to be logged in to your Boxtorrents account in order to make reports.&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Failure: access denied, torrents limit reached&amp;quot; ====&lt;br /&gt;
&amp;lt;b&amp;gt;Cause&amp;lt;/b&amp;gt;: You are downloading too many torrents.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Solution&amp;lt;/b&amp;gt;: Users are allowed to download 3 torrents at a time. Power Users are allowed to download 10 torrents at a time. You are allowed to seed an unlimited number of torrents, regardless of your class.  Check your userpage to see which torrents you are already downloading.&lt;br /&gt;
&lt;br /&gt;
==Common Torrent-related Problems==&lt;br /&gt;
====I&#039;ve finished or cancelled a torrent. Why is it still listed in my userpage?====&lt;br /&gt;
Some older clients do not report properly to the tracker when cancelling or finishing a torrent. In that case the tracker will keep waiting for the message - and thus listing the torrent as seeding or leeching - until the peer information timeout occurs. Just ignore it, it should go away after a few hours.&lt;br /&gt;
&lt;br /&gt;
====I am seeing torrents on my userpage that I never downloaded / Someone has hijacked my account====&lt;br /&gt;
&amp;lt;b&amp;gt;Cause #1&amp;lt;/b&amp;gt;: People are using your torrent key (you accidentally posted your [[FAQ#How is my traffic tracked?|torrent key]] publicly)&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Cause #2&amp;lt;/b&amp;gt;: You hot-linked to a .torrent file that is tagged with your passkey&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Cause #3&amp;lt;/b&amp;gt;: You posted a screenshot of your torrent program with your passkey visible&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Cause #4&amp;lt;/b&amp;gt;: You told someone your torrent passkey&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Cause #5&amp;lt;/b&amp;gt;: You uploaded a .torrent file that has your passkey to another tracker.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Solution&amp;lt;/b&amp;gt;: Go to your [http://www.boxtorrents.com/settings.php settings page] and generate a new key, all your old torrents will become invalid immediately so &amp;lt;u&amp;gt;you will have to re-download your torrents&amp;lt;/u&amp;gt;. Wait about 10-20 minutes to be sure the tracker has recorded your key change before resuming your torrenting.&lt;br /&gt;
&lt;br /&gt;
To prevent similar issues occurring in future, do not hot-link to our torrent files (only hot-link to the description page), and do not post your personal .torrent file (the one you download when logged in) to other trackers.&lt;br /&gt;
&lt;br /&gt;
====Why is a torrent I&#039;m leeching/seeding listed several times in my userpage?====&lt;br /&gt;
If for some reason (e.g. PC crash or frozen client) your client exits improperly and you restart it, it will have a new peer_id, so it will show as a new torrent. The old one will never have had its finished information sent and will be listed until the peer information times out. Just ignore it, it will eventually go away.&lt;br /&gt;
&lt;br /&gt;
====I&#039;m uploading or downloading some torrents but I don&#039;t see them on my userpage====&lt;br /&gt;
&amp;lt;b&amp;gt;Cause&amp;lt;/b&amp;gt;: You downloaded a public torrent.&lt;br /&gt;
&amp;lt;b&amp;gt;Solution&amp;lt;/b&amp;gt;: Log in and re-download the torrent.&lt;br /&gt;
&lt;br /&gt;
====My stats are not updating. What can I do?====&lt;br /&gt;
Check that the torrent pass in your client&#039;s tracker announce URL matches the one shown on your [http://www.boxtorrents.com/settings.php settings page]. If it doesn&#039;t (or if it does, but you&#039;re still having problems), then:Remove the torrent entries from your torrent client. Re-download the .torrent files and open them in your client. Force a hash recheck and resume activity.&lt;br /&gt;
&lt;br /&gt;
If that doesn&#039;t help, go to your [http://www.boxtorrents.com/settings.php settings page] and regenerate your torrent pass. Wait about 10-20 minutes to be sure the tracker has recorded your key change, then repeat the above step.Use only official non-beta clients.&lt;br /&gt;
&lt;br /&gt;
=== How is my traffic tracked? ===&lt;br /&gt;
BoxTorrents uses a passkey system to identify each user. Your passkey can be found on your [http://www.boxtorrents.com/settings.php settings page]. When you announce, your passkey is used to identify you and to (very accurately) track your upload and download traffic, regardless of any IP changes. The passkey is automatically added to the announce URL of every torrent you download whilst logged in. &amp;lt;b&amp;gt;&#039;&#039;&#039;YOU MUST NEVER, EVER GIVE OUT YOUR PASSKEY TO ANY OTHER PERSON.&#039;&#039;&#039;&amp;lt;/b&amp;gt; Doing so will result in [[FAQ#I am seeing torrents on my userpage that I never downloaded / Someone has hijacked my account|undesirable outcomes]]. We will not help to fix any bad ratios caused by user&#039;s negligence of the security of their torrent passkey.&lt;br /&gt;
&lt;br /&gt;
=== What are bonus torrents? ===&lt;br /&gt;
Bonus torrents are torrents with few seeders or few leechers, the idea of the bonus system is to keep older torrents alive. Bonus torrents are marked with an icon that looks like a yellow ball with a red &amp;quot;&#039;&#039;&#039;B&#039;&#039;&#039;&amp;quot; inside.  When you seed a bonus torrent (and have 100%) you will earn 1 bonus point per hour per bonus torrent. Bonus points can be exchanged for upload credit on the [http://www.boxtorrents.com/bonus.php bonus page] (this means you can add an amount onto your &#039;uploaded&#039; stat on your user page).&lt;br /&gt;
&lt;br /&gt;
=== Best practices ===&lt;br /&gt;
If a torrent you are currently leeching or seeding is not listed on your userpage, stop the torrent and resume it again. (also see: [[FAQ#I am seeing torrents on my userpage that I never downloaded / Someone has hijacked my account|I&#039;m uploading or downloading some torrents but I don&#039;t see them on my userpage]]) Make sure you exit your client properly, so that the tracker receives the required information.If the tracker is down, do not stop seeding. Your traffic may not be tracked during downtime but as soon as the tracker is working again then your traffic will be tracked again.&lt;br /&gt;
&lt;br /&gt;
=== What BitTorrent clients can I use? ===&lt;br /&gt;
See: &amp;quot;[[BT_Clients|Bittorrent Clients]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Can I upload your torrents to other trackers? ===&lt;br /&gt;
Yes. However, only post the public torrent files to other trackers, do not post the .torrent file you downloaded when logged in (otherwise [[FAQ#I am seeing torrents on my userpage that I never downloaded / Someone has hijacked my account|these things]] might happen). In other words, log out before downloading the torrent file if you intend to upload it to other trackers.&lt;br /&gt;
&lt;br /&gt;
(Of course, the torrent files you download through your torrent client are yours to do as you please.)&lt;br /&gt;
&lt;br /&gt;
==Using Boxtorrents from multiple machines==&lt;br /&gt;
=== Can I login from different computers? ===&lt;br /&gt;
Yes. But you are advised not to log in at the computer of another Boxtorrents user; the system may identify you as a multi-account user.&lt;br /&gt;
See also: &amp;quot;[[Account Restrictions#Why was my account disabled?|Why was my account disabled?]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Can I seed from different computers? ===&lt;br /&gt;
Yes, &#039;&#039;&#039;but you may not seed the &#039;&#039;same&#039;&#039; torrent from two different computers&#039;&#039;&#039; as the tracker will not understand how you can be in two places at once :P. In the worst case, you may be auto-banned by the tracker.&lt;br /&gt;
&lt;br /&gt;
= Downloading/Seeding and Connection Issues=&lt;br /&gt;
==Common Questions==&lt;br /&gt;
=== What&#039;s the difference between seeding and uploading? ===&lt;br /&gt;
&#039;&#039;&#039;Uploading&#039;&#039;&#039; is posting a new torrent to our tracker.&lt;br /&gt;
&#039;&#039;&#039;Seeding&#039;&#039;&#039; is uploading data to other users on a torrent after you have completed the download.&lt;br /&gt;
&lt;br /&gt;
=== I have some files on my computer, how do I seed them or upload them to Boxtorrents? ===&lt;br /&gt;
See: &amp;quot;[[FAQ#I&#039;ve finished downloading the files, so how do I seed back?|I&#039;ve finished downloading the files, so how do I seed back?]]&amp;quot; and &amp;quot;[[FAQ#Why can&#039;t I offer new torrents?|Why can&#039;t I offer new torrents?]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Why do I have to wait before I can download a new torrent? ===&lt;br /&gt;
When new torrents are uploaded, those with Power User (or higher) status are given &#039;first dibs&#039;. By virtue of their good share ratio we trust that these users will stick around to help seed the torrent after they benefit from having exclusive access to the initial seeders. Other users must wait for the timer to expire before they can download the .torrent file. The amount of time you have to wait is proportional to the size of the torrent (the larger the torrent, the longer you have to wait). This is to encourage more people to become Power Users, and to build up a larger seed base before other users are permitted to join the swarm.&lt;br /&gt;
&lt;br /&gt;
=== Why did an active torrent suddenly disappear? ===&lt;br /&gt;
1) The torrent may have been replaced by a superior offer.&lt;br /&gt;
2) The uploader may have requested for its deletion, with an acceptable reason(s).&lt;br /&gt;
3) The torrent was requested to be removed by a 3rd party (usually in the form of a cease-and-desist letter).&lt;br /&gt;
&lt;br /&gt;
=== What is a torrent passkey? ===&lt;br /&gt;
See: [[FAQ#How is my traffic tracked?|How is my traffic tracked?]]&lt;br /&gt;
&lt;br /&gt;
==Connectivity Issues==&lt;br /&gt;
If your question falls under any of these categories:&lt;br /&gt;
# Cannot access Boxtorrents&lt;br /&gt;
# Port number is &#039;---&#039;/other port-related issues&lt;br /&gt;
# Proxying and proxies&lt;br /&gt;
# Dynamic/static IPs and NAT&lt;br /&gt;
&lt;br /&gt;
Kindly refer to the [[Troubleshooting]] section for more information.&lt;br /&gt;
&lt;br /&gt;
==Torrenting Issues==&lt;br /&gt;
=== I&#039;m having trouble with this Bittorrent program, something&#039;s wrong with it ===&lt;br /&gt;
Do a search in the [http://forums.boxtorrents.com/index.php?board=7.0 Help section of the forums], and see if someone else has faced the same issue.&lt;br /&gt;
&lt;br /&gt;
If yours is a unique case, make a new post in the same section. Give clear and detailed information, and include links to the torrents you are having trouble with.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: We only provide help for [[BT Clients#Recommended|recommended torrent clients]]. Support for other clients may be provided (if users with enough information are willing to help), but is &amp;lt;u&amp;gt;not guaranteed&amp;lt;/u&amp;gt;. If you have a problem with your torrent client we highly suggest switching to one of the [[BT Clients#Recommended|recommended torrent clients]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== What do I do if a torrent has no seeds? ===&lt;br /&gt;
Hop on the forums and post in the [http://forums.boxtorrents.com/index.php?board=5.0 Reseed Request] section. Be sure to read the rules before posting.&lt;br /&gt;
&lt;br /&gt;
=== I&#039;ve finished downloading the files, so how do I seed back? ===&lt;br /&gt;
See: &amp;quot;[[For First Timers#Seeding|Seeding]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== What are these &amp;quot;a piece has failed a hash check&amp;quot; messages? ===&lt;br /&gt;
BitTorrent clients check the data they receive for integrity. When a piece fails this check it is automatically re-downloaded. Occasional hash fails are a common occurrence, and you shouldn&#039;t worry.&lt;br /&gt;
&lt;br /&gt;
Some clients have an (advanced) option/preference to &#039;kick/ban clients that send you bad data&#039; or similar. It should be turned on, since it makes sure that if a peer repeatedly sends you pieces that fail the hash check it will be ignored in the future.&lt;br /&gt;
&lt;br /&gt;
=== The torrent is supposed to be 100MB. How come I downloaded 120MB? ===&lt;br /&gt;
See: [[FAQ#What are these &amp;quot;a piece has failed a hash check&amp;quot; messages?|What are these &amp;quot;a piece has failed a hash check&amp;quot; messages?]]&lt;br /&gt;
If your client receives bad data it will have to redownload it, therefore the total downloaded may be larger than the torrent size. Make sure the &amp;quot;kick/ban&amp;quot; option is turned on to minimize the extra downloads.&lt;br /&gt;
&lt;br /&gt;
=== What&#039;s this &amp;quot;IOError - [Errno13] Permission denied&amp;quot; error? ===&lt;br /&gt;
If you just want to fix it reboot your computer, it should solve the problem. Otherwise, see &amp;quot;[[Troubleshooting#What&#039;s this IOError - Errno13 Permission denied error|TWhat&#039;s this &amp;quot;IOError - [Errno13] Permission denied&amp;quot; error?]]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Downloading or seeding is slow! How do I speed it up? ===&lt;br /&gt;
See: &amp;quot;[[Troubleshooting#Speed Issues|Troubleshooting: Speed Issues]]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
= Torrent Offers and Adoptions =&lt;br /&gt;
== Torrent Offer System ==&lt;br /&gt;
=== What does &#039;Semi-granted&#039; mean? ===&lt;br /&gt;
Offers require the approval of three staff members before they are added to the tracker. &#039;Semi-granted&#039; is the state an offer acquires when two or less staff members have granted it, and it is pending further approval.&lt;br /&gt;
&lt;br /&gt;
=== Why can&#039;t I offer new torrents? ===&lt;br /&gt;
Only Power Users can make new torrent offers, which will be granted or rejected by staff. Torrents offered by staff members and Power Uploaders are added to the torrent pool directly without going through the approval procedure.&lt;br /&gt;
Non-Power Users can not make offers.&lt;br /&gt;
&lt;br /&gt;
=== I have another question related to torrents and offers ===&lt;br /&gt;
If it is any of the following questions:&lt;br /&gt;
# What can I offer/not offer to Boxtorrents?&lt;br /&gt;
# I have files that I would like to upload, how do I upload them here?&lt;br /&gt;
# What should I put in the description?&lt;br /&gt;
# What are good keywords for my torrent?&lt;br /&gt;
# Why does it say &amp;quot;This torrent contains improper files, please swap the torrent file&amp;quot; on the torrent page?&lt;br /&gt;
# What are &amp;quot;extra files&amp;quot; and what should I add?&lt;br /&gt;
# How do I attach extra files?&lt;br /&gt;
# What should I put in my torrents?&lt;br /&gt;
# What is this torrent swapping feature?&lt;br /&gt;
&lt;br /&gt;
Kindly see: &amp;quot;[[How to make an offer]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Torrent Adoption System ==&lt;br /&gt;
=== Why should I adopt a torrent? ===&lt;br /&gt;
At the time of writing, no outright benefits are given for torrent adoption. You adopt because the description of a torrent does not sit right with you, and you have the irresistible urge to fix it, put it right and provide accurate information for future users of Boxtorrents who will chance upon said torrent.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;*Note: The adopter effectively becomes the new owner of the torrent. As such, he/she is expected to carry out the usual duties of the torrent owner. They&#039;ll be responsible for re-seeding the torrent if it dies (so adopters &amp;lt;u&amp;gt;must&amp;lt;/u&amp;gt; have the torrent files), keep descriptions up to date, and make torrent swaps where necessary. Torrent adopting is not stamp-collecting.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== What should I do to ensure that my adoption request will be granted? ===&lt;br /&gt;
* Submit a proper reason for adoption. Tell us what you are going to fix, what you will add, what you will do with the torrent. If the reason for adoption is &amp;quot;I will fix the torrent&amp;quot;, we&#039;re not likely to be convinced.&lt;br /&gt;
* It helps if you have a portfolio.&lt;br /&gt;
** Users who consistently submit good torrent descriptions (by adopting, or making torrent offers) will obviously be trusted more than users without said portfolio. So if you already have torrents in your &#039;&#039;Uploaded&#039;&#039; tab, do take a look at them and work on those first before adopting new torrents.&lt;br /&gt;
** If you are a new user with no prior experience do not worry, we will sit you through the description-editing process and help you bring it up to speed, all you need is a willingness to learn and dedication to the adoption process.&lt;br /&gt;
* Seed the torrent. While owners are not expected to seed the torrent files 24/7, being a seed on the peerlist gives us the assurance that you have the files are will be able to re-seed the torrent as and when the need arises.&lt;br /&gt;
&lt;br /&gt;
=== What do I need to do after I adopt a torrent? ===&lt;br /&gt;
Bring it up to date, in accordance with the [[FAQ#What should I put in the description?|torrent description content guidelines]]. Keep tabs on it, and re-seed the torrent if it dies (has 0 seeders).&lt;br /&gt;
&lt;br /&gt;
=== What if I want to replace the torrent files with a better, superior version? ===&lt;br /&gt;
[http://www.boxtorrents.com/upload.php Make a new torrent offer], and add a comment, giving the URL of the torrent you wish to replace. The adoption system is meant for fixing torrents, not replacing them.&lt;br /&gt;
&lt;br /&gt;
= Is there an RSS feed available for BoxTorrents? =&lt;br /&gt;
RSS Feeds are only available for Power Users. You will see the RSS Feed link appear when you become one.&lt;br /&gt;
&lt;br /&gt;
An mIRC script is available that will check the RSS feed every x minutes, if there are any new torrents uploaded then it lists the new torrents, you can also manually check for new torrents. [http://force.power-net.org/?page=mscripts&amp;amp;amp;gsinfo=1 Information about the script], [http://force.power-net.org/?page=download&amp;amp;amp;section=mscripts&amp;amp;amp;id=1 Download Link].&lt;br /&gt;
&lt;br /&gt;
= What if I can&#039;t find the answer to my problem here? =&lt;br /&gt;
So, after reading all that, you still can&#039;t find a solution? Read on. Post in the [http://forums.BoxTorrents.com/ forums], by all means. You&#039;ll find it&#039;s a friendly and helpful place, &#039;&#039;&#039;provided you follow a few basic guidelines&#039;&#039;&#039;:&lt;br /&gt;
* Make sure your problem has not been answered in this FAQ. There&#039;s no point in posting just to be sent back here amidst a torrent of angry remarks telling you not to waste other people&#039;s time.&lt;br /&gt;
* Before posting, &amp;lt;span style=&amp;quot;text-decoration: underline;&amp;quot;&amp;gt;&#039;&#039;&#039;read the stickied topics&#039;&#039;&#039;&amp;lt;/span&amp;gt; (the ones at the top of each subforum page). Many times, new information that still hasn&#039;t been incorporated in the FAQ can be found there.&lt;br /&gt;
* Help us in helping you. Do &#039;&#039;&#039;not&#039;&#039;&#039; just say &amp;quot;it doesn&#039;t work!&amp;quot;. Provide details so that we don&#039;t have to guess or waste time asking. What client do you use? What&#039;s your OS? What&#039;s your network setup? What&#039;s the exact error message you get, if any? What are the torrents you are having problems with? The more details you give the easier it will be for us, and the more likely your post will get a useful reply, as opposed to a reply that just asks for more information.&lt;br /&gt;
* PLEASE make an effort to make your posts readable. There is nothing worse than trying to decipher a post that looks like it was written by someone mashing their face on the keyboard. Perfect spelling isn&#039;t necessary, but basic grammar and punctuation definitely helps.&lt;br /&gt;
* ... and needless to say: be polite. Demanding help rarely works. Asking nicely for it usually does the trick.&lt;br /&gt;
* &#039;&#039;&#039;DO NOT&#039;&#039;&#039; send a private message to a staff member. If you don&#039;t wish to post in the forums, use [http://www.boxtorrents.com/help.php the help form] instead, or ask on the [[IRC|IRC channel]].&lt;br /&gt;
* To prove that you have read this FAQ before seeking help, please quote the words &#039;Amorphous Plate Wiggle&#039; in your post. We are quite serious. Failure to do so will result in your thread being locked immediately or your help request being ignored. This phrase is subject to change.&lt;/div&gt;</summary>
		<author><name>Raylu</name></author>
	</entry>
</feed>