(Even on 64 bit windows, there is no need to have a 64 bit player or codecs)
lost all my settings in the reformat, but here are ones that seem to work well enough for the current system:
Shark's
FFDShow Video
FFDShow Audio
AC3 Filter
<advancedsettings> <videolibrary> <cleanonupdate>true</cleanonupdate> <!-- default set to false to prevent xbmc from removing items from the database while updating --> <hideemptyseries>true</hideemptyseries> <!-- hide empty series in the video library --> <exportautothumbs>true</exportautothumbs> <!-- export auto-generated thumbs. Defaults to false --> </videolibrary> <network> <cachemembuffersize>0</cachemembuffersize> </network> <fullscreen>true</fullscreen> </advancedsettings>
AddKey(None,37,fnjumpbackward) AddKey(None,39,fnjumpforward) AddKey(Ctrl+Shift,66,fnskipbackward) AddKey(Ctrl+Shift,70,fnskipforward) AddKey(Ctrl+Shift,80,fnplay) AddKey(Ctrl+Shift,83,fnexit) AddKey(Ctrl,80,fnplay) AddKey(Ctrl+Shift,51,fnarcycle) AddKey(Ctrl,66,fnslowmotion) AddKey(None,121,fnvolup) AddKey(None,120,fnvoldown) AddKey(Ctrl,70,fnhalfff) AddKey(Ctrl+Shift,56,fnfastplay) AddKey(None,119,fnmute) AddKey(None,38,fnseekforward) AddKey(None,40,fnseekbackward) AddKey(None,83,fnexit) AddKey(Alt+Shift,13,fnfsactmonitor) nvAddKey(None,13,nvselect) AddKey(None,33,fnzoomin) AddKey(None,34,fnzoomout) AddKey(None,79,fninfonav) nvAddKey(None,8,nvescape) AddKey(Ctrl,68,fnbar) AddKey(None,32,fnplay)
; AutoIt Version: 3.0 ; Language: English ; Platform: Win9x/NT ; $renamerPath = "C:\Program Files (x86)\theRenamer\theRenamer.exe" $mediaCompanionPath = "D:\Program Files (x86)\Media Companion gen2 3.400\mc_com.exe" $utorrentPath = "D:\Program Files (x86)\uTorrent\uTorrent.exe" $tvDownloadDir = "E:\Bittorrent\Downloads\tv shows\" $tvNormalMoveDir = "Q:\TV Shows" $tvAlternateMoveDir = "E:\Cinema\TV Shows" $movieDownloadDir = "E:\Bittorrent\Downloads\movies\" $movieNormalMoveDir = "Q:\Movies" $movieAlternateMoveDir = "E:\Cinema\Movies" ;---------------------------------- ; check to see if TV show folder has anything $tvHasFiles = DirGetSize($tvDownloadDir); ; check to see if movie folder has anything $movieHasFiles = DirGetSize($movieDownloadDir); if ($tvHasFiles > 0 OR $movieHasFiles > 0) then ; if it does, check to see if utorrent is running $uTorrentRunning = ProcessExists("uTorrent.exe"); Will return the PID or 0 if the process isn't found. ; if it is, close it if ($uTorrentRunning > 0) Then ProcessClose($uTorrentRunning) Sleep(5000) ;five seconds endif if ($movieHasFiles > 0) then ; check to see if Q folder exists $movieNormalDirExists = FileExists($movieNormalMoveDir) ; set archive folder if ($movieNormalDirExists) then $renamerArchiveFolder = $movieNormalMoveDir else $renamerArchiveFolder = $movieAlternateMoveDir endif $movieRenamerPath = $renamerPath & " -fetchmovie -ff=" & $movieDownloadDir & _ " -af=" & $renamerArchiveFolder; ; run renamer RunWait($movieRenamerPath); ;Sleep(5000) ;five seconds $movieMediaCompanionPath = $mediaCompanionPath & " -m" ; run media companion RunWait($movieMediaCompanionPath); endif if ($tvHasFiles > 0) then ; check to see if Q folder exists $tvNormalDirExists = FileExists($tvNormalMoveDir) ; set archive folder if ($tvNormalDirExists) then $renamerArchiveFolder = $tvNormalMoveDir else $renamerArchiveFolder = $tvAlternateMoveDir endif $tvRenamerPath = $renamerPath & " -fetch -ff=" & $tvDownloadDir & _ " -af=" & $renamerArchiveFolder; ; run renamer RunWait($tvRenamerPath); ;Sleep(5000) ;five seconds $tvMediaCompanionPath = $mediaCompanionPath & " -e" ; run media companion RunWait($tvMediaCompanionPath); endif ; restart utorrent if ($uTorrentRunning > 0) Then Run($utorrentPath); endif endif