Sunday, March 10, 2013

Useful SSH commands for checking OpenElec settings

Check current TV (HDMI Mode) Settings


1. Connect to OpenElec with SSH
2. Enter the following commands
cd ..
cd bin
tvservice -s
3. A status message is generated, similar to:

state 0x12001a [HDMI CEA (19) RGB lim 16:9], 1280x720 @ 50Hz, progressive

These settings can be used to force OpenElec into these same settings (for example when not connected to display). The document at this location describes how to do this. The data in the status message can be used as follows:

HDMI (describes HMDI of DVI modus) goes into variable hdmi_drive
CEA (or DMT) goes into the variable hdmi_group
(19) (description of HDMI mode) goes into variable hdmi_mode
RGB lim (description of pixel encoding) goes into variable hdmi_pixel_encoding
16:9 (the aspect ratio) goes into variable sdtv_aspect

Checking MPG2 License


1. Connect to OpenElec with SSH
2. Enter the following commands
vcgencmd codec_enabled MPG2
3. A status message is generated, similar to:

MPG2=enabled


Current Processor settings


1. Connect to OpenElec with SSH
2. Enter the following commands
cat /proc/cpuinfo
3. A status message is generated, similar to:

Processor : ARMv6-compatible processor rev 7 (v6l)
BogoMIPS : 898.66
Features : swp half thumb fastmult vfp edsp java tls
CPU implementer : 0x41
CPU architecture: 7
CPU variant : 0x0
CPU part : 0xb76
CPU revision : 7

Hardware : BCM2708
Revision : 000f
Serial : 0000000000000000


Current Hostname settings


1. Connect to OpenElec with SSH
2. Enter the following commands
hostname
3. The hostname is displayed:
OPENELEC

The hostname can be changed by editing the NET_HOSTNAME entry in the file Userdata/addon_data/os.openelec.settings/settings.xml

Thursday, February 14, 2013

OpenElec on Raspberry PI - Step by Step

A quick blog on installing OpenElec XBMC on the Raspberry PI and the settings that worked best for me in terms of performance while still having a stable PI. Instructions are based on Raspberry PI 512 and a Windows PC for preparation. 


Preparation


1. Go shopping, buy:
- Raspberry PI 512
- Decent SD Card (for OS Storage)
- Small USB Stick (for User Storage)
2. Do some more shopping, buy the MPG2 license from Raspberry Store
3. Download & install SDFormatter to PC, see here
4. Make sure SD Card is inserted in PC
5. Format SD Card with SDFormatter, make sure to name it System
6. Download MiniTool Partition Wizard Home Edition to PC, see here
7. Make sure USB Stick is inserted in PC
8. Erase USB Stick and Partition it with MiniTool Partition Wizard, type EXT4 and make sure to name it Storage


Installation


9. Download latest compiled OpenElec Image (R1*****.img.zip) from this location to PC
10. Download & install Win32DiskImager to PC
11. Make sure SD Card is inserted in PC
12. Start Win32DiskImager, write downloaded OpenElec Image to SD Card
13. With SD Card still inserted, check that its name is indeed System
14. With USB Stick still inserted, check that its name is indeed Storage
15. On the inserted SD Card open the cmdline.txt file
16. Find the line:
boot=/dev/mmcblk0p1 disk=/dev/sda1 ssh quiet
17. Change it to:
boot=LABEL=System disk=LABEL=Storage ssh quiet 
18.  Eject SD and USB from PC 
19. Insert SD and USB in Raspberry
20. Connect Network Cable
21. Connect HDMI Cable to Raspberry and TV
22. Connect power to Raspberry
23. Raspberry boots

Configuration - Hardware


24. From PC ping OPENELEC, which is default hostname. Note the returned IP number
25. Install Putty or any other SSH Client
26. SSH into the Raspberry by connecting to the IP from step 22, Username = root, Password = openelec
26. By default the Flash folder is mounted Readonly, so for changing configfiles, this folder has to be remounted. Enter the following command in SSH:
mount -o remount,rw /flash
27. Now open the config.txt file in VI by entering the following command in SSH:
vi /flash/config.txt
28. Erase all lines from the file by entering in VI:
:1,$d
29. Once the file is cleared, put VI into Insert mode by pressing I and enter the following lines:
gpu_mem=256
arm_freq=900
core_freq=333
sdram_freq=450
over_voltage=2
force_turbo=0
initial_turbo=30
decode_MPG2=<MPG key from step 2>

30. Press Escape to put VI back in to command mode. Save and exit VI by entering the following command:
:wq
31. Now the hardware setup has been completed, the Flash folder can be remounted again in Readonly mode by entering:
mount -o remount,ro /flash
32. All the harware configuration is done, the SD card could be write-procted by this time (many of them have a physical toggle). Time for some configuration.

Configuration - Hardware

33. Open VI to edit the guisettings.xml file, by entering the following command:
vi ~/.xbmc/userdata/guisettings.xml
34. Now put VI into Insert mode by pressing I and change the following entries in the <Services> section:
    <services>                                                                
        <airplay>true</airplay>                                              
        <airplaypassword></airplaypassword>                                  
        <devicename>Mediacenter</devicename>                                
        <esallinterfaces>true</esallinterfaces>                              
        <escontinuousdelay>25</escontinuousdelay>                            
        <esenabled>true</esenabled>                                          
        <esinitialdelay>750</esinitialdelay>                                  
        <esmaxclients>20</esmaxclients>                                      
        <esport>9777</esport>                                                
        <esportrange>10</esportrange>                                        
        <upnpannounce>true</upnpannounce>                                    
        <upnprenderer>true</upnprenderer>                                    
        <upnpserver>false</upnpserver>                                        
        <useairplaypassword>false</useairplaypassword>                        
        <webserver>true</webserver>                                          
        <webserverpassword>xbmc</webserverpassword>                          
        <webserverport>80</webserverport>                                    
        <webserverusername>xbmc</webserverusername>                          
        <webskin>webinterface.default</webskin>                              
        <zeroconf>true</zeroconf>                                            
    </services> 
35. Put VI back in command mode by pressing Esc and save and exit VI:
:wq
36. Once this file is saved, the webserver, eventserver and airplay services will be enabled. 

37. Open VI once again to create a new file called advancedsettings.xml
vi ~/.xbmc/userdata/advancedsettings.xml
38. A new empty file is opened in VI. Put VI in insert mode by pressing I and enter the following entries:
<advancedsettings>
   <network>
        <cachemembuffersize>30242880</cachemembuffersize>
   </network>
   <fanartheight>540</fanartheight>
   <thumbsize>256</thumbsize>
   <gui>
       <algorithmdirtyregions>3</algorithmdirtyregions>
       <nofliptimeout>0</nofliptimeout>
   </gui>
   <lookandfeel>
    <enablerssfeeds>false</enablerssfeeds>
   </lookandfeel>
   <bginfoloadermaxthreads>2</bginfoloadermaxthreads>
</advancedsettings>

39. Put VI back in command mode by pressing ESC and save the file by entering:
:wq
40. Once this file is saved, the performance will be slightly better.

41. Start VI again by entering the following command in SSH:
vi ~/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml
42. Put VI in insert mode by pressing I, find the NET_HOSTNAME line and change it to the same as the devicename from step 34:

    <setting id="NET_HOSTNAME" value="Mediacenter" />

43. Once again, put VI in command mode by pressing Esc and save/quit the file by entering:
:wq
44. Now all configuration is done, it's time to reboot the Pi by entering:
reboot
45. The PI should reboot and be back online in about a minute.

Configuration - GUI


46. In the meantime, download XBMCRemote to your ipad/iphone, android device
47. Once the PI has been rebooted, you should be able to add it as a host in XBMC Remote.
48. Once connected to the PI, you should be able to use the Remote Control within XBMCRemote to control the PI. Please click the ( i ) icon for guidance on using the Remote Control functionality
49. Go to XBMC's home screen and enter System.
50. Choose System again to enter the System configuration part of the GUI
51. Choose the topmost Video Output and make sure the resolution is set to the best mode your TV allows you to.
52. Go doen a few options and navigate to Video Calibration
53. Click on it and follow the Video calibration routine
54. Once completed, click the Return icon on the Remote Control to get back to the previous menu
55. In the left pane navigate to Audio output
56. In the right pane make sure the appropriate output has been selected
57. Make sure your speaker configuration matches the one of your receiver (or make sure your receiver does down/upmixing)
58. Select the appropriate AC3/DTS options
59. Navigate one step back to get into the System menu
60. Navigate to Add-ons
61. Pick Get Add-ons
62. Navigate to the Subtitles section and install XBMC subtitles
63. Once installed, configure the Subtitles addon by enabling the appropriate subtitle services

Configuration - Sources


64. Now everything is all set, it's time to define content sources so your content can be accessed by XBMC
65. Go back to XBMCs home screen and select Music or Videos
66. Choose Add files
67. Browse to the appropriate Network location, for example your Video share on your NAS and select it.
68. Click OK, define the type of content for your source and select OK
69. Let it scan all content so your library will be populated.
70. Repeat for all required content sources.

71. Good to go! This is probably a good time to make some backups.









Friday, September 16, 2011

The FAST Search for SharePoint 2010 (Advanced Filter Pack) Filetype list

Lots of questions have been asked/blogposts written on the filetypes included in FAST Search for SharePoint 2010 (along with its Advanced Filter Pack). Lots of blogpost asking the same question, some of them describing instructions on how to obtain a list of filetypes indexed, for example this one from Tyler Cranston.

Supposedly this file:
<drive>\FASTSearch\etc\formatdetector\converter_rules.xml

Or this command:
ifilter2html.exe –l

will provide you with the following list of natively supported Filetypes:

.386  Null filter
.a  Plain Text filter
.aif  Null filter
.aifc  Null filter
.aiff  Null filter
.ans  Plain Text filter
.aps  Null filter
.art  Null filter
.asc  Plain Text filter
.ascx  HTML filter
.asf  Null filter
.asm  Plain Text filter
.asp  HTML filter
.aspx  HTML filter
.asx  Plain Text filter
.au  Null filter
.avi  Null filter
.bas  Plain Text filter
.bat  Plain Text filter
.bcp  Plain Text filter
.bin  Null filter
.bkf  Null filter
.bmp  Null filter
.bsc  Null filter
.c  Plain Text filter
.cab  Null filter
.cc  Plain Text filter
.cda  Null filter
.cgm  Null filter
.cls  Plain Text filter
.cmd  Plain Text filter
.cod  Null filter
.com  Null filter
.cpl  Null filter
.cpp  Plain Text filter
.cs  Plain Text filter
.csa  Plain Text filter
.csproj  XML filter
.css  HTML filter
.csv  Plain Text filter
.cur  Null filter
.cxx  Plain Text filter
.dbg  Null filter
.dbs  Plain Text filter
.dct  Null filter
.def  Plain Text filter
.desklink  Null filter
.dib  Null filter
.dic  Plain Text filter
.dl_  Null filter
.dll  Null filter
.doc  Microsoft Office Filter
.docm  Office Open XML Format Word Filter
.docx  Office Open XML Format Word Filter
.dos  Plain Text filter
.dot  Microsoft Office Filter
.dotx  Office Open XML Format Word Filter
.drv  Null filter
.dsp  Plain Text filter
.dsw  Plain Text filter
.dwfx  XML Paper Specification Filter
.easmx  XML Paper Specification Filter
.edrwx  XML Paper Specification Filter
.emf  Null filter
.eml  MIME Filter
.eprtx  XML Paper Specification Filter
.eps  Null filter
.etp  Null filter
.ex_  Null filter
.exe  Null filter
.exp  Null filter
.ext  Plain Text filter
.eyb  Null filter
.faq  Plain Text filter
.fky  Plain Text filter
.fnd  Null filter
.fnt  Null filter
.fon  Null filter
.ghi  Null filter
.gif  Null filter
.gz  Null filter
.h  Plain Text filter
.hdp  Null filter
.hhc  HTML filter
.hpp  Plain Text filter
.hqx  Null filter
.hta  HTML filter
.htm  HTML filter
.html  HTML filter
.htt  HTML filter
.htw  HTML filter
.htx  HTML filter
.hxx  Plain Text filter
.i  Plain Text filter
.ibq  Plain Text filter
.icm  Null filter
.ico  Null filter
.ics  Plain Text filter
.idl  Plain Text filter
.idq  Plain Text filter
.ilk  Null filter
.imc  Null filter
.in_  Null filter
.inc  Plain Text filter
.inf  Plain Text filter
.ini  Plain Text filter
.inl  Plain Text filter
.inv  Null filter
.inx  Plain Text filter
.jav  Plain Text filter
.java  Plain Text filter
.jbf  Null filter
.jfif  Null filter
.jpe  Null filter
.jpeg  Null filter
.jpg  Null filter
.js  Plain Text filter
.jtx  XML Paper Specification Filter
.kci  Plain Text filter
.latex  Null filter
.lgn  Plain Text filter
.lib  Null filter
.lst  Plain Text filter
.m14  Null filter
.m1v  Null filter
.m3u  Plain Text filter
.mak  Plain Text filter
.mapimail  Null filter
.mht  MIME Filter
.mhtml  MIME Filter
.mid  Null filter
.midi  Null filter
.mk  Plain Text filter
.mmf  Null filter
.mov  Null filter
.movie  Null filter
.mp2  Null filter
.mp2v  Null filter
.mp3  Null filter
.mpa  Null filter
.mpe  Null filter
.mpeg  Null filter
.mpg  Null filter
.mpv2  Null filter
.msg  Office Outlook MSG IFilter
.mv  Null filter
.mydocs  Null filter
.ncb  Null filter
.nws  MIME Filter
.obd  Microsoft Office Filter
.obj  Null filter
.obt  Microsoft Office Filter
.oc_  Null filter
.ocx  Null filter
.odc  HTML filter
.odh  Plain Text filter
.odl  Plain Text filter
.odp  Open Document Format ODP Filter
.ods  Open Document Format ODS Filter
.odt  Open Document Format ODT Filter
.one  Microsoft OneNote Indexing Filter
.p7m  MIME Filter
.pch  Null filter
.pdb  Null filter
.pdf
.pds  Null filter
.pic  Null filter
.pl  Plain Text filter
.pma  Null filter
.pmc  Null filter
.pml  Null filter
.pmr  Null filter
.png  Null filter
.pot  Microsoft Office Filter
.pps  Microsoft Office Filter
.ppt  Microsoft Office Filter
.pptm  Office Open XML Format PowerPoint Filter
.pptx  Office Open XML Format PowerPoint Filter
.prc  Plain Text filter
.psd  Null filter
.pub  Microsoft Publisher Filter
.rc  Plain Text filter
.rc2  Plain Text filter
.rct  Plain Text filter
.reg  Plain Text filter
.res  Null filter
.rgs  Plain Text filter
.rle  Null filter
.rmi  Null filter
.rpc  Null filter
.rsp  Null filter
.rtf  RTF Filter
.rul  Plain Text filter
.s  Plain Text filter
.sbr  Null filter
.sc2  Null filter
.scc  Plain Text filter
.scd  Null filter
.sch  Null filter
.shtm  HTML filter
.shtml  HTML filter
.sit  Null filter
.snd  Null filter
.sol  Plain Text filter
.sor  HTML filter
.sql  Plain Text filter
.sr_  Null filter
.srf  HTML filter
.stm  HTML filter
.sy_  Null filter
.sym  Null filter
.sys  Null filter
.tab  Plain Text filter
.tar  Null filter
.tdl  Plain Text filter
.tgz  Null filter
.tlb  Null filter
.tlh  Plain Text filter
.tli  Plain Text filter
.trg  Plain Text filter
.tsp  Null filter
.ttc  Null filter
.ttf  Null filter
.txt  Plain Text filter
.udf  Plain Text filter
.udt  Plain Text filter
.URL  Favorites IFilter
.user  XML filter
.usr  Plain Text filter
.vbproj  XML filter
.vbs  Plain Text filter
.vbx  Null filter
.vcproj  XML filter
.vdw  Microsoft Office Visio Persistent Handler
.vdx  Microsoft Office Visio Persistent Handler
.viw  Plain Text filter
.vsd  Microsoft Office Visio Persistent Handler
.vspscc  Plain Text filter
.vss  Microsoft Office Visio Persistent Handler
.vsscc  Plain Text filter
.vssscc  Plain Text filter
.vst  Microsoft Office Visio Persistent Handler
.vsx  Microsoft Office Visio Persistent Handler
.vtx  Microsoft Office Visio Persistent Handler
.vxd  Null filter
.wav  Null filter
.wax  Null filter
.wdp  Null filter
.wll  Null filter
.wlt  Null filter
.wm  Null filter
.wma  Null filter
.wmf  Null filter
.wmp  Null filter
.wmv  Null filter
.wmx  Null filter
.wmz  Null filter
.wri  Plain Text filter
.wsz  Null filter
.wtx  Plain Text filter
.wvx  Null filter
.xix  Null filter
.xlb  Microsoft Office Filter
.xlc  Microsoft Office Filter
.xls  Microsoft Office Filter
.xlsb  Office Open XML Format Excel Filter
.xlsm  Office Open XML Format Excel Filter
.xlsx  Office Open XML Format Excel Filter
.xlt  Microsoft Office Filter
.xml  XML filter
.xps  XML Paper Specification Filter
.xsd  XML filter
.xsl  XML filter
.xslt  XML filter
.z  Null filter
.z96  Null filter
.zfsendtotarget  Null filter
.zip  Zip Filter

and the following additional Mimetypes supported by the Advanced Filter Pack (powered by Oracle's Outside In technology):

- Total Word
- Wang IWP
- Mass 11
- XyWrite / Nota Bene
- IBM DCA/FFT
- IBM DisplayWrite 4
- Mass 11
- MultiMate 4.0
- Q&A Write
- MultiMate Note
- PC File 5.0 Doc
- Lotus Manuscript 1.0
- Lotus Manuscript 2.0
- Enable WP 3.0
- OfficeWriter
- IBM DisplayWrite 5
- Ami
- First Choice 3 WP
- Mac Works 2.0 WP
- Professional Write Plus
- Legacy
- Signature
- JustWrite 1.0
- JustWrite 2.0
- Ami [Clip]
- Legacy [Clip]
- Pro Write Plus [Clip]
- Enable WP 4.x
- DEC DX 3.1
- Q&A Write 3
- CEO Word
- Ichitaro 3.x
- Matsu 4
- Matsu 5
- P1 Japan
- CEO Write
- Microsoft WordPad
- WP/Novell Unknown Format
- Word for Windows 2.0 Object
- Fulcrum Document Format
- Europa Fulcrum
- Europa Fulcrum
- Arehangeul
- Hana
- PerfectWorks for Windows
- Digital WPS Plus
- Rainbow
- Interleaf 6
- Interleaf Japan
- PST Fields File
- IBM/Lotus Symphony Document 
- DRM protected Unknown
- Extensible Metadata Platform
- Smart DataBase
- Framework III
- DataEase 4.x
- Q&A Database
- Reflex
- R:Base System V
- R:Base 5000
- R:Base File 1
- R:Base File 3
- First Choice DB
- CEO Decision Base
- Symphony
- Smart Spreadsheet
- Enable Spreadsheet
- VP-Planner
- Mosaic Twin
- Quattro
- PFS: Plan
- First Choice SS
- Generic WKS
- CEO Spreadsheet
- Multiplan 4.0
- IBM/Lotus Symphony Spreadsheet
- Paintbrush
- EPS (TIFF Header)
- Mac PICT2
- WordPerfect Graphic
- Lotus PIC
- Mac PICT
- Ami Draw
- Targa
- GEM Image
- Windows Cursor
- Micrografx product
- MacPaint
- HP Graphics Language
- WordPerfect Graphic 2
- CGM Graphic Metafile
- Candy 4
- Hanako 1.x
- Hanako 2.x
- Multipage PCX
- OS/2 Metafile
- AutoCAD DXB
- WordPerfect Presentations
- WordPerfect Graphic 7.0/8.0/9.0
- RAS - Sun Raster
- AutoShade Rendering
- Kodak Photo CD
- GEM
- IBM Picture Interchange Format
- CALS Raster File Format
- CorelDraw ClipArt
- HP Gallery
- Graphics Data Format
- Micrografx Designer
- PDF MacBinary Header
- Paint Shop Pro
- Kodak FlashPix
- Bentley Microstation DGN
- MIFF Graphic
- WordPerfect Graphic 10.0
- Micrografx Designer
- PDF Image
- QuarkXPress 3.0 For Macintosh
- QuarkXPress 3.1 For Macintosh
- QuarkXPress 3.2 For Macintosh
- QuarkXPress 3.3 For Macintosh
- QuarkXPress 4.0 For Macintosh
- QuarkXPress 3.3 For Windows
- QuarkXPress 4.0 For Windows
- QuarkXPress 5.0 For Windows
- Export Image
- IBM/Lotus Symphony Presentation
- JBIG2 Bitmap
- WordPerfect Informs 1.0
- Lotus Screen SnapShot
- Lotus Screen Snapshot
- Interchange Format
- Microsoft Escher Graphics
- Advanced System Format
- Windows Media Video
- Windows Media Audio
- Microsoft Digital Video Recording
- Real Audio / Real Video
- MPEG-1 video
- MPEG-2 video
- ISO Base Media File
- MPEG-4 file
- MPEG-7 file
- EXE / DLL File
- .COM File
- .ARC File
- Envoy
- QuickFinder
- Windows Clipboard File
- Envoy 7
- Java Class File
- OASIS OpenDocument v1.0 (XML)
- Mail Archive DXL
- Generic DXL
- UUE Encoded Continued Part
- XXE Encoded Text
- XXE Encoded Continued Part
- YEnc Encoded Text
- YEnc Encoded Continued Part
- BinHex Encoded Text
- BinHex Encoded Continued Part
- MultiMate 3.6
- MultiMate Advantage 2
- IBM DCA/RFT
- IBM DisplayWrite 2 or 3
- SmartWare II
- Samna
- PFS: Write A
- PFS: Write B
- Professional Write 1
- Professional Write 2
- IBM Writing Assistant
- First Choice WP
- WordMarc
- Navy DIF
- Volkswriter
- DEC DX 3.0 and below
- Sprint
application/macwriteii  MacWrite II
application/ms-tnef  Transport-Neutral Encapsulation Format(TNEF)
application/msaccess  Microsoft Access
application/msaccess  Microsoft Access 7
application/msword  Word for DOS 4.x
application/msword  Word for DOS 5.x
application/msword  Mac Word 3.0
application/msword  Mac Word 4.0
application/msword  Word for Windows 1.x
application/msword  Word for Windows 1.x
application/msword  Word for Windows 2.0
application/msword  Mac Word 5.x
application/msword  Word for DOS 6.x
application/msword  Word for Windows 1.2 J
application/msword  Word for Windows 5.0 J
application/msword  Mac Word 6
application/msword  Mac Word 97
application/msword  Pocket Word
application/msword  Pocket Word - Pocket PC
application/postscript  Post Script
application/rar  .RAR File
application/rar  Self extracting RAR File
application/vnd.framemaker  Framemaker
application/vnd.harvard-graphics  Harvard 3.0 Chart
application/vnd.harvard-graphics  Harvard 2.0 Chart
application/vnd.harvard-graphics  Harvard 3.0 Presentation
application/vnd.harvard-graphics  Harvard Graphics for Windows
application/vnd.illustrator  Adobe Illustrator
application/vnd.illustrator  Adobe Illustrator 9
application/vnd.lotus-1-2-3  Lotus 1-2-3 1.0
application/vnd.lotus-1-2-3  Lotus 1-2-3 2.0
application/vnd.lotus-1-2-3  Lotus 1-2-3 3.x
application/vnd.lotus-1-2-3  Lotus 1-2-3 4.x / 5.x
application/vnd.lotus-1-2-3  Lotus 123 Release 2 for OS/2
application/vnd.lotus-1-2-3  Lotus 123 for OS/2 Chart
application/vnd.lotus-1-2-3  Lotus 1-2-3 97 Edition
application/vnd.lotus-1-2-3  Lotus 1-2-3 98/Millennium Edition
application/vnd.lotus-email  Mail Message DXL (Bogus mimetype just for description mapping)
application/vnd.lotus-freelance  Freelance
application/vnd.lotus-freelance  Freelance 96/97/Millennium Edition
application/vnd.lotus-notes  Lotus Notes Database File
application/vnd.lotus-notes  Lotus Notes Database R6.x
application/vnd.lotus-wordpro  Ami Pro
application/vnd.lotus-wordpro  WordPro 96
application/vnd.lotus-wordpro  WordPro 97/Millennium
application/vnd.mif  MIFF 3.0
application/vnd.mif  MIFF 4.0
application/vnd.mif  MIFF 5.0
application/vnd.mif  MIFF 3.0 Japan
application/vnd.mif  MIFF 4.0 Japan
application/vnd.mif  MIFF 5.0 Japan
application/vnd.mif  MIFF 5.5
application/vnd.mif  MIFF 6.0
application/vnd.mif  MIFF 6.0 Japan
application/vnd.mif  MIFF
application/vnd.ms-binder  MS Office Binder
application/vnd.ms-cab-compressed  Microsoft Cabinet File
application/vnd.ms-excel  Microsoft Excel 2.x
application/vnd.ms-excel  Microsoft Excel 3.0
application/vnd.ms-excel  Microsoft Excel 4.0
application/vnd.ms-excel  Microsoft Mac Excel 4.0
application/vnd.ms-excel  Microsoft Mac Excel 5.0
application/vnd.ms-excel  MS Excel 3.0 Workbook
application/vnd.ms-excel  MS Excel 4.0 Workbook
application/vnd.ms-excel  MS Excel Mac 4.0 Workbook
application/vnd.ms-excel  MS Excel Mac 4.0 Workbook
application/vnd.ms-excel  Excel 2.x Chart
application/vnd.ms-excel  Excel 3.0 Chart
application/vnd.ms-excel  Excel 4.0 Chart
application/vnd.ms-excel.template.macroEnabled  Microsoft Excel 2007/2008 Macro Enabled Template
application/vnd.ms-outlook  Microsoft Outlook PST/OST 97/2000/XP
application/vnd.ms-outlook  Microsoft Outlook PST/OST 2003/2007
application/vnd.ms-outlook  Microsoft Outlook PAB
application/vnd.ms-outlook  Outlook Form Template
application/vnd.ms-powerpoint  PowerPoint 4.0
application/vnd.ms-powerpoint  PowerPoint 3.0
application/vnd.ms-powerpoint  Mac PowerPoint 3.0
application/vnd.ms-powerpoint  Mac PowerPoint 4.0
application/vnd.ms-powerpoint  PowerPoint 4.0 (extracted from docfile)
application/vnd.ms-powerpoint  Mac PowerPoint 4.0 (extracted from docfile)
application/vnd.ms-powerpoint  Mac PowerPoint 3.0
application/vnd.ms-powerpoint  Mac PowerPoint 4.0
application/vnd.ms-powerpoint  Microsoft PowerPoint 2
application/vnd.ms-powerpoint.slideshow.macroEnabled  Microsoft PowerPoint 2007/2008 Macro Enabled Slideshow
application/vnd.ms-powerpoint.template.macroEnabled  Microsoft PowerPoint 2007/2008 Macro Enabled Template
application/vnd.ms-project  Microsoft Project 98
application/vnd.ms-project  Microsoft Project 2000/2002/2003
application/vnd.ms-project  Microsoft Project 2002
application/vnd.ms-project  Microsoft Project 2007
application/vnd.ms-word.template.macroEnabledTemplate  Microsoft Word 2007/2008 Macro Enabled Template
application/vnd.ms-works  Microsoft Works 1.0
application/vnd.ms-works  Microsoft Works 2.0
application/vnd.ms-works  Windows Works WP
application/vnd.ms-works  Windows Works 3.0 WP
application/vnd.ms-works  Windows Works 4.0 WP
application/vnd.ms-works  Microsoft Works 2000
application/vnd.ms-works  Microsoft Works DB
application/vnd.ms-works  Mac Works 2.0 DB
application/vnd.ms-works  Windows Works DB
application/vnd.ms-works  Windows Works 3.0 DB
application/vnd.ms-works  Windows Works 4.0 DB
application/vnd.ms-works  Microsoft Works SS
application/vnd.ms-works  Mac Works 2.0 SS
application/vnd.ms-works  Windows Works SS
application/vnd.ms-works  Windows Works 3.0 SS
application/vnd.ms-works  Windows Works 4.0 SS
application/vnd.oasis.opendocument.graphics  Open Office 2.x/3.x Draw
application/vnd.oasis.opendocument.graphics  StarOffice 8 Draw
application/vnd.openxmlformats-officedocument.presentationml.slideshow  Microsoft PowerPoint 2007/2008 Slideshow
application/vnd.openxmlformats-officedocument.presentationml.template  Microsoft PowerPoint 2007/2008 Template
application/vnd.openxmlformats-officedocument.spreadsheetml.template  Microsoft Excel 2007/2008 Template
application/vnd.stardivision.calc  StarOffice 5.2 Calc
application/vnd.stardivision.impress  StarOffice 5.2 Impress
application/vnd.stardivision.writer  StarOffice 5.2 Writer
application/vnd.starview-metafile  StarView Metafile
application/vnd.sun.xml.calc  StarOffice 6 & 7 Calc
application/vnd.sun.xml.calc  Open Office 1.x Calc
application/vnd.sun.xml.draw  StarOffice 6 & 7 Draw
application/vnd.sun.xml.draw  Open Office 1.x Draw
application/vnd.sun.xml.impress  StarOffice 6 & 7 Impress
application/vnd.sun.xml.impress  Open Office 1.x Impress
application/vnd.sun.xml.writer  StarOffice 6 & 7 Writer
application/vnd.sun.xml.writer  Open Office 1.x Writer
application/vnd.visio  Visio 4.x
application/vnd.visio  Visio 5.x
application/vnd.visio  Visio 3.x
application/vnd.wordperfect  WordPerfect 5.0
application/vnd.wordperfect  WordPerfect 4.2
application/vnd.wordperfect  Mac WordPerfect 1.x
application/vnd.wordperfect  WordPerfect 5.1/5.2
application/vnd.wordperfect  Mac WordPerfect 2.0
application/vnd.wordperfect  WordPerfect 6.0
application/vnd.wordperfect  WordPerfect Encrypted
application/vnd.wordperfect  Mac WordPerfect 3.0
application/vnd.wordperfect  WordPerfect 5.1 Far East
application/vnd.wordperfect  WordPerfect 6.1 - 12.0 / X3
application/vnd.wordperfect  WordPerfect 7.0/8.0/10.0
application/vnd.wordperfect  WordPerfect 8.0/10.0
application/vnd.yahoo.messenger  Yahoo! Messenger Archive
application/x-compress  UNIX Compress
application/x-corelpresentations  Corel Presentations 7.0 - 12.0 / X3
application/x-dbase  DBase III
application/x-dbase  DBase IV or V
application/x-director  Macromedia Director
application/x-gzip  UNIX GZip
application/x-hwp  Hangul 97 Word Processor
application/x-hwp  Hangul 2002/2007 Word Processor
application/x-iges  IGES Drawing File Format
application/x-indesign  Adobe Indesign
application/x-js-taro  Ichitaro 4.x/5.x/6.x
application/x-js-taro  Ichitaro 8.x/9.x/10.x/11.x/12.x/13.x/2004
application/x-lzh-compressed  LZH Compress
application/x-lzh-compressed  Self-Extracting LZH
application/x-mswrite  Windows Write
application/x-paradox  Paradox 2 or 3
application/x-paradox  Paradox 3.5
application/x-paradox  Paradox
application/x-quattropro  Quattro Pro
application/x-quattropro  Quattro Pro for Windows
application/x-quattropro  Quattro Pro Windows Japan
application/x-quattropro  Quattro Pro 4.0
application/x-quattropro  Quattro Pro 5.0
application/x-quattropro  Quattro Pro Win 6.0
application/x-quattropro  Quattro Pro Win 7.0/8.0
application/x-quattropro  Quattro Pro Win 7.0/8.0 Graph
application/x-quattropro  Quattro Pro 8.0
application/x-quattropro  Quattro Pro Win 9.0 / X3
application/x-quattropro  Quattro Pro Win 10.0
application/x-quattropro  Quattro Pro Win 11.0
application/x-quattropro  Quattro Pro Win 12.0
application/x-shockwave-flash  Macromedia Flash
application/x-stuffit  StuffIt
application/x-supercalc5  SuperCalc 5
application/x-tar  UNIX Tar
application/x-ws  Wordstar 5.0
application/x-ws  Wordstar 4.0
application/x-ws  Wordstar 2000
application/x-ws  Wordstar 5.5
application/x-ws  Wordstar 6.0
application/x-ws  Wordstar for Windows
application/x-ws  Wordstar 7.0
application/zip  Self UnZIPping .EXE
audio/midi  MIDI File
audio/mpeg  MPEG Layer3 ID3 Ver 1.x
audio/mpeg  MPEG Layer3 ID3 Ver 2.x
audio/mpeg  ID3 Ver 1.x
audio/mpeg  ID3 Ver 2.x
audio/mpeg  MPEG-1 audio - Layer 3
audio/mpeg  MPEG-1 audio - Layer 1
audio/mpeg  MPEG-1 audio - Layer 2
audio/mpeg  MPEG-2 audio - Layer 1
audio/mpeg  MPEG-2 audio - Layer 2
audio/mpeg  MPEG-2 audio - Layer 3
audio/wav  Windows Sound
image/bmp  Windows Bitmap
image/bmp  OS/2 Bitmap
image/bmp  OS/2 Warp Bitmap
image/bmp  Windows 98/2000 Bitmap
image/cdr  Corel Draw 2.0
image/cdr  Corel Draw 3.0
image/cdr  Corel Draw 4.0
image/cdr  Corel Draw 5.0
image/cdr  Corel Draw 6.0
image/cdr  Corel Draw 7.0
image/cdr  Corel Draw 8.0
image/cdr  Corel Draw 9.0
image/cdr  Corel Draw 10.0
image/cdr  Corel Draw 11.0
image/cdr  Corel Draw 12.0
image/efax  eFax Document
image/g3fax  CCITT Group 3 Fax
image/gif  Compuserve GIF
image/jp2  JPEG 2000
image/jp2  JPEG 2000 jpf Extension
image/jp2  JPEG 2000 mj2 Extension
image/jpeg  JPEG File Interchange
image/jpeg  Progressive JPEG
image/png  Portable Network Graphics Format
image/tiff  Tagged Image File Format
image/vnd.adobe.photoshop  Adobe Photoshop
image/vnd.dwf  AutoDesk DWF
image/vnd.dwg  AutoCAD Drawing 12
image/vnd.dwg  AutoCAD Drawing 13
image/vnd.dwg  AutoCAD Drawing - Unknown Version
image/vnd.dwg  AutoCAD Drawing 14
image/vnd.dwg  AutoCAD 2000/2002 Drawing
image/vnd.dwg  AutoCAD 2.5 Drawing
image/vnd.dwg  AutoCAD 2.6 Drawing
image/vnd.dwg  AutoCAD 9 Drawing
image/vnd.dwg  AutoCAD 10 Drawing
image/vnd.dwg  AutoCAD 2004/2005/2006 Drawing
image/vnd.dwg  AutoCAD 2008 Drawing
image/vnd.dwg  AutoCAD 2007 Drawing
image/vnd.dxf  AutoCAD DXF (ASCII)
image/vnd.dxf  AutoCAD DXF (Binary)
image/vnd.wap.wbmp  Wireless Bitmap
image/wmf  Windows Metafile
image/x-emf  Enhanced Windows Metafile
image/x-icon  Windows Icon
image/x-ms-bmp  OS/2 v.2 Bitmap
image/x-portable-bitmap  PBM (Portable Bitmap)
image/x-portable-graymap  PGM (Portable Graymap)
image/x-portable-pixmap  PPM (Portable Pixmap)
image/x-xbitmap  X-Windows Bitmap
image/x-xpixmap  X-Windows Pixmap
image/x-xwindowdump  X-Windows Dump
message/rfc822  mbox(RFC-822 mailbox)
text/css  HTML - Cascading Style Sheets
text/html  Word 2000 HTML
text/html  Excel 2000 HTML
text/html  PowerPoint 2000 HTML
text/plain  EBCDIC encoded Text
text/rtf  Rich Text Format Japan
text/vnd.wap.wml  Wireless Markup Language (WML)
text/vnd.wap.wml  WML - Chinese (Big5)
text/vnd.wap.wml  WML - Chinese (EUC)
text/vnd.wap.wml  WML - Chinese (GB)
text/vnd.wap.wml  WML - Cyrillic (ANSI 1251)
text/vnd.wap.wml  WML - Cyrillic (KOI8-R)
text/vnd.wap.wml  WML - Japanese (JIS)
text/vnd.wap.wml  WML - Japanese (ShiftJIS)
text/vnd.wap.wml  WML - Japanese (EUC)
text/vnd.wap.wml  WML - Korean (Hangul)
text/vnd.wap.wml  WML - Central European
text/x-hdml  Handheld Device Markup Language (HDML)
text/x-uuencode  UUE Encoded Text
text/x-vcalendar  vCalendar
text/x-vcard  vCard
text/xml  Microsoft Word XML 2003
text/xml  Flexiondoc v4.0 (XML)
text/xml  Flexiondoc v5.0 (XML)
text/xml  Flexiondoc v5.1 (XML)
text/xml  Domino XML Document
text/xml  Flexiondoc v5.2 (XML)
text/xml  Flexiondoc v5.3 (XML)
text/xml  Adobe Indesign Interchange
video/avi  Windows Video
video/quicktime  Quicktime Movie