-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathsettings.default.yml
More file actions
executable file
·1029 lines (1010 loc) · 20.6 KB
/
settings.default.yml
File metadata and controls
executable file
·1029 lines (1010 loc) · 20.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
auth_settings:
oidc_client_id: filewiz
oidc_client_secret:
oidc_server_metadata_url: https://accounts.example.com/oidc/.well-known/openid-configuration
oidc_userinfo_endpoint: https://accounts.example.com/oidc/me
oidc_end_session_endpoint: https://accounts.example.com/oidc/session/end
admin_users:
- user@example.com
webhook_settings:
enabled: False
allow_chunked_api_uploads: False
allowed_callback_urls: []
callback_bearer_token:
tts_settings:
piper:
model_dir: "./models/tts"
use_cuda: False
synthesis_config:
length_scale: 1.0
noise_scale: 0.667
noise_w: 0.8
kokoro:
model_dir: "./models/tts/kokoro"
command_template: "kokoro-tts {input} {output} --model {model_path} --voices {voices_path} --voice {model_name}"
app_settings:
model_concurrency: 1
model_inactivity_timeout: 1800
cache_check_interval: 300
max_file_size_mb: "2000"
# app_public_url: "http://localhost:8000" # Uncomment and set to your public URL if downloads don't work correctly
allowed_all_extensions:
- .aac
- .aiff
- .avif
- .avi
- .azw3
- .bmp
- .csv
- .dbf
- .doc
- .docx
- .dpx
- .dxf
- .eps
- .epub
- .fb2
- .fits
- .flac
- .flv
- .gif
- .gsm
- .html
- .htmlz
- .ico
- .jpeg
- .jpg
- .jxl
- .lit
- .lrf
- .m4a
- .md
- .mkv
- .mobi
- .mov
- .mp3
- .mp4
- .odt
- .ogg
- .ogv
- .opml
- .opus
- .pdb
- .pdf
- .pnm
- .png
- .ppt
- .pptx
- .ps
- .rst
- .rtf
- .svg
- .tcr
- .tex
- .tif
- .tiff
- .txt
- .wav
- .webm
- .webp
- .wma
- .wmv
- .wps
- .xlsx
- .xls
- .xml
- .xpm
- .zip
- .3gp
- .aif
- .ac3
- .adoc
- .asciidoc
- .au
- .ape
- .avr
- .azw
- .azw4
- .beamer
- .cb7
- .cbc
- .cbr
- .cbz
- .caf
- .chm
- .context
- .djvu
- .dia
- .docbook
- .docbook5
- .dts
- .dzslides
- .eac3
- .eml
- .exr
- .f32
- .f4v
- .f64
- .fbz
- .gfm
- .haddock
- .hdr
- .heic
- .heif
- .htm
- .htk
- .ircam
- .j2k
- .jats
- .jp2
- .json
- .kepub
- .latex
- .m2ts
- .m4b
- .m4v
- .markdown
- .mat
- .mbox
- .miff
- .mka
- .mp1
- .mp2
- .mpc
- .mpeg
- .mpg
- .ms
- .msg
- .mts
- .muse
- .mxf
- .native
- .nist
- .oeb
- .ods
- .odp
- .oga
- .org
- .paf
- .pbm
- .pcx
- .pgm
- .pml
- .ppm
- .prc
- .pvf
- .ra
- .raw
- .rb
- .revealjs
- .rm
- .s5
- .s8
- .s16
- .s24
- .s32
- .sd2
- .sds
- .sf
- .shtml
- .slidy
- .smp
- .snd
- .snb
- .sph
- .spx
- .svgz
- .tga
- .tei
- .textile
- .ts
- .tsv
- .tta
- .txw
- .txtz
- .u8
- .u16
- .u24
- .u32
- .vips
- .vob
- .voc
- .w64
- .wbmp
- .wavex
- .wv
- .wve
- .xhtml
- .xwd
- .xwiki
- .zimwiki
ocr_settings:
ocrmypdf:
deskew: true
clean: true
optimize: 1
force_ocr: true
image_dpi: 300
academic_settings:
pandoc:
csl_files:
apa: https://www.zotero.org/styles/apa
mla: https://www.zotero.org/styles/modern-language-association
chicago: https://www.zotero.org/styles/chicago-author-date
chicago-fullnote: https://www.zotero.org/styles/chicago-fullnote-bibliography
transcription_settings:
whisper:
compute_type: int8
# device: cuda
# device_index: 0
allowed_models:
- tiny
- base
- small
- medium
- large-v3
- distil-large-v2
conversion_tools:
libreoffice:
name: LibreOffice
command_template: libreoffice --headless --convert-to {filter} --outdir {output_dir} {input}
timeout: 300
supported_input:
- .odt
- .doc
- .docx
- .xls
- .xlsx
- .ods
- .csv
- .ppt
- .pptx
- .odp
- .rtf
- .txt
- .html
- .xml
- .epub
- .svg
- .png
- .jpg
- .jpeg
- .wps
- .dbf
filters:
pdf: pdf
docx: docx
doc: doc
odt: odt
html: html
rtf: rtf
txt: "Text"
xml: xml
epub: epub
xlsx: xlsx
xls: xls
ods: ods
csv: csv:Text
pptx: pptx
ppt: ppt
odp: odp
svg: svg
png: png
jpg: jpg
wps: wps
dbf: dbf
formats:
pdf: PDF Document
docx: Word Document (DOCX)
doc: Word 97-2003 Document (DOC)
odt: OpenDocument Text
html: HTML Document
rtf: Rich Text Format
txt: Plain Text
xml: Word 2003 XML
epub: EPUB E-Book
xlsx: Excel Spreadsheet (XLSX)
xls: Excel 97-2003 Spreadsheet (XLS)
ods: OpenDocument Spreadsheet
csv: CSV
pptx: PowerPoint Presentation (PPTX)
ppt: PowerPoint 97-2003 Presentation (PPT)
odp: OpenDocument Presentation
svg: SVG Image (from Draw/Impress)
png: PNG Image (from Draw/Impress)
jpg: JPEG Image (from Draw/Impress)
wps: MS Works Document
dbf: dBase Database File
pandoc:
name: Pandoc
command_template: pandoc --standalone {input} -o {output} --to={output_ext} --pdf-engine=xelatex
timeout: 300
supported_input:
- .md
- .txt
- .html
- .htm
- .docx
- .odt
- .epub
- .tex
- .rtf
- .rst
- .org
- .asciidoc
- .adoc
- .textile
- .opml
- .fb2
- .jats
- .tei
- .xml
- .json
- .native
- .docbook
- .docbook5
- .latex
- .context
- .ms
- .zimwiki
- .xwiki
- .muse
- .haddock
- .dzslides
- .s5
- .beamer
- .slidy
- .revealjs
- .gfm
- .markdown
formats:
docx: Word Document
odt: OpenDocument Text
pdf: PDF Document
rtf: Rich Text Format
txt: Plain Text
md: Markdown (Strict)
gfm: Markdown (GitHub-Flavored)
tex: LaTeX
html: HTML5
epub: EPUB v3 Book
epub2: EPUB v2 Book
pptx: PowerPoint Presentation
beamer: Beamer PDF Slides
slidy: Slidy HTML Slides
revealjs: reveal.js HTML Slides
rst: reStructuredText
jira: Jira Wiki Markup
mediawiki: MediaWiki Markup
asciidoc: AsciiDoc
textile: Textile
opml: OPML
man: Groff Man Page
docbook:
DocBook XML
# Additional document formats
latex: LaTeX Source
context: ConTeXt Document
ms: Groff MS Document
fb2: FictionBook E-Book
jats: JATS XML (Academic Publishing)
tei: TEI Simple XML
docbook5: DocBook 5 XML
# More markup formats
zimwiki: ZimWiki Markup
xwiki: XWiki Markup
muse: Emacs Muse
haddock: Haddock Haskell Docs
# Slide formats (if not covered)
dzslides: DZSlides HTML Slides
s5: S5 HTML Slides
# Data/interchange formats
json: Pandoc JSON AST
native: Pandoc Native AST
ghostscript_pdf:
name: Ghostscript (PDF)
command_template:
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dNOPAUSE -dQUIET
-dBATCH {preset} -sOutputFile={output} {input}
timeout: 60
supported_input:
- .pdf
formats:
screen: PDF (Optimized for Screen)
ebook: PDF (Optimized for Ebooks)
printer: PDF (Optimized for Print)
prepress: PDF (Optimized for Prepress)
pdfa: PDF/A-2b (for Archiving)
ghostscript_image:
name: Ghostscript (Image)
command_template: gs -dNOPAUSE -dBATCH -sDEVICE={device} -r{dpi} -sOutputFile={output} {input}
timeout: 60
supported_input:
- .ps
- .eps
- .pdf
formats:
jpeg_72: JPEG Image (72 DPI)
jpeg_150: JPEG Image (150 DPI)
jpeg_300: JPEG Image (300 DPI)
png16m_150: PNG Image (150 DPI)
png16m_300: PNG Image (300 DPI)
pngalpha_150: PNG Image with Alpha (150 DPI)
pngalpha_300: PNG Image with Alpha (300 DPI)
tiff24nc_300: TIFF Image (300 DPI)
tiff24nc_600: TIFF Image (600 DPI)
tiffg4_300: TIFF Image (G4 Fax, 300 DPI)
bmp16m_300: BMP Image (300 DPI)
pcx24b_300: PCX Image (300 DPI)
pnm_300: PNM Image (300 DPI)
calibre:
name: Calibre (ebook-convert)
command_template: ebook-convert {input} {output}
timeout: 600
supported_input:
- .azw
- .azw4
- .cbz
- .cbr
- .cb7
- .cbc
- .chm
- .djvu
- .fbz
- .kepub
- .prc
- .pdb
- .pml
- .rb
- .snb
- .tcr
- .txtz
- .epub
- .mobi
- .azw
- .azw3
- .pdf
- .docx
- .rtf
- .txt
- .fb2
- .html
- .htm
- .htmlz
- .shtml
- .xhtml
- .pdb
- .lrf
- .lit
- .tcr
- .oeb
- .pml
- .rb
- .snb
- .odt
- .prc
- .djvu
formats:
epub: EPUB
mobi: MOBI
azw3: Amazon Kindle (AZW3)
pdf: PDF
docx: Word Document
rtf: Rich Text Format
txt: Plain Text
fb2: FictionBook 2
htmlz: Zipped HTML
pdb: eReader PDB
lrf: Sony BroadBand eBook
lit: Microsoft Reader
tcr: Psion Series 3
oeb: Open eBook (OEB)
pml: Palm Markup Language
rb: Rocket eBook
snb: Samsung Note eBook
kepub: Kobo EPUB
oeb: Open eBook
pmlz: Palm Markup Language (Zipped)
rb: Rocket eBook
snb: Samsung Note eBook
txtz: Plain Text (Zipped)
zip: Zipped Container
ffmpeg:
name: FFmpeg
command_template: ffmpeg -i {input} -y -preset medium {output}
timeout: 600
supported_input:
- .mp4
- .avi
- .mov
- .wmv
- .flv
- .mkv
- .webm
- .m4v
- .3gp
- .mpg
- .mpeg
- .ts
- .mts
- .m2ts
- .vob
- .f4v
- .mxf
- .mp3
- .wav
- .flac
- .aac
- .aiff
- .wma
- .ogg
- .opus
- .m4a
- .ac3
- .eac3
- .mka
- .caf
- .mp2
- .jpg
- .jpeg
- .png
- .bmp
- .tiff
- .tif
- .gif
- .webp
- .svg
- .tga
- .dpx
- .exr
- .avif
- .heif
- .heic
formats:
mp4: MP4 Video (H.264/AAC)
mp4_hevc: MP4 Video (H.265/AAC)
mkv: MKV Video (H.264/AAC)
mov: MOV Video (H.264/AAC)
webm: WebM Video (VP9/Opus)
webm_av1: WebM Video (AV1/Opus)
avi: AVI Video (MPEG4/MP3)
wmv: WMV Video
flv: FLV Video (Flash)
ogv: Ogg Theora Video
mp3: MP3 Audio
wav: WAV Audio (Uncompressed PCM)
flac: FLAC Audio (Lossless)
aac: AAC Audio
aiff: AIFF Audio
wma: WMA Audio
ogg: Ogg Vorbis Audio
opus: Opus Audio
gif: Animated GIF
apng: Animated PNG
m4v: MPEG-4 Video (H.264)
3gp: 3GPP Mobile Video
ts: MPEG Transport Stream
f4v: Adobe Flash Video (MP4-based)
mxf: MXF (Professional Video)
m4a: MPEG-4 Audio (AAC)
ac3: Dolby Digital AC-3
eac3: Dolby Digital Plus (E-AC-3)
mka: Matroska Audio
caf: Apple Core Audio Format
mp2: MPEG Audio Layer II
# Images
jpg: JPEG Image Sequence
png: PNG Image Sequence
vips:
name: VIPS
command_template: vips copy {input} {output}[Q=90]
timeout: 60
supported_input:
- .jpg
- .jpeg
- .png
- .webp
- .tiff
- .tif
- .avif
- .heif
- .heic
- .jp2
- .j2k
- .gif
- .pnm
- .pgm
- .ppm
- .pbm
- .fits
- .bmp
- .ico
- .exr
- .hdr
- .jxl
- .vips
formats:
jpg: JPEG Image (Q90)
png: PNG Image
webp: WebP Image (Q90)
tiff: TIFF Image
avif: AVIF Image (Q90)
heif: HEIF Image (Q90)
jp2: JPEG 2000
gif: GIF Image
pnm: PNM Image
fits: FITS Image
# Common raster
bmp: BMP Image
ico: Windows Icon
# HDR formats
exr: OpenEXR Image
hdr: Radiance HDR Image
# Modern (if supported)
jxl: JPEG XL Image (Q90)
# Native
vips: VIPS Native Format
graphicsmagick:
name: GraphicsMagick
command_template: gm convert {input} -quality 90 {output}
timeout: 60
supported_input:
- .jpg
- .jpeg
- .png
- .webp
- .tiff
- .tif
- .gif
- .bmp
- .pdf
- .eps
- .dpx
- .ico
- .xpm
- .ps
- .pnm
- .ppm
- .pgm
- .pbm
- .tga
- .pcx
- .miff
- .hdr
- .fits
- .wbmp
- .xwd
formats:
jpg: JPEG Image (Q90)
png: PNG Image
webp: WebP Image
tiff: TIFF Image
gif: GIF Image
bmp: BMP Image
pdf: PDF from Images
eps: Encapsulated PostScript
dpx: DPX Image
ico: Windows Icon
xpm:
X PixMap
# Vector & page description
ps: PostScript
# Bitmap formats
pnm: PNM Image (Portable AnyMap)
ppm: PPM Image (Portable Pixmap)
pgm: PGM Image (Portable Graymap)
pbm: PBM Image (Portable Bitmap)
tga: Targa Image
pcx: PC Paintbrush Image
# Native & archival
miff: Magick Image File Format (GM Native)
# HDR (if supported)
hdr: Radiance HDR Image
# Scientific
fits: FITS Image
# Legacy/other
wbmp: Wireless Bitmap
xwd: X Window Dump
inkscape:
name: Inkscape
command_template: inkscape {input} --export-filename={output}
timeout: 30
supported_input:
- .svg
- .svgz
- .eps
- .pdf
- .ps
- .dia
formats:
svg: SVG (Plain)
inkscape_svg: SVG (Inkscape)
png_96: PNG Image (96 DPI)
png_300: PNG Image (300 DPI)
pdf: PDF Document
eps: Encapsulated PostScript
ps: PostScript
emf: Enhanced Metafile
wmf: Windows Metafile
dxf: AutoCAD DXF R14
libjxl:
name: libjxl (cjxl)
command_template: cjxl {input} {output} -q 90
timeout: 30
supported_input:
- .jpg
- .jpeg
- .png
- .tiff
- .tif
- .gif
- .bmp
- .webp
- .jxl
formats:
jxl_q90: JPEG XL (Quality 90)
jxl_lossless: JPEG XL (Lossless)
jxl_hq: JPEG XL (High Compression)
jxl_q70: JPEG XL (Quality 70)
jxl_q50: JPEG XL (Quality 50)
jxl_q30: JPEG XL (Quality 30)
resvg:
name: resvg
command_template: resvg {input} {output}
timeout: 30
supported_input:
- .svg
- .svgz
formats:
png: PNG from SVG
potrace:
name: Potrace
command_template: potrace {input} --svg -o {output}
timeout: 30
supported_input:
- .png
- .jpg
- .jpeg
- .bmp
- .tiff
- .tif
- .pgm
- .ppm
- .pbm
- .pnm
formats:
svg: SVG from Bitmap
pdf: PDF from Bitmap
eps: EPS from Bitmap
ps: PostScript from Bitmap
dxf: DXF from Bitmap
markitdown:
name: Markitdown
command_template: markitdown {input} -o {output}
timeout: 300
supported_input:
- .docx
- .pdf
- .pptx
- .xlsx
- .odt
- .html
- .htm
- .epub
- .rtf
- .txt
- .md
- .mbox
- .msg
- .eml
- .csv
- .tsv
- .json
- .xml
- .odp
- .ods
formats:
md: Markdown from Everything!
pngquant:
name: pngquant
command_template: pngquant --quality={quality} --speed {speed} --force --output {output} {input}
timeout: 300
supported_input:
- .png
formats:
png_hq: PNG (High Quality Compression)
png_mq: PNG (Medium Quality Compression)
png_fast: PNG (Fast Compression)
sox:
name: SoX Audio Converter
command_template: sox {input} -r {samplerate} {bitdepth} {output}
timeout: 600
supported_input:
- .wav
- .flac
- .aiff
- .aif
- .au
- .snd
- .mp3
- .mp2
- .mp1
- .ogg
- .oga
- .opus
- .spx
- .wv
- .tta
- .m4a
- .m4b
- .aac
- .ac3
- .dts
- .w64
- .sds
- .smp
- .paf
- .nist
- .voc
- .ircam
- .sf
- .w64
- .mat
- .pvf
- .xi
- .htk
- .sds
- .avr
- .wavex
- .sd2
- .flac
- .caf
- .wve
- .prc
- .txw
- .f32
- .f64
- .s32
- .s24
- .s16
- .s8
- .u32
- .u24
- .u16
- .u8
- .raw
formats:
wav_48k_24b: WAV (48kHz, 24-bit)
wav_44k_16b: WAV (CD, 44.1kHz, 16-bit)
wav_16k_16b: WAV (Voice, 16kHz, 16-bit)
flac_48k_24b: FLAC (48kHz, 24-bit)
flac_44k_16b: FLAC (CD, 44.1kHz, 16-bit)
aiff_44k_16b: AIFF (CD, 44.1kHz, 16-bit)
mp3_320k: MP3 (320 kbps)
mp3_128k: MP3 (128 kbps)
ogg_192k: Ogg Vorbis (192 kbps)
ogg_96k: Ogg Vorbis (96 kbps)
gsm: GSM 06.10 (13kbps, Voice)
# High-resolution audio
wav_96k_24b: WAV (96kHz, 24-bit)
wav_192k_24b: WAV (192kHz, 24-bit)
flac_96k_24b: FLAC (96kHz, 24-bit)
flac_192k_24b: FLAC (192kHz, 24-bit)
aiff_48k_24b: AIFF (48kHz, 24-bit)
aiff_96k_24b: AIFF (96kHz, 24-bit)
# More MP3 options
mp3_v0: MP3 (V0 VBR, ~245 kbps)
mp3_64k: MP3 (64 kbps, mono)
mp3_48k: MP3 (48 kbps, ultra-low)
# More Ogg/Opus
ogg_320k: Ogg Vorbis (320 kbps)
ogg_45k: Ogg Vorbis (45 kbps)
# Telephony & legacy
ulaw_8k: μ-law (8kHz, North American telephony)
alaw_8k: A-law (8kHz, European telephony)
vox_8k: Dialogic VOX (8kHz, ADPCM)
adpcm_44k: IMA ADPCM (44.1kHz)
g722_16k: G.722 Wideband (16kHz, 64kbps)
# Raw & scientific
raw_44k_s16: Raw PCM (44.1kHz, 16-bit signed)
raw_48k_f32: Raw PCM (48kHz, 32-bit float)
# Broadcast & niche
au_44k_16b: Sun AU (44.1kHz, 16-bit)
sph_16k_16b: NIST SPHERE (16kHz, 16-bit, speech research)
w64_48k_24b: Wave64 (48kHz, 24-bit, >4GB support)
ffmpeg_audio:
name: FFmpeg for Perceptionally Lossless Audio
command_template: "ffmpeg -i {input} -c:a libopus -b:a 192k -vbr on -compression_level 10 -application audio {output}"
timeout: 600
supported_input:
- .wav
- .flac
- .aiff
- .aif
- .mp3
- .m4a
- .aac
- .ogg
- .opus
- .wv
- .tta
- .ape
- .mpc
- .wma
- .ra
- .rm
- .au
- .snd
- .caf
- .sph
- .voc
- .ircam
- .w64
formats:
opus: Opus (192 kbps) HQ
mozjpeg:
name: MozJPEG
command_template: cjpeg -quality {quality} -outfile {output} {input}
timeout: 30
supported_input:
- .bmp
- .ppm
- .pgm
- .jpg
formats:
jpg_q85: JPEG (High Quality)
jpg_q75: JPEG (Web Quality)
jpg_q60: JPEG (Aggressive Compression)
pandoc_academic:
name: Pandoc (Academic Document)
command_template: "pandoc {main_document} -o {output} --bibliography {bib_file} --citeproc --csl {csl_style}"
timeout: 300
supported_input:
- .zip # Academic pandoc requires a zip with markdown/tex + bibliography
formats:
pdf_apa: "PDF with Bibliography (APA Style)"
pdf_mla: "PDF with Bibliography (MLA Style)"
pdf_chicago: "PDF with Bibliography (Chicago Style)"
pdf_chicago_fullnote: "PDF with Bibliography (Chicago Full Note)"
pdftotext:
name: pdftotext (Poppler)
command_template: pdftotext -layout {input} {output}
timeout: 300
supported_input:
- .pdf
formats:
txt: Plain Text
pdftohtml:
name: pdftohtml (Poppler)
command_template: pdftohtml -noframes -c -hidden {input} {output}
timeout: 300
supported_input: