{"id":13585055,"url":"https://github.com/anshulkharb/thumbnail","last_synced_at":"2025-04-07T06:32:25.020Z","repository":{"id":57475318,"uuid":"309732945","full_name":"anshulkharb/thumbnail","owner":"anshulkharb","description":"Thumbnail/Preview generator for 450 different filetypes in python.","archived":false,"fork":false,"pushed_at":"2024-01-09T21:39:13.000Z","size":38,"stargazers_count":21,"open_issues_count":3,"forks_count":13,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-01T18:49:14.981Z","etag":null,"topics":["preview","preview-generator","thumbnail","thumbnail-generator"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/thumbnail/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anshulkharb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-11-03T15:43:29.000Z","updated_at":"2024-09-25T01:54:50.000Z","dependencies_parsed_at":"2024-01-09T22:44:17.443Z","dependency_job_id":"33d18fec-240b-4edd-8814-9a73cdf5c87f","html_url":"https://github.com/anshulkharb/thumbnail","commit_stats":{"total_commits":5,"total_committers":1,"mean_commits":5.0,"dds":0.0,"last_synced_commit":"842778e4c5ea0d92ea68a4818d7507e3ba43882c"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshulkharb%2Fthumbnail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshulkharb%2Fthumbnail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshulkharb%2Fthumbnail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshulkharb%2Fthumbnail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anshulkharb","download_url":"https://codeload.github.com/anshulkharb/thumbnail/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223273403,"owners_count":17117797,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["preview","preview-generator","thumbnail","thumbnail-generator"],"created_at":"2024-08-01T15:04:42.701Z","updated_at":"2025-04-07T06:32:25.014Z","avatar_url":"https://github.com/anshulkharb.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# thumbnail\n\n\nThumbnail/Preview generator for 450 different filetypes in python.  \n\n\n## Pre-requisites\n\nThis package has been thoroughly tested on Linux machines. If you're facing any issue post it on Github Issues.  \n\nthumbnail depends on unoconv.(Universal Office converter)\n\n```bash\napt-get install unoconv\n```\n\nthumbnail depends of ffmpeg for audio or video files\n\n```bash\napt-get install ffmpeg\n```\n\nthumbnail depends on Imagemagick for image manipulation\n\n```bash\napt-get install imagemagick\n```\n\nthumbnail also needs curl to be installled\n\n```bash\napt-get install curl\n```\n\nTo install this package:\n\n```bash\npip install thumbnail\n```\n\n## How to use\n\nSample code:\n\n```python\nfrom thumbnail import generate_thumbnail\n\n// generate_thumbnail(input, output, options)\n\noptions = {\n\t'trim': False,\n\t'height': 300,\n\t'width': 300,\n\t'quality': 85,\n\t'type': 'thumbnail'\n}\ngenerate_thumbnail('sample.docx', './thumbnails/thumbnail.png', options)\n```\n  \n    \nYou need to pass three parameters in generate_thumbnail function.\n\n**input**: location of the input file. You can see the list of supported files at the end.\n\n**output**: location of the to be generated thumbnail file. It can be .png, .jpg or .gif\n\n**options**: It can have five diff parameters. If you don't want to pass any options, pass options as a blank {}\n\n- trim: Boolean(default = True) \nIt'll automatically trim your file.\n- height: Integer(default = 300) \nHeight of the thumbnail in px.\n- width: Integer(default = 300) \nWidth of the thumbnail in px.\n- quality: Integer(default = 85) \nQuality of the thumbnail on a scale of 1-100.\n- type: String(default = \"thumbnail\" \nIt takes two values \"thumbnail\" or \"firstpage\" \n\"thumbnail\" = 300X300 image of the first page of the document. Height and Width can be changed by providing values in options \n\"firstpage\" = snapshot of the document's first page.  \n  \n## Common Issues\n\n**ImageMagick no images defined:**\n\n- Open /etc/ImageMagick-6/policy.xml in the editor of your choice\n\n```bash\n\u003c!-- Find this line(should be in the end of file) --\u003e\n\u003cpolicy domain=\"coder\" rights=\"none\" pattern=\"PDF\" /\u003e\n```\n\n- You can either comment it or change rights to \"read | write\"\n- Reference: [https://askubuntu.com/questions/1181762/imagemagickconvert-im6-q16-no-images-defined](https://askubuntu.com/questions/1181762/imagemagickconvert-im6-q16-no-images-defined)\n\n**unoconv: Cannot find a suitable pyuno library and python binary combination in /usr/lib/libreoffice:**\n\n- Open /usr/bin/unoconv in the editor of your choice\n- Replace #!/usr/bin/env python3 with #!/usr/bin/python3\n- Reference: [https://github.com/unoconv/unoconv/issues/405](https://github.com/unoconv/unoconv/issues/405)  \n  \n  \nThis package is inspired from npm module filepreview.\n\n## Supported document types\n\nThe following list of document formats are currently available for exporting to:\n\n- bib - BibTeX [.bib]\n- doc - Microsoft Word 97/2000/XP [.doc]\n- doc6 - Microsoft Word 6.0 [.doc]\n- doc95 - Microsoft Word 95 [.doc]\n- docbook - DocBook [.xml]\n- html - HTML Document (OpenOffice.org Writer) [.html]\n- odt - Open Document Text [.odt]\n- ott - Open Document Text [.ott]\n- ooxml - Microsoft Office Open XML [.xml]\n- pdb - AportisDoc (Palm) [.pdb]\n- pdf - Portable Document Format [.pdf]\n- psw - Pocket Word [.psw]\n- rtf - Rich Text Format [.rtf]\n- latex - LaTeX 2e [.ltx]\n- sdw - StarWriter 5.0 [.sdw]\n- sdw4 - StarWriter 4.0 [.sdw]\n- sdw3 - StarWriter 3.0 [.sdw]\n- stw - Open Office.org 1.0 Text Document Template [.stw]\n- sxw - Open Office.org 1.0 Text Document [.sxw]\n- text - Text Encoded [.txt]\n- txt - Plain Text [.txt]\n- vor - StarWriter 5.0 Template [.vor]\n- vor4 - StarWriter 4.0 Template [.vor]\n- vor3 - StarWriter 3.0 Template [.vor]\n- xhtml - XHTML Document [.html]\n\nThe following list of graphics formats are currently available for exporting to:\n\n- bmp - Windows Bitmap [.bmp]\n- emf - Enhanced Metafile [.emf]\n- eps - Encapsulated PostScript [.eps]\n- gif - Graphics Interchange Format [.gif]\n- html - HTML Document (OpenOffice.org Draw) [.html]\n- jpg - Joint Photographic Experts Group [.jpg]\n- met - OS/2 Metafile [.met]\n- odd - OpenDocument Drawing [.odd]\n- otg - OpenDocument Drawing Template [.otg]\n- pbm - Portable Bitmap [.pbm]\n- pct - Mac Pict [.pct]\n- pdf - Portable Document Format [.pdf]\n- pgm - Portable Graymap [.pgm]\n- png - Portable Network Graphic [.png]\n- ppm - Portable Pixelmap [.ppm]\n- ras - Sun Raster Image [.ras]\n- std - OpenOffice.org 1.0 Drawing Template [.std]\n- svg - Scalable Vector Graphics [.svg]\n- svm - StarView Metafile [.svm]\n- swf - Macromedia Flash (SWF) [.swf]\n- sxd - OpenOffice.org 1.0 Drawing [.sxd]\n- sxd3 - StarDraw 3.0 [.sxd]\n- sxd5 - StarDraw 5.0 [.sxd]\n- tiff - Tagged Image File Format [.tiff]\n- vor - StarDraw 5.0 Template [.vor]\n- vor3 - StarDraw 3.0 Template [.vor]\n- wmf - Windows Metafile [.wmf]\n- xhtml - XHTML [.xhtml]\n- xpm - X PixMap [.xpm]\n\nThe following list of presentation formats are currently available for exporting to:\n\n- bmp - Windows Bitmap [.bmp]\n- emf - Enhanced Metafile [.emf]\n- eps - Encapsulated PostScript [.eps]\n- gif - Graphics Interchange Format [.gif]\n- html - HTML Document (OpenOffice.org Impress) [.html]\n- jpg - Joint Photographic Experts Group [.jpg]\n- met - OS/2 Metafile [.met]\n- odd - OpenDocument Drawing (Impress) [.odd]\n- odg - OpenOffice.org 1.0 Drawing (OpenOffice.org Impress) [.odg]\n- odp - OpenDocument Presentation [.odp]\n- pbm - Portable Bitmap [.pbm]\n- pct - Mac Pict [.pct]\n- pdf - Portable Document Format [.pdf]\n- pgm - Portable Graymap [.pgm]\n- png - Portable Network Graphic [.png]\n- pot - Microsoft PowerPoint 97/2000/XP Template [.pot]\n- ppm - Portable Pixelmap [.ppm]\n- ppt - Microsoft PowerPoint 97/2000/XP [.ppt]\n- pwp - PlaceWare [.pwp]\n- ras - Sun Raster Image [.ras]\n- sda - StarDraw 5.0 (OpenOffice.org Impress) [.sda]\n- sdd - StarImpress 5.0 [.sdd]\n- sdd3 - StarDraw 3.0 (OpenOffice.org Impress) [.sdd]\n- sdd4 - StarImpress 4.0 [.sdd]\n- sti - OpenOffice.org 1.0 Presentation Template [.sti]\n- stp - OpenDocument Presentation Template [.stp]\n- svg - Scalable Vector Graphics [.svg]\n- svm - StarView Metafile [.svm]\n- swf - Macromedia Flash (SWF) [.swf]\n- sxi - OpenOffice.org 1.0 Presentation [.sxi]\n- tiff - Tagged Image File Format [.tiff]\n- vor - StarImpress 5.0 Template [.vor]\n- vor3 - StarDraw 3.0 Template (OpenOffice.org Impress) [.vor]\n- vor4 - StarImpress 4.0 Template [.vor]\n- vor5 - StarDraw 5.0 Template (OpenOffice.org Impress) [.vor]\n- wmf - Windows Metafile [.wmf]\n- xhtml - XHTML [.xml]\n- xpm - X PixMap [.xpm]\n\nThe following list of spreadsheet formats are currently available for exporting to:\n\n- csv - Text CSV [.csv]\n- dbf - dBase [.dbf]\n- dif - Data Interchange Format [.dif]\n- html - HTML Document (OpenOffice.org Calc) [.html]\n- ods - Open Document Spreadsheet [.ods]\n- ooxml - Microsoft Excel 2003 XML [.xml]\n- pdf - Portable Document Format [.pdf]\n- pts - OpenDocument Spreadsheet Template [.pts]\n- pxl - Pocket Excel [.pxl]\n- sdc - StarCalc 5.0 [.sdc]\n- sdc4 - StarCalc 4.0 [.sdc]\n- sdc3 - StarCalc 3.0 [.sdc]\n- slk - SYLK [.slk]\n- stc - OpenOffice.org 1.0 Spreadsheet Template [.stc]\n- sxc - OpenOffice.org 1.0 Spreadsheet [.sxc]\n- vor3 - StarCalc 3.0 Template [.vor]\n- vor4 - StarCalc 4.0 Template [.vor]\n- vor - StarCalc 5.0 Template [.vor]\n- xhtml - XHTML [.xhtml]\n- xls - Microsoft Excel 97/2000/XP [.xls]\n- xls5 - Microsoft Excel 5.0 [.xls]\n- xls95 - Microsoft Excel 95 [.xls]\n- xlt - Microsoft Excel 97/2000/XP Template [.xlt]\n- xlt5 - Microsoft Excel 5.0 Template [.xlt]\n- xlt95 - Microsoft Excel 95 Template [.xlt]\n\nThe following list of open office formats are currently available for exporting to:\n\n- Microsoft Word 6.0/95/97/2000/XP (.doc and .dot)\n- Microsoft Word 2003 XML (.xml)\n- Microsoft Word 2007 XML (.docx, .docm, .dotx, .dotm)\n- Microsoft WinWord 5 (.doc)\n- WordPerfect Document (.wpd)\n- WPS 2000/Office 1.0 (.wps)\n- .rtf, .txt, and .csv\n- StarWriter formats (.sdw, .sgl, .vor)\n- DocBook (.xml)\n- Unified Office Format text (.uot, .uof)\n- Ichitaro 8/9/10/11 (.jtd and .jtt)\n- Hangul WP 97 (.hwp)\n- T602 Document (.602, .txt)\n- AportisDoc (Palm) (.pdb)\n- Pocket Word (.psw)\n- Microsoft Excel 97/2000/XP (.xls, .xlw, and .xlt)\n- Microsoft Excel 4.x–5.0/95 (.xls, .xlw, and .xlt)\n- Microsoft Excel 2003 XML (.xml)\n- Microsoft Excel 2007 XML (.xlsx, .xlsm, .xltx, .xltm)\n- Microsoft Excel 2007 binary (.xlsb)\n- Lotus 1-2-3 (.wk1, .wks, and .123)\n- Data Interchange Format (.dif)\n- Rich Text Format (.rtf)\n- Text CSV (.csv and .txt)\n- StarCalc formats (.sdc and .vor)\n- dBASE (.dbf)\n- SYLK (.slk)\n- Unified Office Format spreadsheet (.uos, .uof)\n- .htm and .html files, including Web page queries\n- Pocket Excel (pxl)\n- Quattro Pro 6.0 (.wb2)\n- Microsoft PowerPoint 97/2000/XP (.ppt, .pps, and .pot)\n- Microsoft PowerPoint 2007 (.pptx, .pptm, .potx, .potm)\n- StarDraw and StarImpress (.sda, .sdd, .sdp, and .vor)\n- Unified Office Format presentation (.uop, .uof)\n- CGM – Computer Graphics Metafile (.cgm)\n- Portable Document Format (.pdf)\n\nThe following list of video formats are currently available for exporting to:\n\n- 3g2 3GP2 (3GPP2 file format)\n- 3gp 3GP (3GPP file format)\n- 4xm 4X Technologies\n- a64 a64 - video for Commodore 64\n- aac raw ADTS AAC (Advanced Audio Coding)\n- ac3 raw AC-3\n- act ACT Voice file format\n- adf Artworx Data Format\n- adp ADP\n- adts ADTS AAC (Advanced Audio Coding)\n- adx CRI ADX\n- aea MD STUDIO audio\n- afc AFC\n- aiff Audio IFF\n- alaw PCM A-law\n- alias_pix Alias/Wavefront PIX image\n- alsa ALSA audio output\n- amr 3GPP AMR\n- anm Deluxe Paint Animation\n- apc CRYO APC\n- ape Monkey's Audio\n- apng Animated Portable Network Graphics\n- aqtitle AQTitle subtitles\n- asf ASF (Advanced / Active Streaming Format)\n- asf_stream ASF (Advanced / Active Streaming Format)\n- ass SSA (SubStation Alpha) subtitle\n- ast AST (Audio Stream)\n- au Sun AU\n- avi AVI (Audio Video Interleaved)\n- avisynth AviSynth script\n- avm2 SWF (ShockWave Flash) (AVM2)\n- avr AVR (Audio Visual Research)\n- avs AVS\n- bethsoftvid Bethesda Softworks VID\n- bfi Brute Force \u0026 Ignorance\n- bin Binary text\n- bink Bink\n- bit G.729 BIT file format\n- bmp_pipe piped bmp sequence\n- bmv Discworld II BMV\n- boa Black Ops Audio\n- brender_pix BRender PIX image\n- brstm BRSTM (Binary Revolution Stream)\n- c93 Interplay C93\n- caca caca (color ASCII art) output device\n- caf Apple CAF (Core Audio Format)\n- cavsvideo raw Chinese AVS (Audio Video Standard) video\n- cdg CD Graphics\n- cdxl Commodore CDXL video\n- cine Phantom Cine\n- concat Virtual concatenation script\n- crc CRC testing\n- dash DASH Muxer\n- data raw data\n- daud D-Cinema audio\n- dfa Chronomaster DFA\n- dirac raw Dirac\n- dnxhd raw DNxHD (SMPTE VC-3)\n- dpx_pipe piped dpx sequence\n- dsf DSD Stream File (DSF)\n- dsicin Delphine Software International CIN\n- dss Digital Speech Standard (DSS)\n- dts raw DTS\n- dtshd raw DTS-HD\n- dv DV (Digital Video)\n- dv1394 DV1394 A/V grab\n- dvbsub raw dvbsub\n- dvd MPEG-2 PS (DVD VOB)\n- dxa DXA\n- ea Electronic Arts Multimedia\n- ea_cdata Electronic Arts cdata\n- eac3 raw E-AC-3\n- epaf Ensoniq Paris Audio File\n- exr_pipe piped exr sequence\n- f32be PCM 32-bit floating-point big-endian\n- f32le PCM 32-bit floating-point little-endian\n- f4v F4V Adobe Flash Video\n- f64be PCM 64-bit floating-point big-endian\n- f64le PCM 64-bit floating-point little-endian\n- fbdev Linux framebuffer\n- ffm FFM (FFserver live feed)\n- ffmetadata FFmpeg metadata in text\n- film_cpk Sega FILM / CPK\n- filmstrip Adobe Filmstrip\n- flac raw FLAC\n- flic FLI/FLC/FLX animation\n- flv FLV (Flash Video)\n- framecrc framecrc testing\n- framemd5 Per-frame MD5 testing\n- frm Megalux Frame\n- g722 raw G.722\n- g723_1 raw G.723.1\n- g729 G.729 raw format demuxer\n- gif GIF Animation\n- gsm raw GSM\n- gxf GXF (General eXchange Format)\n- h261 raw H.261\n- h263 raw H.263\n- h264 raw H.264 video\n- hds HDS Muxer\n- hevc raw HEVC video\n- hls Apple HTTP Live Streaming\n- hls,applehttp Apple HTTP Live Streaming\n- hnm Cryo HNM v4\n- ico Microsoft Windows ICO\n- idcin id Cinematic\n- idf iCE Draw File\n- iec61883 libiec61883 (new DV1394) A/V input device\n- iff IFF (Interchange File Format)\n- ilbc iLBC storage\n- image2 image2 sequence\n- image2pipe piped image2 sequence\n- ingenient raw Ingenient MJPEG\n- ipmovie Interplay MVE\n- ipod iPod H.264 MP4 (MPEG-4 Part 14)\n- ircam Berkeley/IRCAM/CARL Sound Format\n- ismv ISMV/ISMA (Smooth Streaming)\n- iss Funcom ISS\n- iv8 IndigoVision 8000 video\n- ivf On2 IVF\n- j2k_pipe piped j2k sequence\n- jack JACK Audio Connection Kit\n- jacosub JACOsub subtitle format\n- jpeg_pipe piped jpeg sequence\n- jpegls_pipe piped jpegls sequence\n- jv Bitmap Brothers JV\n- latm LOAS/LATM\n- lavfi Libavfilter virtual input device\n- libcdio\n- libdc1394 dc1394 v.2 A/V grab\n- libgme Game Music Emu demuxer\n- libmodplug ModPlug demuxer\n- live_flv live RTMP FLV (Flash Video)\n- lmlm4 raw lmlm4\n- loas LOAS AudioSyncStream\n- lrc LRC lyrics\n- lvf LVF\n- lxf VR native stream (LXF)\n- m4v raw MPEG-4 video\n- matroska Matroska\n- matroska,webm Matroska / WebM\n- md5 MD5 testing\n- mgsts Metal Gear Solid: The Twin Snakes\n- microdvd MicroDVD subtitle format\n- mjpeg raw MJPEG video\n- mkvtimestamp_v2 extract pts as timecode v2 format, as defined by mkvtoolnix\n- mlp raw MLP\n- mlv Magic Lantern Video (MLV)\n- mm American Laser Games MM\n- mmf Yamaha SMAF\n- mov QuickTime / MOV\n- mov,mp4,m4a,3gp,3g2,mj2 QuickTime / MOV\n- mp2 MP2 (MPEG audio layer 2)\n- mp3 MP3 (MPEG audio layer 3)\n- mp4 MP4 (MPEG-4 Part 14)\n- mpc Musepack\n- mpc8 Musepack SV8\n- mpeg MPEG-1 Systems / MPEG program stream\n- mpeg1video raw MPEG-1 video\n- mpeg2video raw MPEG-2 video\n- mpegts MPEG-TS (MPEG-2 Transport Stream)\n- mpegtsraw raw MPEG-TS (MPEG-2 Transport Stream)\n- mpegvideo raw MPEG video\n- mpjpeg MIME multipart JPEG\n- mpl2 MPL2 subtitles\n- mpsub MPlayer subtitles\n- msnwctcp MSN TCP Webcam stream\n- mtv MTV\n- mulaw PCM mu-law\n- mv Silicon Graphics Movie\n- mvi Motion Pixels MVI\n- mxf MXF (Material eXchange Format)\n- mxf_d10 MXF (Material eXchange Format) D-10 Mapping\n- mxf_opatom MXF (Material eXchange Format) Operational Pattern Atom\n- mxg MxPEG clip\n- nc NC camera feed\n- nistsphere NIST SPeech HEader REsources\n- nsv Nullsoft Streaming Video\n- nut NUT\n- nuv NuppelVideo\n- oga Ogg Audio\n- ogg Ogg\n- oma Sony OpenMG audio\n- openal OpenAL audio capture device\n- opengl OpenGL output\n- opus Ogg Opus\n- oss OSS (Open Sound System) playback\n- paf Amazing Studio Packed Animation File\n- pictor_pipe piped pictor sequence\n- pjs PJS (Phoenix Japanimation Society) subtitles\n- pmp Playstation Portable PMP\n- png_pipe piped png sequence\n- psp PSP MP4 (MPEG-4 Part 14)\n- psxstr Sony Playstation STR\n- pulse Pulse audio output\n- pva TechnoTrend PVA\n- pvf PVF (Portable Voice Format)\n- qcp QCP\n- qdraw_pipe piped qdraw sequence\n- r3d REDCODE R3D\n- rawvideo raw video\n- realtext RealText subtitle format\n- redspark RedSpark\n- rl2 RL2\n- rm RealMedia\n- roq raw id RoQ\n- rpl RPL / ARMovie\n- rsd GameCube RSD\n- rso Lego Mindstorms RSO\n- rtp RTP output\n- rtp_mpegts RTP/mpegts output format\n- rtsp RTSP output\n- s16be PCM signed 16-bit big-endian\n- s16le PCM signed 16-bit little-endian\n- s24be PCM signed 24-bit big-endian\n- s24le PCM signed 24-bit little-endian\n- s32be PCM signed 32-bit big-endian\n- s32le PCM signed 32-bit little-endian\n- s8 PCM signed 8-bit\n- sami SAMI subtitle format\n- sap SAP output\n- sbg SBaGen binaural beats script\n- sdl SDL output device\n- sdp SDP\n- sdr2 SDR2\n- segment segment\n- sgi_pipe piped sgi sequence\n- shn raw Shorten\n- siff Beam Software SIFF\n- singlejpeg JPEG single image\n- sln Asterisk raw pcm\n- smjpeg Loki SDL MJPEG\n- smk Smacker\n- smoothstreaming Smooth Streaming Muxer\n- smush LucasArts Smush\n- sol Sierra SOL\n- sox SoX native\n- spdif IEC 61937 (used on S/PDIF - IEC958)\n- spx Ogg Speex\n- srt SubRip subtitle\n- stl Spruce subtitle format\n- stream_segment,ssegment streaming segment muxer\n- subviewer SubViewer subtitle format\n- subviewer1 SubViewer v1 subtitle format\n- sunrast_pipe piped sunrast sequence\n- sup raw HDMV Presentation Graphic Stream subtitles\n- svcd MPEG-2 PS (SVCD)\n- swf SWF (ShockWave Flash)\n- tak raw TAK\n- tedcaptions TED Talks captions\n- tee Multiple muxer tee\n- thp THP\n- tiertexseq Tiertex Limited SEQ\n- tiff_pipe piped tiff sequence\n- tmv 8088flex TMV\n- truehd raw TrueHD\n- tta TTA (True Audio)\n- tty Tele-typewriter\n- txd Renderware TeXture Dictionary\n- u16be PCM unsigned 16-bit big-endian\n- u16le PCM unsigned 16-bit little-endian\n- u24be PCM unsigned 24-bit big-endian\n- u24le PCM unsigned 24-bit little-endian\n- u32be PCM unsigned 32-bit big-endian\n- u32le PCM unsigned 32-bit little-endian\n- u8 PCM unsigned 8-bit\n- uncodedframecrc uncoded framecrc testing\n- v4l2 Video4Linux2 output device\n- vc1 raw VC-1 video\n- vc1test VC-1 test bitstream\n- vcd MPEG-1 Systems / MPEG program stream (VCD)\n- video4linux2,v4l2 Video4Linux2 device grab\n- vivo Vivo\n- vmd Sierra VMD\n- vob MPEG-2 PS (VOB)\n- vobsub VobSub subtitle format\n- voc Creative Voice\n- vplayer VPlayer subtitles\n- vqf Nippon Telegraph and Telephone Corporation (NTT) TwinVQ\n- w64 Sony Wave64\n- wav WAV / WAVE (Waveform Audio)\n- wc3movie Wing Commander III movie\n- webm WebM\n- webm_chunk WebM Chunk Muxer\n- webm_dash_manifest WebM DASH Manifest\n- webp WebP\n- webp_pipe piped webp sequence\n- webvtt WebVTT subtitle\n- wsaud Westwood Studios audio\n- wsvqa Westwood Studios VQA\n- wtv Windows Television (WTV)\n- wv raw WavPack\n- x11grab X11 screen capture, using XCB\n- xa Maxis XA\n- xbin eXtended BINary text (XBIN)\n- xmv Microsoft XMV\n- xv XV (XVideo) output device\n- xwma Microsoft xWMA\n- yop Psygnosis YOP\n- yuv4mpegpipe YUV4MPEG pipe\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanshulkharb%2Fthumbnail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanshulkharb%2Fthumbnail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanshulkharb%2Fthumbnail/lists"}